# x402 Agentic Market > Browse and call x402-enabled services — no API keys, no accounts, pay per request. > Dashboard: https://agentic.market > Docs: https://docs.cdp.coinbase.com/x402/welcome ## How it works Every service listed here is callable onchain via the x402 payment protocol. Your agent sends a standard HTTP request with a payment header — no registration, no API keys, no rate limits. Payment is settled per-request in USDC. ## Agentic Wallet Install the CLI to give your agent a funded wallet: $ npx @coinbase/agenticwallet ## API Discover all services: GET https://agentic.market/v1/services Search services by name or keyword: GET https://agentic.market/v1/services/search?q={query} Both return JSON with service name, description, category, networks, endpoints (with method, URL, and USDC pricing), and quality metrics. ## Example response ```json { "services": [ { "id": "exa", "name": "Exa", "description": "AI-powered web search", "category": "Search", "networks": ["base"], "endpoints": [ { "url": "https://api.exa.ai/search", "method": "POST", "description": "Search the web", "pricing": { "amount": "0.003", "currency": "USDC" } } ] } ] } ```