List followers for a GitHub profile.
Endpoint
/v1/github/profiles/{handle}/followers
Path
GitHub username whose followers should be listed.
Query
Pagination cursor from a previous response (numeric page index as a string).
const response = await fetch( "https://api.socialfetch.dev/v1/github/profiles/torvalds/followers", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);