Skip to main content

Base URL

All Talonic API endpoints are relative to https://api.talonic.com/v1 over HTTPS. JSON bodies by default, multipart for uploads, versioned under the v1 prefix.

The Talonic API base URL is https://api.talonic.com/v1. All endpoints are relative to this base, all requests must use HTTPS, and all paths in this reference assume the /v1 prefix.

Most integrations set this as a constant in their HTTP client configuration. A typical request URL looks like https://api.talonic.com/v1/extract or https://api.talonic.com/v1/documents.

The API uses standard JSON request and response bodies with Content-Type: application/json, except for file uploads which use multipart/form-data. Responses include standard HTTP status codes and rate limit headers on every call.

There is no versioning in the URL beyond /v1. Breaking changes will be communicated in advance and introduced under a new version prefix. Non-breaking additions (new fields, new endpoints) are shipped continuously.

Plain HTTP requests are rejected. Always use https:// in your base URL configuration to ensure encrypted transport.