Skip to main content
POST
/
api
/
trendyol
/
sellers
/trendyol/sellers
curl --request POST \
  --url https://api.anysite.io/api/trendyol/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@trendyol_seller_store",
    "name": "<string>",
    "alias": "<string>",
    "official_name": "<string>",
    "city": "<string>",
    "url": "<string>",
    "rating": 123,
    "sell_item_count": 123,
    "is_verified": true,
    "has_corporate_invoice": true,
    "image": "<string>",
    "cover": "<string>",
    "metrics": {
      "@type": "@trendyol_seller_metrics",
      "activation_age": "<string>",
      "delivery_time": "<string>",
      "response_time": "<string>",
      "product_review_score": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
seller
string
required

Trendyol seller id or a store URL containing it

Minimum string length: 1
Examples:

"992531"

"https://www.trendyol.com/magaza/yenilegelsin-m-992531"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@trendyol_seller_store
name
string | null
alias
string | null
official_name
string | null
city
string | null
url
string | null
rating
number | null
sell_item_count
integer | null
is_verified
boolean | null
has_corporate_invoice
boolean | null
image
string | null
cover
string | null
metrics
TrendyolSellerMetrics · object