- Auth
- Accounts
- First call
- Reporting
- Snapshots
- Test accounts
- Amazon Marketing Stream
- Amazon Marketing Cloud
- Administration
- Accounts
- Instances
- Create an instance
- List all instances
- List information about the requested instance
- Update instance details
- Update AWS account metadata in the requested instance
- List advertisers in instance
- Create advertiser update
- Get advertiser update
- Gets advertiser information about the requested AMC instance
- Delete AMC instance
- Reporting
- AMC Audiences
- Rule-based audiences
- Creates query based audience execution metadata information
- Get all query based audiences execution metadata.
- Get query based audience execution metadata for a given audienceExecutionId.
- Update query based audience execution metadata for a given audienceExecutionId.
- Delete query based audience execution metadata for a given audienceExecutionId.
- Lookalike audiences
- Rule-based audiences
- Administration
- Sponsored Products
- Sponsored Brands
- Campaigns
- Ad groups
- Ads
- Targeting
- Recommendations
- Theme targeting
- Create keywordsPOST
- Update keywordPUT
- Get keywordGET
- Delete keywordDELETE
- Create negative keywordsPOST
- Update negative keywordPUT
- Get negative keywordGET
- Delete negative keywordDELETE
- Create product targetsPOST
- Update a product targetPUT
- Get product targetGET
- Delete product targetDELETE
- Create negative product targetPOST
- Update negative product targetPUT
- Get negative product targetGET
- Delete negative product targetDELETE
- Get all categoriesGET
- Get category refinementsGET
- Ad creatives
- Get brandsGET
- Get landing page ASINSGET
- Sponsored Display
- Stores
- Product metadata
- Budget rules
- Budget usage
- Creative asset library
- Locations
- Exports
- Sponsored TV
- Amazon DSP
- Partner opportunities
Get keyword recommendations
POST
/sb/recommendations/keyword
最后修改时间:2025-03-16 02:19:30
责任人:未设置
请求参数
Header 参数
Amazon-Advertising-API-ClientId
string
必需
示例值:
{{client_id}}
Authorization
string
必需
示例值:
Bearer {{access_token}}
Amazon-Advertising-API-Scope
string
必需
示例值:
{{profileId}}
Body 参数application/json
url
string
必需
maxNumSuggestions
string
必需
creativeType
string
必需
creativeAsins
array[string]
必需
locale
string
必需
示例
{
"url": "https://www.amazon.com/stores/page/1F55C506-459C-42B7-885B-86A3EA96A582",
"maxNumSuggestions": "3",
"creativeType": "PRODUCT_COLLECTION",
"creativeAsins": [
"B00JVTNWB0",
"B0787FVB5F",
"B004QF0TFQ"
],
"locale": "zh_CN"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://www.amazon.com/ap/oa/sb/recommendations/keyword' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"url": "https://www.amazon.com/stores/page/1F55C506-459C-42B7-885B-86A3EA96A582",
"maxNumSuggestions": "3",
"creativeType": "PRODUCT_COLLECTION",
"creativeAsins" : [
"B00JVTNWB0",
"B0787FVB5F",
"B004QF0TFQ"
],
"locale": "zh_CN"
}'
返回响应
🟢200Get keyword recommendations for list of ASINS
application/json
Body
array of:
recommendationId
string
必需
type
string
必需
value
string
必需
translation
string
必需
matchType
string
必需
searchTermImpressionShare
null
必需
searchTermImpressionRank
null
必需
示例
[
{
"recommendationId": "8b6e905435fc700f2033de731a429429",
"type": "addKeyword",
"value": "mens socks",
"translation": "男士袜子",
"matchType": "PHRASE",
"searchTermImpressionShare": null,
"searchTermImpressionRank": null
},
{
"recommendationId": "5cb57c0e663281f2c86fb2718dda1e6e",
"type": "addKeyword",
"value": "socks for men",
"translation": "男士袜子",
"matchType": "PHRASE",
"searchTermImpressionShare": null,
"searchTermImpressionRank": null
},
{
"recommendationId": "fbce90ea015b6bf23e1f02cd9a0d4813",
"type": "addKeyword",
"value": "mens adidas socks",
"translation": "男士阿迪达斯袜",
"matchType": "PHRASE",
"searchTermImpressionShare": null,
"searchTermImpressionRank": null
}
]
🟢200Get keyword recommendations for URL
修改于 2025-03-16 02:19:30