Skip to main content

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

success
boolean
invoices
array

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"
    }
  ]
}