First Followers
The First Followers tool analyzes the earliest followers of a Twitter account to identify potential bot networks and coordinated activities.
Last updated
The First Followers tool analyzes the earliest followers of a Twitter account to identify potential bot networks and coordinated activities.
Last updated
// Request
const getFirstFollowers = async (username: string): Promise<FirstFollowersResponse> => {
const response = await fetch(`${endpoints.socialMetrics}/first-followers/${username}`);
return response.json();
};
interface FirstFollowersResponse extends APIResponse<{
username: string;
first_followers: {
username: string;
followed_at: string;
account_age: string;
risk_score: number;
is_active: boolean;
}[];
}> {}