Get a GitHub profile for a user or organization.
Endpoint
/v1/github/profiles/{handle}
Path
GitHub username to look up, with or without a leading @.
const response = await fetch( "https://api.socialfetch.dev/v1/github/profiles/torvalds", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);