Invoice Extraction
We extract the necessary information to process invoices

Last updated
We extract the necessary information to process invoices

Last updated
[
{
"name": "first_name",
"type": "string",
"description": "The first name of the one who receives the bill.",
"isArray": false
},
{
"name": "last_name",
"type": "string",
"description": "The last name of the one who receives the bill.",
"isArray": false
},
{
"name": "total",
"type": "number",
"description": "Total amount to pay",
"isArray": false
}
]curl -X POST "https://waveline.ai/api/v1/extract-document" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"fileName": "invoice.pdf",
"contentType": "application/pdf",
"base64Content": "JVBERi0xLjMKMSAwIG9iago8PC9UeXBlL0NhdGF...",
"shape": YOUR_SHAPE
}'{
"id": "a5ecc735-c48e-43ea-a739-d42bfb19edb3"
"status": "CREATED";
"type": "extract";
"result": null
"urls": {
"get": "https://waveline.ai/api/v1/jobs/a5ecc735-c48e-43ea-a739-d42bfb19edb3";
}
}{
"id": "a5ecc735-c48e-43ea-a739-d42bfb19edb3"
"status": "FINISHED";
"type": "extract";
"result": {
"first_name": "Ben",
"last_name": "Timond",
"total": 330.75,
},
"urls": {
"get": "https://waveline.ai/api/v1/jobs/a5ecc735-c48e-43ea-a739-d42bfb19edb3";
}
}