# Bolt GitHub User Lookup

> Bolt GitHub User 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-14).

Fetches public GitHub user profile data for a given username

## Facts

- Endpoint: POST https://datault.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-8bf3e22d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-kANBt_4mXr1KOjIwpEdt

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

Example prompt: Can you pull up the GitHub profile for the user 'torvalds' and tell me their bio, public repos, and follower count?

## When to prefer this

Use this endpoint when you need to look up public GitHub user profile data by username and want a pay-per-call model without managing GitHub API credentials or rate limits directly. Prefer over direct GitHub API calls when operating in an agent context with x402 micropayment support.

## Known failure modes

- Username not found — returns success: false or empty data
- Invalid or missing username field — request validation error
- GitHub API rate limiting downstream — may result in delayed or failed response
- Non-existent username — data object may be empty or null

## 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 (bio, repos, followers, etc.) along with a success boolean indicating whether the lookup succeeded.

## Example request

```json
{
 "username": "torvalds"
}
```

## 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-8bf3e22d/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)
