Get the Creators in a Watchlist API

Returns a single watchlist by watchlistId with every member profile: profileId, handle, platform and follower count. Free to call. Use it to review or explain a list before searching it, or to pick profileIds for remove_watchlist_profiles.

Fetch one watchlist with all of its member creators, each with the internal profileId, handle, platform and follower count. Free to call. It is how an agent shows the owner what a list contains, checks whether a creator is already in it, or picks ids to remove.

FreeRead-only

How to call it

GET /api/v1/watchlists/{watchlistId}. Authenticate with your API key. Same call in three languages:

cURL

curl -X GET "https://viraloutliers.com/api/v1/watchlists/EXAMPLE_ID" \
  -H "Authorization: Bearer so_live_YOUR_KEY"

Python (requests)

import requests

r = requests.get(
"https://viraloutliers.com/api/v1/watchlists/EXAMPLE_ID",
    headers={"Authorization": "Bearer so_live_YOUR_KEY"},
)
print(r.json())

JavaScript (fetch)

const res = await fetch("https://viraloutliers.com/api/v1/watchlists/EXAMPLE_ID", {
  method: "GET",
  headers: { "Authorization": "Bearer so_live_YOUR_KEY" },
});
const data = await res.json();
console.log(data);

Parameters

NameTypeDescription
watchlistId*string (path)Watchlist id from list_watchlists or create_watchlist.

What it does

Returns the watchlist's metadata plus a profiles array. Each member carries its profileId (usable with get_profile, compare_profiles and remove_watchlist_profiles), handle, platform and follower count, newest additions first.

Pricing

This skill is free and never spends credits.

Agent workflows

  • Review: get_watchlist → summarize members to the user → remove_watchlist_profiles for the ones to drop.

Frequently asked questions

How do I check which creators are in a watchlist?

Call get_watchlist with the watchlistId. The response lists every member with handle, platform, follower count and profileId.