List verified accounts following an X profile by handle or numeric user id.
Endpoint
/v1/twitter/profiles/{handle}/followers/verified
Path
X (Twitter) profile handle without the leading @, or a numeric user id.
Query
Treat the path value as a handle or a numeric user id. Defaults to id when the value is all digits.
Opaque pagination cursor returned by a previous response.
const response = await fetch( "https://api.socialfetch.dev/v1/twitter/profiles/nasa/followers/verified", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);