# Bolt GitHub Repository Lookup

> Bolt GitHub Repository Lookup is a paid API for AI agents from bolt.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches metadata and details for a GitHub repository given its owner and repo name

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/github-repo
- 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/bolt-github-repository-lookup-2a70d2bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0O8_qL-t8XVZC62RASO_g

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 bolt-github-repository-lookup-2a70d2bf -d '<json body>'
```

Example prompt: Can you pull up the details for the GitHub repo owned by 'vercel' called 'next.js' — I want to know things like its description, stars, and language?

## When to prefer this

Use this endpoint when you need to look up structured GitHub repository metadata by owner and repo name, especially in agentic pipelines that already pay per-request via x402/USDC and want a single unified toolkit. Prefer this over direct GitHub API calls when operating within the Bolt toolkit ecosystem to keep billing consolidated.

## Known failure modes

- Repository not found (invalid owner or repo name) — success: false or 404-level error
- Invalid or missing required fields (owner or repo) — validation error
- GitHub API rate limiting or downtime — upstream failure
- Private repository with no access — permission error
- Payment failure via x402 — 402 response before data is returned

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing GitHub repository metadata such as name, description, owner, stars, forks, language, and other repo-level details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "repo",
  "owner"
 ],
 "properties": {
  "repo": {
   "type": "string"
  },
  "owner": {
   "type": "string"
  }
 }
}
```

## 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/bolt-github-repository-lookup-2a70d2bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
