Skip to main content

Get products informations

Gets information about products by an array of identifiers

Function GetProductsInformation(Val ClientID, Val APIKey, Val ProductsID = 0, Val SKU = 0, Val Articles = "") Export

ParameterCLI optionTypeRequiredDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key
ProductsID--productidNumber, Array Of NumberProducts identifier
SKU--skuNumber, Array Of NumberProducts identifiers in the Ozon system (SKU)
Articles--offeridString, Array of StringItem identifiers in the vendor's system (Article)

Returns: Map Of KeyAndValue - serialized JSON response from Ozon Seller API


tip

Specify the minimum price of the product after all promotions have been applied in your personal cabinet. The min_price parameter from the method response is being reworked and returns 0

The active_product parameter is deprecated, use the values of the visible parameter

The fbs_sku and fbo_sku parameters from the method response were disabled on August 15, 2023

The body of the request must contain a single identifier or an array of identical identifiers, the response will be an array of items

Method at API documentation: post /v3/product/info/list


1C:Enterprise/OneScript code example
    ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
Article = "143210609";

Result = OPI_Ozon.GetProductsInformation(ClientID, APIKey, , , Article);
    oint ozon GetProductsInformation \
--clientid "***" \
--apikey "***" \
--offerid "143210609"
Result
{
"items": [
{
"id": 2715190682,
"name": "Комплект защитных плёнок для X3 NFC. Темный хлопок",
"offer_id": "143210609",
"is_archived": false,
"is_autoarchived": false,
"barcodes": [],
"description_category_id": 17028922,
"type_id": 91565,
"created_at": "2025-09-15T08:41:18.518959Z",
"images": [
"https://hut.openintegrations.dev/test_data/picture.jpg",
"https://hut.openintegrations.dev/test_data/picture2.jpg"
],
"currency_code": "RUB",
"marketing_price": "",
"min_price": "",
"old_price": "1300.00",
"price": "1300.00",
"sources": [],
"model_info": {
"model_id": 0,
"count": 0
},
"commissions": [],
"is_prepayment_allowed": false,
"volume_weight": 0.1,
"has_discounted_fbo_item": false,
"is_discounted": false,
"discounted_fbo_stocks": 0,
"stocks": {
"has_stock": false,
"stocks": []
},
"errors": [
{
"code": "error_attribute_values_empty",
"field": "",
"attribute_id": 22232,
"state": "new",
"level": "ERROR_LEVEL_ERROR",
"texts": {
"attribute_name": "ТН ВЭД коды ЕАЭС",
"description": "Это обязательное поле — без него нельзя продавать товар. Заполните поле и пересохраните карточку. Если редактируете через XLS-шаблон, скачайте его заново",
"short_description": "",
"params": [
{
"name": "attribute_id",
"value": "22232"
},
{
"name": "attribute_name",
"value": "ТН ВЭД коды ЕАЭС"
}
],
"message": "Attribute value empty"
}
}
],
"updated_at": "2025-09-15T08:41:18.518959Z",
"vat": "0.10",
"visibility_details": {
"has_price": true,
"has_stock": false
},
"price_indexes": {
"color_index": "COLOR_INDEX_WITHOUT_INDEX",
"external_index_data": {
"minimal_price": "",
"minimal_price_currency": "",
"price_index_value": 0
},
"ozon_index_data": {
"minimal_price": "",
"minimal_price_currency": "",
"price_index_value": 0
},
"self_marketplaces_index_data": {
"minimal_price": "",
"minimal_price_currency": "",
"price_index_value": 0
}
},
"images360": [],
"is_kgt": false,
"color_image": [],
"primary_image": [],
"statuses": {
"status": "new",
"status_failed": "imported",
"moderate_status": "",
"validation_status": "pending",
"status_name": "Не продается",
"status_description": "Не создан",
"is_created": false,
"status_tooltip": "Не прошел валидацию",
"status_updated_at": "2025-09-15T12:23:42.311709Z"
},
"is_super": false,
"is_seasonal": false,
"promotions": [
{
"is_enabled": false,
"type": "REVIEWS_PROMO"
}
],
"sku": 0,
"availabilities": []
}
]
}