Crawlzodocs
API referenceMouthShut

MouthShut product

Product/brand summary on MouthShut.

Provide either the full product url or the numeric product_id on its own, MouthShut resolves on the trailing id and ignores the slug text, so both address the same page.

Returns name, description, image, the aggregate rating with its best/worst bounds, vote count vs written-review count, the "recommended by N%" figure, the category trail, and how many review pages exist. A removed or invalid id is a clean 404.

The example response below is real output from this endpoint, not an illustration. Long lists and long strings are shortened to keep the page readable, and each place that happens is marked. This example took 4.8s.

POST
/v1/scrapers/mouthshut-product-v4

Authorization

ApiKeyAuth
X-API-Key<token>

Your API key. Sent on every request.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/scrapers/mouthshut-product-v4" \  -H "Content-Type: application/json" \  -d '{    "product_id": "926166735"  }'
{  "request_id": "req_8f2c1d94e7b0",  "success": true,  "status": {    "code": "OK",    "message": "Scrape completed.",    "retryable": false  },  "data": {    "best_rating": 5,    "category": {      "name": "Apparels",      "url": "https://www.mouthshut.com/apparels-proid-925077682"    },    "category_path": [      {        "name": "Fashion and Apparel",        "url": "https://www.mouthshut.com/fashion-and-apparel-proid-14"      },      {        "name": "Apparels",        "url": "https://www.mouthshut.com/apparels-proid-925077682"      }    ],    "description": "Zudio has a fantastic range of trendy clothes, shoes, and accessories that wont break the bank. They offer plenty of stylish options perfect for daily",    "image": "https://image3.mouthshut.com/images/imagesp/m/926166735s.png",    "name": "Zudio",    "product_id": "926166735",    "rating": 3.88,    "rating_count": 828,    "recommended_percent": 84,    "review_count": 88,    "reviews_per_page": 20,    "total_review_pages": 5,    "url": "https://www.mouthshut.com/product-reviews/zudio-reviews-926166735",    "worst_rating": 1  },  "error": null,  "meta": {    "client_id": "client_abc123",    "scraper": "mouthshut-product-v4",    "billable": true,    "duration_ms": 4306  }}