This page lists changes to Flare’s API. Release notes for the Flare Platform can be found on the product documentation website.

2025-02-18
Python SDK - v0.2.1

Released version 0.2.1 of the Python SDK .

This release adds a from_env method to FlareApiClient.

This allows the creation of a client from the following environment variables:

  • FLARE_API_KEY="<key>"
  • FLARE_TENANT_ID="<tenant_id>"

Then, the client can be created using:

from flareio import FlareApiClient

client = FlareApiClient.from_env()

The following command can be used to upgrade:

pip install flareio>=0.2.1
2025-01
API - January 2025

Modified the retrieve event endpoint to accept the UID as a query parameter instead of as path parameters. This avoids confusion that some users had when using uids that have multiple slashes. The old endpoint with path parameters was kept for backwards compatibility.

Increased basic rate limiting from 2 requests per second to 4 requests per second.

2024-12
API - December 2024

The cookies search endpoint now returns an uuid that can be used to uniquely identify cookies.

The cookies search endpoint now returns an imported_at timestamp that indicates when the cookie was imported to Flare’s database. It also has a new imported_after filter that allows for retrieving cookies that were imported after a given timestamp. The Cookie Monitoring Guide was updated with an example usage.

Released new event actions endpoint . It allows ignoring, unignoring, remediating and unremediating events.

2024-10-22
Python SDK - v0.1.25

Released version 0.1.25 of the Python SDK .

This release fixes an issue with packaging that caused the Python SDK to declare too many Python dependencies, conflicting with libraries installed in the environments of some users.

The following command can be used to upgrade:

pip install flareio>=0.1.25
2024-09
API - September 2024

The API documentation has been revamped for better clarity and structure.

We’ve added new use-case guides to help you quickly address specific customer needs.

Released new global search endpoint with simpler-to-use filters.

Released new credentials search endpoint with simpler-to-use filters and support for Flare’s standard paging pattern.

Released a Python SDK .

Released a Go SDK .

Was this page helpful?