# system

## Get System Info

For accessing system information, you can use the following endpoint:

### Endpoint
```
GET /system
```

### Request Parameters
| Parameter | Type   | Description          |
|-----------|--------|----------------------|
| apiKey    | string | Your API key         |

### Example Request
```
curl -X GET "https://docs.mediakind.com/api-reference/channels-api/system/get-system-info?apiKey=YOUR_API_KEY"
```

### Response
The response will include:
- System status
- Version
- Uptime

### Example Response
```json
{
  "status": "operational",
  "version": "1.0.0",
  "uptime": "48 hours"
}
```

## Additional Resources
Refer to the [API Reference](https://docs.mediakind.com/api-reference/channels-api/system/get-system-info) for more details.
