GL API converts messy text into schema-safe JSON — so your Make/Zapier workflows don’t break when the model changes its formatting. Includes confidence scoring, usage limits and predictable structure.
null.confidence score (0–1)./me/usage).curl -X POST https://ai-extract-api.onrender.com/extract \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Rechnung Nr. 2026-001 von ACME GmbH vom 2026-02-01. Gesamt: 249,90 EUR. Fällig: 2026-02-15.",
"schema": {
"company": null,
"invoice_number": null,
"date": null,
"due_date": null,
"amount_total": null,
"currency": null
},
"language": "de"
}'
{
"data": {
"company": "ACME GmbH",
"invoice_number": "2026-001",
"date": "2026-02-01",
"due_date": "2026-02-15",
"amount_total": 249.9,
"currency": "EUR"
},
"warnings": [],
"confidence": 1.0,
"model": "gpt-4.1-mini"
}
Stripe automation can be added once there is steady demand. Early access is manual key issuance.
GL API keyYOUR_API_KEY plus your plan and monthly limit.
Authorization: Bearer YOUR_API_KEY with /extract and /me/usage.GET /health returns {"ok": true}.