mMoney Docs

Invoices

List invoices

GET /v2/api/invoices

Return a paginated list of invoices, most recent first.

Key permission: View All Transactions

Parameters

Name Type Description
min_price integer Minimum price in cents.
max_price integer Maximum price in cents.
start_date string Start date (ISO 8601).
end_date string End date (ISO 8601).
page integer Page number. Default 1.
page_size integer Items per page. Default 10.
curl -X GET "https://api.mmoneybb.com/merchant/v2/api/invoices" \
  -H "x-api-key: mm_api_key_XXXX"
Response
{
  "invoices": [
    {
      "invoice_id": 3244,
      "merchant_order_id": "order_123",
      "currency": "BBD",
      "price": 1000,
      "paid": 1000,
      "transaction_fee": 200,
      "ulid": "01HNG3V4T5CHMZ6GR3YHXDEG4P",
      "status": "confirmed",
      "created_at": "2026-01-01T00:00:00Z",
      "updated_at": "2026-01-01T00:00:00Z"
    }
  ],
  "page": 1,
  "total_pages": 10,
  "page_size": 10,
  "total_invoices": 100
}
Log in to test this endpoint against your live account.