Versioning
The API is versioned by date; pin a version to keep your integration stable.
The Getme API is versioned by date. The current public API contract version is:
2026-06-09
The generated OpenAPI document uses this value as info.version, and each operation includes the same value in x-getme-api-version. Official SDKs send it in the Getme-Version request header. If you call the API directly, send the same header to pin your integration to the documented contract:
curl https://api.getmeonline.io/v1/sites \
-H "Authorization: Bearer $GETME_API_KEY" \
-H "Getme-Version: 2026-06-09"
Backwards-incompatible changes ship under a new dated version. Additive changes, such as new fields on a response, may appear within a version without a version bump, so write your integration to ignore unrecognized fields.
When a new version is released, review the changelog before upgrading, and test against staging first.