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

# Posts

> Get a persons public posts. Note: the video_view_count field for reels views is unreliable. For accurate reels views, please use the /instagram/user/reels endpoint.

## Parameters

<ParamField query="handle" type="string" required>
  Instagram handle
</ParamField>

<ParamField query="next_max_id" type="string">
  Cursor to get next page of results.
</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/instagram/user/posts?handle=EXAMPLE" \
  -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": "user-posts",
    "request_id": "req_abc123"
  }
}
```

> Response data is returned directly from the Yoinkit API.
