Skip to main content
GET
/
v1
/
sources
List ingested reference sources
curl --request GET \
  --url https://api.example.com/v1/sources \
  --header 'Authorization: Bearer <token>'
{
  "status": 123,
  "title": "<string>",
  "type": "<string>",
  "detail": "<string>",
  "instance": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

include_disabled
boolean
default:false

When true, surface sources whose system-wide kill switch is on. Defaults to false so disabled sources are hidden from the catalog (consistent with the runtime endpoints, which already skip them).

kind
enum<string> | null

Filter to a single source_registry.kind value. leaf returns regular spatial sources, group returns virtual fan-outs, subject_register returns non-spatial identifier sources (sanctions lists, slavery blacklists, …). Omit to receive rows of every kind.

Available options:
leaf,
group,
subject_register

Response

Successful Response