# Twitter/X Autocomplete Search Suggestions

> Twitter/X Autocomplete Search Suggestions 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).

Returns search suggestions and autocomplete completions for a partial query string on X (Twitter).

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/autocomplete
- 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-autocomplete-search-suggestions-c4c38d3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fLH87bH8a4mLODJJXxBoC

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-autocomplete-search-suggestions-c4c38d3b
```

Example prompt: What search suggestions does X give when someone starts typing 'climate chan' in the search bar?

## When to prefer this

Use this endpoint when you need to discover how X's own search engine would complete a partial search term — ideal for keyword research, hashtag discovery, brand monitoring query expansion, or building search-assisted UIs backed by real X suggestion data. Prefer this over a full search endpoint when you only have a partial query and want to enumerate plausible complete search terms before committing to a full search.

## Known failure modes

- Empty query string — returns validation error since query must be at least 1 character
- Query too long — rejected if exceeds 200 character limit
- X API rate limiting — upstream rate limits may cause temporary failures
- No suggestions found — partial query may return an empty suggestions list if X has no matches
- Network or upstream X API downtime — may return 5xx errors

## How this service works

Get X search suggestions for a partial query.

## Output

Returns a structured response containing X's autocomplete suggestions for the given partial query, including a list of suggested search completions and metadata such as the timestamp when the query was made. Results may include a cursor for pagination if more suggestions 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": "Partial text to complete"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "data"
     ],
     "properties": {
      "data": {
       "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"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "query": "bill",
   "users": [
    {
     "name": "Bill Gates",
     "id_str": "50393960",
     "screen_name": "BillGates"
    }
   ],
   "num_results": 10
  },
  "queried_at": "2026-07-26T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-autocomplete-search-suggestions-c4c38d3b/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)
