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

# Flick

> Quick swipe gesture

Execute a flick (quick swipe) gesture in a direction.

## Request

```bash theme={null}
curl -X POST https://api.tapkit.ai/v1/phones/{phone_id}/flick \
  -H "X-API-Key: joot_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"x": 500, "y": 1000, "direction": "up"}'
```

### Request Body

```json theme={null}
{
  "x": 500,
  "y": 1000,
  "direction": "up"
}
```

| Field       | Type      | Description                              |
| ----------- | --------- | ---------------------------------------- |
| `x`         | `integer` | Starting X coordinate                    |
| `y`         | `integer` | Starting Y coordinate                    |
| `direction` | `string`  | `"up"`, `"down"`, `"left"`, or `"right"` |

## Use Cases

* Scroll through lists
* Navigate between pages
* Dismiss notifications

## Related Endpoints

* [Flick by Description](/api-reference/phones/flick-select) - Flick using natural language
