Skip to main content
POST
/
v1
/
flows
/
{flow_id}
/
run
Run a flow
curl --request POST \
  --url https://api.databar.ai/v1/flows/{flow_id}/run \
  --header 'Content-Type: application/json' \
  --header 'x-apikey: <x-apikey>' \
  --data '
{
  "inputs": {
    "domain": "stripe.com"
  }
}
'
{
  "task_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "status": "processing"
}

Documentation Index

Fetch the complete documentation index at: https://docs.databar.ai/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint is asynchronous. It returns a task_id — poll Get task status to retrieve your results. Task data expires after 24 hours.

Headers

x-apikey
string
required

API Key for authentication

Path Parameters

flow_id
integer
required

Numeric ID of the flow to run

Body

application/json
inputs
Inputs · object

Maps flow input id → value string. Use GET /v1/flows/{flow_id} to discover the required input ids.

Response

Task created — poll GET /v1/tasks/{task_id} for results