Name History
The Name History tool tracks changes in Twitter account names over time to identify suspicious pattern changes and potential impersonation attempts.
Last updated
The Name History tool tracks changes in Twitter account names over time to identify suspicious pattern changes and potential impersonation attempts.
Last updated
// Request
const getNameHistory = async (username: string): Promise<NameHistoryResponse> => {
const response = await fetch(`${endpoints.socialMetrics}/name-history/${username}`);
return response.json();
};
interface NameHistoryResponse extends APIResponse<{
username: string;
history: {
name: string;
date_changed: string;
duration: string;
}[];
}> {}