Find the exact module, copy the working request shape, and move from product workflow to API call without getting buried in the tree.
Write the workflow in plain language. We will turn it into a GPT-ready brief you can use to generate requests, module order, and starter payloads.
After deployment, the first secure step for any API integration is to retrieve the instance API token and use it on every request. Callaba Engine uses a dashboard-issued JWT for API access. In most deployments, this token is all you need to start calling the API.
Find the token in the dashboard under General settings, in the account settings block, at the API Token row. Copy that value and send it in the x-access-token header.
x-access-token header.Include the token in the request header exactly as shown:
x-access-token: <your_api_token>
Example with cURL:
curl -X GET "https://<your-host>/api/..." \
-H "x-access-token: <your_api_token>"
x-access-token on every API call.Once authorization is working, move on to the workflow you are implementing: ingest setup, contribution endpoints, stream management, or delivery configuration.