Use when an agent needs tweets search
Use when an agent needs tweets search. Returns Search publicly indexed social posts by words, phrases, hashtags, account and date filters, returning bounded tweet-like results and source links. $0.005.
5000 (raw units)
price
6
calls / 30d
2
unique payers
2026-09-14
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"from": "example",
"hashtags": "example",
"phrase": "example",
"since": "example",
"to": "example",
"until": "example",
"words": "example"
},
"type": "http"
},
"output": {
"example": {
"count": 1,
"next_cursor": null,
"query": "words=x402",
"source": "google-news-rss-x.com-index",
"tweets": [
{
"author": null,
"created_at": "Mon, 17 Aug 2026 19:59:41 GMT",
"id": "example-guid",
"source": "x.com (Google News index)",
"text": "AI agents can pay APIs per request with x402.",
"url": "https://news.google.com/rss/articles/example"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"from": {
"type": "string"
},
"hashtags": {
"type": "string"
},
"phrase": {
"type": "string"
},
"since": {
"type": "string"
},
"to": {
"type": "string"
},
"until": {
"type": "string"
},
"words": {
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"count": {
"type": "integer"
},
"next_cursor": {
"type": "null"
},
"query": {
"type": "string"
},
"source": {
"type": "string"
},
"tweets": {
"items": {
"properties": {
"author": {
"type": "null"
},
"created_at": {
"type": "string"
},
"id": {
"type": "string"
},
"source": {
"type": "string"
},
"text": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/tweets-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://api.oblique.markets/api/v1/paid/tweets-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://api.oblique.markets/api/v1/paid/tweets-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/551.json, and this resource appears in /discovery/resources and /discovery/search.