API Versioning

API Versioning Overview

API versioning allows Cybrid to continuously evolve the platform without breaking existing client integrations.

Specifying a Version in API Requests

To make a request to a specific version of an API endpoint, set the Accept-Version header to the desired API version.

Example cURL request:

curl --request GET \
     --url https://bank.sandbox.cybrid.app/api/transfers \
     --header 'accept: application/json'
     --header 'accept-version: 2025-06-01'

If the Accept-Version header is not present, the default API version of 2022-01-01 will be used.