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
}
Retrieve captured client-side errors with filtering and grouping
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
}
new, resolved, regressed, ignoredproduction, staging, developmentShow Error Object
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
}