Developer
GitHub repo health check API
Health of a GitHub repository: stars, forks, open-issue load, days since last push, license, archived flag, topics, and a 'maintained?' read. Answers 'is this repo maintained', 'health of owner/repo', 'how active is this project', 'when was this last updated'. Accepts 'owner/name' or a github.com URL.
Price$0.01per request
MethodPOST
Route/v1/dev/github-health
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache600s public
devgithubrepositorymaintenancestarsopen-sourcehealthactivity
API URL
Integration docshttps://x402.hexl.dev/v1/dev/github-healthExample request
{
"repo": "facebook/react"
}Example response
{
"repo": "facebook/react",
"stars": 228000,
"forks": 46000,
"openIssues": 900,
"language": "JavaScript",
"license": "MIT",
"daysSinceLastPush": 1,
"archived": false,
"maintained": true,
"healthSummary": "actively maintained"
}Input schema
{
"type": "object",
"required": [
"repo"
],
"properties": {
"repo": {
"type": "string",
"examples": [
"facebook/react"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}