> ## 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.

# List configs

> Returns all Beam pipeline configs for the authenticated user.

```
GET /api/v1/beam
```

Returns all Beam pipeline configs owned by the authenticated API key.

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

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

<Expandable title="Example response">
  ```json theme={null}
  [
    {
      "id": "abc123",
      "name": "USDC Transfer Monitor",
      "description": "Monitors USDC ERC20 transfers on Base",
      "owner_org_team_user_id": "org_xyz",
      "created_at": "2025-01-15T10:30:00Z",
      "updated_at": "2025-01-15T10:30:00Z",
      "tags": ["production", "base"],
      "static_egress_ip": false,
      "pipeline_config": {
        "source": {
          "type": "pubsub",
          "chain": "base",
          "entity": "erc20_token_transfer",
          "is_zerolag": false
        },
        "transforms": [
          {
            "type": "redis_set_filter",
            "uid": "tf-001",
            "filter_expr": "root = this.token_address"
          }
        ],
        "sinks": [
          {
            "type": "kafka",
            "uid": "sk-001",
            "name": "usdc-transfers"
          }
        ]
      }
    }
  ]
  ```
</Expandable>
