> ## 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.

# Search by Hashtag

> Pulls TikTok videos by hashtag

## Parameters

<ParamField query="hashtag" type="string" required>
  Hashtag to search for (without #)
</ParamField>

<ParamField query="region" type="string">
  Region the proxy will be set to. (e.g., `US`)
</ParamField>

<ParamField query="cursor" type="integer">
  Cursor to get more videos. Get 'cursor' from previous response. (e.g., `10`)
</ParamField>

<ParamField query="trim" type="boolean">
  Set to true to get a trimmed response (e.g., `false`)
</ParamField>

## Example Request

```bash theme={null}
curl -X GET "https://yoinkit.ai/api/v1/openclaw/tiktok/search/hashtag?hashtag=EXAMPLE" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```

## Example Response

```json theme={null}
{
  "success": true,
  "data": {
    "aweme_list": [
      {
        "aweme_id": "...",
        "desc": "...",
        "statistics": {
          "digg_count": 123,
          "comment_count": 45,
          "play_count": 67890
        }
      }
    ]
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "search-hashtag",
    "request_id": "req_abc123"
  }
}
```

> Response data is returned directly from the Yoinkit API.
