List accounts a GitHub profile follows.
Endpoint
/v1/github/profiles/{handle}/following
Path
GitHub username whose following list 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/following", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);