# DataVault GitHub User Lookup

> DataVault GitHub User Lookup is a paid API for AI agents from zetdatavault.vercel.app, 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 via a pay-per-call API

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/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/datavault-github-user-lookup-1dfd3262
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ad_ChKnrmF4UthtQ1TWZU

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

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

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call lookup of a GitHub user's public profile without setting up your own GitHub API credentials or managing rate limits. Ideal for agents enriching developer profiles, verifying GitHub handles, or pulling repo/follower stats on demand at low cost ($0.02 USDC per call).

## Known failure modes

- Username not found on GitHub — likely returns success: false or a 404-style error in the data object
- Invalid or empty username input — request may fail schema validation
- GitHub API rate limiting downstream — may cause intermittent failures
- Network timeout to GitHub API — returns error response
- Malformed username with special characters — may cause lookup failure

## 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

A JSON object with a success boolean and a data object containing the GitHub user's public profile fields such as login, name, bio, avatar URL, public repository count, follower and following counts, company, location, 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-1dfd3262/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
