# DataVault GitHub User Lookup

> DataVault GitHub User Lookup is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches public GitHub user profile data for a given username

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/github-user
- 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/datavault-github-user-lookup-f1b397f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z2G1mwm4o7zLTZ_jG6-Q3

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 datavault-github-user-lookup-f1b397f2 -d '<json body>'
```

Example prompt: Can you pull up the GitHub profile for the user 'torvalds' — I want to see their bio, follower count, and public repo stats?

## When to prefer this

Use this endpoint when you need to quickly retrieve public GitHub profile information for a known username without managing GitHub API credentials or rate limits yourself. Prefer it over direct GitHub API calls when operating in a pay-per-call micropayment context on Base/USDC. Best for agent workflows that need to enrich developer profiles or validate GitHub identities on demand.

## Known failure modes

- Username not found: GitHub user does not exist, returns success false or 404-equivalent
- Invalid username format: empty or malformed username string causes validation error
- Rate limiting: underlying GitHub API rate limit exceeded, may return error or empty data
- Network timeout: upstream GitHub API unreachable, request fails
- Payment failure: insufficient USDC balance causes 402 before request is processed

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing the public GitHub profile fields for the requested username, such as name, bio, location, follower count, following count, public repository count, and account creation date.

## 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/datavault-github-user-lookup-f1b397f2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
