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

# Post/Reel Info

> Retrieve public post/reel details. *Play counts can sometimes be inaccurate* Play counts are Instagram-only. When a Reel is also cross-posted to Facebook, Instagram (behind login) shows you the combined IG + FB views. But this API will only return the Instagram views.

## Parameters

<ParamField query="url" type="string" required>
  Instagram post or reel URL
</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/post?url=EXAMPLE" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```

## Example Response

```json theme={null}
{
  "success": true,
  "data": {
    "data": {
      "xdt_shortcode_media": {
        "id": "3565077699422862188",
        "shortcode": "DF5s0duxDts",
        "video_url": "...",
        "video_play_count": 67890,
        "edge_media_preview_like": {
          "count": 123
        },
        "edge_media_to_parent_comment": {
          "count": 45
        },
        "owner": {
          "username": "...",
          "profile_pic_url": "..."
        }
      }
    }
  },
  "meta": {
    "platform": "instagram",
    "endpoint": "post",
    "request_id": "req_abc123"
  }
}
```

> Response data is returned directly from the Yoinkit API.
