Start with 5000 API credits for free
logo

Amazon seller API

Returns seller information from amazon url

Parameters

url - Amazon seller URL

type: string

stream - Stream response

type: booleanDefault: false

Return type

seller

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():
seller = await api.amazon.seller(
url="https://www.amazon.com/sp?seller=A33W53J5GVPZ8K"
)
print(seller.stars)

asyncio.run(main())