# Product reviews

Retrieve normalized Meesho ratings and reviews without reviewer identity fields.

- Platform: [Meesho Catalog](https://docs.upscrape.com/docs/platforms/meesho)
- Capability ID: `meesho.product.reviews`
- Cost: 1 credit per request
- Maximum runtime: 45 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": 5,
    "product_id": "6dy8dt"
  },
  "capability": "meesho.product.reviews"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `cursor` | `string` | No | Continuation cursor returned by a previous request. |
| `limit` | `integer` | No | Maximum number of results to return. From 1 to 100. |
| `product_id` | `string` | Yes | Product identifier. |

### Example input

```json
{
  "limit": 5,
  "product_id": "6dy8dt"
}
```

## 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
{
  "next_cursor": "[redacted:token]==",
  "product_id": "6dy8dt",
  "ratings": {
    "average_rating": 4,
    "counts": {
      "1": 1982,
      "2": 918,
      "3": 2659,
      "4": 5508,
      "5": 12746
    },
    "rating_count": 23813,
    "rating_scale": 5,
    "review_count": 6332
  },
  "reviews": [
    {
      "comment": "Bhut bhut he acha kapda hai mujhe bhut pasand aya .. Thank u mesho 👍 Lekin delevery thoda jaldi karao bhut let karte ho ..",
      "created": "2026-07-25 09:47:36",
      "helpful_count": 1,
      "id": 1778962849,
      "media": [
        {
          "type": "image",
          "url": "https://images.meesho.com/images/ratings_reviews/8685875662/8728884887/8685875662_8728884887_6436e4843b9bd.jpeg"
        },
        {
          "type": "image",
          "url": "https://images.meesho.com/images/ratings_reviews/8685875662/8728884887/8685875662_8728884887_53caf303f33ae.jpeg"
        },
        {
          "type": "image",
          "url": "https://images.meesho.com/images/ratings_reviews/8685875662/8728884887/8685875662_8728884887_bc68e83ee2928.jpeg"
        }
      ],
      "product_name": "KURTI",
      "rating": 5
    },
    {
      "comment": "It's a very nice kurta go for it guy's bahot pas se photo nikala hai aapko pata chalne ke liye",
      "created": "2024-09-06 14:38:48",
      "helpful_count": 147,
      "id": 820131808,
      "media": [
        {
          "type": "image",
          "url": "https://images.meesho.com/images/ratings_reviews/-1759669563/-1782082467/-1759669563_-1782082467_c400b122752f8.jpeg"
        },
        {
          "type": "image",
          "url": "https://images.meesho.com/images/ratings_reviews/-1759669563/-1782082467/-1759669563_-1782082467_617f77cd3e2b4.jpeg"
        }
      ],
      "product_name": "KURTI",
      "rating": 5
    },
    {
      "comment": "Mujhe bahut pasand aaya product",
      "created": "2026-07-18 17:48:49",
      "helpful_count": 6,
      "id": 1768382878,
      "media": [
        {
          "type": "image",
          "url": "https://images.meesho.com/images/ratings_reviews/8644416977/8687229848/8644416977_8687229848_a243a11834db1.jpeg"
        },
        {
          "type": "image",
          "url": "https://images.meesho.com/images/ratings_reviews/8644416977/8687229848/8644416977_8687229848_4d62fc7a0d037.jpeg"
        },
        {
          "type": "image",
          "url": "https://images.meesho.com/images/ratings_reviews/8644416977/8687229848/8644416977_8687229848_56af81fa7aea1.jpeg"
        }
      ],
      "product_name": "KURTI",
      "rating": 5
    }
  ]
}
```
### Illustrative output fields

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

| Path | Observed type | Example |
| --- | --- | --- |
| `next_cursor` | `string` | [redacted:token]== |
| `product_id` | `string` | 6dy8dt |
| `ratings` | `object` | 5 fields |
| `ratings.average_rating` | `integer` | 4 |
| `ratings.counts` | `object` | 5 fields |
| `ratings.rating_count` | `integer` | 23813 |
| `ratings.rating_scale` | `integer` | 5 |
| `ratings.review_count` | `integer` | 6332 |
| `reviews` | `array` | 3 items |
| `reviews` | `array` | 3 items |

## 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)
