Get stars, forks, open issues, and primary language from any public GitHub repository page.
curl -X POST https://api.jsonit.io/v1/extract \
-H "Authorization: Bearer sk_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://github.com/anthropics/claude-code",
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"stars": {
"type": "number"
},
"forks": {
"type": "number"
},
"open_issues": {
"type": "number"
},
"language": {
"type": "string"
}
}
}
}'