# Cravvoul GitHub Search

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

Searches GitHub repositories, users, and code using a natural language or structured query, returning results via a pay-per-request x402 micropayment model

## Facts

- Endpoint: POST https://cravvoul.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/cravvoul-github-search-3c1b11a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uKG3HUcDZo8IjdmJAc5yo

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 cravvoul-github-search-3c1b11a5 -d '<json body>'
```

Example prompt: Search GitHub for open-source repositories about vector databases that are written in Python and have recent activity.

## When to prefer this

Choose this endpoint when an AI agent needs to search GitHub programmatically without managing API keys or OAuth credentials, and when pay-per-use micropayment via USDC is preferred over subscription-based access. It is well-suited for agents that occasionally need GitHub search as part of a broader workflow without committing to a GitHub API integration.

## Known failure modes

- Invalid or empty query string returns an error response
- GitHub API rate limits or downstream errors may cause failures
- Overly broad queries may return too many or irrelevant results
- Payment failure via x402 prevents the request from being processed
- Query syntax errors (e.g. unsupported GitHub search operators) may yield empty results

## How this service works

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

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing GitHub search results, which may include repository names, descriptions, star counts, languages, URLs, user profiles, or code snippets 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/cravvoul-github-search-3c1b11a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvoul.vercel.app](https://www.zero.xyz/host/cravvoul.vercel.app/llms.txt)
