Skip to main content
GET
/
invoices
/
{invoice_id}
Retrieve an invoice
curl --request GET \
  --url https://panel.sendcloud.sc/api/v3/invoices/{invoice_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": {
    "id": 5501,
    "reference": "INV-2026-000123",
    "created_at": "2026-05-31T00:00:00Z",
    "due_date": "2026-06-30T00:00:00Z",
    "price_taxable": {
      "value": "1240.5000",
      "currency": "EUR"
    },
    "price_non_taxable": {
      "value": "0.0000",
      "currency": "EUR"
    },
    "tax": {
      "value": "260.5050",
      "currency": "EUR"
    },
    "description": "Shipping charges — May 2026",
    "category": "transactional",
    "issuer": {
      "business_name": "Sendcloud B.V.",
      "address": "Stationsplein 32",
      "postal_code": "5611 AC",
      "city": "Eindhoven",
      "country_name": "Netherlands",
      "vat_id": "NL852587582B01",
      "coc_id": "57500015"
    }
  }
}

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Path Parameters

invoice_id
integer
required

The id of the invoice.

Response

OK

Retrieve invoice

data
Invoice · object
required

An invoice issued to your Sendcloud account.