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-Mobid-Key: qk_your_api_key'
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
    }
  }
}

Available Plans

Basic

$79/month
  • 60 req/min
  • 50,000 daily API calls
  • Email support
  • 5 concurrent connections
Most Popular

Growth

$149/month
  • 1,000 req/min
  • 500,000 daily API calls
  • Priority support
  • 50 concurrent connections
  • Webhooks

Enterprise

$499/month
  • Custom rate limits
  • Unlimited API calls
  • Dedicated support
  • Custom integrations
  • SLA guarantee