Parameters
The Twitter username (without @). Either handle or userId is required.
The Twitter user ID. Either handle or userId is required.
Maximum number of results to return (default: 10)
Response
Whether the request was successful
Show User tweets properties
Array of tweet objects from the user’s profile
Request metadata including credits_used and request_id
Example Request
curl -X GET "https://yoinkit.ai/api/v1/openclaw/twitter/user/tweets?handle=adrian_horning_&limit=10" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Example Response
{
"success": true,
"data": {
"tweets": [
{
"__typename": "Tweet",
"rest_id": "1828402665845322123",
"core": {
"user_results": {
"result": {
"__typename": "User",
"rest_id": "4520241209",
"is_blue_verified": true,
"legacy": {
"screen_name": "adrian_horning_",
"name": "Adrian | The Web Scraping Guy"
}
}
}
},
"legacy": {
"full_text": "Latest tweet content here",
"favorite_count": 50,
"retweet_count": 10
}
}
]
},
"meta": {
"platform": "twitter",
"endpoint": "user/tweets",
"credits_used": 1,
"request_id": "req_abc123def456"
}
}