Skip to main content
GET https://v2-api.scrapegraphai.com/api/credits
Returns the current account balance, active plan, and per-job-type quotas (crawl, monitor).

Example request

curl -X GET https://v2-api.scrapegraphai.com/api/credits \
  -H "SGAI-APIKEY: $SGAI_API_KEY"

Example response

{
  "remaining": 750000,
  "used": 287,
  "plan": "Pro Plan",
  "jobs": {
    "crawl":   { "used": 0, "limit": 50 },
    "monitor": { "used": 0, "limit": 100 }
  }
}
FieldDescription
remainingCredits available for request-based endpoints (scrape, extract, search, crawl pages).
usedCredits consumed in the current billing cycle.
planActive subscription plan name.
jobs.crawl.used / .limitConcurrent crawl jobs active vs. plan cap.
jobs.monitor.used / .limitActive monitors vs. plan cap.
This is the quickest way to verify your API key is healthy — the call costs no credits and returns 200 on success.

Credit costs

EndpointCost
scrapePer-format base cost + +5 with stealth
extract5 + +5 with stealth
search2/result (no prompt) or 5/result (with prompt), times numResults, + +5 with stealth
crawl2 startup + per-page scrape cost
monitorPer-format base cost + +5 on change detected
See pricing for the full breakdown.