Infrastructure for the Agent-to-Agent Economy. Verify wallet trustworthiness before autonomous transactions.
The Agent Trust Layer is a trust verification service that autonomous agents can query to assess the risk of interacting with any Ethereum or Base address before sending funds.
Content-Type: application/json
{
"address": "0x...",
"chain": "base",
"tx_hash": "0x..." // Optional: payment verification
}
Response:
{
"address": "0x...",
"risk_score": 75.0,
"trust_level": "high",
"classification": "whale",
"wallet_age_days": 892,
"eth_balance": 142.5,
"usdc_balance": 50000.0,
"transaction_count": 15432,
"is_contract": false
}
$1.00 USDC per API call (Base network)
First 100 calls FREE for development and integration.
Payment: x402 protocol (automatic) or manual USDC transfer.
Receiver: 0x19Ca5DbfCCa3E79007049A1708B4D69A42C00b4a
# Python agent integration
import requests
response = requests.post("https://your-tunnel.loca.lt/api/v1/profile", json={
"address": "0xCounterpartyAddress",
"tx_hash": "0xYourPaymentTxHash" # After free tier
})
data = response.json()
if data["trust_level"] == "high":
proceed_with_transaction()
else:
require_additional_verification()
This service implements the x402 payment protocol for automatic agent-to-agent payments.
Agents can discover pricing automatically via /.well-known/x402 and pay
without human intervention.
In an economy where AI agents transact autonomously, trust verification is essential. Agents need to verify who they're paying before sending funds. This service provides that verification layer.
Built for the Agent-to-Agent Economy.