Skip to main content
GET
/
errors
curl "https://kodostatus.com/api/v1/errors?status=new&environment=production&limit=20" \
  -H "X-API-Key: your_api_key"
{
  "errors": [
    {
      "id": "err_abc123",
      "fingerprint": "a1b2c3d4e5f6",
      "message": "Cannot read property 'map' of undefined",
      "type": "TypeError",
      "status": "new",
      "occurrences": 47,
      "sessions_affected": 23,
      "first_seen": "2024-01-15T08:30:00Z",
      "last_seen": "2024-01-15T10:45:00Z",
      "release": "1.2.3",
      "environment": "production",
      "stack_trace": "TypeError: Cannot read property 'map' of undefined\n    at Dashboard.render (dashboard.js:142:15)..."
    }
  ],
  "total": 1
}

Query Parameters

service_id
string
Filter by service ID
status
string
Filter by error status: new, resolved, regressed, ignored
environment
string
Filter by environment: production, staging, development
release
string
Filter by release version
from
string
Start date (ISO 8601)
to
string
End date (ISO 8601)
limit
number
default:"50"
Maximum results (1-100)
offset
number
default:"0"
Pagination offset

Response

errors
array
Array of error signature objects (grouped by fingerprint)
total
number
Total matching errors
curl "https://kodostatus.com/api/v1/errors?status=new&environment=production&limit=20" \
  -H "X-API-Key: your_api_key"
{
  "errors": [
    {
      "id": "err_abc123",
      "fingerprint": "a1b2c3d4e5f6",
      "message": "Cannot read property 'map' of undefined",
      "type": "TypeError",
      "status": "new",
      "occurrences": 47,
      "sessions_affected": 23,
      "first_seen": "2024-01-15T08:30:00Z",
      "last_seen": "2024-01-15T10:45:00Z",
      "release": "1.2.3",
      "environment": "production",
      "stack_trace": "TypeError: Cannot read property 'map' of undefined\n    at Dashboard.render (dashboard.js:142:15)..."
    }
  ],
  "total": 1
}