## amazon/shop

`GET /v1/amazon/shop`

An Amazon shop page: the storefront profile, its posts (idea lists, photos, videos) and the products of its first idea list with prices and ratings.

*Amazon shop page*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | An Amazon shop (influencer storefront) page URL, or the shop name — e.g. `https://www.amazon.com/shop/tastemade` |
| `country` | no | Amazon marketplace — 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:** 14 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/amazon/shop?url=https%3A%2F%2Fwww.amazon.com%2Fshop%2Ftastemade" \
  -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
{
  "affiliate_status": "example",
  "count": 0,
  "country": "example",
  "description": "example",
  "handle": "example",
  "is_top_creator": false,
  "items": [
    {
      "asin": "example",
      "climate_pledge_friendly": false,
      "is_amazon_choice": false,
      "is_best_seller": false,
      "platform": "example",
      "price": 0,
      "rank": 0,
      "title": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "marketplace": {
    "country": "example",
    "domain": "example"
  },
  "name": "example",
  "platform": "example",
  "posts": [
    {
      "id": "example",
      "items_count": 0,
      "pinned": false,
      "thumbnail": "example",
      "title": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "posts_count": 0,
  "posts_cursor": "example",
  "products": [
    {
      "asin": "example",
      "climate_pledge_friendly": false,
      "is_amazon_choice": false,
      "is_best_seller": false,
      "platform": "example",
      "price": 0,
      "rank": 0,
      "title": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "products_of_post": "example",
  "url": "https://example.com/example"
}
```

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