> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kodostatus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Service

> Get a single service by ID

## Path Parameters

<ParamField path="id" type="string" required>
  The service ID
</ParamField>

## Response

Returns the service object.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://kodostatus.com/api/v1/services/<service-id>" \
    -H "X-API-Key: your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "API Gateway",
    "description": "Main API service",
    "status": "operational",
    "display_order": 1,
    "created_at": "2026-01-15T10:30:00.000Z",
    "updated_at": "2026-01-15T10:30:00.000Z"
  }
  ```
</ResponseExample>
