{
  "x402Version": 2,
  "id": 686,
  "slug": "686",
  "resource": "https://twitter.use.x402atlas.com/search",
  "description": "Search Twitter/X with structured filters or raw advanced-search syntax. Returns up to 20 normalized tweets with full text, author details, engagement metrics and a pagination cursor.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x51D577C8CBB8b3fB1BA0CE31c7923cC27a07F78B",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "6000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0x51D577C8CBB8b3fB1BA0CE31c7923cC27a07F78B",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "6000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0x51D577C8CBB8b3fB1BA0CE31c7923cC27a07F78B",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "6000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "category": "search",
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "words": "bitcoin"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "cursor": "DAACCgACHMe1FCaAJxAKAAMcx7UU…",
            "queried_at": "2026-07-05T12:00:00Z",
            "query": "from:@PancakeSwap filter:replies",
            "tweet_count": 1,
            "tweets": [
              {
                "author": {
                  "avatar": "https://pbs.twimg.com/profile_images/2004910939959967744/wr7-zpVh_normal.jpg",
                  "description": "Everyone's favorite DEX. Swap, trade, and earn across 10+ chains.",
                  "followers": 2132825,
                  "id": "1305349277422477313",
                  "name": "PancakeSwap",
                  "screen_name": "PancakeSwap",
                  "verified": true
                },
                "bookmarks": 0,
                "conversation_id": "2071965667491000381",
                "created_at": "2026-06-30T14:34:45Z",
                "id": "2071965671001608665",
                "is_quote": false,
                "lang": "en",
                "likes": 16,
                "quotes": 0,
                "replies": 1,
                "retweets": 2,
                "text": "Stack your tokenized assets ⬇️\nhttps://t.co/peohoKiMyQ",
                "urls": [
                  "https://pancakeswap.finance/stocks"
                ],
                "views": 3534
              }
            ],
            "type": "top"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "queryParams": {
                "properties": {
                  "words": {
                    "description": "Tweets containing all these words",
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "cursor": {
                    "description": "Pagination cursor for the next page, if any",
                    "type": "string"
                  },
                  "queried_at": {
                    "description": "UTC timestamp when this bridge ran the search",
                    "format": "date-time",
                    "type": "string"
                  },
                  "query": {
                    "description": "The assembled X advanced-search query string sent upstream",
                    "type": "string"
                  },
                  "tweet_count": {
                    "description": "Number of tweets in this page",
                    "type": "integer"
                  },
                  "tweets": {
                    "items": {
                      "properties": {
                        "author": {
                          "properties": {
                            "avatar": {
                              "type": "string"
                            },
                            "description": {
                              "type": "string"
                            },
                            "followers": {
                              "type": "integer"
                            },
                            "id": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "screen_name": {
                              "type": "string"
                            },
                            "verified": {
                              "description": "Blue-check verification status",
                              "type": "boolean"
                            }
                          },
                          "type": "object"
                        },
                        "bookmarks": {
                          "type": "integer"
                        },
                        "conversation_id": {
                          "type": "string"
                        },
                        "created_at": {
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "Tweet ID",
                          "type": "string"
                        },
                        "in_reply_to_id": {
                          "description": "Parent tweet ID, if this is a reply",
                          "type": "string"
                        },
                        "in_reply_to_user": {
                          "description": "Parent tweet's author screen name, if this is a reply",
                          "type": "string"
                        },
                        "is_quote": {
                          "type": "boolean"
                        },
                        "lang": {
                          "description": "BCP-47 language code",
                          "type": "string"
                        },
                        "likes": {
                          "type": "integer"
                        },
                        "quotes": {
                          "type": "integer"
                        },
                        "replies": {
                          "type": "integer"
                        },
                        "retweets": {
                          "type": "integer"
                        },
                        "text": {
                          "type": "string"
                        },
                        "urls": {
                          "description": "Expanded URLs linked in the tweet",
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "views": {
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "type": {
                    "description": "Result ranking used for this page",
                    "enum": [
                      "top",
                      "latest",
                      "media"
                    ],
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      },
      "tags": [
        "twitter",
        "x",
        "tweet-search",
        "twitter-scraper",
        "social-media",
        "advanced-search",
        "tweets",
        "social-listening",
        "twitter-api",
        "x-search"
      ]
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "twitter.use.x402atlas.com",
  "lastUpdated": "2026-09-17T06:13:44.776Z",
  "quality": {
    "calls30d": 81,
    "uniquePayers30d": 10,
    "lastCalledAt": "2026-09-17T06:13:54.374Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "twitter.use.x402atlas.com",
    "manifest_name": "twitter.use.x402atlas.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}