🚀 Welcome! Spot an issue or have feedback? Let us know.
/document/{id}
: Manually fetch a single document’s parsed result/document/{id}
{
"id": "123456789",
"status": "PARSEDOK",
"result": "{\"order_id\":\"12345\",\"total\":199.99,\"items\":[{\"sku\":\"ABC\",\"qty\":2}]}"
}
GET /parser/{id}
returns links for CSV, JSON, and Excel:csv_download
json_download
xls_download
GET /parser/{id}/export_config
last_document_only=true
: return only the data from the most recent document.date=YYYY
or date=YYYY-MM
or date=YYYY-MM-DD
: return data for documents received in that UTC range.
/document/{id}
only if you can’t use webhooks; parse result with JSON.parse
, json.loads
, jq fromjson
or equivalent in your favorite language.