Login
Headers
Params
Body
LuckData API-Key
Please Input
LuckData API-Host
Please Input
Content-Type
This test defaults to consuming 1 credit
interface description
Sets the Amazon domain, marketplace country, language and currency.
Code Snippets
Example Responses
Results
Target:
Python
Client:
requests
import requests

headers = {
    "Content-Type": "application/json",
    'X-Luckdata-Api-Key': ''
}

json_data={
    "asin": "B01M7Z2F53",
    "region": "US",
    "marketplace": "AMAZON"
}

response = requests.post(
    '/api/real-time-amazon-public-data/BxyFUhFUrBcD?Content-Type=application/json',
    headers=headers,
    json=json_data,
)
print(response.json())