v49

latestOpenAPI 3.1.0Proprietaryraw.githubusercontent.com2026-02-185890337.1 KB
Limits

Get account rate limits and send limits

Returns current rate limit and send limit information for your account.

This endpoint is the recommended way to check your account's operational limits. Use /usage endpoints for historical usage analytics.

Response includes:

  • rateLimit - API request rate limit (requests per second)
  • sendLimit - Email sending limit (emails per hour)
  • billing - Credit balance and auto-recharge configuration

Notes:

  • This request counts against your rate limit
  • sendLimit may be null if the service is temporarily unavailable
  • billing is null if billing is not configured
  • Send limit resets at the top of each hour
get/limits

Response

Account rate limits and send limits

successtrue required

Example response

{
  "data": {
    "rateLimit": {
      "limit": 10,
      "remaining": 8,
      "reset": 1705312260,
      "period": "second"
    },
    "sendLimit": {
      "limit": 100,
      "used": 42,
      "remaining": 58,
      "usagePercent": 42,
      "period": "hour",
      "resetsAt": "2024-01-15T11:00:00.000Z"
    },
    "billing": {
      "creditBalance": "25.50",
      "creditBalanceCents": 2550,
      "autoRecharge": {
        "enabled": true,
        "threshold": "5.00",
        "amount": "20.00"
      },
      "hasPaymentMethod": true
    }
  },
  "meta": {
    "requestId": "req_V1StGXR8_Z5jdHi6"
  }
}