# Control-plane version (/api/info/get-control-plane-info)

`GET /api/info`

The running control plane and the commit it was built from. Needs no credential, so it answers whether the service is reachable before you start debugging one.

Base URL: `https://runners.starsling.dev`

## Authentication

No credential required.

## Responses

| Status | Description |
| --- | --- |
| `200` | The running control plane and the commit it was built from. |
| `500` | The request was valid; the control plane or a dependency it calls failed. |

### `200` body

- `service` — string, required. `blazar-control-plane`
- `version` — string, required. e.g. `dev`

### Example

```json
{
  "service": "blazar-control-plane",
  "version": "a1b2c3d"
}
```