GitHub Developer Info
Heavstal Dev Recon fetches detailed developer profiles from GitHub. It returns bio, repository counts, follower stats, and account creation dates.
Endpoint
Section titled “Endpoint”POST /github-info
Request Parameters
Section titled “Request Parameters”| Field | Type | Required | Description |
|---|---|---|---|
| username | string | Yes | The GitHub username target (e.g., “vercel”). |
Example Usage
Section titled “Example Usage”const res = await fetch('https://heavstal.com.ng/api/v1/github-info', {method: 'POST',headers: { 'Content-Type': 'application/json', 'x-api-key': 'YOUR_KEY'},body: JSON.stringify({ username: 'torvalds' })});Successful Response
Section titled “Successful Response”{"status": "success","code": 200,"creator": "HEAVSTAL TECH","data": { "username": "torvalds", "name": "Linus Torvalds", "bio": "Linux creator", "followers": 195000, "public_repos": 7, "avatar_url": "https://avatars.githubusercontent.com/u/1024025?v=4", "created_at": "2011-09-03T15:26:22Z"}}