Resources

Billing & Usage

Track your API usage, manage invoices, and monitor spending across your MID integration.

Fetch Invoices

GET
/v1/service/billings

Retrieve billing history and invoices

Query Parameters

ParameterTypeDescription
periodstringBilling period: YYYY-MM format
statusstringFilter: paid, pending, overdue
pagenumberPage number (default: 1)
limitnumberResults per page (default: 20)
Fetch invoices
curl -X GET 'https://api.mobid.io/v1/service/billings?period=2025-01' \
  -H 'X-API-Key: mk_live_your_api_key' \
  -H 'X-Timestamp: 1717171717000' \
  -H 'X-Signature: <hmac-sha256 signature>'
Response
{
  "code": 200,
  "data": {
    "invoices": [
      {
        "id": "inv_abc123",
        "period": "2025-01",
        "amount": 149.00,
        "currency": "USD",
        "status": "paid",
        "paidAt": "2025-02-01T00:00:00Z",
        "items": [
          {"description": "Growth Plan", "amount": 149.00},
          {"description": "API Calls (42,350)", "amount": 0.00}
        ]
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 20,
      "total": 12
    }
  }
}

Usage Summary

GET
/v1/service/billings/usage

Get current period API usage breakdown

Response
{
  "code": 200,
  "data": {
    "period": "2025-01",
    "plan": "Growth",
    "usage": {
      "consents": { "used": 1250, "limit": 50000 },
      "authentications": { "used": 8420, "limit": 100000 },
      "verifications": { "used": 342, "limit": 5000 },
      "mandates": { "used": 89, "limit": 10000 }
    },
    "apiCalls": {
      "total": 42350,
      "dailyAverage": 1366
    }
  }
}

Plans

MID pricing is outcomes-based — you pay for verified results, not failed lookups. See the full pricing page for details.

Starter

Pay-as-you-go
  • Pay per verified result
  • Instant sandbox keys
  • Standard webhooks
  • Email support
Most Popular

Growth

Volume
  • Discounted at volume
  • Higher rate limits
  • Signed webhooks + retries
  • Priority support

Enterprise

Verification Insurance
  • Custom pricing
  • Test-backed performance terms
  • Deployment options
  • Dedicated support