> ## Documentation Index
> Fetch the complete documentation index at: https://lava.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Jina Search

> Web search that returns clean, structured markdown from top results.

Web search that returns clean, structured markdown from top results. Best for research workflows that need readable search results, not just links. Unlike Serper (Google result links) or Brave (metadata), Jina Search returns extracted page content inline. Use jina\_reader to extract content from a specific URL.

1 example endpoint available through Lava's AI Gateway. See the [Jina Search API docs](https://docs.jina.ai) for full documentation.

<Info>Supports both **managed** (Lava's API keys) and **unmanaged** (bring your own credentials) mode.</Info>

<Info>This is a **catch-all provider** — any valid URL under `https://s.jina.ai` is supported. Search API: POST to [https://s.jina.ai](https://s.jina.ai) with a search query. The endpoints below are curated examples.</Info>

## Endpoints

### Search the web

**POST** `https://s.jina.ai/` — \$0.005 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://s.jina.ai/', { body: {"q":"your search query"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fs.jina.ai%2F" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"q":"your search query"}'
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
