List Inputs
List all document ingestion sources in your workspace with GET /v1/sources. Each source carries its own API key and upload endpoint for ingestion.
The GET /v1/sources endpoint lists every document ingestion source in your Talonic workspace. A source groups documents by origin, such as an invoice feed or a contract inbox, and each source carries its own scoped API key and a dedicated endpoint URL for programmatic document uploads.
Sources are the entry point for document ingestion in Talonic. Each source represents a distinct document stream or integration — for example, an invoice intake or a contract review workflow. Documents ingested through a source inherit its configuration, including any default schema.
endpoint URL for document ingestion. Use the source-scoped API key (returned at creation) to authenticate uploads to that endpoint./v1/sourcesRequest
Response
Response fields
Response
{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Invoice Pipeline",
"type": "api",
"status": "active",
"document_count": 234,
"default_schema": null,
"endpoint": "/v1/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890/documents",
"created_at": "2024-08-01T09:00:00.000Z",
"links": {
"self": "/v1/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"documents": "/v1/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890/documents",
"dashboard": "https://app.talonic.com/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
]
}Errors
Error responses