Skip to main content
POST
/
api
/
trendyol
/
products
/trendyol/products
curl --request POST \
  --url https://api.anysite.io/api/trendyol/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@trendyol_product",
    "name": "<string>",
    "product_group_id": "<string>",
    "brand": "<string>",
    "brand_id": "<string>",
    "brand_url": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percentage": 123,
    "currency": "<string>",
    "image": "<string>",
    "images": [],
    "rating": 123,
    "rating_count": 123,
    "review_count": 123,
    "favorite_count": 123,
    "is_in_stock": true,
    "category": "<string>",
    "category_hierarchy": "<string>",
    "breadcrumbs": [],
    "gender": "<string>",
    "max_installment": 123,
    "is_refundable": true,
    "is_global_brand": true,
    "energy_class": "<string>",
    "attributes": [],
    "variants": [],
    "seller": {
      "id": "<string>",
      "@type": "@trendyol_seller",
      "name": "<string>",
      "official_name": "<string>",
      "city": "<string>",
      "rating": 123,
      "image": "<string>"
    },
    "other_seller_count": 123,
    "other_sellers": [],
    "promotions": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Trendyol product contentId or a product URL containing it

Minimum string length: 1
Examples:

"689227641"

"https://www.trendyol.com/apple/yenilenmis-iphone-12-64-gb-beyaz-cep-telefonu-12-ay-garantili-a-kalite-p-689227641"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@trendyol_product
name
string | null
product_group_id
string | null
brand
string | null
brand_id
string | null
brand_url
string | null
price
number | null
list_price
number | null
discount_percentage
number | null
currency
string | null
image
string | null
images
string[]
rating
number | null
rating_count
integer | null
review_count
integer | null
favorite_count
integer | null
is_in_stock
boolean | null
category
string | null
category_hierarchy
string | null
breadcrumbs
string[]
gender
string | null
max_installment
integer | null
is_refundable
boolean | null
is_global_brand
boolean | null
energy_class
string | null
attributes
TrendyolProductAttribute · object[]
variants
TrendyolProductVariant · object[]
seller
TrendyolSeller · object
other_seller_count
integer | null
other_sellers
TrendyolProductOffer · object[]
promotions
TrendyolProductPromotion · object[]