Ingest
Ingest schemas
List schemas participating in Black Hole.
GET
List schemas an item may be matched to
Participating schemas the agent can classify against. Auth0 + allowlist.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List schemas participating in Black Hole.
curl --request GET \
--url https://abacusdocs.com/api/v2/ingest/schemas/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://abacusdocs.com/api/v2/ingest/schemas/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://abacusdocs.com/api/v2/ingest/schemas/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"schemas": [
{
"slug": "<string>",
"name": "<string>",
"version": 123,
"black_hole_enabled": true
}
]
}{}{}{}Auth0 access token for a signed-in user. Send Authorization: Bearer <token>.
The SPA and desktop agent use this. Prefer an organisation API key for
server-to-server integrations.
200 body of GET /api/v2/ingest/schemas/.
Show child attributes
curl --request GET \
--url https://abacusdocs.com/api/v2/ingest/schemas/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://abacusdocs.com/api/v2/ingest/schemas/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://abacusdocs.com/api/v2/ingest/schemas/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"schemas": [
{
"slug": "<string>",
"name": "<string>",
"version": 123,
"black_hole_enabled": true
}
]
}{}{}{}