All posts
How-to

How to find any Amazon ASIN in 2026 — 6 lookup tools, manual methods, and edge cases

Step-by-step guide to finding ASINs from product URLs, images, or titles. Covers the best free ASIN lookup tools, browser extensions, and reverse-search tricks for affiliates.

Sanel at Velantio··7 min read

If you build Amazon affiliate content, you handle ASINs constantly — every product link, every comparison table row, every API request needs one. Finding them quickly matters more than most affiliates realize.

This post covers everything: what an ASIN is, where to find it (3 manual methods that always work), the 6 best lookup tools in 2026, and the edge cases that trip people up — bundles, variants, regional differences, and renamed listings.

What is an ASIN?

ASIN = Amazon Standard Identification Number. A 10-character alphanumeric ID Amazon assigns to every product in its catalog. Examples:

  • B08N5WRWNW — Echo Dot (4th Gen)
  • B0BDHWDR12 — Apple AirPods Pro (2nd Gen, USB-C)
  • 1593279280Eloquent JavaScript (books use their 10-digit ISBN as the ASIN)

Each product page has exactly one ASIN. Variants (size, color) often share a parent ASIN with separate child ASINs, which causes most of the confusion below.

ASINs are regional. The same physical product has a different ASIN on amazon.com vs amazon.co.uk vs amazon.de. If you're linking internationally, you need each region's ASIN — or use Amazon's OneLink to redirect automatically.

Method 1: From the product URL (always works)

Amazon URLs encode the ASIN directly. Look for /dp/ or /gp/product/:

https://www.amazon.com/dp/B08N5WRWNW
https://www.amazon.com/Echo-Dot-4th-Gen/dp/B08N5WRWNW/ref=...
https://www.amazon.com/gp/product/B08N5WRWNW

The 10 characters after /dp/ or /gp/product/ are the ASIN. Everything after /ref=... is tracking and can be ignored.

Edge cases:

  • Short URLs (amzn.to/xxx): open the link first — the destination has the real URL.
  • Affiliate URLs (?tag=…): the ASIN is still in /dp/ — strip the query string.
  • Mobile URLs (amazon.com/-/en/gp/aw/d/B0…): ASIN follows /d/.
  • Smile.amazon.com: deprecated in 2023, but legacy links still resolve the same way.

Method 2: From the product page (product details section)

Scroll to the "Product Information" or "Product details" section near the bottom of any Amazon listing. The ASIN is listed alongside other technical fields:

Product Dimensions : 3.9 × 3.9 × 3.5 inches
Item Weight        : 12 ounces
ASIN               : B08N5WRWNW
Country of Origin  : China
Date First Available : October 22, 2020

This is the most reliable spot because it works even when the URL has been mangled by aggressive tracking parameters.

Method 3: Mobile app

In the Amazon app, tap the product, then scroll to Product InformationAdditional Information → ASIN. Slightly buried but always there.

Lookup tools worth using (2026 update)

For one-off lookups, the manual methods above are faster. But if you're processing dozens or hundreds of products — bulk research, content migration, competitor analysis — you'll want a tool.

1. Helium 10's ASIN Grabber (Chrome extension, freemium)

The gold standard for serious affiliates and Amazon sellers. The free tier handles up to ~100 lookups/day. Drop in a product URL or category page and it pulls every ASIN visible, plus title, price, BSR, review count, and seller info.

Best for: serious bulk research, competitor analysis, niche scoping.

Limitation: free tier is rate-limited; the paid plans start at $39/month.

2. AMZScout ASIN Lookup (web + extension, freemium)

Cleaner UI than Helium 10 if you only need ASIN data (not the deeper PPC tooling). The free Chrome extension shows ASIN + BSR + review count on any Amazon page without clicking through.

Best for: lightweight daily use without a subscription.

3. Keepa (Chrome extension, freemium for ASIN-only use)

Famous for price-history charts, but it also exposes the ASIN at the top of every product card. The browser extension overlays a tiny "ASIN: B0..." line above every product on search and category pages.

Best for: combining ASIN lookup with historical price/sales data when picking products to feature.

4. AmazingAssistant / SellerApp (Chrome extension, freemium)

Both add an "ASIN" button to the product page that copies the ASIN with one click. No bulk export on the free tier, but for content creators doing 5–20 product lookups per post, this is the friction-free choice.

Best for: affiliate writers who don't need volume but want a one-click "copy ASIN" button.

5. Amazon Creators API (free for qualified accounts)

If you're already approved for the Amazon Creators API (replacement for PA-API 5.0 since late 2025), you can use its SearchItems endpoint to find ASINs from a keyword query, brand, or category.

Example request (simplified):

GET /paapi5/searchitems
?Keywords=apple+airpods+pro
&SearchIndex=Electronics

Response includes ASIN, Title, Price, ImageURL for each match.

