# Bolt GitHub Repository Lookup

> Bolt GitHub Repository Lookup is a paid API for AI agents from deltadata.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 by owner and repo name

## Facts

- Endpoint: POST https://deltadata.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-7c7af2d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xFUNOgwcmRSJc3ZZSDKsu

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

Example prompt: Can you pull up the details for the GitHub repo 'transformers' owned by 'huggingface'?

## When to prefer this

Use this endpoint when you need quick, pay-per-use programmatic access to GitHub repository metadata without setting up your own GitHub API credentials or OAuth flow. Ideal for AI agents that need to enrich workflows with GitHub data on demand at $0.02 per call.

## Known failure modes

- Repository not found — returns success: false or empty data if the owner/repo combination does not exist
- Invalid input — missing required 'owner' or 'repo' fields causes a 400-level error
- Private repository — may return no data or access denied if the repo is private
- Rate limiting — GitHub API upstream limits may cause failures under high load
- Payment failure — x402 USDC payment not processed, request rejected

## 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 success boolean and a data object containing GitHub repository metadata such as name, description, stars, forks, language, and other repository-level details for the specified owner/repo combination.

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