x402 glim.sh
Setup required
Total authorizationUSD 0.005500
Read the full contract before requesting access.
Technical contract, schemas, digests, and references
- Operation reference
operation:v1:a05043564c990fce8981aee9c69742ec9323e28c9070c57a331606bb1aca3475- Operation ID
- capability:post.glim-sh.api-v1-twitter-tweets-search
- Capability
- post.glim-sh.api-v1-twitter-tweets-search · version 1
- Publisher
- observed external
- Source kind
- x402
- Transport
- POST /api/v1/twitter/tweets/search
- Request timeout
- 10000 ms
- Price digest
- sha256:c3993e6aba5cbf69cae923fda258c3a7ec7a53b09348c22386a00b30d060ed69
- Price source
- pricing:offering:facilitator-discovery:post.glim-sh.api-v1-twitter-tweets-search@1
- Price evidence
- source:facilitator-discovery
Data use
- public · /q · provider_data_use · execution · selected binding · twitter_search_query_with_operators
- public · /sort · provider_data_use · execution · selected binding · sort_order
- public · /limit · provider_data_use · execution · selected binding · maximum_tweets_to_return
- public · /cursor · provider_data_use · execution · selected binding · pagination_cursor_ranking_is_strongest_on_page_1_paged_results_under_sort_top_trend_toward_recency_upstream_behavior
Effects and authority
- data release · provider_data_use · explicit · not applicable
Input JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"cursor": {
"description": "Pagination cursor. Ranking is strongest on page 1 - paged results under sort=Top trend toward recency (upstream behavior).",
"type": "string"
},
"limit": {
"default": 20,
"description": "Maximum tweets to return",
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"q": {
"description": "Twitter search query with operators",
"minLength": 1,
"type": "string"
},
"sort": {
"default": "Top",
"description": "Sort order",
"enum": [
"Latest",
"Top"
],
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}Output JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"data": {
"items": {
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"id",
"text"
],
"type": "object"
},
"type": "array"
},
"meta": {
"additionalProperties": false,
"properties": {
"result_count": {
"type": "number"
}
},
"required": [
"result_count"
],
"type": "object"
}
},
"required": [
"data",
"meta"
],
"type": "object"
}