API CodexAPI Codex
WebsiteDashboardGet API Key
  • Documentation
  • All APIs
  • Changelog
Resources
  • Docs Home
  • API Catalog
  • API Codex Website
Platform
  • Get a free API key
  • Dashboard
  • APIs & Pricing

© 2026 API Codex. All rights reserved.

Information
Other endpoints
    Parse invoice from file uploadpostParse invoice from textpost
Schemas
powered by Zudoku
Invoice Parser API
Invoice Parser API

Other endpoints


Parse invoice from file upload

POST
https://api.apicodex.io/parser
/v1/parse/upload

Upload an invoice file to extract structured data

Parse invoice from file upload › Request Body

file
​string · required

Invoice file to parse (PDF, DOCX, JPEG, JPG, or PNG)

Parse invoice from file upload › Responses

Successfully parsed invoice

ParsedInvoiceResponse
success
​boolean · required

Indicates if the parsing was successful

Example: true
parsed_at
​string · date-time · required

Timestamp when the invoice was parsed

Example: 2025-05-13T08:15:32.000Z
​ParsedInvoice · required
POST/v1/parse/upload
curl 'https://api.apicodex.io/parser/v1/parse/upload?apikey=<api-key>' \ --request POST \ --header 'Content-Type: multipart/form-data' \ --form 'file=file'
Example Request Body
{ "file": "file" }
text
Example Responses
No example specified for this content type
application/json

Parse invoice from text

POST
https://api.apicodex.io/parser
/v1/parse/text

Submit raw invoice text for parsing

Parse invoice from text › Request Body

text
​string · required

Invoice text content

Parse invoice from text › Responses

Successfully parsed invoice

ParsedInvoiceResponse
success
​boolean · required

Indicates if the parsing was successful

Example: true
parsed_at
​string · date-time · required

Timestamp when the invoice was parsed

Example: 2025-05-13T08:15:32.000Z
​ParsedInvoice · required
POST/v1/parse/text
curl 'https://api.apicodex.io/parser/v1/parse/text?apikey=<api-key>' \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "text": "text" }'
Example Request Body
{ "text": "text" }
json
Example Responses
No example specified for this content type
application/json