Skip to main content
GET
/
v1
/
flows
/
{flow_id}
Get a workspace flow
curl --request GET \
  --url https://api.databar.ai/v1/flows/{flow_id} \
  --header 'x-apikey: <x-apikey>'
{
  "id": 1,
  "name": "Enrich company from domain",
  "description": "Takes a domain and returns company name, industry and headcount.",
  "inputs": [
    {
      "id": "domain",
      "description": "Company domain",
      "type": "text",
      "required": true
    }
  ],
  "outputs": [
    {
      "id": "company_name",
      "response_field_id": 42
    },
    {
      "id": "industry",
      "response_field_id": 43
    },
    {
      "id": "headcount",
      "response_field_id": 44
    }
  ],
  "created_at": "2026-01-10T09:00:00Z",
  "updated_at": "2026-03-15T14:22:00Z"
}

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.

Headers

x-apikey
string
required

API Key for authentication

Path Parameters

flow_id
integer
required

Numeric ID of the flow

Response

Flow details

id
integer
required
name
string
required
description
string
required
inputs
FlowInput · object[]
required
outputs
FlowOutput · object[]
required
created_at
string
required
updated_at
string
required