100 free credits. No credit card required.Start building
Logo
Amazon logo
100 free credits. No credit card required

Amazon Product API

Scrape Amazon Product data with one API call. Returns full product detail for an Amazon ASIN: title, brand, description, price, rating, image gallery, specifications, and variant ASINs. For this product's customer reviews, call GET /v1/amazon/reviews with the same ASIN (shared upstream call).

Last updated September 2026Maintained by the SocialCrawl team

Returns one Amazon product by ASIN: title, brand, description, price, rating, image gallery, specifications, and variant ASINs.

Use it when you already have the ASIN and need full product detail rather than search results. For its reviews, call the reviews endpoint.

Searching 65 platforms in parallel

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
Amazon API

What can you do with the Product API?

The Product endpoint gives you structured Amazon data with computed fields in a single request. No scraping infrastructure to build or maintain.

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://www.socialcrawl.dev/v1/amazon/product?asin=B0FQFB8FMG&country=US"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/amazon/product",
    params={
    'asin': 'B0FQFB8FMG',
    'country': 'US',
    },
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/amazon/product?asin=B0FQFB8FMG&country=US",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

Parameters

ParameterRequiredDescription
asinYes10-character Amazon ASIN (the product identifier).
countryNoAmazon marketplace as an ISO 3166-1 alpha-2 country code (default US). Supported: US, GB, CA, DE, FR, IT, ES, JP, IN, MX, BR, AU, NL. Note: non-US marketplaces (especially EU) are best-effort: the upstream provider is slower and occasionally times out for these; such calls are refunded, and US is the most reliable marketplace. (US | GB | CA | DE | FR | IT | ES | JP | IN | MX | BR | AU | NL)
Example Response

What does the Amazon Product API return?

Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.

Example response
{
  "success": true,
  "platform": "amazon",
  "endpoint": "/v1/amazon/product",
  "data": {
    "product": {
      "id": "B0FQFB8FMG",
      "url": "https://www.amazon.com/dp/B0FQFB8FMG",
      "title": "Apple AirPods Pro 3 Wireless Earbuds, Active Noise Cancellation, Live Translation, Heart Rate Sensing, Hearing Aid Feature, Bluetooth Headphones, Spatial Audio, High-Fidelity Sound, USB-C Charging",
      "description": "About this item  WORLD’S BEST IN-EAR ACTIVE NOISE CANCELLATION — Removes up to 2x more unwanted noise than AirPods Pro 2* so you can stay fully immersed in the moment.*\nBREAKTHROUGH AUDIO PERFORMANCE — Experience breathtaking, three-dimensional audio with AirPods Pro 3. A new acoustic architecture delivers transformed bass, detailed clarity so you can hear every instrument, and stunningly vivid vocals.\nHEART RATE SENSING — Built-in heart rate sensing lets you track your heart rate and calories burned for up to 50 different workout types.* With iPhone, you will have access to the Move ring, step count, and the new Workout Buddy,* powered by Apple Intelligence.*\nLIVE TRANSLATION — Communicate across language barriers using Live Translation,* enabled by Apple Intelligence.*\nEXTENDED BATTERY LIFE — Get up to 8 hours of listening time with Active Noise Cancellation on a single charge. Or up to 10 hours in Transparency using the Hearing Aid feature.*\nSECURE IN-EAR FIT — All-new ear tips, now in five sizes, provide a more secure, personalized fit and better audio performance across the board.*\nHEARING HEALTH — Take a hearing test in the comfort of your home.* Use the Hearing Aid feature, now with automatic Conversation Boost, for clearer communication.* And active Hearing Protection helps prevent exposure to loud environmental noise.*\nPERSONALIZED LISTENING — Next-generation Adaptive EQ customizes a sound signature for your unique ear geometry and fit.* And inward-facing microphones measure what you’re hearing for real-time adjustments.\nMAGICAL EXPERIENCE — Automatic Switching lets you seamlessly switch between your Apple devices.* And Audio Sharing lets you share a song or show between two sets of AirPods on your iPhone, iPad, or Apple TV.*\nShow more ›  See more product details",
      "seller": null,
      "brand": "Apple",
      "price": {
        "current": 199.99,
        "original": 249,
        "currency": "USD"
      },
      "rating": {
        "average": 4.5,
        "count": 12442
      },
      "image_urls": [
        "https://m.media-amazon.com/images/I/61solmQSSlL._AC_SL1500_.jpg",
        "https://m.media-amazon.com/images/I/71dt0UurPZL._AC_SL1500_.jpg"
      ],
      "availability": "In Stock",
      "reviews_count": null,
      "specifications": [
        {
          "group": "Technical Details",
          "name": "Product Dimensions",
          "value": "1.1 x 0.8 x 1.2 inches"
        },
        {
          "group": "Technical Details",
          "name": "Item Weight",
          "value": "2.56 ounces"
        }
      ]
    }
  },
  "credits_used": 5,
  "credits_remaining": 9999,
  "request_id": "req_example000000",
  "cached": false
}

Live sample illustrating the unified response shape. Field values reflect the record you query.

API Details

How does the Amazon Product API work?

Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.

Method

GET

Response

JSON

Why SocialCrawl

Why use SocialCrawl for Amazon Product data?

We handle the complexity of Amazon data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.

One schema, every platform

Query 65 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.

See your data before you code

Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 65 platforms
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
How do I get full Amazon product detail from an ASIN?
Send a GET request to /v1/amazon/product with the asin parameter, the 10-character Amazon product ID. The response returns the title, brand, description, price, rating, image gallery, specifications, and variant ASINs in a unified JSON shape.
What fields does the Amazon Product API return?
You get the product title, brand, full description, price, customer rating, an image gallery, the specification list, and the variant ASINs for sizes or colors. All fields follow SocialCrawl's canonical commerce schema validated at the wire.
How do I get the reviews for a product?
Call /v1/amazon/reviews with the same ASIN you passed to /v1/amazon/product. Both endpoints share one upstream call, so the second request comes back fast from cache.
Can I get product data from non-US Amazon marketplaces?
Yes. Pass the country parameter to fetch product detail from a specific Amazon marketplace using ISO 3166-1 alpha-2 codes. Leave it off and the endpoint defaults to the US store.
How much does the Amazon Product API cost?
Each product request costs 5 credits on the advanced tier, since it returns the full detail payload. New accounts get 100 free credits with no credit card, enough to pull 20 full product records before paying.

Ask AI about SocialCrawl

Ready to scrape Amazon Product data?

Get your API key and start pulling Amazon data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown