Amazon reviews API
Returns reviews from amazon url
Parameters
url - Amazon product URL
type: string
stream - Stream response
type: booleanDefault: false
Return type
reviews
Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
import typedclient import asyncio
api = typedclient.connect('API_KEY')
async def main(): reviews = await api.amazon.reviews( url="https://www.amazon.com/RORSOU-R10-Headphones-Microphone-Lightweight/dp/B094NC89P9/" ) print([(review.productRating) for review in reviews])
asyncio.run(main())