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

# Get Phone Info

> Get detailed information about a phone

Get detailed information about a specific phone, including screen dimensions.

## Request

```bash theme={null}
curl https://api.tapkit.ai/v1/phones/{phone_id}/info \
  -H "X-API-Key: joot_your_api_key"
```

### Path Parameters

| Parameter  | Type     | Description          |
| ---------- | -------- | -------------------- |
| `phone_id` | `string` | The phone identifier |

## Response

```json theme={null}
{
  "width": 1170,
  "height": 2532,
  "name": "iPhone 15 Pro",
  "unique_id": "00008030-001A2B3C4D5E6F"
}
```

## Response Fields

| Field       | Type      | Description             |
| ----------- | --------- | ----------------------- |
| `width`     | `integer` | Screen width in pixels  |
| `height`    | `integer` | Screen height in pixels |
| `name`      | `string`  | Device display name     |
| `unique_id` | `string`  | Hardware identifier     |

## Common Screen Dimensions

| Device              | Width | Height |
| ------------------- | ----- | ------ |
| iPhone 15 Pro Max   | 1290  | 2796   |
| iPhone 15 Pro       | 1179  | 2556   |
| iPhone 15           | 1179  | 2556   |
| iPhone 14 Pro Max   | 1290  | 2796   |
| iPhone 14 Pro       | 1179  | 2556   |
| iPhone SE (3rd gen) | 750   | 1334   |

## Example

```python theme={null}
import requests

phone_id = "abc123-def456"
response = requests.get(
    f"https://api.tapkit.ai/v1/phones/{phone_id}/info",
    headers={"X-API-Key": "joot_..."}
)
info = response.json()

print(f"Screen: {info['width']}x{info['height']}")
```

## Errors

### Phone Not Found

```json theme={null}
{
  "error": "PHONE_NOT_FOUND",
  "message": "No phone found with ID: abc123"
}
```

HTTP Status: `404 Not Found`
