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

# Get config

> Returns a single pipeline config by ID.

```
GET /api/v1/beam/{config_id}
```

Returns a single pipeline config by ID. The caller must own the pipeline.

**Path parameters:**

| Parameter   | Description               |
| :---------- | :------------------------ |
| `config_id` | Pipeline configuration ID |

**Response:** [`BeamConfig`](/beam/api-reference/configuration#beamconfig)

```bash theme={null}
curl -X GET https://api.allium.so/api/v1/beam/${CONFIG_ID} \
  -H "X-API-Key: ${ALLIUM_API_KEY}"
```
