Bio History
The Bio History tool tracks changes in Twitter account biographies to identify suspicious patterns and potential scam indicators.
Last updated
The Bio History tool tracks changes in Twitter account biographies to identify suspicious patterns and potential scam indicators.
Last updated
// Request
const getBioHistory = async (username: string): Promise<BioHistoryResponse> => {
const response = await fetch(`${endpoints.socialMetrics}/bio-history/${username}`);
return response.json();
};
interface BioHistoryResponse extends APIResponse<{
username: string;
bio_changes: {
bio: string;
date_changed: string;
duration: string;
}[];
}> {}