get_highlights_tweets
Retrieve highlighted tweets from a specific user's timeline using their user ID. Customize results by setting the count and cursor for targeted data extraction.
Instructions
Retrieves highlighted tweets from a user's timeline (simulated)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
cursor | No | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 100,
"title": "Count"
},
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cursor"
},
"user_id": {
"title": "User Id",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}