Best for: programmatic / bulk lookups inside your own tools. We use this to power Velantio's product search in the editor — type a name, get the ASIN, drop it into your table.

Catch: you need 10 qualifying sales in 180 days to be eligible. See our Creators API guide.

6. Velantio's product search (free, no Amazon API account required)

If you don't have Creators API access yet, Velantio's editor lets you search Amazon products by title and grab the ASIN without your own credentials — the search uses Velantio's pooled keyword index.

Best for: affiliates who aren't yet API-eligible but still want fast ASIN lookups while building content.

Bulk lookup: from a list of URLs to a list of ASINs

If you have a spreadsheet of Amazon URLs and need the ASINs, three options:

Quick regex (any text editor or sheet)

In Google Sheets:

=REGEXEXTRACT(A1, "/dp/([A-Z0-9]{10})")

In Excel:

=MID(A1, FIND("/dp/", A1) + 4, 10)

Both work for 95% of URLs. Edge cases (gp/product, /-/en/d/) need broader patterns:

=REGEXEXTRACT(A1, "(?:/dp/|/gp/product/|/d/)([A-Z0-9]{10})")

Browser console (for one Amazon page)

On any Amazon search results page, open the console and run:

[...document.querySelectorAll('[data-asin]')]
  .map(e => e.dataset.asin)
  .filter(a => a && a.length === 10)

Copies every ASIN on the page in one shot.

Helium 10 / AMZScout bulk export

For more than a few hundred, use a paid tool — manual approaches stop scaling around 1,000 rows.

ASIN edge cases that trip people up

Parent vs child ASINs

A t-shirt listing has one parent ASIN for the product, then child ASINs for each size+color combination. The product URL might show the parent or one of the children depending on which variant Amazon picked as the default.

Why this matters: linking to a child ASIN means visitors land on a specific size/color. Linking to the parent gives them the picker. For affiliate purposes, parent ASIN almost always converts better because it preserves Amazon's "pick your variant" experience.

In the Amazon Creators API response, parent and child are explicit fields. In manual lookups, you have to inspect the URL or the variant picker on the page.

Regional differences

Same physical product, different ASIN per Amazon marketplace:

| Region | Echo Dot (4th Gen) ASIN | |---|---| | amazon.com (US) | B08N5WRWNW | | amazon.co.uk | B084DWG2VQ | | amazon.de | B084DWX1ZP | | amazon.it | B084J4QQK1 |

For international audiences, your options:

  • Per-region links: more work but better conversion (the local Amazon site closes the sale).
  • OneLink: Amazon's auto-localizer. One link, redirects per visitor's country. Works well for US/UK/CA/DE, less reliably elsewhere.
  • Geo-detect at the table level: Velantio and a few other tools auto-swap ASINs based on visitor country.

Renamed / replaced ASINs

Sometimes Amazon replaces an ASIN. A product gets a new SKU, the old ASIN goes 404, and your existing affiliate links break. This happens most often with:

  • Apparel re-listings after a manufacturer change
  • Books getting a new edition
  • Electronics getting a "2024 model" version

There's no perfect protection — the only signals are:

  1. Periodically running a link-checker across your site
  2. Watching for sudden conversion drops on a previously high-performing post
  3. Using a tool that monitors ASIN status (Keepa flags it; Velantio surfaces it in the editor with a red dot)

Bundles vs single items

A bundle (e.g., camera + bag + SD card) has its own ASIN, separate from the camera's standalone ASIN. If your post is "best mirrorless cameras", link the single-item ASIN. If your post is "best beginner camera kits", link the bundle ASIN.

This sounds obvious but a common mistake is grabbing whatever ASIN happens to be in the URL when you arrived — which is often the upsell bundle Amazon's recommendation engine surfaced.

Quick reference

| Need | Best method | |---|---| | One ASIN, you're on the page | Read it from the URL after /dp/ | | One ASIN, mobile | Product Information section near bottom | | 5–20 ASINs while writing a post | Chrome extension (AmazingAssistant, SellerApp) | | 20–100 ASINs from a category page | Browser console snippet or Helium 10 free | | 100+ ASINs from a spreadsheet | Sheet regex + Helium 10 / AMZScout export | | Programmatic, your own app | Amazon Creators API SearchItems | | Programmatic, no API access yet | Velantio product search |

---

If you're already running Amazon affiliate content and the friction of finding-then-pasting ASINs is slowing you down, Velantio's free plan includes the built-in product search — type a name, see matches, click to add to a table. One workflow instead of three open tabs.

Related posts

Build affiliate tables that actually convert.

Velantio builds Amazon comparison tables in minutes. Live pricing under your own Creators API credentials, click tracking, and a 1 KB embed that works on any site.

Start free
asin lookupamazon asinasin finderproduct research