How to export errors
On this page
How do I export error data?
Our API gives you full access to all of your projects' error data. You can use
commands like curl
or make web requests through your programming language of
choice to access error data for your own analysis.
Examples
These endpoints utilize your user’s personal access key. This key can be found in your user profile’s settings page.
List groups across all projects in account (API documentation):
curl "https://api.airbrake.io/api/v4/groups?key=USER_KEY"
List groups in a project (API documentation):
curl "https://api.airbrake.io/api/v4/projects/PROJECT_ID/groups?key=USER_KEY"
To get individual occurrences of an error group you’re interested in, use the list notices (AKA occurrences) endpoint (API documentation):
curl "https://api.airbrake.io/api/v4/projects/PROJECT_ID/groups/GROUP_ID/notices?key=USER_KEY"
API results will be returned based on the paging method specified in our API documentation.