Trendyol
Product Questions
Answered buyer questions on a Trendyol listing, page by page: the question, the seller's answer, how fast they replied, and the subject tags the product's questions fall under.
GET
/v1/trendyol/questions1 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": "trendyol",
"endpoint": "questions",
"params": {
"url": "<url>",
"contentId": "<contentId>"
}
}'See batch tasks for the full lifecycle.
Parameters
Supply at least one of url or contentId. Neither is required on its own.
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | one of | Full Trendyol product URL. Either this or contentId is required. |
| contentId | string | one of | Trendyol contentId, known to sellers as the product SKU. |
| page | number | optional | Zero-based page number. |
| pageSize | number | optional | Questions per page, 1-100. |
| order | string | optional | Sort by ask time — DESC newest first. Trendyol offers no other sort here; leave it out for its own default ordering. One of: DESC, ASC. |
| sellerId | number | optional | Only questions answered by this seller on the listing. |
| tag | string | optional | Subject label, exactly as this product's own tags list it (e.g. "Beden"). Pair it with tagKey — Trendyol wants both halves. Defaults to the storefront's own "all subjects". |
| tagKey | string | optional | The stable half of the subject filter (e.g. "BEDEN_BILGISI"). Read the pair off a first call's `tags`; the set differs per product. |
| words | string | optional | Free-text terms a question must contain, comma-separated, e.g. "kumaş,yıkama". |
| fulfilmentTypes | string | optional | Fulfilment models to include, comma-separated: MP (marketplace), ST (ship-to), FT (fulfilled by Trendyol). Defaults to all three, like the storefront. |
Request
curl --request GET 'https://data-api.roketfy.com/v1/trendyol/questions?url=%3Curl%3E' \
--header 'Authorization: Bearer YOUR_TOKEN'MCP
Available to AI agents as the tool trendyol_questions, with the same parameters and the same credit cost.