Call multiple APIs in a single request. All calls execute concurrently.
POST /api/v1/proxy/batch
{
"calls": [
{ "api": "exchange-rates" },
{ "api": "restcountries", "path": "all" },
{ "api": "open-meteo-weather", "method": "GET", "params": { "latitude": 37.5 } }
]
}// AI Agents can use the batch_call_apis MCP tool
batch_call_apis({
calls: [
{ api: "exchange-rates" },
{ api: "cat-facts" }
],
apitree_token: "nxs_live_xxx"
})