{"status":"ok","data":{"schema_version":"1.0","base_url":"https://agentshare.dev","auth":{"header":"X-API-Key","alternate":"Authorization: Bearer YOUR_KEY","signup_url":"https://agentshare.dev/signup","register_api":"POST /api/v1/auth/register"},"discovery":{"agent_json":"https://agentshare.dev/agent.json","protocol":"https://agentshare.dev/api/v1/protocol","for_agents":"https://agentshare.dev/for-agents"},"snippets":{"search":{"description":"Search products (requires API key)","curl":"curl -sS \"https://agentshare.dev/api/v1/search?q=jetson+nano&limit=5\" -H \"X-API-Key: YOUR_KEY\"","python":"import httpx\nurl = \"https://agentshare.dev/api/v1/search\"\nparams = {\"q\": \"jetson nano\", \"limit\": 5}\nheaders = {\"X-API-Key\": \"YOUR_KEY\"}\nr = httpx.get(url, params=params, headers=headers, timeout=30)\nr.raise_for_status()\nprint(r.json())","javascript":"const url = new URL(\"https://agentshare.dev/api/v1/search\");\nurl.searchParams.set(\"q\", \"jetson nano\");\nurl.searchParams.set(\"limit\", \"5\");\nconst res = await fetch(url, {\n  headers: { \"X-API-Key\": \"YOUR_KEY\" },\n});\nconsole.log(await res.json());"},"best_offer":{"description":"Cheapest in-stock offer for a query","curl":"curl -sS \"https://agentshare.dev/api/v1/offers/best?q=raspberry+pi+5\" -H \"X-API-Key: YOUR_KEY\""},"mcp_streamable_http":{"description":"MCP endpoint (same API key as REST)","url":"https://agentshare.dev/mcp","headers":["X-API-Key: YOUR_KEY","Authorization: Bearer YOUR_KEY"]},"register_free_key":{"description":"Create account + free tier key (100 req/month)","curl":"curl -sS -X POST \"https://agentshare.dev/api/v1/auth/register\" -H \"Content-Type: application/json\" -d '{\"email\":\"you@example.com\",\"password\":\"your-password\"}'"},"discovery_no_auth":{"curl":"curl -sS \"https://agentshare.dev/agent.json\""}}}}