## walmart/offers

`GET /v1/walmart/offers`

Every seller offering a Walmart item: seller, price, stock, condition, shipping and pickup, return policy.

*Walmart offers*

| Parameter | Required | Description |
| --- | --- | --- |
| `product_id` | yes | A Walmart item id or product URL — e.g. `609040889` |
| `country` | no | us or ca — e.g. `us` |
| `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/walmart/offers?product_id=609040889" \
  -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
{
  "count": 0,
  "has_more": false,
  "items": [
    {
      "availability": "example",
      "condition": "example",
      "currency": "example",
      "free_shipping": false,
      "fulfilled_by_walmart": false,
      "in_stock": false,
      "offer_id": "example",
      "offer_type": "example",
      "pickup_available": false,
      "position": 0,
      "price": 0,
      "price_display": "example",
      "return_policy": "example",
      "seller": "example",
      "seller_id": "example",
      "seller_type": "example",
      "storefront_url": "https://example.com/example"
    }
  ],
  "product_id": "example",
  "title": "example",
  "total_offers": 0,
  "url": "https://example.com/example"
}
```

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