curl "https://kodostatus.com/api/v1/services" \
-H "X-API-Key: your_api_key"
const response = await fetch('https://kodostatus.com/api/v1/services', {
headers: { 'X-API-Key': process.env.KODO_API_KEY }
});
const data = await response.json();
{
"services": [
{
"id": "uuid",
"name": "API Gateway",
"description": "Main API service",
"status": "operational",
"display_order": 1,
"created_at": "2026-01-15T10:30:00.000Z"
}
]
}
Services
List Services
Get all services for your organization
GET
/
services
curl "https://kodostatus.com/api/v1/services" \
-H "X-API-Key: your_api_key"
const response = await fetch('https://kodostatus.com/api/v1/services', {
headers: { 'X-API-Key': process.env.KODO_API_KEY }
});
const data = await response.json();
{
"services": [
{
"id": "uuid",
"name": "API Gateway",
"description": "Main API service",
"status": "operational",
"display_order": 1,
"created_at": "2026-01-15T10:30:00.000Z"
}
]
}
Response
array
curl "https://kodostatus.com/api/v1/services" \
-H "X-API-Key: your_api_key"
const response = await fetch('https://kodostatus.com/api/v1/services', {
headers: { 'X-API-Key': process.env.KODO_API_KEY }
});
const data = await response.json();
{
"services": [
{
"id": "uuid",
"name": "API Gateway",
"description": "Main API service",
"status": "operational",
"display_order": 1,
"created_at": "2026-01-15T10:30:00.000Z"
}
]
}
⌘I