List Schemas
Retrieve all extraction schemas in your workspace. Each schema includes its field definitions, version number, and Field Registry mappings.
GET
/v1/schemasExample
curl https://api.talonic.com/v1/schemas \
-H "Authorization: Bearer tlnc_sk_live_7f3a...x9k2"Response
{
"data": [
{
"id": "sch_abc123",
"name": "Invoice Schema",
"version": 3,
"field_count": 4,
"fields": {"vendor_name":"string","invoice_number":"string","total_amount":"number","due_date":"date"},
"created_at": "2026-04-15T10:00:00Z"
}
]
}