Skip to main content
GET
/
v1
/
connectors
List custom API connectors
curl --request GET \
  --url https://api.databar.ai/v1/connectors/ \
  --header 'x-apikey: <x-apikey>'
[
  {
    "id": 1,
    "name": "My Scoring API",
    "type": "enrichment",
    "method": "post",
    "url": "https://api.example.com/v1/score",
    "headers": [
      {
        "name": "Authorization",
        "value": "Bearer sk-xxx"
      }
    ],
    "parameters": [],
    "body": [
      {
        "name": "domain",
        "value": ""
      }
    ],
    "rate_limit": 10,
    "max_concurrency": 5,
    "created_at": "2025-01-15T10:30:00Z"
  }
]

Headers

x-apikey
string
required

API Key for authentication

Response

List of connectors

id
integer
required
name
string
required
type
string
required
method
string
required
url
string
required
headers
NameValue · object[]
parameters
NameValue · object[]
body
NameValue · object[]
body_template
string | null
rate_limit
integer | null
max_concurrency
integer | null
created_at
string | null