# GitHub Profile Followers List

> GitHub Profile Followers 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-14).

Lists the followers for a given GitHub user profile by handle, with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/github/profiles/:handle/followers
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/github-profile-followers-list-55f543cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eMRzD2Ibczrwe-4iSNzRq

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-profile-followers-list-55f543cd
```

Example prompt: Can you pull the list of followers for the GitHub profile 'torvalds'?

## When to prefer this

Use this endpoint when you need to programmatically fetch the follower list for a specific GitHub user, especially for social graph analysis, developer audience research, or monitoring follower growth on GitHub. Prefer this over scraping GitHub directly as it handles pagination cleanly via cursor.

## Known failure modes

- GitHub handle not found — returns error if the username does not exist
- Handle too long or empty — validation error if handle exceeds 39 characters or is blank
- Invalid pagination cursor — error if cursor string is malformed or expired
- Rate limit or upstream GitHub API unavailability — may return 429 or 503
- Payment failure — x402 payment not processed, request rejected

## How this service works

List followers for a GitHub profile.

## Output

A paginated list of GitHub users who follow the specified GitHub handle, including profile details for each follower and a cursor for fetching the next page of results.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "maxLength": 39,
       "minLength": 1,
       "description": "GitHub username whose followers should be listed."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Pagination cursor from a previous response (numeric page index as a string)."
      }
     }
    }
   },
   "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-profile-followers-list-55f543cd/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)
