| name | maiat-trust |
| description | Free trust score and token safety API for AI agents. Query agent reputation, detect honeypots/rug pulls, and gate swaps by trust — no API key required. |
| version | 0.9.0 |
| author | JhiNResH |
| tags | ["trust","reputation","agent-safety","token-check","rug-detection","erc-8004","base","free"] |
| homepage | https://github.com/JhiNResH/maiat-protocol |
| triggers | ["check agent trust score","is this agent trustworthy","verify agent reputation","check token safety","is this token a rug pull","token forensics","trust-gated swap"] |
| config | {"MAIAT_API_URL":{"description":"Maiat API endpoint (default: https://app.maiat.io)","default":"https://app.maiat.io"}} |
Maiat Trust — Agent & Token Trust Scores
Free, open trust infrastructure for agent-to-agent transactions. No API key needed — just query.
Pricing
Free to use. All API endpoints are open with no authentication required. The SDK and all contracts are open source (MIT).
For agent-to-agent commerce via ACP (Agent Commerce Protocol), optional paid offerings exist — see ACP Offerings at the bottom.
Use This When...
- "Is this agent trustworthy?"
- "Check the trust score for 0x..."
- "Is this token safe to buy?"
- "Run token forensics on [address]"
- "Get a trust-gated swap quote"
- "Show me the agent leaderboard"
API Endpoints (Free, No Auth)
Base URL: https://app.maiat.io/api/v1
Agent Trust Score
curl https://app.maiat.io/api/v1/agent/0x.../profile
Returns: trustScore (0-100), completionRate, paymentRate, totalJobs, verdict (trusted/caution/avoid).
Token Safety Check
curl -X POST https://app.maiat.io/api/v1/token/check \
-H "Content-Type: application/json" \
-d '{"address": "0x...", "chainId": 8453}'
Returns: verdict (safe/caution/avoid), flags (honeypot, highTax, unverified, rugPull).
Token Forensics (Deep Analysis)
curl -X POST https://app.maiat.io/api/v1/token/forensics \
-H "Content-Type: application/json" \
-d '{"address": "0x...", "chainId": 8453}'
Returns: ML-powered rug pull probability, holder concentration, liquidity analysis, contract risk flags.
Trust-Gated Swap
curl -X POST https://app.maiat.io/api/v1/trust/swap \
-H "Content-Type: application/json" \
-d '{"tokenIn": "0x...", "tokenOut": "0x...", "amountIn": "1000000", "chainId": 8453}'
Returns swap quote only if token passes safety check. Verdict=avoid → no calldata returned.
Agent Leaderboard
curl https://app.maiat.io/api/v1/agents?=trustScore&=50