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.
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);| Name | Type | Description |
|---|---|---|
watchlistId* | string (path) | Watchlist id from list_watchlists or create_watchlist. |
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.
This skill is free and never spends credits.
Call get_watchlist with the watchlistId. The response lists every member with handle, platform, follower count and profileId.
Also available as an MCP tool.
Related topics: watchlist contents · creator roster · list membership check