MetalTorque

One API for AI agents. Search, compute, and blockchain data unified. Stop juggling three services.

View API Status

Three Services, One Call

🔍 Web Search (Tavily)

Real-time web search with AI-powered answers. Get current information for your agent.

🧠 AI Inference (Together)

Access Llama, Mistral, and other models. Run inference without managing infrastructure.

⛓️ Blockchain Data (The Graph)

Query Uniswap, Aave, and any subgraph. Get on-chain data in milliseconds.

🧭 Intelligent Routing

Send natural language queries. We automatically route to the right service(s).

💾 Smart Caching

Repeated queries hit cache. Save money and reduce latency.

📊 Usage Analytics

Track your agent's queries, costs, and performance in real-time.

Simple Pricing

Web Search $0.02 / query
AI Inference ~$0.04 / query
Blockchain Data $0.002 / query
Multi-Service (Routed) ~$0.08 / query

Simple Integration

// One API call, intelligent routing
const response = await fetch("https://api.metaltorque.dev/query", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "x-api-key": "YOUR_API_KEY"
  },
  body: JSON.stringify({
    query: "What is the TVL of Uniswap and analyze DeFi trends?",
    tx_hash: "0x...",
    from_wallet: "0x...",
    amount: 0.10
  })
});

// Response includes search results + AI analysis + blockchain data
const { result, cost } = await response.json();