Get popular tweets from a specific X profile.
Endpoint
/v1/twitter/profiles/{handle}/tweets
Path
X handle to look up, with or without a leading @.
Query
Optional: omit per-tweet author and profile card for a smaller response.
const response = await fetch( "https://api.socialfetch.dev/v1/twitter/profiles/charlidamelio/tweets", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);