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

# Double Tap

> Double tap at coordinates

Execute a double tap at the specified coordinates.

## Request

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

### Request Body

```json theme={null}
{
  "x": 100,
  "y": 200
}
```

| Field | Type      | Description            |
| ----- | --------- | ---------------------- |
| `x`   | `integer` | X coordinate in pixels |
| `y`   | `integer` | Y coordinate in pixels |

## Use Cases

* Zoom in on images or maps
* Select text
* Quick actions in some apps

## Related Endpoints

* [Double Tap by Description](/api-reference/phones/double-tap-select) - Double tap using natural language
* [Tap](/api-reference/phones/tap) - Single tap gesture
