Retrieve Amazon product details
/amazon/product/{asin}Returns normalized product details for an Amazon ASIN on `amazon.com`, including pricing, availability, overview data, inline review samples, and descriptive content.
Crawlora Docs
Track product search and product-page signals such as price, availability, rating, and review count.
Track product search and product-page signals such as price, availability, rating, and review count.
Only endpoints that exist in the generated endpoint metadata are linked here. Missing optional endpoints are intentionally omitted.
/amazon/product/{asin}Returns normalized product details for an Amazon ASIN on `amazon.com`, including pricing, availability, overview data, inline review samples, and descriptive content.
/amazon/searchReturns normalized Amazon search result cards for `amazon.com`.
| Field | Notes |
|---|---|
| asin | Workflow field; map to exact endpoint response fields from endpoint docs. |
| keyword | Workflow field; map to exact endpoint response fields from endpoint docs. |
| title | Workflow field; map to exact endpoint response fields from endpoint docs. |
| price | Workflow field; map to exact endpoint response fields from endpoint docs. |
| availability | Workflow field; map to exact endpoint response fields from endpoint docs. |
| rating | Workflow field; map to exact endpoint response fields from endpoint docs. |
| review_count | Workflow field; map to exact endpoint response fields from endpoint docs. |
| seller | Workflow field; map to exact endpoint response fields from endpoint docs. |
| checked_at | Workflow field; map to exact endpoint response fields from endpoint docs. |
This example uses the real Retrieve Amazon product details endpoint. Exact request fields come from the endpoint metadata.
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/amazon/product/B0DGJ736JM?language=en¤cy=USD" \
-H "x-api-key: $CRAWLORA_API_KEY"Use endpoint detail pages for exact response schemas. This recipe does not invent response fields.
{
"code": 200,
"msg": "OK",
"data": {
"asin": "B0DGJ736JM",
"title": "Apple Watch SE (2nd Gen) [GPS 40mm]",
"link": "https://www.amazon.com/dp/B0DGJ736JM/",
"rating": 4.4,
"review_count": 1055,
"price": 189
}
}Store a current product table plus immutable snapshot rows for price and availability history.
Estimate usage by multiplying requests by endpoint credit cost. The table below only shows real credit costs available from the billing constants.
| Endpoint | Credit cost | Docs |
|---|---|---|
| Retrieve Amazon product details | 2 credits/request | /docs/Amazon/amazon-product |
| Search Amazon products | 3 credits/request | /docs/Amazon/amazon-search |
Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora termsUse this recipe for workflow shape, then rely on endpoint reference pages for exact paths, request schemas, response schemas, and credit costs.