# 402.com.tr Basename Profile Resolver

> 402.com.tr Basename Profile Resolver is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Resolves the full Base identity profile (address, avatar, description, website, social handles) for a given Basename or wallet address using Base L2 Resolver text records.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/basename-profile
- 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/402-com-tr-basename-profile-resolver-024429bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-6EAHNiiceCrtz91AnATf

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 402-com-tr-basename-profile-resolver-024429bf
```

Example prompt: Look up the full Base identity profile for 'vitalik.base.eth' — give me their resolved address, avatar, bio, website, and any social handles like Twitter, GitHub, Farcaster, or Discord that are registered.

## When to prefer this

Use this endpoint when you need to enrich a Base wallet address or Basename with human-readable identity context — social handles, avatar, bio, and website — going beyond simple name resolution. Prefer this over generic ENS resolvers when working specifically on the Base L2 network and when social/professional context about a counterparty is needed for trust, communication, or display purposes.

## Known failure modes

- Name not registered on Base — returns empty or null profile fields
- Address has no associated Basename — partial profile with no social handles
- Invalid Basename format — 400 bad request
- Basename exists but no text records set — profile with only resolved address
- Network timeout fetching L2 Resolver data — 503 or timeout error
- Payment failure (insufficient USDC balance) — 402 payment required

## How this service works

🆕 Resolves the complete Base identity behind an address or Basename: resolved address, avatar, description, website and social handles (X/Twitter, GitHub, Farcaster, Discord) read from Base's L2 Resolver text records. Lets an agent turn a counterparty address into a real profile — beyond just the name. Complements address-trust (verification) with the human context.

## Output

Returns a structured profile including the resolved wallet address, avatar URL, description/bio, website URL, and social handles (X/Twitter, GitHub, Farcaster, Discord) as stored in Base's L2 Resolver text records for the given Basename or address.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Basename or address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-basename-profile-resolver-024429bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
