curl https://api.okrapdf.com/v1/documents/doc-abc123/full.json \
-H "Authorization: Bearer okra_YOUR_KEY"
Content
Get Full JSON
Retrieve the entire document content as structured JSON.
GET
/
v1
/
documents
/
{id}
/
full.json
curl https://api.okrapdf.com/v1/documents/doc-abc123/full.json \
-H "Authorization: Bearer okra_YOUR_KEY"
Overview
Returns the full extracted document content as a single JSON object. Does not require authentication for public documents.Request
string
required
Document ID (e.g.
doc-abc123) or 6-char short hash.curl https://api.okrapdf.com/v1/documents/doc-abc123/full.json \
-H "Authorization: Bearer okra_YOUR_KEY"
Response (200)
{
"content": "{ ... full document JSON ... }"
}