DEVELOPERS · AGENTS · MACHINES

THE AGENT TOOLKIT

Everything on this site is available as structured data — no API keys, no auth, no rate limits beyond common sense. Read-only GETs, JSON everywhere, errors that tell you how to recover.

Quickstart

# discover the toolkit
curl https://itzpratham.in/api/agent?action=list

# find projects by skill
curl "https://itzpratham.in/api/agent?action=find_project&skill=gnn"

# full case study with receipts
curl "https://itzpratham.in/api/agent?action=get_project&slug=mindpulse-pro"

Endpoints

GET/api/agent?action=list

Discover every toolkit action and known project slugs. Start here.

curl https://itzpratham.in/api/agent?action=list

GET/api/agent?action=get_profile

Name, location, email, roles, headline stats.

curl "https://itzpratham.in/api/agent?action=get_profile"

GET/api/agent?action=find_project&skill=<term>

Search projects by skill/tech (matches title, blurb, stack, approach).

curl "https://itzpratham.in/api/agent?action=find_project&skill=onnx"

GET/api/agent?action=get_project&slug=<slug>

Full case study: problem, hard part, what shipped, impact, metrics, evidence. Slugs: mindpulse-pro, unified-dta, sentinel, omnisectester, itz-pratham-v2.

curl "https://itzpratham.in/api/agent?action=get_project&slug=mindpulse-pro"

GET/api/agent?action=compare_projects&slug=A&with=B

Two projects side by side: stacks, metrics, shared tech.

curl "https://itzpratham.in/api/agent?action=compare_projects&slug=mindpulse-pro&with=sentinel"

GET/api/agent?action=find_evidence&claim=<term>

Measured claims with their verification method (e.g. '20ms' → how it was measured).

curl "https://itzpratham.in/api/agent?action=find_evidence&claim=20ms"

GET/api/data

The entire typed content repository as one JSON document (cached 5 min).

curl https://itzpratham.in/api/data

GET/api/markdown?path=<path>

Any page as clean markdown — or just send Accept: text/markdown on any page URL.

curl -H "Accept: text/markdown" https://itzpratham.in/about

OpenAPI spec

Typed schema for every operation — function-calling ready.

/openapi.json

llms.txt guide

When to use this site, what's here, and where to look next.

/llms.txt

Markdown everywhere

Send Accept: text/markdown on any page URL for a markdown twin.

try it on /work

Privacy

Zero collection. The page agents check before recommending anyone.

/privacy

Error contract

Bad queries return HTTP 400/404 with { ok:false, code, error, hint }. The hint names the corrected query or the discovery endpoint — an agent should never dead-end here.