curl --location --request POST 'https://www.amazon.com/ap/oa/eligibility/product/list' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Prefer: return=representation' \
--header 'Content-Type: text/plain' \
--data-raw '{
"adType": "sp",
"productDetailsList": [
{
"asin": "B0B9VJLZ69"
}
]
}'
{}