Amazon
Amazon Options
The 22 marketplaces Amazon actually operates, as country codes and domain suffixes. Use it to populate a marketplace picker or to validate a country value before spending a credit. Unauthenticated and free.
GET/api/v1/amazon/options
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonRequest
import httpx
r = httpx.get("https://api.scavio.dev/api/v1/amazon/options")
for c in r.json()["countries"]:
print(c["value"], c["label"])Response
],
"languages": [],
"currencies": [],
]
}