List a Project's Data Filters
GET /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/filters/
Retrieve a list of filters for a given project.
active will be either a boolean or a list for the legacy browser filters.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The ID or slug of the organization the resource belongs to. 
- project_id_or_slug(string)REQUIRED
- The ID or slug of the project the resource belongs to. 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- project:admin
- project:read
- project:write
Copied
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/filters/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied[ { "id": "browser-extensions", "active": false }, { "id": "filtered-transaction", "active": true }, { "id": "legacy-browsers", "active": [ "opera", "edge", "safari", "chrome", "ie", "opera_mini", "firefox", "android" ] }, { "id": "localhost", "active": false }, { "id": "web-crawlers", "active": true } ]
Was this helpful?