---
title: "Flare API Updates"
description: "New updates and improvements"
---
{/*
NOTE: See `overview_unpublished.mdx` for changes that are not yet published.
*/}
This page lists changes to Flare's API.
Release notes for the Flare Platform can be found on the [product documentation website](https://docs.flare.io/releases).
Released version 1.2.0 of the
[Python SDK ](/sdk/python).
This release adds a new `scroll_events` method that can be used to retrieve events from the feed APIs
without having to manage fetching events individually.
More information, including full examples, can be found in the
[Python SDK documentation ](/sdk/python).
Added a [Global Search Credentials Endpoint ](/api-reference/v4/endpoints/credentials-global-search).
This new endpoint allows for searching in all of Flare's credentials and counts towards the Global Search quota.
This is useful for customers that don't have ASTP access.
Added documentation for
[Flare API Event Types ](/event-types/overview).
API endpoints using the `/leaksdb/` prefix were changed to `/astp/`.
The old prefix remains available as an alias and there are no plans to deprecate it.
Released the
[Flare API Documentation MCP Server ](/sdk/mcp).
This is useful for developers building Flare API automations with AI-powered integrated development environments (IDE).
The [/leaksdb/credentials ](/api-reference/leaksdb/endpoints/get-credentials-v1)
and [/leaksdb/v2/credentials ](/api-reference/leaksdb/endpoints/get-credentials-v2)
endpoints were marked as deprecated and should be replaced by
[/astp/v2/credentials/_search ](/api-reference/astp/endpoints/post-credentials-search).
Released version 1.0.0 of the
[Python SDK ](/sdk/python).
This release contains no changes, it simply marks 1.0.0 so that future
breaking changes can be communicated using semantic versioning.
Added a new
[List Credentials Within a Tenant ](/guides/tenant-credentials)
guide.
Released a new version of the List All Credentials endpoint,
[List All Credentials V2 ](/api-reference/leaksdb/endpoints/get-credentials-v2),
which supports the
[Flare standard paging pattern ](/concepts/paging).
The old endpoint is still supported and was marked as deprecated:
[List All Credentials V1 ](/api-reference/leaksdb/endpoints/get-credentials-v1).
Released version 0.2.1 of the
[Python SDK ](/sdk/python).
This release adds a `from_env` method to `FlareApiClient`.
This allows the creation of a client from the following environment variables:
- `FLARE_API_KEY=""`
- `FLARE_TENANT_ID=""`
Then, the client can be created using:
```python
from flareio import FlareApiClient
client = FlareApiClient.from_env()
```
The following command can be used to upgrade:
```shell
pip install flareio>=0.2.1
```
Modified the
[retrieve event ](/api-reference/v2/endpoints/activities/get-activities-)
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 ](/concepts/rate-limits-and-quotas)
from 2 requests per second to 4 requests per second.
The
[cookies search endpoint ](/api-reference/astp/endpoints/post-cookies-search)
now returns an `uuid` that can be used to uniquely identify cookies.
The
[cookies search endpoint ](/api-reference/astp/endpoints/post-cookies-search)
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 ](/guides/cookie-monitoring)
was updated with an example usage.
Released new
[event actions endpoint ](/api-reference/v4/endpoints/event-actions).
It allows ignoring, unignoring, remediating and unremediating events.
Released version 0.1.25 of the
[Python SDK ](/sdk/python).
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:
```shell
pip install flareio>=0.1.25
```
The API documentation has been revamped for better clarity and structure.
We’ve added new [use-case guides ](/introduction/getting-started)
to help you quickly address specific customer needs.
Released new
[global search endpoint ](/api-reference/v4/endpoints/global-search)
with simpler-to-use filters.
Released new
[credentials search endpoint ](/api-reference/astp/endpoints/post-credentials-search)
with simpler-to-use filters and support for Flare's standard paging pattern.
Released a [Python SDK ](/sdk/python).
Released a [Go SDK ](/sdk/go).