Catalog/osint-github-user

OSINT

GitHub user profile aggregation API

Aggregate a GitHub username into a single recon card: profile, public repo/follower counts, top languages by repo count, total stars, account age in days, and a recent-push activity signal, from the keyless GitHub REST API. The value-add is the aggregation (top languages, total stars, account age, activity classification) the raw API never hands you. Answers 'who is this GitHub user', 'top languages of X', 'how old is this GitHub account', 'how active is this developer'.

Price$0.01per request
MethodPOST
Route/v1/osint/github-user
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
osintgithubuserprofiledeveloperreconlanguagesaggregation
API URLhttps://x402.hexl.dev/v1/osint/github-user
Integration docs
Example request
{
  "username": "octocat"
}
Example response
{
  "login": "octocat",
  "name": "The Octocat",
  "followers": 18000,
  "publicRepos": 8,
  "accountAgeDays": 5800,
  "topLanguages": [
    {
      "language": "Ruby",
      "repoCount": 3
    }
  ],
  "metrics": {
    "totalStars": 21000,
    "originalRepos": 6,
    "forkedRepos": 2,
    "daysSinceLastPush": 40,
    "activity": "active"
  }
}
Input schema
{
  "type": "object",
  "required": [
    "username"
  ],
  "properties": {
    "username": {
      "type": "string",
      "examples": [
        "octocat"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}