offer_id 或 product_id 进行筛选,则无需填写其他参数。limit 和 last_id。{
    "filter": {
        "offer_id": [
            "136748"
        ],
        "product_id": [
            "223681945"
        ],
        "visibility": "ALL"
    },
    "last_id": "",
    "limit": 100
}curl --location --request POST 'https://api-seller.ozon.ru/v3/product/list' \
--header 'Client-Id;' \
--header 'Api-Key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "filter": {
        "offer_id": [
            "136748"
        ],
        "product_id": [
            "223681945"
        ],
        "visibility": "ALL"
    },
    "last_id": "",
    "limit": 100
}'{
    "result": {
        "items": [
            {
                "archived": true,
                "has_fbo_stocks": true,
                "has_fbs_stocks": true,
                "is_discounted": true,
                "offer_id": "136748",
                "product_id": 223681945,
                "quants": [
                    {
                        "quant_code": "string",
                        "quant_size": 0
                    }
                ]
            }
        ],
        "total": 1,
        "last_id": "bnVсbA=="
    }
}