shopping24 documentation
s is for shopping
Find Products by EAN/GTIN
This API endpoint can be used to find products by GTIN. The result returned is a
list of products found. The list can potentially contain more than a single
result if the product is offered by several shops. You can use ean
and gtin
interchangeably to access the endpoint.
GET /v3/:appid/ean/:ean
GET /v3/:appid/gtin/:ean
The supplied GTIN will be checked for validity, 13 or 14 digits are allowed. An error will be returned if the check has not passed.
Example
GET /v3/example/ean/0885909669738
<ns2:products xmlns:ns2="http://api.s24.com/v3/1.0/products"
xmlns:ns3="http://api.s24.com/v3/1.0/common" size="1">
<product id="133588971" pinned="false">
<title>APPLE iPad mini »iPad mini Wi-Fi + Cellular 64 GB«</title>
<description>
...
</description>
<ean>0885909669738</ean>
<shops label="Shop" count="1">
...
</shops>
...
</product>
</ns2:products>