← All use cases

Extract repo stats from any GitHub page

Get stars, forks, open issues, and primary language from any public GitHub repository page.

Example request

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"
        }
      }
    }
  }'
Get an API keyFull API docs