curl --request GET \
--url https://api.example.com/api/v1/beamReturns all Beam pipeline configs for the authenticated user.
curl --request GET \
--url https://api.example.com/api/v1/beamGET /api/v1/beam
BeamConfig[]
curl -X GET https://api.allium.so/api/v1/beam \
-H "X-API-Key: ${ALLIUM_API_KEY}"
Show Example response
[
{
"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"
}
]
}
}
]
Was this page helpful?