# Get menu images

Fetch Zomato menu image groups/pages; this is not the structured orderable-dish menu.

- Platform: [Zomato](https://docs.upscrape.com/docs/platforms/zomato)
- Capability ID: `zomato.restaurant.menu_images`
- Cost: 1 credit per request
- Maximum runtime: 30 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer $UPSCRAPE_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "limit": 50,
    "restaurant_id": "18439027"
  },
  "capability": "zomato.restaurant.menu_images"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `limit` | `integer` | No | Maximum image-menu records to return. |
| `res_id` | `string` | No | Compatibility alias for restaurant_id. |
| `restaurant_id` | `string` | No | Canonical numeric Zomato restaurant identifier. |

### Example input

```json
{
  "limit": 50,
  "restaurant_id": "18439027"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "count": 3,
  "fetched_at": "2026-09-24T08:48:44Z",
  "items": [
    {
      "description": "12 pages",
      "image_url": "https://b.zmtcdn.com/data/menus/027/18439027/a7d208532a2d9c1a8325f20cb3a2ad10.jpg?fit=around%7C200%3A200&crop=200%3A200%3B%2A%2C%2A",
      "name": "Food Menu"
    },
    {
      "description": "3 pages",
      "image_url": "https://b.zmtcdn.com/data/menus/027/18439027/c19f0a48456e769889af9776b2a7593b.jpg?fit=around%7C200%3A200&crop=200%3A200%3B%2A%2C%2A",
      "name": "Bar Menu"
    },
    {
      "description": "1 page",
      "image_url": "https://b.zmtcdn.com/data/menus/027/18439027/56e46872d82d84bcd8876e9cd04e053a.jpg?fit=around%7C200%3A200&crop=200%3A200%3B%2A%2C%2A",
      "name": "Beverages"
    }
  ],
  "res_id": "18439027",
  "restaurant_id": "18439027"
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `count` | `integer` | 3 |
| `fetched_at` | `string` | 2026-09-24T08:48:44Z |
| `items` | `array` | 3 items |
| `items` | `array` | 3 items |
| `res_id` | `string` | 18439027 |
| `restaurant_id` | `string` | 18439027 |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
