DocumentationDashboard

Trendyol

Store Products

Everything one seller has listed on Trendyol, in storefront order — the same rows a search returns, scoped to their store instead of a term or category.

GET/v1/trendyol/store-products1 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": "store-products",
  "params": {
    "merchantId": "<merchantId>"
  }
}'

See batch tasks for the full lifecycle.

Parameters

NameTypeRequiredDescription
merchantIdnumberrequiredTrendyol's seller/store id — the `mid` on a seller-scoped storefront URL or product listing.
sortstringoptionalHow the listing is ordered. SCORE is Trendyol's own relevance ranking — the default a shopper sees. BEST_SELLER, MOST_FAVOURITE and MOST_RATED are the quick-sort chips. One of: SCORE, PRICE_BY_ASC, PRICE_BY_DESC, MOST_RECENT, BEST_SELLER, MOST_FAVOURITE, MOST_RATED.
pagenumberoptionalOne-based page number — this listing starts at 1, not 0.
pageSizenumberoptionalProducts per page, 1-72. 72 is what the storefront itself requests.
leafCategoryIdsstringoptionalNarrow to leaf categories by id, comma-separated as the storefront sends them: "56" or "56,1117".
brandIdsstringoptionalNarrow to brands by id, comma-separated.
webGenderIdnumberoptionalTrendyol's gender segment, 1 for women — the `wg` on a storefront listing URL.
minRatingnumberoptionalKeep only listings rated at least this, e.g. 4.5.
freeShippingbooleanoptionalKeep only free-shipping listings.

Request

curl --request GET 'https://data-api.roketfy.com/v1/trendyol/store-products?merchantId=%3CmerchantId%3E' \
  --header 'Authorization: Bearer YOUR_TOKEN'

MCP

Available to AI agents as the tool trendyol_store_products, with the same parameters and the same credit cost.