# TechForAGI Gateway public smoke examples # Discover the gateway curl -s https://techforagi.com/.well-known/agent.json # Load compact catalogs for LLM context curl -s -H "Accept: text/toon" https://api.techforagi.com/services.toon curl -s -H "Accept: text/toon" https://api.techforagi.com/pricing.toon curl -s -H "Accept: text/toon" https://api.techforagi.com/capabilities.toon # Quote before processing curl -s -X POST https://api.techforagi.com/quote \ -H "Content-Type: application/json" \ -d '{"service_id":"text.summarize","input_tokens_estimate":800}' # Process a mock request curl -s -X POST https://api.techforagi.com/process \ -H "Content-Type: application/json" \ -H "Accept: application/json" \ -d '{"service_id":"text.summarize","input":"TechForAGI Gateway is agent-native."}' # Validate MCP tools/list curl -s -X POST https://api.techforagi.com/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'