Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions skills/apimux-instagram/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,17 +302,21 @@ List replies for one Instagram parent comment.

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `shortcode` | string | Conditional | Instagram post/reel shortcode; provide one of `shortcode`, `url`, or `media_id` |
| `url` | string | Conditional | Instagram post/reel URL; provide one of `shortcode`, `url`, or `media_id` |
| `media_id` | string | Conditional | Instagram media ID; provide one of `shortcode`, `url`, or `media_id` |
| `comment_id` | string | Yes | Parent comment ID |
| `cursor` | string | No | Pagination cursor |
| `count` | integer | No | Maximum replies to return |

### CLI usage

```bash
apimux capability call instagram.get_comment_replies --params-json '{"comment_id":"18000000000000000","count":20}'
apimux capability call instagram.get_comment_replies --params-json '{"shortcode":"C0abc123xyz","comment_id":"18000000000000000","count":20}'
apimux capability call instagram.get_comment_replies --params-json '{"url":"https://www.instagram.com/p/C0abc123xyz/","comment_id":"18000000000000000","count":20}'
```

### Notes

- `comment_id` is required.
- `comment_id` is required, and the post/reel identity is also required via one of `shortcode`, `url`, or `media_id`.
- Use `meta.cursor` and `meta.has_more` for pagination when returned.
Loading