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
These placeholders can then be replaced with specific values at runtime, allowing for customer-specific or environment-specific configurations without altering the SDK.
Note
The templating feature is only supported for global server URLs and is not yet supported for per-operation server URLs.
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.
Note
The Speakeasy README file accompanying the generated SDK includes SDK-specific examples to guide through the process of dynamically selecting servers.
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.
CAUTION
If you choose to configure the SDK URL at runtime and relative paths were used
in the OpenAPI document, make sure that you account for the baseURL
when
initializing the SDK server configuration.
Last updated on