Usage & Limits

Monitor your API usage and understand the limits for your plan. Usage resets monthly on your billing cycle date.

GET

/v1/usage

Retrieve your current usage statistics and plan limits.

Headers

HeaderValue
AuthorizationBearer YOUR_API_KEY

Example

curl https://api.parse.conversiontools.io/v1/usage \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "success": true,
  "usage": {
    "pages_used": 42,
    "pages_limit": 100,
    "reset_date": "2024-02-15T00:00:00Z",
    "plan": "free"
  }
}

Response Fields

FieldTypeDescription
pages_usedNumberPages processed in the current billing period
pages_limitNumberMaximum pages allowed per billing period
reset_dateStringISO 8601 date when usage resets
planStringCurrent plan name ("free" or "pro")

Plan Limits

PlanPages / MonthMax File SizeSchemas
Free10010 MB3
Pro2,50050 MBUnlimited

Rate Limiting

When you exceed your monthly page limit, API requests will return a 429 Too Many Requests response. Usage resets automatically on your monthly billing cycle date.

429 Rate Limited

{
  "success": false,
  "error": {
    "code": "RATE_LIMITED",
    "message": "Monthly page limit exceeded",
    "limit": 100,
    "used": 100,
    "reset_date": "2024-02-15T00:00:00Z"
  }
}

Need more pages?

Upgrade to the Pro plan for 2,500 pages per month, larger file size limits, and unlimited schemas. Upgrade now

Usage & Limits | Parse API Reference