POST
/
parsers
/
parse-document
curl --request POST \
  --url https://api.zeroentropy.dev/v1/parsers/parse-document \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "base64_data": "<string>"
}'
{
  "pages": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
base64_data
string
required

The document's raw data, as a base64-encoded string

Response

200
application/json
Successful Response
pages
string[]
required

The parsed pages. Each string will contain the full contents of a page.