DocumentationDashboard

Hepsiburada

Product Questions

Published buyer questions on a Hepsiburada listing, page by page: the question, each seller's answer, when it was asked and answered, and the like/dislike counts. Costs 1 credit per page — or 2 for a …-pm-<productId> URL, which has to be resolved to a SKU through the product page first.

GET/v1/hepsiburada/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": "hepsiburada",
  "endpoint": "questions",
  "params": {
    "url": "<url>",
    "sku": "<sku>"
  }
}'

See batch tasks for the full lifecycle.

Parameters

Supply at least one of url or sku. Neither is required on its own.

NameTypeRequiredDescription
urlstringone ofFull Hepsiburada product URL, either the …-p-<sku> or …-pm-<productId> form.
skustringone ofHepsiburada SKU, e.g. "HBCV00009Z3Z8C".
pagenumberoptionalZero-based page number.
pageSizenumberoptionalQuestions per page, 1-100. The gateway itself pages by row offset; this endpoint does the arithmetic.
orderFieldstringoptionalhelpfulQnaScore = Hepsiburada's own helpfulness ranking, lastAnsweredAt = most recently answered, createdAt = when the question was published. Leave it out for the gateway's default. One of: helpfulQnaScore, lastAnsweredAt, createdAt.
orderBystringoptionalOnly sent alongside orderField, which is the only thing it applies to. One of: desc, asc.
searchstringoptionalFree-text search across the published questions.

Request

curl --request GET 'https://data-api.roketfy.com/v1/hepsiburada/questions?url=%3Curl%3E' \
  --header 'Authorization: Bearer YOUR_TOKEN'

MCP

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