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

# Resume Session

> Resume a paused session

Resume a paused session. The sandbox restarts and the agent continues executing from where it left off.

## Request

```bash theme={null}
curl -X POST https://api.tapkit.ai/v1/sessions/{session_id}/resume \
  -H "X-API-Key: joot_your_api_key"
```

### Path Parameters

| Parameter    | Type     | Description            |
| ------------ | -------- | ---------------------- |
| `session_id` | `string` | The session identifier |

## Response

**Status: 204 No Content**

No response body.

## Examples

### Python

```python theme={null}
import requests

requests.post(
    f"https://api.tapkit.ai/v1/sessions/{session_id}/resume",
    headers={"X-API-Key": "joot_..."}
)
```

## Related Endpoints

* [Pause](/api-reference/sessions/pause) - Pause a running session
* [Get Session](/api-reference/sessions/get-session) - Check session status
* [Get Events](/api-reference/sessions/get-events) - See what the agent does after resuming
