# Twitter/X List Search

> Twitter/X List Search is a paid API for AI agents from twitter.use.x402atlas.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Search public X (Twitter) lists by a text query and return matching list results.

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/search-lists
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-x-list-search-279de9ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IBewINKQOCrhlvS7xVAaB

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 twitter-x-list-search-279de9ec
```

Example prompt: Search X for public lists about 'machine learning researchers' and show me what comes up.

## When to prefer this

Use this endpoint when you need to discover or enumerate public X (Twitter) lists by topic or keyword, rather than searching for individual posts or users. It is ideal for community research, influencer mapping, or building feeds around curated X lists. Prefer this over the general tweet search endpoint when the goal is list discovery rather than individual post retrieval.

## Known failure modes

- Empty result set if no lists match the query (result_count: 0)
- Query string too long (exceeds 200 characters) returns a validation error
- Missing required query parameter returns a 400 bad request
- X API rate limits or downtime may cause 429 or 5xx errors
- Cursor for pagination may be absent if there is only one page of results

## How this service works

Search public X lists by query.

## Output

Returns an array of matching public X list objects (with metadata such as list name, description, owner, and member count), a total result count, the timestamp the query was executed, and an optional opaque cursor for pagination when more results are available.

## 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": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "maxLength": 200,
       "minLength": 1,
       "description": "List search text"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "data",
      "result_count"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": true
       }
      },
      "cursor": {
       "type": "string",
       "description": "Opaque cursor for the next page, when supplied by X"
      },
      "queried_at": {
       "type": "string",
       "format": "date-time"
      },
      "result_count": {
       "type": "integer",
       "minimum": 0
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "url": "https://x.com/i/lists/1309482935804932102",
    "object_id": "1309482935804932102",
    "result_contexts": [
     "Technology"
    ]
   }
  ],
  "queried_at": "2026-07-26T12:00:00Z",
  "result_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-list-search-279de9ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.use.x402atlas.com](https://www.zero.xyz/host/twitter.use.x402atlas.com/llms.txt)
