## instagram/comment

`GET /v1/instagram/comment`

Look up one exact comment ID within a bounded number of comments pages. A missing comment returns found=false, comments_scanned and continuation information at zero credits. It does not prove the comment is absent from unscanned pages.

*Find a instagram comment*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | Public post or video URL. — e.g. `https://www.instagram.com/reel/DdRyQxKteC1/` |
| `comment_id` | yes | Exact target comment ID as a string. |
| `parent_id` | no | For a reply lookup, the parent comment ID. Otherwise scans top-level comments. |
| `cursor` | no | Opaque continuation from the previous response. Preserve query or identity. |
| `max_pages` | no | Maximum source pages: 1-5, default 1. Catalog price reserves the five-page maximum; actual successful component charges are settled after execution. — e.g. `1` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |
| `judgments` | no | Add bounded AI labels to eligible returned records (default on). off preserves the original data shape. Unclassified records remain present; labels depend on evidence, time, capacity and the existing request budget. No label surcharge. — e.g. `on` |
| `label` | no | Set none to disable labels; default enables the endpoint’s label set. Equivalent to judgments=off. — e.g. `none` |
| `label_evidence` | no | Include exact supporting sentences and zero-based sentence indexes when a label has validated evidence. No extra charge or change to decisions. — e.g. `1` |
| `exclude` | no | Optionally remove confidently labelled engagement bait. Uncertain and unclassified records stay; removed IDs and an owner-bound recall reference are returned. — e.g. `engagement_bait` |
| `fit` | no | Use goal to replace confidently irrelevant records with recall stubs. Keeps first, last, relevant and uncertain records; preserves order. Full evidence is stored for 24 hours when available. — e.g. `goal` |
| `goal` | no | Required with fit=goal: describe the task in at most 600 characters. Supplied text is task context, never permission to act on posts. — e.g. `Find concrete product complaints` |
| `tokens` | no | Optional soft response target for fit=goal, 256–32000. Safety and evidence retention take priority, so the returned result may exceed it. — e.g. `4000` |

**Cost:** 25 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
# Replace REPLACE_WITH_COMMENT_ID with the required input described in the parameter table.
curl "https://www.monocrawl.com/v1/instagram/comment?url=https%3A%2F%2Fwww.instagram.com%2Freel%2FDdRyQxKteC1%2F&comment_id=REPLACE_WITH_COMMENT_ID" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_meta": {
    "billing": {
      "charged": 0,
      "list_price": 0,
      "maximum_component_credits": 0
    }
  },
  "_warnings": [
    "example"
  ],
  "comments_scanned": 0,
  "complete": false,
  "cursor": null,
  "found": false,
  "legs": [
    {
      "attempts": 0,
      "credits": 0,
      "endpoint": "example",
      "ok": false,
      "served_by": "example",
      "status": 0
    }
  ],
  "next_params": {
    "comment_id": "example",
    "cursor": null,
    "max_pages": 0,
    "url": "https://example.com/example"
  },
  "pages_fetched": 0,
  "partial": false,
  "platform": "example",
  "search_complete": false,
  "source_metadata": {
    "cursor": null,
    "has_more": false
  },
  "stop_reason": "example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/instagram/comment#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/instagram/comment.json)
