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

# Interrupt

> Interrupt the agent's current work

Interrupt a running session's agent. The agent stops its current action and waits for further instructions.

## Request

```bash theme={null}
curl -X POST https://api.tapkit.ai/v1/sessions/{session_id}/interrupt \
  -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}/interrupt",
    headers={"X-API-Key": "joot_..."}
)
```

## Related Endpoints

* [Send Message](/api-reference/sessions/send-message) - Send new instructions after interrupting
* [Pause](/api-reference/sessions/pause) - Pause the session sandbox
* [Stop](/api-reference/sessions/stop) - Kill the session entirely
