Follower Audit
The Follower Audit tool analyzes Twitter followers to detect suspicious accounts, bot activity, and potential risks in a token or project's social following.
Last updated
The Follower Audit tool analyzes Twitter followers to detect suspicious accounts, bot activity, and potential risks in a token or project's social following.
Last updated
// Request
const getFollowerAudit = async (username: string): Promise<FollowerAuditResponse> => {
const response = await fetch(`${endpoints.socialMetrics}/follower-audit/${username}`);
return response.json();
};
interface FollowerAuditResponse extends APIResponse<{
account_info: {
username: string;
name: string;
followers_count: number;
following_count: number;
created_at: string;
};
analysis_summary: {
total_analyzed: number;
high_risk: number;
medium_risk: number;
low_risk: number;
};
}> {}