GET /utility/gtin-to-asin 1 credit

Amazon GTIN to ASIN API

Reverse lookup: turn a UPC/EAN/GTIN into the matching ASIN, with the full matched product record and any secondary matches.

Try it

You are not signed in, so this runs against sample data and costs nothing. Create a free account to run it against your own key.
Returns sample data — no account needed.
Send a request to see the response.

Query parameters

NameTypeDefaultDescription
gtin
required
string UPC, EAN or GTIN.
marketplace string US Two-letter marketplace code (US, UK, DE, FR, IT, ES, CA, JP, IN, AU, …).
zip string Delivery postcode. Without one, many listings report “cannot be shipped to your location” and come back with no price or images. Always send it for price-accurate data.

Request

curl -sS "https://amazoncrawler.com/v1/utility/gtin-to-asin?gtin=097855137692&marketplace=US&zip=10001" \
  -H "x-api-key: YOUR_API_KEY"

Response

200 OK application/json
{
  "asin": "B07CMS5Q6P",
  "gtin": "097855137692",
  "note": null,
  "match": {
    "url": "https://www.amazon.com/dp/B07CMS5Q6P",
    "asin": "B07CMS5Q6P",
    "badge": "Best Seller",
    "image": "https://m.media-amazon.com/images/I/51sg9BLSMTL.jpg",
    "price": {
      "amount": 29.99,
      "display": "$29.99",
      "currency": "USD",
      "list_price": 49.99
    },
    "prime": false,
    "title": "Logitech G305 Lightspeed Wireless Gaming Mouse - Black",
    "rating": 4.6,
    "delivery": "FREE delivery Mon, Aug 10",
    "position": 4,
    "sponsored": false,
    "reviews_count": 39364,
    "bought_past_month": "10K+ bought in past month"
  },
  "marketplace": "US",
  "other_matches": [
    "B0BQN7LSQ4",
    "B0B4MQS3ZW"
  ]
}

Errors

Beyond the shared error codes, this endpoint returns 422 when a parameter fails validation — the detail array names the field.

422 Unprocessable Entity
{
  "detail": [
    {
      "loc": ["query", "gtin"],
      "msg": "Field required",
      "type": "missing",
      "input": null
    }
  ]
}

Related endpoints