Documentation Index
Fetch the complete documentation index at: https://docs.fluveo.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The API uses date-based versioning to manage breaking changes. Each version is identified by a date string inYYYY-MM-DD format (e.g., 2026-03-09). When we introduce a breaking change, we release it under a new version date while keeping older versions fully functional.
How versioning works
Every merchant account has a default API version assigned at the time of account creation. All requests from that account use the default version unless overridden. You can check your current default version in the dashboard under Settings > API Version.Setting the version per request
Use theX-API-Version header to override your account’s default version on any individual request:
Version precedence
| Source | Priority |
|---|---|
X-API-Version header on the request | Highest (always wins) |
| Account default version | Used when no header is provided |
What constitutes a breaking change
The following changes require a new API version:- Removing or renaming a field in a response body
- Changing the type of an existing response field
- Changing the default value of a request parameter
- Adding a new required request parameter
- Changing error response codes for existing scenarios
- Changing the behavior of an existing endpoint
- Adding a new optional request parameter
- Adding a new field to a response body
- Adding a new endpoint
- Adding a new error code for a new scenario
- Adding a new value to an existing enum (for response fields)
Upgrading your version
To upgrade your account’s default version:- Review the changelog for all changes between your current version and the target version.
- Test your integration against the new version using the
X-API-Versionheader. - Update your default version in the dashboard under Settings > API Version.
Pinning a version in code
For production stability, pin the version in every API request:Version history
| Version | Date | Summary |
|---|---|---|
2026-03-09 | March 9, 2026 | Current version. Initial public release. |
New versions are announced in the changelog and via email to account owners at least 30 days before they become the default for new accounts.