# Bolt GitHub User Lookup

> Bolt GitHub User 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 public GitHub user profile data by username

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/github-user
- 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-user-lookup-a6a54a05
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sZejZwpekyKCcRS0VyYtW

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-user-lookup-a6a54a05 -d '<json body>'
```

Example prompt: Can you pull up the GitHub profile for the user 'torvalds' — I want to see their public account info like bio, followers, and repos?

## When to prefer this

Use this endpoint when you need to programmatically look up a GitHub user's public profile by username and want a pay-per-use model without managing GitHub API credentials or rate limits yourself. Prefer this over direct GitHub API calls when operating in an agent context with x402 micropayment infrastructure already in place.

## Known failure modes

- Username not found — GitHub user does not exist (likely 404 or success:false)
- Empty or null data object if the account is suspended or hidden
- Network timeout or upstream GitHub API rate limit exceeded
- Missing required 'username' field returns 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 data object containing public GitHub user profile information such as username, bio, follower count, public repository count, avatar URL, and other account metadata, along with a success boolean.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "username"
 ],
 "properties": {
  "username": {
   "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-user-lookup-a6a54a05/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)
