
Xquik Tweets
CertifiedList user tweets
Xquik Tweets
List user tweets
Retrieves recent public posts from an X/Twitter user through Xquik.
type: io.kestra.plugin.xquik.users.TweetsExamples
Store a user's recent posts.
id: xquik_user_tweets
namespace: company.research
tasks:
- id: user_posts
type: io.kestra.plugin.xquik.users.Tweets
apiKey: "{{ secret('XQUIK_API_KEY') }}"
user: "kestra_io"
includeReplies: false
fetchType: STORE
Properties
apiKey *Requiredstring
Xquik API key
API key used to authenticate Xquik API requests.
user *Requiredstring
User
X username without @, or a numeric X user ID.
additionalQueryParameters object
Additional query parameters
Optional Xquik tweet filters, such as language, hashtags, mediaType, or sinceDate.
baseUrl string
https://xquik.com/api/v1Xquik API base URL
Base URL for Xquik API requests.
cursor string
Pagination cursor
Cursor from a previous response.
fetchType string
FETCHSTOREFETCHFETCH_ONENONEResult handling mode
Controls how the response is exposed. FETCH returns the response body, STORE writes it to Kestra internal storage, and NONE omits the body.
includeParentTweet booleanstring
falseInclude parent tweet
Whether to include parent tweet data for replies.
includeReplies booleanstring
falseInclude replies
Whether to include reply posts.
options Non-dynamic
HTTP request options
Options used to customize the HTTP client.
io.kestra.plugin.xquik.AbstractXquikTask-RequestOptions
Connection timeout
Time allowed to establish a server connection before failing.
UTF-8Default charset
Charset used for requests when none is specified. Defaults to UTF-8.
java.nio.charset.Charset
HTTP headers
HTTP headers to include in the request.
PT5MRead idle timeout
How long a read connection may stay idle before closing. Defaults to 5 minutes.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
body object
Response body
Response payload. Available when fetchType is FETCH or FETCH_ONE.
hasNextPage boolean
Has next page
Whether Xquik reported another page when present.
nextCursor string
Next cursor
Pagination cursor returned by Xquik when present.
size integer
Response item count
Best-effort count inferred from the first array in the response body.
uri string
uriStored response URI
Kestra internal storage URI. Available when fetchType is STORE.