Skip to main content
GET
/
contents
/
v1
/
connectors
List connectors
curl --request GET \
  --url https://api.bigdata.com/contents/v1/connectors \
  --header 'X-API-KEY: <api-key>'
import requests

url = "https://api.bigdata.com/contents/v1/connectors"

headers = {"X-API-KEY": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};

fetch('https://api.bigdata.com/contents/v1/connectors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bigdata.com/contents/v1/connectors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.bigdata.com/contents/v1/connectors"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-KEY", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.bigdata.com/contents/v1/connectors")
.header("X-API-KEY", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.bigdata.com/contents/v1/connectors")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "results": [
    {
      "connector_id": "019a9612-bfad-758c-884e-37dd8c6ad2cb",
      "user_id": "user_id_001",
      "org_id": "org_id_001",
      "share_with_org": true,
      "label": "Broker Research - Daily Reports",
      "created_at": "2026-02-11T11:01:09.574095Z",
      "updated_at": "2026-02-11T11:01:09.574102Z",
      "archived": false,
      "description": "Collects daily reports from the broker's research team",
      "config": {
        "allowed_emails": [
          "user@example.com",
          "admin@example.com"
        ],
        "email_hash": "a1b2c3d4e5f6",
        "email": "connector@bigdata.com"
      },
      "files_count": 10,
      "last_sync_at": "2026-04-07T09:36:34.195040Z",
      "last_sync_status": "SUCCESS",
      "last_sync_error_msg": null,
      "last_sync_count": 3200
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Your API key. Include it in every request as the X-API-KEY header. Create and manage keys in the Developer Platform.

Response

List of connector objects in a results array. Each connector includes id, label, type, configuration and timestamps.

results
object[]
required

Connectors in this response. Use connector_id when filtering documents or calling update/delete.