Documentation Index
Fetch the complete documentation index at: https://mind-e.co/docs/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
GET /subscriptions/invoices
Authentication
Required.
Response
Formatted amount (e.g., “$150.00”)
Currency code (e.g., “USD”)
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"
}
]
}