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>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "ctx": {},
      "input": "<unknown>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs-attestly.code4source.com/llms.txt

Use this file to discover all available pages before exploring further.

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
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.

Pattern: ^(leaf|group|subject_register)$

Response

Successful Response