# GitHub Trending Developers List

> GitHub Trending Developers List is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-13).

Returns a list of trending GitHub developers filtered by programming language and time window (daily, weekly, or monthly).

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/github/trending/developers
- Price: $0.014/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-developers-list-19e6bdad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_feXacNEXnK57H43HMey63

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-developers-list-19e6bdad
```

Example prompt: Who are the trending GitHub developers for Python this week?

## When to prefer this

Use this endpoint when you need to discover which individual developers are currently trending on GitHub, optionally filtered by programming language and time window. Prefer this over general GitHub search when you specifically want trending/rising developers rather than searching by criteria like stars or followers.

## Known failure modes

- Invalid 'since' value (not daily/weekly/monthly) returns a validation error
- Empty language string may return an error or default to all languages
- No trending data available for a very niche language may return an empty list
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting or service unavailability returning 5xx errors

## How this service works

List trending GitHub developers for a language and time window.

## Output

A list of trending GitHub developer profiles for the specified language and time window, including usernames, names, avatars, and featured repositories that contributed to their trending status.

## 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": {
      "since": {
       "enum": [
        "daily",
        "weekly",
        "monthly"
       ],
       "type": "string",
       "description": "Trending time window. Default: `daily`."
      },
      "language": {
       "type": "string",
       "minLength": 1,
       "description": "Optional trending coding language filter."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/github-trending-developers-list-19e6bdad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
