# GitHub Trending Repos Feed

> GitHub Trending Repos Feed is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net:10000, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns recently created GitHub repositories ranked by star count

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net:10000/data/github/trending
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/github-trending-repos-feed-916ec3d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gbYDq0a6F8IGnL6feyVXi

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-trending-repos-feed-916ec3d0
```

Example prompt: Show me the top 20 GitHub repos created in the last 7 days ranked by stars so I can see what new open source projects are blowing up right now.

## When to prefer this

Use this endpoint when you need a quick, pre-ranked feed of new and trending GitHub repositories without needing to authenticate with GitHub's own API or handle rate limits yourself. It is ideal for discovery workflows, newsletters, or monitoring emerging open source projects. Prefer this over raw GitHub API calls when you want star-ranked recency filtering in a single call.

## Known failure modes

- GitHub API rate limiting causing empty or partial results
- No repositories found for a very short time window with few stars
- Invalid or negative values for days or limit parameters causing errors
- Service unavailability due to upstream GitHub data fetch failures

## How this service works

GitHub repos created recently, ranked by stars

## Output

A ranked list of recently created GitHub repositories ordered by star count, including repository names, star counts, and associated metadata. Results can be filtered by recency (days) and capped by a limit parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "days": {
       "type": "number"
      },
      "limit": {
       "type": "number"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/github-trending-repos-feed-916ec3d0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net:10000](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net%3A10000/llms.txt)
