post/ocr

Ocr

Request body

multipart/form-data — send the request body as form fields, not JSON.
Request example
{
  "file": "<binary file>"
}

Responses

200Successful Response
Example · 200
{
  "text": "<Text>",
  "filename": "<Filename>",
  "file_type": "<File Type>",
  "page_count": 0,
  "model": "<Model>"
}
422Validation Error
Example · 422
{
  "detail": [
    {
      "loc": [
        null
      ],
      "msg": "<Message>",
      "type": "<Error Type>"
    }
  ]
}

Code samples

Generated from the live OpenAPI spec. Replace $SAVITAR_API_KEY with a key from your dashboard.

curl -X POST "https://redactra-api-direct-yjxsqk46ja-el.a.run.app/ocr" \
  -H "Authorization: Bearer $SAVITAR_API_KEY"
  -F "file=@/path/to/document.pdf"