ScamVerify™

Quotas

Understand per-channel monthly quotas for the ScamVerify™ API, including how quota is tracked, grace buffers, and tips for managing usage.

The ScamVerify™ API uses per-channel monthly quotas to manage usage. Each channel (phone, URL, text, email) has its own independent quota that resets at the start of each billing period.

Monthly Quotas by Plan

PlanPhoneURLTextEmailPrice
Free50502525$0/mo
Starter1,0001,000500500$149/mo
Professional3,0003,0001,5001,500$499/mo
Business10,00010,0005,0005,000$1,499/mo
Scale25,00025,00012,50012,500$2,999/mo

Quota Headers

Every API response includes headers showing your current quota usage for the channel you called:

HeaderDescriptionExample
X-Quota-Phone-UsedPhone lookups consumed this period142
X-Quota-Phone-LimitPhone lookup quota for your plan1000
X-Quota-Url-UsedURL verifications consumed this period87
X-Quota-Url-LimitURL verification quota for your plan1000
X-Quota-Text-UsedText analyses consumed this period23
X-Quota-Text-LimitText analysis quota for your plan500
X-Quota-Email-UsedEmail analyses consumed this period11
X-Quota-Email-LimitEmail analysis quota for your plan500

Only the headers relevant to the channel you called are included in the response. A phone lookup response will include X-Quota-Phone-Used and X-Quota-Phone-Limit.

Quota Exhausted (402 Response)

When your quota is exhausted for a channel, the API returns a 402 Payment Required response:

{
  "error": {
    "code": "quota_exhausted",
    "message": "Phone lookup quota exhausted. 1,000 of 1,000 used this period.",
    "details": {
      "channel": "phone",
      "used": 1000,
      "limit": 1000,
      "resets_at": "2026-04-01T00:00:00Z"
    },
    "upgrade_url": "https://scamverify.ai/pricing"
  }
}

Do not retry 402 responses. They will not succeed until your quota resets or you upgrade your plan.

Grace Buffer

Paid plans include a 10% grace buffer above the stated quota. This allows your integration to complete in-flight requests when you are near the limit, rather than failing abruptly.

PlanPhone QuotaWith Grace Buffer
Free5050 (no buffer)
Starter1,0001,100
Professional3,0003,300
Business10,00011,000
Scale25,00027,500

The grace buffer applies to all channels. Free tier does not receive a grace buffer.

Cached Lookups Do Not Consume Quota

When the API returns a cached result (indicated by "cached": true in the response), no quota is consumed. This is an important cost optimization: if you look up the same phone number or URL multiple times within the 24-hour cache window, only the first lookup counts against your quota.

Quota Reset

Quotas reset at the start of each billing period. For paid plans, this aligns with your Stripe billing cycle. For free plans, quotas reset on the 1st of each month at midnight UTC.

Checking Remaining Quota

You can check your current quota usage across all channels at any time using the usage endpoint:

curl https://scamverify.ai/api/v1/usage \
  -H "Authorization: Bearer sv_live_abc123..."

Response:

{
  "plan": "professional",
  "billing_period": {
    "start": "2026-03-01T00:00:00Z",
    "end": "2026-04-01T00:00:00Z"
  },
  "quotas": {
    "phone": { "used": 142, "limit": 3000 },
    "url": { "used": 87, "limit": 3000 },
    "text": { "used": 23, "limit": 1500 },
    "email": { "used": 11, "limit": 1500 }
  }
}

Tips for Managing Quota

  1. Monitor usage proactively - Call the /usage endpoint periodically and set up internal alerts when you reach 80% of your quota.

  2. Let caching work for you - Avoid using force_refresh unless you specifically need fresh data. Cached lookups are free and do not count against quota.

  3. Use batch endpoints wisely - A batch request with 50 items consumes 50 quota (one per item), not 1. Batch endpoints save on rate limits, not quota.

  4. Separate test and live traffic - Use sv_test_ keys during development so you do not burn through your production quota.

  5. Upgrade before hitting limits - The grace buffer is a safety net, not extra capacity. If you consistently need more lookups, upgrade your plan.

On this page