Public X/Twitter search API for AI agents
Public X/Twitter search API for AI agents. Search recent public posts by keyword without requiring the caller to maintain a separate X developer account.
4800 (raw units)
price
8
calls / 30d
3
unique payers
2026-09-17
updated
Provider
squeezeos-api.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc29185fa176357612f3194735753e520e91adc46",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4800",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"max_results": "10",
"q": "x402",
"type": "Latest"
},
"type": "http"
},
"output": {
"example": {
"product": "SML Public X Search",
"provenance": {
"provider": "twitterapis",
"public_read_only": true
},
"query": "x402",
"result_count": 1,
"results": [
{
"author": {
"username": "<public-handle>"
},
"created_at": "<source-timestamp>",
"id": "<public-post-id>",
"text": "<public-post-text>",
"url": "https://x.com/<public-handle>/status/<public-post-id>"
}
],
"status": "ready",
"type": "Latest"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"const": "GET",
"type": "string"
},
"queryParams": {
"additionalProperties": true,
"properties": {
"max_results": {
"description": "Search intents: x search, twitter search, social search, public posts, social research.",
"enum": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
],
"type": "string"
},
"q": {
"description": "Public X search query Search intents: x search, twitter search, social search, public posts, social research.",
"maxLength": 512,
"minLength": 1,
"type": "string"
},
"type": {
"description": "Search intents: x search, twitter search, social search, public posts, social research.",
"enum": [
"Latest",
"Top"
],
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
}
}Use it
curl
curl "https://squeezeos-api.onrender.com/api/x/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://squeezeos-api.onrender.com/api/x/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://squeezeos-api.onrender.com/api/x/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/6957.json, and this resource appears in /discovery/resources and /discovery/search.