← All use cases

Extract product prices and ratings from Amazon listings

Get product title, price, star rating, and review count from any Amazon product page as clean JSON.

Example request

curl -X POST https://api.jsonit.io/v1/extract \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.amazon.com/dp/B0EXAMPLE",
    "schema": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "price": {
          "type": "string"
        },
        "rating": {
          "type": "number"
        },
        "review_count": {
          "type": "number"
        }
      }
    }
  }'
Get an API keyFull API docs