A user's recent tweets, ~20/page
A user's recent tweets, ~20/page. Body: optional cursor + include_replies only
4000 (raw units)
price
24
calls / 30d
5
unique payers
2026-09-18
updated
Provider
glim.sh · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "9MkM5Ra48KFcSv9HDQ8sb3C3r5HjouEwGQ6sp1cx1vde",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "4000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xC751344Ee09B5159160173F77D4a1169bCd386A1",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:143",
"payTo": "0xC751344Ee09B5159160173F77D4a1169bCd386A1",
"asset": "0x754704Bc059F8C67012fEd69BC8A327a5aafb603",
"amount": "4000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"include_replies": false
},
"bodyType": "json",
"method": "POST",
"pathParams": {
"ref": "StealthCoSpy"
},
"type": "http"
},
"output": {
"example": {
"data": [
{
"id": "1234567890",
"text": "Example tweet"
}
],
"meta": {
"result_count": 1
}
},
"type": "json"
}
},
"routeTemplate": "/api/v1/twitter/users/:ref/tweets",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"cursor": {
"description": "Pagination cursor",
"type": "string"
},
"include_replies": {
"default": false,
"description": "Include replies in the timeline",
"type": "boolean"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"items": {
"additionalProperties": {},
"propertyNames": {
"type": "string"
},
"type": "object"
},
"type": "array"
},
"meta": {
"properties": {
"has_next_page": {
"type": "boolean"
},
"next_cursor": {
"type": "string"
},
"result_count": {
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
}
},
"required": [
"result_count"
],
"type": "object"
},
"summary": {
"additionalProperties": {},
"propertyNames": {
"type": "string"
},
"type": "object"
}
},
"required": [
"data",
"meta"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://glim.sh/api/v1/twitter/users/:ref/tweets" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://glim.sh/api/v1/twitter/users/:ref/tweets");
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://glim.sh/api/v1/twitter/users/:ref/tweets")
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/239.json, and this resource appears in /discovery/resources and /discovery/search.