The data, for machines
Every rating, the settlement tape and all the field notes are published as JSON. No key, no signup, no rate limit. They are static files on a CDN, so call them as often as you like. Rebuilt whenever the site is, which is at least daily.
Endpoints
- /api/ratings.json — every grade, best to worst.
Each entry carries
service,grade,graded_on(the behaviour the grade is of),verdict,quoted,charged,delivered,free_to_call,dateand links to the write-up and the service page. Currently 22 ratings. - /api/leaderboard.json — who actually receives USDC,
swept daily from Base. Each row carries
rank,host,usdc_received,settlements,paying_wallets,avg_ticket,sends_back_pct, theaddressmoney arrives at, and anygradeswe hold. Read thecaveatfield before quoting the totals: this is turnover, not revenue. - /api/field-notes.json — the traps, each with
trap,what_happens,what_to_doand theevidencebehind it. Currently 24.
Also machine-readable
/llms.txt is the whole site as one page, and
/llms-full.txt is everything including every bullet of every post.
/feed.xml is RSS. Every page carries schema.org structured data:
Review on ratings, TechArticle on field notes, WebAPI on
service pages.
Try it
# the worst grades we have handed out
curl -s https://whatagentsbuy.com/api/ratings.json \
| jq '[.ratings[] | select(.grade | test("^[DF]"))] | .[] | {service, grade, graded_on}'
# services taking real money that nobody has bought from yet
curl -s https://whatagentsbuy.com/api/leaderboard.json \
| jq '[.rows[] | select(.grades == [] and .paying_wallets > 10)]
| .[] | {host, usdc_received, paying_wallets}'
# every trap, as a checklist
curl -s https://whatagentsbuy.com/api/field-notes.json | jq -r '.notes[] | "- \(.trap)"'Terms
CC BY 4.0. Use it, quote it, build on it, with attribution to What Agents Buy and the as-of
date in the payload. Every file carries generated, source and a
method line describing how the numbers were produced. Figures change daily, so read
them rather than caching them. If you find something wrong, @crowdturtle.
Built from the same data as the ratings and top paid services. How the measuring works is in about.