> ## 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.

# Indexable

> Sandbox infrastructure for AI agents providing isolated virtual environments with snapshot and restore capabilities.

Sandbox infrastructure for AI agents providing isolated virtual environments with snapshot and restore capabilities. Best for agent workflows needing persistent, stateful execution environments that can be paused and resumed. Unlike RunTM (deployment-focused), Indexable specializes in VM-level sandboxing with snapshot capabilities for long-running agent tasks.

1 example endpoint available through Lava's AI Gateway. See the [Indexable API docs](https://ix.dev/docs) for full documentation.

<Warning>This provider requires your own credentials — connect your API key or OAuth account before use.</Warning>

<Info>This is a **catch-all provider** — any valid URL under `https://api.ix.dev` is supported. Sandbox infrastructure API. Construct URL as [https://api.ix.dev/\&#123;path\&#125](https://api.ix.dev/\&#123;path\&#125);. The endpoints below are curated examples.</Info>

## Endpoints

### Create a sandbox environment

**POST** `https://api.ix.dev/v1/sandboxes` — Free / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ix.dev/v1/sandboxes', { body: {"action":"create_sandbox"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ix.dev%2Fv1%2Fsandboxes" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"action":"create_sandbox"}'
    ```
  </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>
