Build OCR into your applications.

A programmatic interface to the same OCR pipeline that powers this workspace.

API Access — Coming Soon
Preview — not yet availablev1 (draft)

Request

POST /v1/documents
Authorization: Bearer <api_key>
Content-Type: multipart/form-data

file=@sample.pdf

Response

{
"document_id": "doc_123",
"file_name": "sample.pdf",
"status": "completed",
"total_pages": 32,
"pages": [
{
"page_number": 1,
"text": "OCR extracted text..."
},
{
"page_number": 2,
"text": "OCR extracted text..."
}
]
}

This page will become the API key management area once access opens.