# Bolt GitHub Repository Lookup

> Bolt GitHub Repository Lookup is a paid API for AI agents from datault.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://datault.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-8a5e8a30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zRmu6mO_-aoFf7byCtgqR

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-8a5e8a30 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need to retrieve structured metadata about a specific GitHub repository by owner and repo name, especially within an agent workflow that pays per request via x402/USDC. Prefer this over direct GitHub API calls when you need a simple, pre-authenticated lookup without managing GitHub credentials yourself.

## Known failure modes

- Repo or owner not found — 404 or success: false returned
- Invalid or missing 'owner' or 'repo' fields — validation error
- GitHub API rate limiting causing failures
- Private repositories may be inaccessible
- Malformed response if GitHub schema changes

## 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 the repository's metadata (such as description, stars, forks, language, topics, and other GitHub repo fields).

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