# web3identity.com Full Identity Profile

> web3identity.com Full Identity Profile is a paid API for AI agents from api.web3identity.com, paid per call via x402, $0.050000/call, status unknown (last checked 2026-09-15).

Retrieves a combined Web3 identity profile aggregating ENS, Farcaster, and Lens data for a given ENS name or address

## Facts

- Endpoint: GET https://api.web3identity.com/api/profile/opensea.eth
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-web3identity-com-66d2a7d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uYt0QvoAJZRvhgObNGXut

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 api-web3identity-com-66d2a7d2
```

Example prompt: Can you pull the full Web3 identity profile for vitalik.eth — I want to see their ENS info, Farcaster account, and Lens profile all in one place?

## When to prefer this

Use this endpoint when you need a unified Web3 identity profile that crosses multiple protocols (ENS, Farcaster, Lens) in a single call, rather than querying each protocol's API separately. Best for identity enrichment, user display cards, social graph lookups, or any workflow needing a comprehensive on-chain identity snapshot for a known ENS name or wallet address.

## Known failure modes

- ENS name does not exist or is unregistered — returns empty or 404
- No Farcaster or Lens profiles linked to the address — partial profile returned with null social fields
- Invalid ENS name format — returns error
- Rate limiting or payment failure — 402 or 429 response
- Address has no ENS reverse record — may return incomplete data

## How this service works

Full identity profile with ENS, Farcaster, and Lens data

## Output

Returns a combined identity profile object including the ENS name, resolved wallet address, avatar URL, and associated Farcaster and Lens social profile data for the queried ENS name or address.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "avatar": {
       "type": "string"
      },
      "address": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-web3identity-com-66d2a7d2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.web3identity.com](https://www.zero.xyz/host/api.web3identity.com/llms.txt)
