Get product title, price, star rating, and review count from any Amazon product page as clean JSON.
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"
}
}
}
}'