POST
/
parse
/
upload
curl --request POST \
  --url https://api.invaro.ai/api/v1/parse/upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'files=[
  null
]'
{
  "success": true,
  "data": {
    "files": [
      {
        "file_id": "1739260380783576729_invoice3.pdf",
        "file_url": "https://wssbebkqiavijahjhako.supabase.co/storage/v1/object/public/invoices/1739260380783576729_invoice3.pdf",
        "doc_id": "f663d9ac-6d5b-4cfe-bf30-ac19ad9429e4"
      }
    ],
    "status": "done"
  }
}

This /upload endpoint is now considered legacy but remains fully functional for backward compatibility. We recommend migrating to the new Files API for enhanced features and better file management.

Authorizations

Authorization
string
header
required

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

Body

multipart/form-data

Response

200
application/json

Files uploaded successfully

The response is of type object.