Get a single release

Retrieves a specific release by its ID.

GET https://errors.betterstack.com/api/v1/releases/{id}

URL parameters

id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "456",
    "type": "release",
    "attributes": {
      "version": "v1.2.3",
      "application_id": 123,
      "environments": [
        "production"
      ],
      "first_seen_at": "2026-08-18T09:00:00.000Z",
      "last_seen_at": "2026-08-18T09:00:00.000Z",
      "origin": "reported",
      "created_at": "2026-08-18T09:00:00.000Z",
      "updated_at": "2026-08-18T09:00:00.000Z"
    }
  }
}
401

Response body

{
  "errors": "Invalid authentication"
}
404

Response body

{
  "errors": "Resource with the provided ID was not found"
}

Example cURL

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