# ScrapFly GitHub Crawl

> ScrapFly GitHub Crawl is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Crawls and scrapes content from GitHub repositories, pages, or search results using ScrapFly's web scraping infrastructure

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/github
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-github-crawl-69729291
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U4TprIgfxKZC5hMdxBEzY

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 scrapfly-github-crawl-69729291 -d '<json body>'
```

Example prompt: Can you crawl this GitHub repository page and extract all the content from it: https://github.com/openai/openai-python — I need the README, description, and any other metadata you can pull.

## When to prefer this

Use this endpoint when you need to programmatically scrape or crawl GitHub pages, repositories, or search results without being blocked by GitHub's anti-bot protections. Prefer this over direct HTTP fetching when GitHub rate limits or bot detection would otherwise prevent access.

## Known failure modes

- Invalid or malformed query returns success: false
- GitHub page not found or private repository returns empty data
- Rate limiting or anti-bot measures may cause failed crawl
- Network timeout results in error response
- Missing required query field returns 400 validation error

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing the scraped content from the GitHub page, including HTML, text, metadata, or structured repository data depending on the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-github-crawl-69729291/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
