Endpoint
GET /subscriptions/invoices
Authentication
Required.Response
Show child attributes
Show child attributes
Paddle transaction ID
Invoice number (or null)
Transaction status
Formatted amount (e.g., “$150.00”)
Amount in cents
Currency code (e.g., “USD”)
Billing date (ISO 8601)
Billing period start (or null)
Billing period end (or null)
Example
curl "https://api.mind-e.co/subscriptions/invoices" \
-H "Authorization: Bearer sk_live_your_key_here"
Response
{
"success": true,
"invoices": [
{
"transactionId": "txn_abc123",
"invoiceNumber": "INV-001",
"status": "completed",
"amount": "$150.00",
"amountRaw": 15000,
"currencyCode": "USD",
"billedAt": "2026-02-01T00:00:00Z",
"periodStart": "2026-02-01T00:00:00Z",
"periodEnd": "2026-03-01T00:00:00Z"
}
]
}