# Bolt GitHub Repository Lookup

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

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

## Facts

- Endpoint: POST https://v0-bolt.orbonomy.xyz/api/github-repo
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-github-repository-lookup-3b8457e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TcRuh6Pn4s3VNtGxLZ8rC

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-3b8457e9 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need to quickly retrieve metadata about a specific GitHub repository by owner and repo name, especially in an agent workflow that accepts micropayments via x402. Prefer this over direct GitHub API calls when you want a pay-per-use, no-credential-management approach.

## Known failure modes

- Repository not found — invalid owner or repo name returns failure or empty data
- Repository is private and inaccessible
- Rate limiting or upstream GitHub API errors
- Malformed input missing required 'owner' or 'repo' fields

## 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 data object containing GitHub repository metadata (such as description, stars, forks, language, topics, etc.) along with a boolean success flag indicating whether the lookup succeeded.

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