JSON file - product availability

URL to download product stocks

https://deante.pl/api/stocks?key=API_KEY

Definition of file components

interface Product {
    id: String                          // "BQA_021M"
    ean: String                         // "5908212092057",
    stocks: Number                      // 58
    availabilityDate: String | null     // "26-09-2024"
}

Available fields

Product.id

Deante product code. Serves as a universal product identifier.

Product.ean

EAN-13 barcode. A unique barcode printed on the product box.

Product.stocks

Stocks. A number representing the availability of a given product, describing the exact quantities, shown in the range 0 - 100 → the maximum value of 100 will be shown in case of availability of both 100 items and, for example, 400 items.

Product.availabilityDate

Date of upcoming product delivery. Date of next delivery of the product in the format dd-MM-yyyy.

Last modifed at : 0