GET /amazon/influencer-search

Influencer Search

Search for Amazon influencers by name or keyword.

Amazon Product Data API

Search for Amazon influencers by name or keyword. Returns a list of influencer profiles with their IDs, which can be used to retrieve detailed profile information, posts, and curated product lists.

HTTP Request

GET /amazon/influencer-search

Parameters

ParameterTypeRequiredDefaultDescription
querystringYes-Search query for influencer name or keyword
startintegerNo0Starting index for pagination
numintegerNo10Number of results to return (max 100)
marketplacestringNocomAmazon marketplace code

Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  "status": "OK",
  "request_id": "b4c5d6e7-4567-8901-7890-eeeeeeeeeeee",
  "data": {
    "country": "US",
    "total_results": 32,
    "influencers": [
      {
        "influencer_id": "amzn1.inf.ABC123DEF456",
        "name": "TechReviewPro",
        "profile_url": "https://www.amazon.com/shop/techreviewpro",
        "profile_image": "https://m.media-amazon.com/images/S/influencer-profile-image-prod/techreviewpro.jpg",
        "bio": "Tech enthusiast sharing the best gadgets and deals on Amazon.",
        "follower_count": 125000,
        "num_posts": 340
      },
      {
        "influencer_id": "amzn1.inf.GHI789JKL012",
        "name": "HomeStyleGuide",
        "profile_url": "https://www.amazon.com/shop/homestyleguide",
        "profile_image": "https://m.media-amazon.com/images/S/influencer-profile-image-prod/homestyleguide.jpg",
        "bio": "Interior design tips and home product recommendations.",
        "follower_count": 89000,
        "num_posts": 215
      }
    ]
  }
}

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
import requests

url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/influencer-search"

params = {
    "query": "tech reviews",
    "num": 20,
    "marketplace": "com"
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
data = response.json()["data"]

for influencer in data["influencers"]:
    print(f"{influencer['name']} - {influencer['follower_count']} followers")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
const url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/influencer-search";

const params = new URLSearchParams({
  query: "tech reviews",
  num: "20",
  marketplace: "com"
});

const response = await fetch(`${url}?${params}`, {
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
  }
});

const { data } = await response.json();
data.influencers.forEach(inf => {
  console.log(`${inf.name} - ${inf.follower_count} followers`);
});
1
2
3
4
5
6
curl -G "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/influencer-search" \
  --data-urlencode "query=tech reviews" \
  --data-urlencode "num=20" \
  --data-urlencode "marketplace=com" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: real-time-amazon-data-the-most-complete.p.rapidapi.com"