curl --request GET \
--url 'https://api.keyapi.ai/v1/amazon/influencer-profile?influencer_name=tastemade&country=us' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/amazon/influencer-profile',
params={"influencer_name": "tastemade", "country": "us"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"influencer_name": "tastemade", "country": "us"});
const response = await fetch(`https://api.keyapi.ai/v1/amazon/influencer-profile?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"name": "Tastemade",
"country": "US",
"domain": "www.amazon.com",
"profile_description": "A global community of food, travel and home & design enthusiasts.",
"profile_link": "https://www.amazon.com/shop/tastemade",
"is_top_creator": true,
"affiliate_status": "Earns revenue",
"has_curations": false,
"posts_count": 3082
},
"requestId": "bef019c7-4adb-4b31-9f34-8299995d8d01"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}Influencer 资料
根据 Amazon Influencer 店铺名查询达人资料,返回简介、粉丝/内容统计、店铺链接和社交信息等字段。适用于达人筛选、联盟营销分析和内容店铺画像。
curl --request GET \
--url 'https://api.keyapi.ai/v1/amazon/influencer-profile?influencer_name=tastemade&country=us' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/amazon/influencer-profile',
params={"influencer_name": "tastemade", "country": "us"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"influencer_name": "tastemade", "country": "us"});
const response = await fetch(`https://api.keyapi.ai/v1/amazon/influencer-profile?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"name": "Tastemade",
"country": "US",
"domain": "www.amazon.com",
"profile_description": "A global community of food, travel and home & design enthusiasts.",
"profile_link": "https://www.amazon.com/shop/tastemade",
"is_top_creator": true,
"affiliate_status": "Earns revenue",
"has_curations": false,
"posts_count": 3082
},
"requestId": "bef019c7-4adb-4b31-9f34-8299995d8d01"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}Copy for AI
🤖 让 AI 帮你写调用代码
点击按钮复制一段结构化提示词,可直接交给 ChatGPT、Claude 或其他 AI 助手生成接口调用代码。
授权
查询参数
Amazon Influencer 店铺名或主页标识。
Amazon 站点/市场国家代码,同时影响域名、币种和默认语言。 可选值: US, AU, BR, CA, CN, FR, DE, IN, IT, MX, NL, SG, ES, TR, AE, GB, JP, SA, PL, SE, BE, EG, ZA, IE
字段投影配置,使用逗号分隔需要返回的达人资料字段,例如 name、profile_link、posts_count、facebook_url。
返回结果的语言代码;如果未指定,结果将以默认域语言返回。 可选值: US: en_US, es_US AU: en_AU BR: pt_BR CA: en_CA, fr_CA FR: fr_FR, en_GB DE: de_DE, en_GB, cs_CZ, nl_NL, pl_PL, tr_TR, da_DK IN: en_IN, hi_IN, ta_IN, te_IN, kn_IN, ml_IN, bn_IN, mr_IN IT: it_IT, en_GB MX: es_MX NL: nl_NL, en_GB SG: en_SG ES: es_ES, pt_PT, en_GB TR: tr_TR AE: en_AE, ar_AE GB: en_GB JP: ja_JP, en_US, zh_CN SA: ar_AE, en_AE PL: pl_PL SE: sv_SE, en_GB BE: fr_BE, nl_BE, en_GB EG: ar_AE, en_AE ZA: en_ZA IE: en_IE
响应
请求成功
The response is of type object.

