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

# Create config

> Creates a new pipeline configuration.

```
POST /api/v1/beam
```

Creates a new pipeline configuration. The response includes auto-generated fields (`id`, `owner_org_team_user_id`, `created_at`, `updated_at`).

**Request body:** [`CreateBeamConfigRequest`](/beam/api-reference/configuration#createbeamconfigrequest)

```bash theme={null}
curl -X POST https://api.allium.so/api/v1/beam \
  -H "X-API-Key: ${ALLIUM_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "USDC Transfer Monitor",
    "description": "Monitors USDC ERC20 transfers on Base",
    "tags": ["production", "base"],
    "pipeline_config": {
      "source": {
        "type": "pubsub",
        "chain": "base",
        "entity": "erc20_token_transfer",
        "is_zerolag": false
      },
      "transforms": [
        {
          "type": "redis_set_filter",
          "filter_expr": "root = this.token_address"
        }
      ],
      "sinks": [
        {
          "type": "kafka",
          "name": "usdc-transfers"
        }
      ]
    }
  }'
```

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

<Note>
  Filter values are managed separately from the pipeline config. After creating a pipeline, use the [filter values endpoints](/beam/api-reference/filter-values/add-filter-values) to populate set filter transforms.
</Note>

See the [Configuration reference](/beam/api-reference/configuration) for full details on sources, transforms, and sink types.
