# GitHub User Profile Lookup

> GitHub User Profile Lookup is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches a GitHub user's public profile data — name, bio, company, follower count, and public repo count — and returns it as JSON via the public GitHub API.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/sunny_echo/github-user-lookup
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/github-user-profile-lookup-7d52b8b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-WXzvnXr0erz3-fpYHSNa

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

Example prompt: Look up the GitHub profile for the user 'torvalds' and tell me their bio, company, number of followers, and how many public repos they have.

## When to prefer this

Use this endpoint when you need quick, pay-per-call access to a GitHub user's public profile metadata without setting up a GitHub API key or OAuth token. Ideal for agents enriching developer records, vetting contributors, or pulling one-off profile snapshots. Prefer this over direct GitHub API calls when you want x402 micropayment-based access with no account required.

## Known failure modes

- GitHub username not found — returns error or empty result
- GitHub API rate limit exceeded — may return rate-limit error
- Invalid or malformed prompt string — agent may return unclear output
- GitHub user has no public profile data — some fields may be null or empty
- Network timeout or upstream GitHub API outage

## How this service works

GitHub user lookup - Call when you need to verify or profile a GitHub account - checking a contributor, enriching a lead, or confirming an identity. Send the username. Returns name, bio, company, follower count and public repository count as JSON from GitHub's public API.

## Output

A JSON object containing the GitHub user's public profile fields: display name, bio, company, follower count, and public repository count, as sourced from the GitHub public API.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/github-user-profile-lookup-7d52b8b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
