N11
Product Reviews
Buyer reviews for an n11 product: the page of reviews with their photos, votes, seller and masked buyer, plus the product's rating breakdown, n11's own AI summary and the tag facets that product offers.
GET
/v1/n11/product-reviews1 creditGetting every page
This endpoint pages. To collect all of it in one job, queue a batch task instead of walking the pages yourself — it charges the same 1 credit per page and you poll for the result.
curl --request POST 'https://data-api.roketfy.com/v1/tasks' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"platform": "n11",
"endpoint": "product-reviews",
"params": {
"url": "<url>",
"productId": "<productId>"
}
}'See batch tasks for the full lifecycle.
Parameters
Supply at least one of url or productId. Neither is required on its own.
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | one of | The product's n11 URL, e.g. https://www.n11.com/urun/sensodyne-ferah-nefes-dis-macunu-75-ml-7695524. Costs one extra credit: the review API takes a numeric product id, which only exists inside the page. Either this or productId. |
| productId | string | one of | The numeric product id, e.g. "547579368" — what a previous call returned. Either this or url. |
| page | number | optional | One-based page number. n11 pages 8 reviews at a time and takes no page size. |
| sort | string | optional | RECENT (newest), HELPFUL (most upvoted), FAVORABLE (positive only) or CRITICAL (negative only). One of: RECENT, HELPFUL, FAVORABLE, CRITICAL. |
| sellerId | number | optional | Keep only reviews left on this seller's listing — reviews belong to a listing, not to the product. |
| score | string | optional | Star filter, comma-separated: "5" or "5,4". |
| tag | string | optional | A tag facet, taken from a response's own `tags` list, e.g. "tavsiye". They are generated per product, so the accepted values differ per listing. |
Request
curl --request GET 'https://data-api.roketfy.com/v1/n11/product-reviews?url=%3Curl%3E' \
--header 'Authorization: Bearer YOUR_TOKEN'MCP
Available to AI agents as the tool n11_product_reviews, with the same parameters and the same credit cost.