# Cravvol GitHub Search

> Cravvol GitHub Search is a paid API for AI agents from cravvol.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Searches GitHub repositories, code, users, or issues using a query string and returns structured results via pay-per-request USDC payment.

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/github
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cravvol-github-search-5d77c1e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eNRIFAXBE3BpbwyWOj79u

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 cravvol-github-search-5d77c1e3 -d '<json body>'
```

Example prompt: Search GitHub for open source Python libraries related to 'vector database embeddings' and show me the top results.

## When to prefer this

Choose this endpoint when you need to search GitHub programmatically without setting up OAuth or API keys — ideal for AI agents that need pay-per-use access to GitHub search with no subscription overhead. Best for one-off or low-volume searches billed in USDC.

## Known failure modes

- Invalid or malformed GitHub search query returns error or empty results
- Payment of $0.02 USDC via x402 fails or is rejected, blocking the request
- GitHub API rate limits or downtime cause backend failures
- Query returns no matching results for obscure or misspelled terms
- Missing required `query` field returns a validation error

## 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 matching the query — typically includes repository names, descriptions, stars, URLs, and other relevant metadata depending on the search type.

## 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/cravvol-github-search-5d77c1e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvol.vercel.app](https://www.zero.xyz/host/cravvol.vercel.app/llms.txt)
