{"openapi":"3.1.0","info":{"title":"Agent Search Pro","version":"0.2.0","description":"Agent-native web search and multi-angle research synthesis paid per call in USDC on Base.","contact":{"email":"api@supersignal.tech","url":"https://github.com/AgentMindCloud/agent-search-pro/issues"},"x-guidance":"Use POST /api/search for a normal web search ($0.02). Use POST /api/synthesis when the task needs current results, recent developments, and counterpoints ($0.10). GET /api/sample?q=... is free."},"servers":[{"url":"https://aggregator-beta.vercel.app"}],"paths":{"/api/search":{"post":{"operationId":"webSearch","summary":"Search the live web","tags":["Paid agent search"],"x-payment-info":{"price":{"mode":"fixed","currency":"USD","amount":"0.02"},"protocols":[{"x402":{}}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"query":{"type":"string","minLength":1,"description":"The web search or research query"},"num":{"type":"integer","minimum":1,"maximum":10,"description":"Maximum search results (search only)"}},"required":["query"],"additionalProperties":false},"example":{"query":"x402 agent payments"}}}},"responses":{"200":{"description":"Paid result","content":{"application/json":{"schema":{"type":"object","properties":{"tool":{"type":"string"},"tier":{"type":"string"},"price_usd":{"type":"number"},"query":{"type":"string"},"results":{"type":"array","items":{"type":"object"}},"synthesis":{"type":"array","items":{"type":"object"}}},"required":["tool","tier","price_usd"]}}}},"400":{"description":"Invalid request"},"402":{"description":"Payment Required"},"500":{"description":"Upstream error"}}}},"/api/synthesis":{"post":{"operationId":"webSynthesis","summary":"Run a three-angle research synthesis","tags":["Paid agent search"],"x-payment-info":{"price":{"mode":"fixed","currency":"USD","amount":"0.10"},"protocols":[{"x402":{}}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"query":{"type":"string","minLength":1,"description":"The web search or research query"},"num":{"type":"integer","minimum":1,"maximum":10,"description":"Maximum search results (search only)"}},"required":["query"],"additionalProperties":false},"example":{"query":"x402 agent payments"}}}},"responses":{"200":{"description":"Paid result","content":{"application/json":{"schema":{"type":"object","properties":{"tool":{"type":"string"},"tier":{"type":"string"},"price_usd":{"type":"number"},"query":{"type":"string"},"results":{"type":"array","items":{"type":"object"}},"synthesis":{"type":"array","items":{"type":"object"}}},"required":["tool","tier","price_usd"]}}}},"400":{"description":"Invalid request"},"402":{"description":"Payment Required"},"500":{"description":"Upstream error"}}}},"/api/sample":{"get":{"operationId":"webSearchSample","summary":"Free three-result web search sample","security":[],"parameters":[{"in":"query","name":"q","required":true,"schema":{"type":"string","minLength":1}}],"responses":{"200":{"description":"Free sample","content":{"application/json":{"schema":{"type":"object","properties":{"tool":{"type":"string"},"tier":{"type":"string"},"price_usd":{"type":"number"},"query":{"type":"string"},"results":{"type":"array","items":{"type":"object"}},"synthesis":{"type":"array","items":{"type":"object"}}},"required":["tool","tier","price_usd"]}}}}}}}}}