Getting Started
1. Create a new job (extract-document endpoint)
Command:
curl -X POST "https://waveline.ai/api/v1/extract-document" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVELINE_API_KEY" \
-d '{
"fileName": "invoice.pdf",
"contentType": "application/pdf",
"base64Content": "RGVhciBSZXNvcnQgQXJvbWEsCgpJ...",
"shape": [
{
"name": "total",
"type": "number",
"description": "Total amount due of the invoice",
"isArray": false
}
]
}' Output:
2. Get the result/status of this job (job endpoint)
Last updated