Target:
Python
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/BVbTefefm5Lj?Content-Type=application/json',
headers=headers,
json=json_data,
)
print(response.json())