Base path

View as Markdown

Use the x-fern-base-path extension to configure the base path prepended to every endpoint.

The example below configures the /v1 base path so the full endpoint path is https://api.example.com/v1/users.

Set the base path in openapi.yml
1x-fern-base-path: /v1
2servers:
3 - url: https://api.example.com
4paths:
5 /users: ...