{"name":"AgentGate","description":"Pay-per-call micro-APIs for AI agents. No accounts, no API keys — pay per request with USDC on Base via the x402 protocol.","payment":{"protocol":"x402","network":"eip155:8453","asset":"USDC","payTo":"0xe9f84980400e8152173acc44a049e0ccc86eea47"},"endpoints":[{"method":"GET","path":"/api/extract","params":{"url":"http(s) URL to read"},"price":"$0.005","tags":["web-scraping","content-extraction","markdown","research"],"description":"Web content extraction: fetch any public URL and get clean readable text, title, meta description, OpenGraph data, headings, links and word count as JSON. Built for AI agents that need web page content without HTML noise.","example":"/api/extract?url=https://example.com/article","input":{"url":"https://example.com/article"},"inputSchema":{"properties":{"url":{"type":"string","description":"http(s) URL of the page to extract"}},"required":["url"]},"outputExample":{"url":"https://example.com/article","title":"Example article","description":"…","headings":["…"],"text":"Clean readable text…","wordCount":1240,"links":[{"text":"…","href":"…"}]}},{"method":"GET","path":"/api/airport","params":{"code":"IATA (3-letter) or ICAO (4-letter) airport code"},"price":"$0.002","tags":["aviation","travel","airport-data","geo"],"description":"Airport lookup: IATA/ICAO code to airport name, coordinates, elevation, country, region, municipality, size and scheduled-service flag. Covers 49,000+ airports worldwide (OurAirports data).","example":"/api/airport?code=DXB","input":{"code":"DXB"},"inputSchema":{"properties":{"code":{"type":"string","description":"3-letter IATA or 4-letter ICAO airport code"}},"required":["code"]},"outputExample":{"icao":"OMDB","iata":"DXB","name":"Dubai International Airport","lat":25.2528,"lon":55.3644,"elevationFt":62,"country":"AE","region":"AE-DU","municipality":"Dubai","type":"large","scheduledService":true}},{"method":"GET","path":"/api/route","params":{"from":"IATA/ICAO code","to":"IATA/ICAO code"},"price":"$0.002","tags":["aviation","travel","distance","logistics"],"description":"Airport-to-airport route info: great-circle distance in km/nm/mi plus estimated flight time between any two of 49,000+ airports. Useful for travel planning, logistics and aviation agents.","example":"/api/route?from=JFK&to=LHR","input":{"from":"JFK","to":"LHR"},"inputSchema":{"properties":{"from":{"type":"string","description":"origin IATA/ICAO code"},"to":{"type":"string","description":"destination IATA/ICAO code"}},"required":["from","to"]},"outputExample":{"from":{"iata":"JFK"},"to":{"iata":"LHR"},"distance":{"km":5540,"nm":2991,"mi":3442},"estimatedFlightTime":{"hours":7.09,"formatted":"7h 06m"}}},{"method":"GET","path":"/api/dns","params":{"domain":"domain name to inspect"},"price":"$0.002","tags":["dns","domain-intelligence","security","enrichment"],"description":"Domain DNS intelligence: A/AAAA/CNAME/MX/NS/TXT records with TTLs plus a summary (resolves, mail configured, SPF policy, site-verification tokens). Useful for domain research, lead enrichment and security agents.","example":"/api/dns?domain=openai.com","input":{"domain":"openai.com"},"inputSchema":{"properties":{"domain":{"type":"string","description":"domain name to inspect"}},"required":["domain"]},"outputExample":{"domain":"openai.com","records":{"A":[{"name":"openai.com","ttl":300,"value":"…"}]},"summary":{"resolves":true,"hasMx":true,"spf":"v=spf1 …","verifications":[]}}}]}