⚡ 60-SECOND INTEGRATION

The credit score for AI agents.
One API call.

Know if a wallet is safe to transact with. Score any wallet, get a trust verdict, ship.

1
Get API key
2
Copy code
3
Score wallets
1
Get your free API key
🆕 10 free lookups/day — no credit card required. Upgrade anytime for higher volume.

Sign up at djdagentscore.dev/docs to get your API key instantly. You'll be scoring wallets in under a minute.

2
Make your first API call

Pick your language. Copy. Paste. Run. That's it.

# Score a wallet in one line curl "https://api.djdagentscore.dev/v1/score/0x7a3b1c9d2e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b" \ -H "Authorization: Bearer YOUR_API_KEY"
// npm install djd-agent-score-client import { AgentScore } from "djd-agent-score-client"; const client = new AgentScore({ apiKey: "YOUR_API_KEY" }); const result = await client.score("0x7a3b1c9d2e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b"); console.log(result.composite_score); // 84 console.log(result.safe_to_transact); // true console.log(result.tier); // "Trusted"
# pip install djd-agent-score from djd_agent_score import AgentScore client = AgentScore(api_key="YOUR_API_KEY") result = client.score("0x7a3b1c9d2e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b") print(result.composite_score) # 84 print(result.safe_to_transact) # True print(result.tier) # "Trusted"
$ npm i djd-agent-score-client 📋
$ pip install djd-agent-score 📋
3
Understand the response

Every response includes a composite score (0–100), a trust tier, a binary safe_to_transact flag, and a full breakdown across 5 scoring dimensions.

200 OK · GET /v1/score/0x7a3b...7a8b
142ms
{ "wallet": "0x7a3b1c9d...5e6f7a8b", "composite_score": 84, "tier": "Trusted", "confidence": 0.92, "safe_to_transact": true, "dimensions": { "payment_reliability": 91, // 30% weight - tx consistency "economic_viability": 78, // 25% weight - financial health "identity": 85, // 20% weight - sybil resistance "behavior": 71, // 15% weight - anomaly detection "capability": 88 // 10% weight - protocol depth }, "recommendation": "proceed" }
91
Payment
Reliability
78
Economic
Viability
85
Identity
71
Behavior
88
Capability

That's it. You're integrated.

Read the full docs for batch scoring, webhooks, and x402 micropayment support.

10 free lookups/day · No credit card · Live on Base L2