CA Tweets
The CA Tweets Analysis tool scans X accounts for suspicious contract address sharing patterns and potential scam indicators.
Last updated
The CA Tweets Analysis tool scans X accounts for suspicious contract address sharing patterns and potential scam indicators.
Last updated
// Request
const analyzeCATweets = async (username: string): Promise<CATweetsResponse> => {
const response = await fetch(`${endpoints.socialMetrics}/ca-tweets/${username}`);
return response.json();
};
interface CATweetsResponse extends APIResponse<{
total_tweets_analyzed: number;
suspicious_tweets: {
text: string;
date: string;
link: string;
id: string;
}[];
}> {}