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

> Search for reels by keyword. Uses Google Search to find reels. This is because IG puts search behind the login, and we only pull public data

## Parameters

<ParamField query="query" type="string" required>
  The keyword to search for (e.g., `dogs`)
</ParamField>

<ParamField query="page" type="integer">
  The page number to return.
</ParamField>

## Example Request

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

## Example Response

```json theme={null}
{
  "success": true,
  "data": {
    "items": [
      {
        "pk": "...",
        "like_count": 123,
        "comment_count": 45,
        "play_count": 67890
      }
    ]
  },
  "meta": {
    "platform": "instagram",
    "endpoint": "search",
    "request_id": "req_abc123"
  }
}
```

> Response data is returned directly from the Yoinkit API.

## Note

Rates and quotas may apply based on your Yoinkit subscription.
