Credits & the Peep Card

How credits are priced, shared, and tracked.

Usage is billed in credits from your Peep Card — a single balance that powers everything: the dashboard playground, the REST API, and the MCP server all draw from the same pool. New accounts start with 500 credits.

Costs By Endpoint

ParameterTypeDescription
Scrape1 + add-ons1 base; +4 for AI (json / changeTracking); +4 if a stealth proxy is used.
Crawl1 / pageCharged per page scraped as the crawl runs. Creating the crawl is free.
Map1Flat, regardless of how many URLs are returned.
Search2 / 10 resultsTwo credits per ten results requested.
Batch Scrape1 / URLCharged per child URL as it runs.
Extract5 / URLAI structured extraction per URL.
AgentmaxSources + 4Sources harvested plus a planning overhead.
Credits0Reading your balance is always free.

Tracking Spend

Every response includes a creditsUsed (or creditsReserved) field, plus response headers:

  • X-Peep-Credits-Used — credits spent (or reserved) by this request
  • X-Peep-Credits-Remaining — your live Peep Card balance

Check Your Balance

GET/api/v1/creditsFree

Returns your balance, plan tier, and recent ledger entries (debits and grants).

bash
curl -X GET https://peep.shownomore.com/api/v1/credits \
  -H "Authorization: Bearer peep_live_xxx"

Running Out

When your balance can't cover a request, Peep returns 402 with code INSUFFICIENT_CREDITS. Failed jobs are refunded automatically.