/v1/account/usage
Account Usage
Retrieve your current plan, monthly request limit, usage count, and remaining requests for the current billing period.
Request
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.postalkit.mx/v1/account/usage
Response
{
"data": {
"plan": "free",
"monthly_limit": 100,
"usage_count": 42,
"remaining": 58,
"period": "2026-08"
}
}