# Crawl GitHub Search

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

Searches GitHub repositories, code, issues, and users via a natural language or structured query, returning results as structured data, paid per-request in USDC via x402.

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/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/crawl-github-search-fdf9d82a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RlCPPkTVMQNtHoYbbpE1h

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 crawl-github-search-fdf9d82a -d '<json body>'
```

Example prompt: Search GitHub for open source Python libraries related to 'vector database embeddings' and show me the top results including repo names, star counts, and descriptions.

## When to prefer this

Use this endpoint when an agent needs to search GitHub programmatically without managing auth tokens or subscriptions — ideal for discovering repos, code, or issues on-demand with a simple pay-per-request model via x402/USDC. Prefer this over direct GitHub API calls when you want zero-auth simplicity and micropayment billing.

## Known failure modes

- Invalid or malformed query string returns an error response
- Payment failure via x402 prevents the request from completing
- GitHub API rate limits or downtime cause failures
- Query returns zero results for very niche or misspelled terms
- Network timeout if GitHub is slow to respond

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

A JSON object with a 'success' boolean and a 'data' object containing GitHub search results, which may include repository metadata (name, description, stars, language, URL), code snippets, issues, or user profiles depending on the query.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

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