GET
/
invoices
/
{id}
curl --request GET \
  --url https://api.antei.com/invoices/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "invoice_number": "<string>",
  "status": "draft",
  "contact_id": "<string>",
  "transaction_ids": [
    "<string>"
  ],
  "currency": "<string>",
  "amount": 123,
  "issue_date": "2023-12-25",
  "due_date": "2023-12-25",
  "metadata": {}
}

Use this endpoint to fetch detailed information for a specific invoice, including:

  • Invoice number, status, and currency
  • Associated contact and address
  • Line items with product and tax details
  • Payment and due information

Useful for building invoice detail views or auditing an individual invoice.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Invoice details

The response is of type object.