List all applications

Lists all error tracking applications for your team.

GET https://errors.betterstack.com/api/v1/applications

Query parameters

page
integer
per_page
integer
name
string

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": "1234",
      "type": "application",
      "attributes": {
        "application_group_id": 5678,
        "team_id": 123456,
        "team_name": "example-team",
        "name": "my-web-app",
        "table_name": "my_web_app",
        "token": "abc123def456ghi789",
        "ingesting_paused": false,
        "ingesting_host": "s1234.us-east-9.betterstackdata.com",
        "created_at": "2025-01-15T10:30:00.000Z",
        "updated_at": "2025-01-15T10:30:00.000Z",
        "errors_retention": 90,
        "data_region": "us-east-9",
        "custom_bucket": null
      }
    }
  ],
  "pagination": {
    "first": "https://errors.betterstack.com/api/v1/applications?page=1&per_page=50",
    "last": "https://errors.betterstack.com/api/v1/applications?page=3&per_page=50",
    "prev": null,
    "next": "https://errors.betterstack.com/api/v1/applications?page=2&per_page=50"
  }
}
401

Response body

{
  "errors": "Invalid authentication"
}

Example cURL

Example
curl --request GET \
  --url https://errors.betterstack.com/api/v1/applications \
  --header "Authorization: Bearer $TOKEN"

Pagination

This endpoint supports pagination. Default is 50 items per page, with a maximum of 100 items per page. The pagination links are provided in the pagination object within the response body.