Skip to main content
Glade provides two lightweight conversion endpoints that let you translate between Amazon ASINs and GTINs (Global Trade Item Numbers such as UPCs and EANs). Use these when you need to reconcile your product catalog against Amazon listings, enrich retail data with Amazon identifiers, or cross-reference inventory systems that speak different identifier formats.

GTIN from ASIN

Look up the GTIN (barcode) associated with a given Amazon ASIN. Returns null when Amazon has not registered a GTIN for the product.

Request

Query Parameters

string
default:"US"
The Amazon marketplace to query. Accepted values: US UK CA DE FR IT ES AU IN MX BR JP PL. Defaults to US when omitted.
string
required
The Amazon Standard Identification Number to convert (e.g. B09XS7JWHH). This parameter is required.

Response

object

Example Response

Null response (no GTIN registered)

curl Example


ASIN from GTIN

Look up the Amazon ASIN that corresponds to a given GTIN (barcode). Returns null when no matching Amazon listing is found in the specified marketplace.

Request

Query Parameters

string
default:"US"
The Amazon marketplace to query. Accepted values: US UK CA DE FR IT ES AU IN MX BR JP PL. Defaults to US when omitted.
string
required
The GTIN (UPC, EAN, or ISBN) to convert (e.g. 027242921436). This parameter is required.

Response

object

Example Response

Null response (no matching listing)

curl Example


Error Handling

Both endpoints use the same error envelope. The HTTP status code mirrors the code field inside the errors array.