Skip to main content
POST
/
api
/
yandexmarket
/
products
/
offers
/yandexmarket/products/offers
curl --request POST \
  --url https://api.anysite.io/api/yandexmarket/products/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "product_id": "<string>",
    "@type": "@yandex_market_offer",
    "sku_id": "<string>",
    "offer_id": "<string>",
    "business_id": "<string>",
    "shop_name": "<string>",
    "shop_alias": "<string>",
    "shop_rating": 123,
    "shop_rating_count": 123,
    "title": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "price": 123,
    "price_with_card": 123,
    "old_price": 123,
    "discount_percent": 123,
    "currency": "RUB",
    "condition": "<string>",
    "available_count": 123,
    "delivery_text": "<string>",
    "is_free_delivery": true,
    "has_pickup": true,
    "has_courier": true,
    "in_stock": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Yandex.Market product id or a full product URL

Minimum string length: 1
Examples:

"1912483624"

"https://market.yandex.ru/product--smartfon-apple-iphone-15/1912483624"

count
integer
required

Max number of offers to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

product_id
string
required
@type
string
default:@yandex_market_offer
sku_id
string | null
offer_id
string | null
business_id
string | null
shop_name
string | null
shop_alias
string | null
shop_rating
number | null
shop_rating_count
integer | null
title
string | null
alias
string | null
image
string | null
price
number | null
price_with_card
number | null
old_price
number | null
discount_percent
integer | null
currency
string
default:RUB
condition
string | null
available_count
integer | null
delivery_text
string | null
is_free_delivery
boolean | null
has_pickup
boolean | null
has_courier
boolean | null
in_stock
boolean | null