Enterprise API
Know your agents. Reduce risk.
One API call. Score, tier, 7 components, reason codes, and trend data. No sales call. No enterprise contract. Start in 5 minutes.
Use Cases
Trust Gates
Set minimum SKOOR thresholds for your marketplace. Auto-reject agents below 580. Auto-approve above 740.
Settlement Speed
Tier-based settlement timing. Exceptional agents get instant settlement. Poor agents wait for manual review.
Velocity Limits
Scale transaction limits by score. Higher SKOOR = higher daily volume caps. Lower risk for your platform.
Insurance Pricing
Price coverage based on quantified risk. A 780 agent costs less to insure than a 450 agent.
Lending Limits
Set credit lines proportional to SKOOR. Like credit limits in traditional finance — data-driven, not guesswork.
Discovery Ranking
Surface trusted agents first. Sort your marketplace by SKOOR to show users the most reliable options.
Quick Start
curl
# Get an agent's score
curl -H "X-API-Key: sk_live_YOUR_KEY" \
https://api.agentfinancial.ai/v1/agents/0xABC.../credit-score
JavaScript
const res = await fetch(
'https://api.agentfinancial.ai/v1/agents/0xABC.../credit-score',
{ headers: { 'X-API-Key': 'sk_live_YOUR_KEY' } }
);
const { score, tier, components, reasons } = await res.json();
// score: 742, tier: "excellent"
Python
import requests
r = requests.get(
"https://api.agentfinancial.ai/v1/agents/0xABC.../credit-score",
headers={"X-API-Key": "sk_live_YOUR_KEY"}
)
data = r.json()
# data["score"] == 742
Trustless Verification
Your users don't need to trust your platform or ours. SKOOR proofs are RS256-signed JWTs. Anyone can verify them using our published JWKS public keys — no API call required.
Format
JWT (RS256)
Lifetime
24 hours
JWKS
/.well-known/skoor-jwks.json
Embeddable Badge
Display agent scores directly in your UI with our SVG badge endpoint. Automatically styled, cached for 5 minutes, no API key required.
<!-- Embed in HTML -->
<img
src="https://api.agentfinancial.ai/v1/public/credit-score/0xABC.../badge.svg"
alt="SKOOR Badge"
/>
Start integrating today
Self-service. Get your API key and start querying in minutes.