v1
latestOpenAPI 3.1.0AGPL-3.0-only2026-07-1773264353.7 KBInvoices
Get invoice
Retrieve a single invoice with its payment transactions.
get/api/v1/invoices/{invoice_id}
Path parameters
invoice_idstring MeteroidId required
Example:inv_7n42DGM5Tflk9n8mt7Fhc7
Invoice ID
Response
Invoice details
Example response
{
"currency": "EUR",
"customer_details": {
"billing_address": {
"country": "US"
},
"id": "cus_7n42DGM5Tflk9n8mt7Fhc7"
},
"customer_id": "cus_7n42DGM5Tflk9n8mt7Fhc7",
"id": "inv_7n42DGM5Tflk9n8mt7Fhc7",
"subscription_id": "sub_7n42DGM5Tflk9n8mt7Fhc7",
"transactions": [
{
"id": "pay_7n42DGM5Tflk9n8mt7Fhc7",
"payment_method_id": "pm_7n42DGM5Tflk9n8mt7Fhc7"
}
]
}