AI-native deep research and search API for finding, extracting, and analyzing information across the web.
AI-native deep research and search API for finding, extracting, and analyzing information across the web. Use when a workflow needs verified factual answers, structured data extraction from URLs, or automated research tasks that go beyond simple search. Tasks and findall are async with polling.4 endpoints available through Lava’s AI Gateway. See the Parallel API docs for full documentation.
Supports both managed (Lava’s API keys) and unmanaged (bring your own credentials) mode.
const data = await lava.gateway('https://api.parallel.ai/v1/tasks/runs', { body: {"task":"Find all Series A funding rounds in Q1 2026"} });
curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.parallel.ai%2Fv1%2Ftasks%2Fruns" \ -H "Authorization: Bearer $LAVA_SECRET_KEY" \ -H "Content-Type: application/json" \ -d '{"task":"Find all Series A funding rounds in Q1 2026"}'