DocumentationDashboard

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 credit

Getting 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.

NameTypeRequiredDescription
urlstringone ofFull Trendyol product URL. Either this or contentId is required.
contentIdstringone ofTrendyol contentId, known to sellers as the product SKU.
pagenumberoptionalZero-based page number.
pageSizenumberoptionalQuestions per page, 1-100.
orderstringoptionalSort by ask time — DESC newest first. Trendyol offers no other sort here; leave it out for its own default ordering. One of: DESC, ASC.
sellerIdnumberoptionalOnly questions answered by this seller on the listing.
tagstringoptionalSubject 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".
tagKeystringoptionalThe stable half of the subject filter (e.g. "BEDEN_BILGISI"). Read the pair off a first call's `tags`; the set differs per product.
wordsstringoptionalFree-text terms a question must contain, comma-separated, e.g. "kumaş,yıkama".
fulfilmentTypesstringoptionalFulfilment 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.