Get Invoice
get
/v1/invoices/{invoice_id}Fetches a single invoice by its public id within the active workspace. Read only, no side effects. Returns 404 when the invoice is unknown or out of scope.
Requires a bearer token: Authorization: Bearer <token>.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| invoice_id | string <uuid> | Yes | Public UUID of the invoice.e.g. 11111111-0000-4000-8000-0000000000b1 |
Request
cURL
curl -X GET https://api.wellapp.ai/v1/invoices/{invoice_id} \
-H "Authorization: Bearer $WELL_API_TOKEN"Responses
200 — The requested invoice.
{
"data": {
"type": "invoice",
"id": "11111111-0000-4000-8000-0000000000b1",
"attributes": {
"reference_number": "ANT-2026-0412",
"issue_date": "2026-04-12",
"due_date": "2026-05-12",
"currency": "USD",
"document_type_code": "380",
"terms": "Net 30",
"status": "issued",
"billing_context": "subscription",
"description": "Claude API usage, April 2026",
"totals": {
"items_total": 1200,
"tax_total": 0,
"grand_total": 1200
},
"payment_status_value": "unpaid",
"override_version": 0,
"created_at": "2026-04-12T08:00:00Z",
"updated_at": "2026-04-12T08:00:00Z",
"deleted_at": null
},
"relationships": {
"issuer": {
"data": {
"type": "company",
"id": "22222222-0000-4000-8000-0000000000c1"
}
},
"receiver": {
"data": {
"type": "company",
"id": "22222222-0000-4000-8000-0000000000c2"
}
},
"invoice_items": {
"data": [
{
"type": "invoice_item",
"id": "33333333-0000-4000-8000-0000000000d1"
}
]
},
"payment_means": {
"data": []
}
}
}
}401 — Unauthorized
{
"code": "UNAUTHORIZED",
"status": 401,
"title": "Unauthorized",
"message": "See title.",
"meta": {
"trace_id": "a1b2c3",
"log_id": "a1b2c3"
}
}404 — Not found
{
"code": "NOT_FOUND",
"status": 404,
"title": "Not Found",
"message": "See title.",
"meta": {
"trace_id": "a1b2c3",
"log_id": "a1b2c3"
}
}