Product Identifiers

Map between product identifiers#

Use the Product Identifier API endpoint to search ASINs for a specific EAN. The MetaData endpoint provides information about the current stored data.

Example: Get MetaData#

curl -X GET 'https://api.sellytics.com/product-identifiers/EAN/4016779523431/ASIN/meta/v1' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <your-access-token>'
{
"lastUpdated": "2021-05-04T09:13:31.247Z",
"count": 4
}

Example: Get mapped ASINS of a specific EAN#

curl -X GET 'https://api.sellytics.com/product-identifiers/EAN/4016779523431/ASIN/v1' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <your-access-token>'
[
{
"type": "ASIN",
"value": "B000ONQANE",
"priority": 1,
"platform": "AMAZON",
"marketplace": "ES",
"date": "2021-05-04T09:50:53.459Z"
},
{
"type": "ASIN",
"value": "B000ONQANE",
"priority": 1,
"platform": "AMAZON",
"marketplace": "DE",
"date": "2021-05-04T09:50:32.715Z"
},
{
"type": "ASIN",
"value": "B000ONQANE",
"priority": 2,
"platform": "AMAZON",
"marketplace": "DE",
"date": "2021-05-04T09:13:31.647Z"
},
{
"type": "ASIN",
"value": "B000ONQANE",
"priority": 2,
"platform": "AMAZON",
"marketplace": "ES",
"date": "2021-05-04T09:13:31.247Z"
}
]

Using filters#

Available query parameters:

  • priority (1, 2)
  • platform (AMAZON, IDEALO)
  • marketplace (DE, ES, etc.)

Example: Get ASINS to mapped EAN filtered by query parameters#

curl -X GET 'https://api.sellytics.com/product-identifiers/EAN/4016779523431/ASIN/v1?priority=1&platform=AMAZON&marketplace=DE' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <your-access-token>'

Example: Get MetaData filtered by query parameters#

curl -X GET 'https://api.sellytics.com/product-identifiers/EAN/4016779523431/ASIN/meta/v1?priority=1&platform=AMAZON&marketplace=DE' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <your-access-token>'

Some opposite mapping examples - search for ASIN instead of EAN#

curl -X GET 'https://api.sellytics.com/product-identifiers/ASIN/B000ONQANE/EAN/v1' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <your-access-token>'
[
{
"type": "EAN",
"value": "4016779468008",
"priority": 1,
"platform": "AMAZON",
"marketplace": "ES",
"date": "2021-05-04T09:50:53.460Z"
},
{
"type": "EAN",
"value": "4016779468008",
"priority": 1,
"platform": "AMAZON",
"marketplace": "DE",
"date": "2021-05-04T09:50:32.716Z"
},
{
"type": "EAN",
"value": "4016779523431",
"priority": 1,
"platform": "AMAZON",
"marketplace": "ES",
"date": "2021-05-04T09:50:53.458Z"
},
{
"type": "EAN",
"value": "4016779523431",
"priority": 1,
"platform": "AMAZON",
"marketplace": "DE",
"date": "2021-05-04T09:50:32.714Z"
},
{
"type": "EAN",
"value": "4016779523431",
"priority": 2,
"platform": "AMAZON",
"marketplace": "DE",
"date": "2021-05-04T09:13:31.644Z"
},
{
"type": "EAN",
"value": "4016779523431",
"priority": 2,
"platform": "AMAZON",
"marketplace": "ES",
"date": "2021-05-04T09:13:31.241Z"
},
{
"type": "EAN",
"value": "4016779609197",
"priority": 1,
"platform": "AMAZON",
"marketplace": "ES",
"date": "2021-05-04T09:50:53.456Z"
},
{
"type": "EAN",
"value": "4016779609197",
"priority": 1,
"platform": "AMAZON",
"marketplace": "DE",
"date": "2021-05-04T09:50:32.711Z"
}
]