curl --request GET \
--url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/twitter/tweet \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"__typename": "<string>",
"rest_id": "<string>",
"core.user_results": {},
"legacy": {}
},
"meta": {}
}Retrieve detailed metadata for a Twitter/X tweet including author, engagement, and content
curl --request GET \
--url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/twitter/tweet \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"__typename": "<string>",
"rest_id": "<string>",
"core.user_results": {},
"legacy": {}
},
"meta": {}
}https://twitter.com/user/status/123456789)curl -X GET "https://yoinkit.ai/api/v1/openclaw/twitter/tweet?url=https://twitter.com/adrian_horning_/status/1628769691547074562" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"success": true,
"data": {
"__typename": "Tweet",
"rest_id": "1628769691547074562",
"core": {
"user_results": {
"result": {
"__typename": "User",
"rest_id": "4520241209",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"name": "Adrian | The Web Scraping Guy",
"screen_name": "adrian_horning_",
"followers_count": 16488,
"description": "Social Media Scraping APIs",
"location": "Austin, TX"
}
}
}
},
"legacy": {
"full_text": "Sample tweet text content",
"favorite_count": 150,
"retweet_count": 25,
"created_at": "Thu Feb 23 15:00:00 +0000 2023"
}
},
"meta": {
"platform": "twitter",
"endpoint": "tweet",
"credits_used": 1,
"request_id": "req_abc123def456"
}
}