Speakeasy Logo
Skip to Content

Configure Servers

Default Behavior

The OpenAPI specification allows you to define an array of servers that can be used to make requests to the API. These servers are generally used to define different environments (for example, production, development, and testing) available for the API.

The Speakeasy SDK Generator automatically selects the first server URL from the OpenAPI document’s servers list as the default endpoint. While this default is commonly set to the production server, it’s flexible to accommodate application development cycles by reordering or modifying the server list.

Declare Base Server URL

Speakeasy SDKs are battery-included, meaning they are designed to work out of the box with minimal configuration from end users.

If the OpenAPI document lacks server definitions (both at the global level and for individual operations) or relies on relative paths for server URLs, it’s essential to set a default server endpoint. Set the default server endpoint by specifying a baseServerUrl in the SDK Generator configuration file (gen.yaml). This ensures the SDK always has a primary server to connect to for its operations.

Use Templated URLs

Templated  URLs provide a dynamic method to customize server endpoints based on runtime parameters, making them ideal for applications that serve multiple clients or operate in varied environments.

These placeholders can then be replaced with specific values at runtime, allowing for customer-specific or environment-specific configurations without altering the SDK.

Managing Multiple Servers With IDs

For a better developer experience, define an ID for each server using the x-speakeasy-server-id extension. This simplifies the process of selecting between servers at SDK initialization.

Dynamic Server Declaration at Runtime

Dynamic server selection allows developers to switch between multiple predefined servers at runtime, offering flexibility across different deployment environments or client configurations.

Methods

Server Selection by Index

Specify a server from the predefined list based on its index.

Global URL Override

Set a global server URL at SDK initialization, overriding the base URL.

Last updated on