# Web3 Identity Full Profile (ENS + Farcaster + Lens)

> Web3 Identity Full Profile (ENS + Farcaster + Lens) 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).

Returns a unified identity profile for an ENS name including ENS records, Farcaster profile, and Lens protocol data

## Facts

- Endpoint: GET https://api.web3identity.com/api/profile/ens.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-e81aec88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1jom8-ZWZUoLuDGAuqC0C

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-e81aec88
```

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

## When to prefer this

Use this endpoint when you need a comprehensive cross-platform web3 identity lookup in a single call, covering ENS, Farcaster, and Lens simultaneously. Prefer this over individual ENS resolution or Farcaster profile endpoints when you want a unified view of a user's decentralized identity without making multiple separate API calls.

## Known failure modes

- ENS name not registered or expired — returns empty or null profile
- ENS name not linked to Farcaster or Lens — partial profile with only ENS data
- Invalid ENS name format — 400 error
- Payment not provided or insufficient — 402 Payment Required
- Rate limit exceeded — 429 error
- Upstream ENS/Farcaster/Lens provider timeout — 503 or degraded response

## How this service works

Full identity profile with ENS, Farcaster, and Lens data

## Output

A unified identity object containing ENS resolution data (name, address, text records), Farcaster profile information (username, bio, follower counts), and Lens protocol profile data, plus avatar URL and display name.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ens": "vitalik.eth"
  }
 }
}
```

## 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-e81aec88/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)
