Skip to main content
GET
/
v1
/
flows
List workspace flows
curl --request GET \
  --url https://api.databar.ai/v1/flows/ \
  --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

Response

List of flows

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