πŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more β†’
Socket
Sign inDemoInstall
Socket

@bizon/amazon-ids

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bizon/amazon-ids

Collection of Amazon identifiers

5.0.0
latest
Source
npm
Version published
Weekly downloads
321
-11.33%
Maintainers
1
Weekly downloads
Β 
Created
Source

@bizon/amazon-ids

npm version codecov XO code style

Collection of Amazon identifiers

Bizon

CI

Tests Release

Getting started

npm install --save @bizon/amazon-ids

API

marketplaces

const { marketplaces } = require("@bizon/amazon-ids");

for (const marketplace of marketplaces) {
  // console.log(marketplace)
}

getMarketplaceById(id)

const { getMarketplaceById } = require("@bizon/amazon-ids");

getMarketplaceById("ATVPDKIKX0DER");

/*
{
  code: 'us',
  id: 'ATVPDKIKX0DER',
  name: 'United States',
  region: 'na',
  domain: 'amazon.com',
  advertisingApiDomain: 'advertising-api.amazon.com',
  imagesDomain: 'images-na.ssl-images-amazon.com',
  vendorId: 'ATVPDKIKX0DER',
  sellerCentralDomain: 'sellercentral.amazon.com',
  vendorCentralDomain: 'vendorcentral.amazon.com',
  currencyCode: 'USD'
}
*/

It’s also possible to find multi-channel marketplaces:

getMarketplaceById("A2ZV50J4W1RKNI");

/*
{
  code: 'us-non-amazon',
  id: 'A2ZV50J4W1RKNI',
  name: 'United States - Non-Amazon',
  region: 'na',
  currencyCode: 'USD'
}
*/

getMarketplaceByCode(code)

const { getMarketplaceByCode } = require("@bizon/amazon-ids");

getMarketplaceByCode("DE");

/*
{
  code: 'de',
  id: 'A1PA6795UKMFR9',
  name: 'Germany',
  region: 'eu',
  domain: 'amazon.de',
  advertisingApiDomain: 'advertising-api-eu.amazon.com',
  imagesDomain: 'images-eu.ssl-images-amazon.com',
  vendorId: 'A3JWKAKR8XB7XF',
  sellerCentralDomain: 'sellercentral-europe.amazon.com',
  vendorCentralDomain: 'vendorcentral.amazon.de',
  currencyCode: 'EUR'
}
*/

getMarketplaceByDomain(domain)

const { getMarketplaceByDomain } = require("@bizon/amazon-ids");

getMarketplaceByDomain("Amazon.com.mx");

/*
{
  code: 'mx',
  id: 'A1AM78C64UM0Y8',
  name: 'Mexico',
  region: 'na',
  domain: 'amazon.com.mx',
  imagesDomain: 'images-na.ssl-images-amazon.com',
  vendorId: 'AVDBXBAVVSXLQ',
  sellerCentralDomain: 'sellercentral.amazon.com.mx',
  vendorCentralDomain: 'vendorcentral.amazon.com.mx',
  currencyCode: 'MXN'
}
*/

License

MIT

Miscellaneous

    β•šβŠ™ βŠ™β•
  β•šβ•(β–ˆβ–ˆβ–ˆ)═╝
 β•šβ•(β–ˆβ–ˆβ–ˆ)═╝
β•šβ•(β–ˆβ–ˆβ–ˆ)═╝
 β•šβ•(β–ˆβ–ˆβ–ˆ)═╝
  β•šβ•(β–ˆβ–ˆβ–ˆ)═╝
   β•šβ•(β–ˆβ–ˆβ–ˆ)═╝

Keywords

amazon

FAQs

Package last updated on 27 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts