amazon.se APIamazon.se ↗
Search Amazon.se by keyword, get product details by ASIN, and fetch autocomplete suggestions. Returns prices in SEK, ratings, review counts, and deal badges.
curl -X GET 'https://api.parse.bot/scraper/0b36f0a8-b85e-41f6-983a-cc0ba2be41f3/search_products?page=1&limit=5&query=headphones' \ -H 'X-API-Key: $PARSE_API_KEY'
Search Amazon.se for products by keyword. Returns up to 48 products per page with pagination support. Includes product name, ASIN, price, rating, review count, image, and deal badges.
| Param | Type | Description |
|---|---|---|
| page | integer | Starting page number (48 items per page) |
| limit | integer | Maximum number of results to return. Will fetch multiple pages as needed. |
| queryrequired | string | Search keyword (e.g. 'laptop', 'headphones') |
{
"type": "object",
"fields": {
"page": "integer - starting page number",
"query": "string - the search query",
"products": "array of product objects with asin, title, price, currency, original_price, rating, reviews_count, image_url, product_url, badge, is_prime, is_sponsored",
"pages_fetched": "integer - number of pages actually fetched",
"results_count": "integer - actual number of results returned",
"total_results": "integer or null - estimated total results from Amazon"
},
"sample": {
"data": {
"page": 1,
"query": "headphones",
"products": [
{
"asin": "B0BTDX26B2",
"badge": null,
"price": 744,
"title": "Sony WH-CH720N Noise Cancelling Wireless Bluetooth Headphones",
"rating": 4.5,
"currency": "SEK",
"is_prime": false,
"image_url": "https://m.media-amazon.com/images/I/51NCsEz5O6L._AC_UL320_.jpg",
"product_url": "https://www.amazon.se/dp/B0BTDX26B2",
"is_sponsored": false,
"reviews_count": 14900,
"original_price": null
}
],
"pages_fetched": 1,
"results_count": 5,
"total_results": 40000
},
"status": "success"
}
}About the amazon.se API
The Amazon Sweden API gives developers access to three endpoints covering product search, product detail lookup, and search autocomplete on amazon.se. search_products returns up to 48 results per page including ASIN, price in SEK, rating, review count, image URL, and deal badges. get_product_details retrieves full product information by ASIN, and get_suggestions returns keyword suggestions matching a query prefix.
Product Search
search_products accepts a query string and optional page and limit parameters. Each result object includes asin, title, price, currency (SEK), original_price, rating, reviews_count, image_url, product_url, and badge (for deal or promotional labels). When limit exceeds 48, the endpoint fetches multiple pages automatically and reports back pages_fetched and results_count alongside the total_results estimate from Amazon.
Product Detail Lookup
get_product_details takes a single asin string and returns the current price, title, rating, reviews_count, currency, and product_url. When the full product page is accessible, the response also includes brand, feature bullet points, product overview, variant options, and image gallery data. When direct page access is unavailable, the endpoint falls back to search-based results and returns the summary fields only.
Autocomplete Suggestions
get_suggestions accepts a partial query string — even a two-character prefix like 'la' — and returns an array of suggestion objects, each with a value (the suggested keyword) and a type field (typically KEYWORD). The prefix field in the response echoes back your input. This endpoint is useful for building search-ahead UIs or systematically discovering keyword variants on the Swedish Amazon marketplace.
- Track SEK price changes on specific ASINs for Swedish market price monitoring.
- Build a product comparison tool using search results with ratings and review counts from amazon.se.
- Populate a deal-finder feed by filtering search results for non-null
badgefields. - Seed a keyword research tool using autocomplete suggestions for Swedish-language product queries.
- Cross-reference ASINs between Amazon.se and other regional Amazon APIs to identify pricing gaps.
- Aggregate product image URLs and titles for a Swedish affiliate product catalogue.
- Validate product availability and current pricing on Amazon Sweden before programmatic ad spend.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Amazon have an official developer API?+
What does `get_product_details` return when the full product page isn't accessible?+
title, price, currency, rating, reviews_count, and product_url. The extended fields — brand, feature bullets, product overview, variants, and image gallery — are only included when the direct product page is accessible.Does the API cover seller information, Buy Box details, or fulfilled-by data?+
Are customer review texts accessible through this API?+
reviews_count and rating as aggregate figures but does not include individual review texts, reviewer names, or per-review ratings. You can fork the API on Parse and revise it to add a reviews endpoint that returns individual review content.How does pagination work in `search_products`?+
page integer and a limit to cap total results. When limit requires more than one page, the endpoint fetches additional pages automatically. The response includes pages_fetched to confirm how many pages were retrieved and total_results for the estimated total available on Amazon (which may be null).