Endpoints
The API is organized into three groups:- Documents — Build, validate, correct, and replicate GOBL documents.
- Signing — Sign and verify envelopes, or generate key pairs.
- Reference — Query available JSON schemas, tax regimes, and addons.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Build, validate, sign, and query tax-aware business documents via REST
https://gobl.dev/v0
curl -X POST https://gobl.dev/v0/build \
-H "Content-Type: application/json" \
-d '{
"data": {
"$schema": "https://gobl.org/draft-0/bill/invoice",
"series": "EXAMPLE",
"currency": "USD",
"issue_date": "2024-01-15",
"supplier": {
"name": "Seller Co.",
"tax_id": { "country": "US" }
},
"customer": {
"name": "Buyer Inc.",
"tax_id": { "country": "US" }
},
"lines": [
{
"quantity": "1",
"item": {
"name": "Service",
"price": "100.00"
}
}
]
}
}'