## google_shopping/deals

`GET /v1/google_shopping/deals`

Discounted products for a query on Google Shopping with sale and original price, discount and store.

*Google Shopping deals*

| Parameter | Required | Description |
| --- | --- | --- |
| `query` | yes | Search terms — e.g. `laptop` |
| `location` | no | Country name (default United Kingdom) — e.g. `United Kingdom` |
| `language` | no | Language code — e.g. `en` |
| `min_price` | no | Lowest price — e.g. `100` |
| `max_price` | no | Highest price — e.g. `900` |
| `stores` | no | Store names, comma-separated — e.g. `argos,currys` |
| `limit` | no | Results, up to 120 — e.g. `40` |
| `page` | no | Page — e.g. `1` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/google_shopping/deals?query=laptop" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "checked_at": "2026-09-01T12:00:00Z",
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "currency": "example",
      "delivery": "example",
      "has_multiple_offers": false,
      "id": "example",
      "images": [],
      "on_sale": false,
      "original_price": 0,
      "platform": "example",
      "price": 0,
      "rank": 0,
      "rating": {
        "max": 0,
        "value": 0,
        "votes": 0
      },
      "return_policy": "example",
      "seller": "example",
      "title": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "page": 0,
  "query": "example",
  "sponsored": []
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/google_shopping/deals#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/google_shopping/deals.json)
