# Bolt GitHub Repository Lookup

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

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

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/github-repo
- 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/bolt-github-repository-lookup-35dfe725
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nvf-_QuY2yk4A6i13qMYq

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-35dfe725 -d '<json body>'
```

Example prompt: Can you pull up the GitHub repo details for the 'langchain' repo owned by 'langchain-ai'?

## When to prefer this

Use this endpoint when you need to quickly retrieve GitHub repository metadata (description, stars, language, forks, etc.) for a known owner/repo pair without setting up GitHub API authentication yourself. Prefer this over the raw GitHub API when you want a simple pay-per-call interface via x402/USDC with no OAuth setup required.

## Known failure modes

- Repository not found — returns success: false or 404-equivalent if the owner/repo combination does not exist
- Invalid owner or repo name — malformed strings may result in an error response
- Private repository — access may be denied if the repo is private and no auth is provided
- Rate limiting — underlying GitHub API may throttle requests
- Missing required fields — omitting 'owner' or 'repo' will cause a validation error

## 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 metadata about the specified GitHub repository, such as description, stars, forks, language, and other repository 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-35dfe725/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
