Speakeasy Logo
Skip to Content

Generating code samples for your SDK

This guide explains how code samples are generated for an SDK and how to apply them to an OpenAPI document.

What is the code samples extension?

Many API documentation providers provide code snippets in multiple languages to help developers understand how to use the API. However, these snippets may not correspond to a usage snippet from an existing SDK provided by the API, which reduces the value of the API documentation and can lead to inconsistent integrations, depending on whether a user discovers the API docs or the SDK first.

The x-codeSamples extension (previously called x-code-samples) is a widely accepted OpenAPI Specification extension that enables the addition of custom code samples in multiple languages to operation IDs in an OpenAPI document. When custom code samples are added using the code samples extension, documentation providers will render the usage snippet in the right-hand panel of the documentation page:

For a full breakdown of the code samples extension, see our guide.

Configuring code samples

Speakeasy provides code samples in the form of overlays. This ensures that your code samples can be trivially applied to your OpenAPI document without needing to upstream the changes.

The setup for using overlays to apply code samples is configured in your workflow file, as follows:

In the above example, a code samples overlay containing TypeScript usage snippets for all operations in the my-source OpenAPI document will be generated and written to code-samples.yaml and pushed to the Speakeasy registry.

Overrides

To override the lang and label values, you can add either or both of the following options to the codeSamples section in your workflow.yaml file:

Styles

For certain documentation providers like ReadMe, you will need to override the default style of code samples in your OpenAPI document. To override the default style, modify the following option in the codeSamples section of your workflow.yaml file:

Automatic code sample URLs

For paid accounts, Speakeasy provides an elegant solution for exposing code samples to documentation providers through its automated code sample URLs product.

For a full breakdown of the feature, see the guide.

Manually applying code samples to an OpenAPI document

Alternatively, you can manually set up code sample integrations by pulling together code sample images in your repository with a simple workflow.

Now you can run speakeasy run. If you use registry references, the source and code samples will always be up to date with the main branch of your SDK repos.

Last updated on