HomeGuidesAPI Reference
ChangelogHelp CenterCommunityContact Us
These docs are for v2022-10-17. Click to read the latest docs for v2024-02-15.

API versioning and deprecation policy

Learn about how we version and support our APIs.

🚧

Our v1/v2 legacy APIs are scheduled to retire on June 30, 2024.

Check out our migration resources to learn how to migrate to Klaviyo’s date-versioned APIs.

Klaviyo’s APIs evolve and change over time. Our versioning and deprecation policy details how we choose to version our APIs and offer developer support as we continually improve and expand our functionality. You’ll learn about how we safely introduce changes to our APIs and discover our API lifecycle so that you can most effectively manage your Klaviyo API usage. For more information, refer to our API Terms of Use.

📘

Breaking changes due to security and site reliability concerns

While we do our best to notify developers of major changes in advance, we reserve the right to introduce breaking changes to existing revisions without notice. Note that we will only release an immediate breaking change when it is necessary, for example, to address problems such as platform security and site reliability.

To stay up-to-date on API changes, be sure to:

API versioning

We version our APIs with revisions, or snapshots of our API at a point in time. Revisions are formatted as ISO 8601 dates (representing release dates) and passed using the HTTP request header, revision (for example, 2023-12-15). This versioning scheme allows us to regularly release new functionality without negatively impacting developers using older revisions.

The following request includes a revision header that serves our 2023-12-15 revision:

curl --request GET \
     --url https://a.klaviyo.com/api/events/ \
     --header 'Authorization: Klaviyo-API-Key your-private-api-key' \
     --header 'accept: application/json' \
     --header 'revision: 2023-12-15'

📘

Note that the revision passed in must be a valid revision. You can quickly check for valid revisions and view their supporting documentation in the revision drop down in the top left.

Valid revisions

RevisionDeprecated?Planned retirement date
2023-12-15NoDecember 15, 2025
2023-10-15NoOctober 15, 2025
2023-09-15NoSeptember 15, 2025
2023-08-15NoAugust 15, 2025
2023-07-15NoJuly 15, 2025
2023-06-15NoJune 15, 2025
2023-02-22NoFebruary 22, 2025
2023-01-24NoJanuary 24, 2025
2022-10-17YesOctober 17, 2024

📘

If you are using a revision that was released before the 2023-07-15 revision, we recommend learning about the breaking changes released and upgrading to our latest revision.

Breaking changes

Klaviyo defines a breaking change as any modification to or deletion of functionality within an API that may cause integrations or applications to function abnormally or break.

Examples of breaking changes include, but are not limited to:

  • Renaming of a URL, request or response field, HTTP header, or query parameter.
  • Removal of a request or response field, HTTP header, or query parameter.
  • Addition of a required request field, HTTP header, or query parameter.
  • Removal of an endpoint.

Breaking changes are generally gated behind a new revision and clearly documented in our changelog. If we plan on introducing a breaking change to an existing revision, we will provide 30 days notice to our developers. Be sure to join our developer newsletter to receive important updates.

📘

If you detect an undocumented change causing breakages in your app, please share it with us on our Klaviyo Community developer group. Any undocumented functionality is not supported and should not be relied upon.

Non-breaking changes

Klaviyo considers the following classes of changes to be non-breaking changes:

  • New optional fields in endpoint request payloads

  • New fields added to endpoint response payloads

  • New optional query parameters

  • New optional request headers

  • Additional response headers

  • New endpoints

Generally, new endpoints are only released in new revisions. Note that non-breaking changes to existing endpoints may be released within an existing revision.

📘

While non-breaking changes are not expected to be disruptive to existing functionality, it is still possible that they can cause breakages in your application. Be sure to build your application to adapt to non-breaking changes at your own discretion.

SDK versioning

When a new API revision is released, we release new versions of our SDKs. Our SDKs follow semantic versioning, or the major.minor.patch format, where each numeric value is incremented to reflect the following changes:

  • major

    The API revision contains at least one breaking change.

  • minor

    The API revision contains non-breaking changes, such as notable new functionality.

  • patch

    The SDK has been updated with bug fixes.

Note that SDK support relies on our API versioning and deprecation policy, as each SDK version is pinned to a specific API revision. Keep in mind that each SDK has a separate changelog for documenting changes between versions.

API lifecycle

📘

Klaviyo provides developers 2 years to update their apps and integrations before a revision is retired and access is removed.

Initial release

When new endpoints and/or breaking changes are added to our APIs, they are released in a new revision.

When a new revision is released:

  • It is the latest stable revision until a newer revision is released.
  • There should not be any breaking changes made to the revision, but there may be some non-breaking changes over time.
  • The revision remains stable for 1 year.

Deprecation

After a revision’s stable period (1 year after its initial release), the revision is deprecated (set to retire). At this point, you should plan to upgrade your apps to our latest stable revision, which will include new and improved functionality over any deprecated revisions.

When a revision becomes deprecated:

  • You’ll have 1 year to upgrade your apps before the revision is retired.
  • The revision will not receive any further updates or bug fixes.
  • The documentation is updated with the new revision or notifies users that the documented method is deprecated.

📘

Any new integrations and API usages should be built with our latest revision. You can view recent API requests by revision header, among other API activity data, with our API usage tools.

Retirement

After a revision’s year-long deprecation phase, it is retired, meaning it is unsupported and no longer available for use. We do our best to fall-forward to the oldest non-retired revision (see below); however, calls to retired endpoints that have been removed since that revision will receive a 410 error, and other breakages are likely to occur.

Fall-forward behavior

If a retired revision date is passed to the request header, Klaviyo falls forward and responds to your request with the same behavior as the next oldest revision. For example, when revision2023-06-15 retires, the next oldest revision is 2023-07-15, and any API requests to 2023-06-15 will be served 2023-07-15.

🚧

Relying on fall-forward behavior is likely to introduce unwanted, breaking changes in your app. It’s much safer to pin a static revision and connect your apps to our latest revision every 12-18 months. This will give you enough time to revisit your implementation to take advantage of improved functionality and address any potential breaking changes.

If you would like to opt out of this behavior, you can use the following request header:

X-Klaviyo-Revision-Fall-Forward-Opt-Out:1

🚧

Note that if you choose to opt out of fall-forward behavior, when a revision is retired, all requests to it will result in a 410 error and cause breakages in your app.

Our fall-forward behavior is a best-effort attempt to honor your request and not fully break your integration; however, we strongly recommend that you audit and update your API usage prior to a revision’s retirement, as it is likely that functionality will break or work differently in newer revisions.

Additional resources