Xquik Tweet Search
XquikSearchToolkit gives an agent a tool for searching public X posts through the Xquik API. Use it when an agent needs structured tweet records and pagination metadata.
Note
An Xquik api_key is required. No additional Python package is required.
The api_key is required and validated when the toolkit is constructed.
Tool#
| Tool | Description |
|---|---|
xquik_tweet_search | Search public X posts and return tweet records plus pagination metadata |
Search configuration#
The tool accepts a required query at execution time. Configure optional defaults on the toolkit or toolkit.search():
Use cursor with the next_cursor from a previous response to request another page. All search defaults accept a Variable for deferred context resolution.
Result#
xquik_tweet_search returns an XquikTweetSearchResponse:
| Field | Description |
|---|---|
query | The search query sent to Xquik |
tweets | Structured tweet records returned by the API |
has_next_page | Whether another result page is available |
next_cursor | Cursor for the next page, or an empty string |
Check the Xquik OpenAPI schema for current search syntax, limits, and response fields.