# twit.sh X List Lookup by ID

> twit.sh X List Lookup by ID is a paid API for AI agents from twit.sh, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Fetches metadata for a Twitter/X List by its numeric ID, including name, description, owner info, and member/subscriber counts.

## Facts

- Endpoint: GET https://twit.sh/lists/by/id
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twit-sh-x-list-lookup-by-id-17a0acbc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FthBfdVbopd3Vo-m2eYuV

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 twit-sh-x-list-lookup-by-id-17a0acbc
```

Example prompt: Can you pull up the details for X list ID 84839422 — I want to know its name, description, owner, and how many members and subscribers it has?

## When to prefer this

Choose this endpoint when you have a specific Twitter/X List ID and need structured metadata about it — name, owner, member count, subscriber count — without setting up Twitter API credentials. It's ideal for AI agents that need to enrich list references, validate list quality, or gather context about curated communities in a fully autonomous, pay-per-request fashion via USDC on Base.

## Known failure modes

- Invalid or non-numeric list ID returns an error or empty response
- Private lists may return restricted or no data
- Deleted or suspended lists return not-found errors
- Payment failure via x402/USDC blocks the request
- Rate limiting or network timeouts on the provider side

## How this service works

Real-time Twitter/X data for AI agents. No sign-up, no API keys. Pay per request in USDC on Base via x402. Fully autonomous.

## Output

Returns a JSON object with the list's numeric ID, name, visibility mode (Public/Private), creation timestamp, description, member count, subscriber count, and the owner's profile (ID, name, username, verification status, bio, and public metrics like followers, following, tweets, and likes).

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Numeric Twitter/X List ID"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "id": "84839422",
   "mode": "Public",
   "name": "Crypto General",
   "owner": {
    "id": "9253672",
    "name": "Hal Finney",
    "username": "halfin",
    "verified": false,
    "description": "Running bitcoin.",
    "public_metrics": {
     "like_count": 300,
     "tweet_count": 600,
     "followers_count": 134000,
     "following_count": 200
    }
   },
   "created_at": "2022-04-10T11:43:59.000Z",
   "description": "General crypto tech and market commentary",
   "member_count": 110,
   "subscriber_count": 3970
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twit-sh-x-list-lookup-by-id-17a0acbc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twit.sh](https://www.zero.xyz/host/twit.sh/llms.txt)
