GET /amazon/influencer-posts

Influencer Posts

Get posts and product recommendations from a specific Amazon influencer.

Amazon Product Data API

Retrieve posts and product recommendations published by a specific Amazon influencer. Filter by content type to get only lists, photos, or videos. Supports pagination for large result sets.

HTTP Request

GET /amazon/influencer-posts

Parameters

ParameterTypeRequiredDefaultDescription
influencer_idstringYes-The Amazon influencer ID
marketplacestringNocomAmazon marketplace code
languagestringNo-Language code for results
scopestringNo-Content type filter: List, Photo, or Video
page_tokenstringNo-Token for paginating through 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  "status": "OK",
  "request_id": "d6e7f8a9-6789-0123-9012-111111111111",
  "data": {
    "country": "US",
    "influencer_id": "amzn1.inf.ABC123DEF456",
    "influencer_name": "TechReviewPro",
    "next_page_token": "eyJsYXN0X2V2YWx1YXRlZF9rZXkiOiAiMjAyNiJ9",
    "posts": [
      {
        "post_id": "post-abc123",
        "list_id": "list-xyz789",
        "post_type": "List",
        "title": "Best USB-C Chargers for 2026",
        "description": "My top picks for fast and reliable USB-C chargers tested this year.",
        "post_url": "https://www.amazon.com/shop/techreviewpro/list/list-xyz789",
        "thumbnail": "https://m.media-amazon.com/images/S/influencer-post-image-prod/post-abc123.jpg",
        "created_at": "2026-03-05T14:30:00Z",
        "num_products": 12,
        "engagement": {
          "likes": 450,
          "comments": 38
        }
      },
      {
        "post_id": "post-def456",
        "list_id": "list-uvw321",
        "post_type": "Video",
        "title": "Smart Home Essentials Under $50",
        "description": "Affordable smart home devices that actually work well.",
        "post_url": "https://www.amazon.com/shop/techreviewpro/list/list-uvw321",
        "thumbnail": "https://m.media-amazon.com/images/S/influencer-post-image-prod/post-def456.jpg",
        "video_url": "https://www.amazon.com/live/content/post-def456",
        "created_at": "2026-02-28T10:15:00Z",
        "num_products": 8,
        "engagement": {
          "likes": 820,
          "comments": 65
        }
      }
    ]
  }
}

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-posts"

params = {
    "influencer_id": "amzn1.inf.ABC123DEF456",
    "scope": "Video",
    "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 post in data["posts"]:
    print(f"[{post['post_type']}] {post['title']} - {post['num_products']} products")
 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-posts";

const params = new URLSearchParams({
  influencer_id: "amzn1.inf.ABC123DEF456",
  scope: "Video",
  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.posts.forEach(post => {
  console.log(`[${post.post_type}] ${post.title} - ${post.num_products} products`);
});
1
2
3
4
5
6
curl -G "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/influencer-posts" \
  --data-urlencode "influencer_id=amzn1.inf.ABC123DEF456" \
  --data-urlencode "scope=Video" \
  --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"