# StableSocial GitHub Trending Repositories Scraper

> StableSocial GitHub Trending Repositories Scraper is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Scrapes and returns the current list of trending repositories on GitHub, including repo metadata and stats.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/github/trending/repositories
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-github-trending-repositories-scraper-79f31a88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WqPldhmQWn19iCg687Uz2

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 stablesocial-github-trending-repositories-scraper-79f31a88 -d '<json body>'
```

Example prompt: Pull today's trending GitHub repositories filtered by Python so I can see which open source projects are gaining the most stars right now.

## When to prefer this

Use this endpoint when you need real-time or near-real-time GitHub trending repository data without managing your own scraping infrastructure. It is ideal for agents that need to monitor open source trends, build developer newsletters, or discover popular projects on demand. Prefer this over the GitHub REST API when you specifically need the trending list, which GitHub does not expose via their official API.

## Known failure modes

- GitHub rate limiting or blocking the scraper may return an error or empty results
- Invalid language filter returns no results or an error
- GitHub trending page unavailable or layout changed causes scrape failure
- Network timeout results in a failed request with no data returned

## How this service works

Scrape Creators · GitHub — Trending Repositories

## Output

Returns a structured list of currently trending GitHub repositories, each including the repo name, owner, description, primary programming language, total star count, fork count, and the number of stars gained during the selected time period (daily, weekly, or monthly).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "since": {
   "enum": [
    "daily",
    "weekly",
    "monthly"
   ],
   "type": "string",
   "description": "Trending range: daily, weekly, or monthly. Defaults to daily."
  },
  "language": {
   "type": "string",
   "description": "Optional coding language, e.g. javascript, python, or go."
  },
  "spoken_language_code": {
   "type": "string",
   "description": "Optional spoken language code filter, e.g. en."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-github-trending-repositories-scraper-79f31a88/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
