Search Twitter/X with structured filters or raw advanced-search syntax
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.
6000 (raw units)
price
81
calls / 30d
10
unique payers
2026-09-17
updated
Provider
twitter.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 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
}
]Output schema
{
"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"
]
}
}Use it
curl
curl "https://twitter.use.x402atlas.com/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://twitter.use.x402atlas.com/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://twitter.use.x402atlas.com/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/686.json, and this resource appears in /discovery/resources and /discovery/search.