# StableSocial GitHub User Activity Scraper

> StableSocial GitHub User Activity 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-15).

Scrapes and returns recent public activity data for a specified GitHub user

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/github/user/activity
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-github-user-activity-scraper-83c80786
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4deByLWIZc9TRFe5Tu4lc

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-user-activity-scraper-83c80786 -d '<json body>'
```

Example prompt: Pull the recent GitHub activity for the user 'torvalds' — I want to see what events, commits, and interactions they've had lately.

## When to prefer this

Choose this endpoint when you need pay-per-request access to a GitHub user's public activity feed without managing GitHub API credentials or rate limits. It is ideal for sporadic lookups of individual developer activity as part of creator research, talent vetting, or open source monitoring workflows. Prefer it over direct GitHub API calls when you want a simple, credential-free scrape billed per use via USDC.

## Known failure modes

- GitHub username not found — returns an error or empty result
- User has no public activity — returns an empty activity list
- GitHub rate limiting or scraping blocks — may return partial or no data
- Invalid or missing username parameter — API returns a validation error
- Target user has a private profile — activity may be unavailable

## How this service works

Scrape Creators · GitHub — Activity

## Output

Returns a list of recent public GitHub activity events for the specified user, including event types (push, pull request, issue, fork, star, etc.), associated repository names, timestamps, and relevant metadata about each interaction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "GitHub user URL, e.g. https://github.com/kentcdodds."
  },
  "year": {
   "type": "number",
   "description": "When provided, returns profile contribution activity for that year. Defaults to the current year."
  },
  "cursor": {
   "type": "number",
   "description": "Cursor from the previous response. Pages backward by month through the selected year."
  },
  "handle": {
   "type": "string",
   "description": "GitHub handle"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-github-user-activity-scraper-83c80786/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)
