> ## Documentation Index
> Fetch the complete documentation index at: https://openclaw.yoinkit.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# User Tweets

> Get tweets from a user's profile. *These aren't the users latest tweets. Sadly, Twitter publicly only returns 100 of the users most popular tweets.

## Parameters

<ParamField query="handle" type="string" required>
  Twitter/X handle (e.g., `elonmusk`)
</ParamField>

## Example Request

```bash theme={null}
curl -X GET "https://yoinkit.ai/api/v1/openclaw/twitter/user-tweets?handle=elonmusk" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```

## Example Response

```json theme={null}
{
  "success": true,
  "data": {
    "__typename": "Tweet",
    "rest_id": "1628769691547074562",
    "legacy": {
      "full_text": "...",
      "favorite_count": 123,
      "retweet_count": 45,
      "reply_count": 12
    }
  },
  "meta": {
    "platform": "twitter",
    "endpoint": "user-tweets",
    "request_id": "req_abc123"
  }
}
```

> Response data is returned directly from the Yoinkit API.

## Note

Rates and quotas may apply based on your Yoinkit subscription.
