GET /amazon/influencer-profile

Influencer Profile

Get detailed profile information for a specific Amazon influencer.

Amazon Product Data API

Retrieve detailed profile information for a specific Amazon influencer, including their bio, follower count, social links, and storefront details.

HTTP Request

GET /amazon/influencer-profile

Parameters

ParameterTypeRequiredDefaultDescription
influencer_idstringYes-The Amazon influencer ID
marketplacestringNocomAmazon marketplace code
languagestringNo-Language code for results

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
{
  "status": "OK",
  "request_id": "c5d6e7f8-5678-9012-8901-ffffffffffff",
  "data": {
    "country": "US",
    "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",
    "hero_image": "https://m.media-amazon.com/images/S/influencer-hero-image-prod/techreviewpro_hero.jpg",
    "bio": "Tech enthusiast and product reviewer. I test and share the best gadgets, accessories, and smart home devices available on Amazon.",
    "follower_count": 125000,
    "num_posts": 340,
    "num_lists": 28,
    "social_links": {
      "youtube": "https://youtube.com/@techreviewpro",
      "instagram": "https://instagram.com/techreviewpro",
      "tiktok": "https://tiktok.com/@techreviewpro"
    },
    "categories": [
      "Electronics",
      "Smart Home",
      "Computers & Accessories"
    ]
  }
}

Code Examples

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

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

params = {
    "influencer_id": "amzn1.inf.ABC123DEF456",
    "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"]

print(f"Name: {data['name']}")
print(f"Bio: {data['bio']}")
print(f"Followers: {data['follower_count']}")
print(f"Categories: {', '.join(data['categories'])}")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
const url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/influencer-profile";

const params = new URLSearchParams({
  influencer_id: "amzn1.inf.ABC123DEF456",
  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();
console.log(`${data.name} - ${data.follower_count} followers`);
console.log(`Bio: ${data.bio}`);
console.log(`Categories: ${data.categories.join(", ")}`);
1
2
3
4
5
curl -G "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/influencer-profile" \
  --data-urlencode "influencer_id=amzn1.inf.ABC123DEF456" \
  --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"