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

# Get Route

> Returns the full configuration for a single route

## Get Route

```text theme={"dark"}
GET /v1/routes/:id
```

Returns the full configuration for a single route, including injection rules, environment overrides, and payload structure.

### Path Parameters

| Parameter | Type | Description  |
| --------- | ---- | ------------ |
| `id`      | uuid | The route ID |

### Response

```json theme={"dark"}
{
  "data": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "Payment Gateway",
    "target_base_url": "https://api.stripe.com/v1",
    "base_environment": "production",
    "enabled": true,
    "requires_clients": false,
    "methods": null,
    "mtls_certificate_id": null,
    "collection_id": null,
    "created_at": "2026-01-15T09:30:00.000Z",
    "environment_override_count": 2,
    "payload_structure": null,
    "injection_rules": null,
    "ip_allowlist": null,
    "data_plane_node_id": null,
    "configured_environments": ["production", "staging"]
  },
  "meta": { "request_id": "550e8400-e29b-41d4-a716-446655440000" }
}
```

### Errors

| Status | Type        | Description     |
| ------ | ----------- | --------------- |
| 404    | `not_found` | Route not found |
