GET /amazon/seller/info

Returns the merchart details page using as input the target merchant id.

Endpoint currently in beta release. For any bug please reach info@asgardata.com

Request Headers

X-API-Key: your_api_key_here

Query Parameters

  • marketplace (required, string) - Amazon marketplace in ISO 3166-1 alpha-2. (Note that UK is “uk” not “gb”)

  • id(required, string) - Amazon target merchant id

Responses Codes

Status: 200 OK
Status: 400 Bad Request
Status: 401 Unauthorized
Status: 404 Not Found
Status: 500 Internal Server Error

Request URL Example

https://api.asgardata.com/amazon/seller/info?marketplace=it&id=AL5JXES37EDG7

Response Example

{
  "ts": 1724797931689,
  "rid": "f7a0bb75-4f18-41ba-b5e6-08f01d507dc2",
  "params": {
    "marketplace": "it",
    "id": "AL5JXES37EDG7"
  },
  "result": {
    "name": "Natur und Gesund",
    "rating": 5,
    "reviews": 57,
    "feedback": "100% positivi negli ultimi 12 mesi (57 valutazioni)",
    "about": "Natur und Gesund\nJohann Eberlein\nKiefhol ...",
    "details": [
      "Venditore Business",
      "Nome azienda: Johann Eberlein",
      "Tipo di attività: Impresa privata",
      "Numero di iscrizione al registro delle imprese: keine",
      "Numero di partita IVA: ********9995",
      "Numero di telefono: *****6670",
      "E-mail: ****@gmail.com",
      "Indirizzo Servizio clienti: ********** Berlin DE",
      "Indirizzo aziendale: J**** E**** K*****. Berlin DE"
    ]
  }
}

Response example for unknown merchant id

{
  "error": "Bad Seller ID? Seller not found, request has been charged.",
  "status": 404
}

Bad input seller id (unknown merchants id) will be charged anyway.

Last updated