# Review Data Fields

Each element of the `reviews` array is one review, with the reviewed item nested as `item`.

A complete review as the API returns it:

```json
{
  "item": {
    "uuid": "7388de46288698c70bddb6540b4d61ce436d0389",
    "url": "https://www.flipkart.com/killer-men-flip-flops/p/itmcc28926cdd346?pid=SFFHNMYBYFCYNET3",
    "site_full": "www.flipkart.com",
    "site": "flipkart.com",
    "site_section": "https://www.flipkart.com/mens-footwear/mens-slippers-flip-flops/pr?sid=osp,cil,e1r&otracker=undefined_footer&p%5B%5D=sort%253Drecency_desc&p%5B%5D=facets.serviceability%255B%255D%253Dtrue&p%5B%5D=facets.rating%25255b%25255d%253D1%2525e2%252598%252585%252B%252526%252Babove&p%5B%5D=sort%253Drecency_desc&p%5B%5D=facets.serviceability%255B%255D%253Dtrue&p%5B%5D=facets.rating%25255b%25255d%253D1%2525e2%252598%252585%252B%252526%252Babove&p%5B%5D=sort%253Drecency_desc&p%5B%5D=facets.serviceability%255B%255D%253Dtrue&p%5B%5D=facets.rating%25255b%25255d%253D1%2525e2%252598%252585%252B%252526%252Babove&p%5B%5D=sort%253Drecency_desc&p%5B%5D=facets.serviceability%255B%255D%253Dtrue&p%5B%5D=facets.rating%25255b%25255d%253D1%2525e2%252598%252585%252B%252526%252Babove&p%5B%5D=sort%253Drecency_desc&p%5B%5D=facets.serviceability%255B%255D%253Dtrue&p%5B%5D=facets.rating%25255b%25255d%253D1%2525e2%252598%252585%252B%252526%252Babove&p%5B%5D=sort%253Drecency_desc&p%5B%5D=facets.serviceability%255B%255D%253Dtrue&p%5B%5D=facets.rating%25255b%25255d%253D1%2525e2%252598%252585%252B%252526%252Babove&p%5B%5D=sort%253Drecency_desc&p%5B%5D=facets.serviceability%255B%255D%253Dtrue&page=11&p%255=",
    "site_categories": [
      "home_and_garden",
      "shopping",
      "appliances"
    ],
    "section_title": "Buy Products Online at Best Price in India - All Categories | Flipkart.com",
    "title": "Killer Men Flip Flops Reviews: Latest Review of Killer Men Flip Flops | Price in India | Flipkart.com",
    "title_full": "Killer Men Flip Flops Reviews: Latest Review of Killer Men Flip Flops | Price in India | Flipkart.com",
    "published": "2026-06-26T22:00:00.000+03:00",
    "reviews_count": 1,
    "reviewers_count": 2,
    "country": "IN",
    "main_image": "",
    "domain_rank": 1021,
    "domain_rank_updated": null
  },
  "uuid": "f438d29a494485b008e77b4b075d6efd2b2106ed",
  "url": "https://www.flipkart.com/killer-men-flip-flops/p/itmcc28926cdd346?pid=SFFHNMYBYFCYNET3#7ff5ed8e71377c4ff7a5a48db8133185",
  "ord_in_thread": 1,
  "author": "Ravi Kumar",
  "published": "2026-07-04T22:00:00.000+03:00",
  "title": "Value-for-money",
  "text": "Good product",
  "highlightText": "",
  "highlightTitle": "",
  "highlightItemTitle": "",
  "language": "english",
  "external_links": null,
  "rating": 4,
  "crawled": "2026-07-25T10:26:23.057+03:00"
}
```

## Review

| Field | Type | Description |
| --- | --- | --- |
| `uuid` | string | Unique id of the review |
| `url` | string | Direct URL of the review |
| `ord_in_thread` | integer | Position among the item's reviews |
| `author` | string | Review author |
| `published` | string | Publication time, ISO 8601 |
| `title` | string | Review title |
| `text` | string | Full review text |
| `language` | string | Review language |
| `rating` | number | Numeric rating, when the source provides one |
| `external_links` | array | Links found in the review |
| `crawled` | string | When the review was crawled, ISO 8601 |
| `highlightText` / `highlightTitle` / `highlightItemTitle` | string | Matched fragments, only with `highlight=true` |

## `item`

The reviewed item - the product page, hotel, app, or business the review belongs to.

| Field | Type | Description |
| --- | --- | --- |
| `uuid`, `url` | string | Item id and URL |
| `site`, `site_full` | string | Source domain and full host |
| `site_section`, `section_title` | string | Site section and its title |
| `site_categories` | array | Categories of the site |
| `title`, `title_full` | string | Item title |
| `published` | string | When the item page was published |
| `reviews_count` | integer | Total reviews on the item |
| `reviewers_count` | integer | Distinct reviewers on the item |
| `country` | string | Source country code |
| `main_image` | string | Main image URL |
| `domain_rank` | integer | Domain rank of the source site |
| `domain_rank_updated` | string | When the domain rank was last updated |
