# GitHub Repo Stats Lookup

> GitHub Repo Stats Lookup is a paid API for AI agents from etherealgoodsco.store, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Fetches key GitHub repository statistics including stars, forks, open issues, primary language, and license for a given repo.

## Facts

- Endpoint: POST https://etherealgoodsco.store/tool/github-repo
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/github-repo-stats-lookup-dc21d1a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2V8jW0iYs7Pq6T3j1gV2T

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability github-repo-stats-lookup-dc21d1a5 -d '<json body>'
```

Example prompt: Can you pull up the GitHub stats for the repo 'facebook/react' — I want to see the stars, forks, open issues, language, and license?

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of a GitHub repository's key metadata — stars, forks, issues, language, and license — without needing full GitHub API access or authentication setup. It is ideal for agents performing open source due diligence, competitive analysis, or automated repository screening at low cost per call.

## Known failure modes

- Repository not found (invalid owner/name): returns error or empty result
- Private repository: may return 404 or unauthorized error
- GitHub API rate limiting: request may fail under high traffic
- Malformed repository input: returns validation error
- Repository exists but has no license or language set: fields returned as null

## How this service works

GitHub repo stats: stars, forks, issues, language, license

## Output

Returns a structured snapshot of a GitHub repository including: total star count, total fork count, number of open issues, primary programming language, and license identifier (e.g. MIT, Apache-2.0).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "repo": {
   "type": "string"
  },
  "owner": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/github-repo-stats-lookup-dc21d1a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from etherealgoodsco.store](https://www.zero.xyz/host/etherealgoodsco.store/llms.txt)
