Skip to main content
GET
/
api
/
v1
/
beam
Get Beams Handler
curl --request GET \
  --url https://api.allium.so/api/v1/beam \
  --header 'X-API-KEY: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "owner_org_team_user_id": "<string>",
    "pipeline_config": {
      "source": {
        "type": "pubsub",
        "is_zerolag": false
      },
      "transforms": [
        {
          "script": "<string>",
          "uid": "<string>",
          "type": "v8"
        }
      ],
      "sinks": [
        {
          "name": "<string>",
          "uid": "<string>",
          "type": "kafka"
        }
      ]
    },
    "organization_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "tags": [
      "<string>"
    ],
    "static_egress_ip": false,
    "pod_size": "S"
  }
]
Returns every Beam pipeline config the authenticated user has read access to (configs they own, configs shared with them as editor/reader, and configs whose viewer_team is a team they belong to).
Required permission: read — owners, editors, readers, and members of teams shared via viewer_team.
Response: BeamConfig[]
curl -X GET https://api.allium.so/api/v1/beam \
  -H "X-API-Key: ${ALLIUM_API_KEY}"

Authorizations

X-API-KEY
string
header
required

Response

Successful Response

id
string
required
name
string
required
description
string
required
owner_org_team_user_id
string
required
pipeline_config
BeamPipelineConfig · object
required
organization_id
string | null
created_at
string<date-time>
updated_at
string<date-time>
tags
string[] | null
static_egress_ip
boolean
default:false
pod_size
enum<string>
default:S
Available options:
S,
M,
L,
XL