1. Get an API key
Sign up at agentscore.sh to get your API key. The free tier gives you 50 requests toGET /v1/reputation (grade + score) at 1 request per second.
2. Look up a wallet
Make a GET request to the reputation endpoint with any wallet address; EVM (0x... hex) or Solana (base58):
3. Read the response
Response abbreviated; see GET /v1/reputation for the full format.score.value: Operator-level trust score from 0 to 100score.grade: Letter grade (A/B/C/D/F) for quick evaluationchains[].score: Per-chain score (full dimensions on Pro tier)chains[].classification: Per-chain entity type and classification
4. Make a trust decision (paid plan)
On a paid plan (pricing), usePOST /v1/assess to get an explicit allow/deny decision:
decision field (abbreviated; see POST /v1/assess for the full format):
5. Enforce in your application
This is a minimal raw-API integration. For production merchants, use AgentScore Commerce (Node.js) or AgentScore Commerce (Python); they ship a drop-in identity gate that auto-routes fixable compliance reasons (
kyc_required, kyc_pending, kyc_failed) into a self-service verification flow (mints a session, returns verify_url + poll_secret, agent polls for a fresh operator_token), and surfaces contact_support for unfixable reasons (sanctions_flagged, age_insufficient, jurisdiction_restricted). The raw decision === "deny" example above collapses every denial into a single bare 403, which works for prototyping but loses the structured agent-recovery contract.Next steps
Agent Commerce Quickstart
Merchant side: drop-in AgentScore Gate middleware, Martin Estate as the worked example.
Agent Identity Integration
Agent side: which identity header to send, handling denials, memory contract.
AgentScore SDK (TypeScript)
Official Node.js / TypeScript client.
AgentScore SDK (Python)
Official Python client with async support.
AgentScore Commerce (Node.js)
Identity middleware + payment helpers + 402 builders for Hono, Express, Fastify, Next.js, and Web Fetch.
AgentScore Commerce (Python)
Identity middleware + payment helpers + 402 builders for FastAPI, Flask, Django, AIOHTTP, and Sanic.
AgentScore Pay; MCP Server
Add trust lookups to Claude and Cursor.
API Reference
Full endpoint documentation.