# Interzoid Get X (Twitter) Handle Lookup

> Interzoid Get X (Twitter) Handle Lookup is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Looks up the X (Twitter) handle for a given person, organization, team, title, or descriptive phrase using AI-powered data enrichment.

## Facts

- Endpoint: GET https://api.interzoid.com/getuserxhandle
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-x-twitter-handle-lookup-51b0e83b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l0BjHqjHanh53Qu2B6H1k

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 interzoid-get-x-twitter-handle-lookup-51b0e83b
```

Example prompt: What's the official X handle for the San Francisco 49ers? I want to tag them in a post.

## When to prefer this

Use this endpoint when you need to programmatically resolve a person, brand, organization, or team name to their official X (Twitter) handle, especially when enriching CRM, ERP, or analytics data with social media identifiers. Prefer this over manual search when processing data at scale or integrating with data pipelines.

## Known failure modes

- No matching handle found — returns non-success Code with empty Handle field
- Ambiguous or vague input phrase yields low confidence score or incorrect handle
- Invalid or missing 'lookup' query parameter returns an error response
- Insufficient credits returns payment/credit error

## How this service works

Retrieve the X (formerly Twitter) handle for a given person, organization, sports team, government entity, or descriptive phrase using AI-powered lookup. Returns the handle with a confidence score.

## Output

Returns a JSON object containing the X (Twitter) handle (e.g. '@49ers'), a confidence score indicating match certainty, a status code, and remaining API credits.

## 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",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Person, organization, team, title, or descriptive phrase to find an X handle for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Handle": "@49ers",
  "Credits": "0",
  "ConfidenceScore": "99"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-x-twitter-handle-lookup-51b0e83b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
