Requirements

Not sure if your endpoint qualifies? Just submit the URL below — we verify it live and tell you exactly what's missing.

Register your endpoint

Optional metadata (name, description, category, tags, contact)

Or use the API directly

Agents and scripts can register endpoints programmatically:

# Minimal — just the URL
curl -X POST https://api.x402dash.com/v1/register \
  -H "Content-Type: application/json" \
  -d '{"url": "https://your-api.com/endpoint"}'

# With metadata
curl -X POST https://api.x402dash.com/v1/register \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-api.com/endpoint",
    "name": "My DeFi Oracle",
    "description": "Real-time token prices on Base",
    "category": "DeFi/Crypto",
    "tags": ["defi", "oracle", "price-feed"],
    "contact": "dev@example.com"
  }'

Rate limit: 5 requests/hour per IP. Only url is required. The endpoint is verified live before insertion.

What happens after you submit