# Get dining offers

Fetch current public Zomato dining offers and promotions with normalized discount, validity, coupon, eligibility, and terms fields.

- Platform: [Zomato](https://docs.upscrape.com/docs/platforms/zomato)
- Capability ID: `zomato.restaurant.offers`
- 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": {
    "restaurant_id": "18439027"
  },
  "capability": "zomato.restaurant.offers"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `res_id` | `string` | No | Compatibility alias for restaurant_id. |
| `restaurant_id` | `string` | No | Canonical numeric Zomato restaurant identifier. |

### Example input

```json
{
  "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": 6,
  "fetched_at": "2026-09-24T08:48:44Z",
  "offers": [
    {
      "bank_offer": false,
      "description": "Valid from 2:45PM to 6PM today Booking required",
      "discount_type": "percentage",
      "discount_value": 25,
      "heading": "PRE-BOOK OFFER",
      "title": "Flat 25% OFF",
      "type": "dining_benefit",
      "valid_from_local": "2026-09-24T14:45:00",
      "valid_until_local": "2026-09-24T18:00:00",
      "zomato_gold_required": false
    },
    {
      "bank_offer": false,
      "description": "on bill payments",
      "discount_type": "percentage",
      "discount_value": 15,
      "heading": "INSTANT OFFER",
      "title": "Flat 15% OFF",
      "type": "dining_gold",
      "zomato_gold_required": true
    }
  ],
  "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` | 6 |
| `fetched_at` | `string` | 2026-09-24T08:48:44Z |
| `offers` | `array` | 2 items |
| `offers` | `array` | 2 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)
