One API for AI agents. Search, compute, and blockchain data unified. Stop juggling three services.
View API StatusReal-time web search with AI-powered answers. Get current information for your agent.
Access Llama, Mistral, and other models. Run inference without managing infrastructure.
Query Uniswap, Aave, and any subgraph. Get on-chain data in milliseconds.
Send natural language queries. We automatically route to the right service(s).
Repeated queries hit cache. Save money and reduce latency.
Track your agent's queries, costs, and performance in real-time.
// 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();