For the complete documentation index, see llms.txt. This page is also available as Markdown.

Overview

Drive document extraction, classification and generation from your own systems.

Use the API to extract, classify, and generate documents.

Get started

1

Create an API key

Create a key in Settings → API Keys. Send it with every authenticated request.

2

Submit an extraction

Send a document with POST /extract for asynchronous processing. Use POST /extract/sync when you need the result in the response.

3

Receive the result

For asynchronous work, receive completion through a webhook or retrieve the extraction by ID.

The four groups

Group
What it does

Extraction

Turn a document into structured fields

Identify what a document is

Produce a finished document from data

Look up supported types and formats

API endpoint

https://<api-host>

Use the API host configured for your workspace.

Your first call

One operation needs no credentials at all, which makes it a good way to prove connectivity before you introduce authentication as a variable:

curl "https://<api-host>/listSupportedDocuments"

A 200 with a JSON body of document types means you can reach the platform. Everything after that needs an API key.

Last updated