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 receipt from file uploadpostParse receipt from textpost
Schemas
powered by Zudoku
Receipt Parser API
Receipt Parser API

Other endpoints


Parse receipt from file upload

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

Upload a receipt file to extract structured data

Parse receipt from file upload › Request Body

file
​string · required

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

Parse receipt from file upload › Responses

Successfully parsed receipt

ParsedReceiptResponse
success
​boolean · required

Indicates if the parsing was successful

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

Timestamp when the receipt was parsed

Example: 2025-05-13T07:40:48.000Z
​ParsedReceipt · 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 receipt from text

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

Submit raw receipt text for parsing

Parse receipt from text › Request Body

string

Raw receipt text content

Parse receipt from text › Responses

Successfully parsed receipt

ParsedReceiptResponse
success
​boolean · required

Indicates if the parsing was successful

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

Timestamp when the receipt was parsed

Example: 2025-05-13T07:40:48.000Z
​ParsedReceipt · required
POST/v1/parse/text
curl 'https://api.apicodex.io/parser/v1/parse/text?apikey=<api-key>' \ --request POST \ --header 'Content-Type: text/plain' \ --data 'string'
Example Request Body
string
text
Example Responses
No example specified for this content type
application/json