Skip to main content

Talonic API

Extract any document into schema-validated data with a single API call. The Talonic API provides programmatic access to the full extraction pipeline — from document upload through schema validation to structured data delivery with per-cell provenance.

Base URL

https://api.talonic.com

Protocol

HTTPS + JSON

Auth

Bearer tlnc_...

Quick start

Three calls. A schema, an ingest, a query. See authentication for API key setup and schema formats for all schema options.

curl -X POST https://api.talonic.com/v1/extract \
  -H "Authorization: Bearer tlnc_sk_live_7f3a...x9k2" \
  -F "file=@contract.pdf" \
  -F 'schema={"vendor_name":"string","total_amount":"number","due_date":"date"}'

Endpoints

Extract

The primary extraction endpoint — send any document and receive schema-validated structured data.

Extractions

Access extraction results — structured row data with per-cell provenance and confidence scores.

Jobs

Track asynchronous extraction jobs — poll status or cancel in-progress work.