Agent Trust Layer

Infrastructure for the Agent-to-Agent Economy. Verify wallet trustworthiness before autonomous transactions.

For autonomous agents: This service is designed to be called programmatically by AI agents to verify counterparties before executing payments, trades, or contracts.

What This Is

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.

API Endpoints

POST /api/v1/profile
Analyze a wallet and return trust metrics.
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
}
GET /.well-known/x402
Automatic payment discovery for x402-compatible agents.
GET /health
Service status and x402 configuration.

Pricing

$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

Integration Example

# 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()

x402 Protocol Support

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.

Why This Matters

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.