curl --location --request POST 'https://www.amazon.com/ap/oa/sp/targets/bid/recommendations' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Accept: application/vnd.spthemebasedbidrecommendation.v3+json' \
--header 'Content-Type: text/plain' \
--data-raw '{
"recommendationType": "BIDS_FOR_EXISTING_AD_GROUP",
"targetingExpressions": [
{
"type": "KEYWORD_BROAD_MATCH",
"value": "av cable"
}
],
"campaignId": "{{campaignId}}",
"adGroupId": "{{adGroupId}}"
}'
{
"bidRecommendations": [
{
"theme": "CONVERSION_OPPORTUNITIES",
"impactMetrics": {
"clicks": {
"values": [
{
"lower": 24,
"upper": 32
},
{
"lower": 48,
"upper": 64
},
{
"lower": 71,
"upper": 96
}
]
},
"orders": {
"values": [
{
"lower": 3,
"upper": 4
},
{
"lower": 5,
"upper": 7
},
{
"lower": 8,
"upper": 10
}
]
}
},
"bidRecommendationsForTargetingExpressions": [
{
"targetingExpression": {
"type": "CLOSE_MATCH",
"value": null
},
"bidValues": [
{
"suggestedBid": 0.77
},
{
"suggestedBid": 1
},
{
"suggestedBid": 1.28
}
]
},
{
"targetingExpression": {
"type": "COMPLEMENTS",
"value": null
},
"bidValues": [
{
"suggestedBid": 1.01
},
{
"suggestedBid": 1.11
},
{
"suggestedBid": 1.25
}
]
},
{
"targetingExpression": {
"type": "LOOSE_MATCH",
"value": null
},
"bidValues": [
{
"suggestedBid": 0.12
},
{
"suggestedBid": 0.13
},
{
"suggestedBid": 0.16
}
]
},
{
"targetingExpression": {
"type": "SUBSTITUTES",
"value": null
},
"bidValues": [
{
"suggestedBid": 0.64
},
{
"suggestedBid": 1.01
},
{
"suggestedBid": 1.36
}
]
}
]
}
]
}