# klymax402 Social Profile Lookup

> klymax402 Social Profile Lookup is a paid API for AI agents from klymax402.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Looks up public profile information (bio, followers, avatar, etc.) for a given username or profile URL on GitHub, Twitter, LinkedIn, or YouTube

## Facts

- Endpoint: GET https://klymax402.com/api/social-profile/api/lookup
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-social-profile-lookup-705fc9f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DvxTsp08FDU4Pceu7hFn6

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 klymax402-social-profile-lookup-705fc9f4
```

Example prompt: Can you look up the GitHub profile for the handle 'torvalds' and tell me their bio, follower count, and avatar URL?

## When to prefer this

Use this endpoint when you need to quickly retrieve public social profile metadata (bio, followers, avatar, verification status) for a known handle or profile URL on GitHub, Twitter, LinkedIn, or YouTube without managing your own API keys or platform OAuth flows. It is ideal for contact enrichment, identity verification, or displaying social proof in agent workflows that span multiple platforms.

## Known failure modes

- Handle or URL not found on the specified platform returns an error or empty result
- Invalid or unsupported platform value causes a validation error
- Private or suspended accounts may return no data or partial data
- Malformed profile URL provided instead of a clean handle may fail to resolve
- Missing required 'type' and 'method' fields in the input object causes a schema validation error

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object with the user's username, display name, bio, avatar URL, profile URL, follower count, following count, verified status, and platform name.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "Full profile URL (alternative to handle+platform, e.g. https://github.com/torvalds)"
      },
      "handle": {
       "type": "string",
       "description": "Username/handle to lookup (e.g. torvalds)"
      },
      "platform": {
       "enum": [
        "github",
        "twitter",
        "linkedin",
        "youtube"
       ],
       "type": "string",
       "description": "Platform to search on (github, twitter, linkedin, youtube)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bio": "example",
  "platform": "example",
  "username": "example",
  "verified": true,
  "avatarUrl": "example",
  "followers": 1,
  "following": 1,
  "profileUrl": "example",
  "displayName": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-social-profile-lookup-705fc9f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
