## panorama/video-intel

`GET /v1/panorama/video-intel`

One video, every angle: the post with its stats, the transcript, the top comments and the author profile — one composite, one call. engagement_rate = interactions ÷ plays, formula disclosed; legs a platform cannot serve are skipped with the reason. Failed legs prorate the price.

*Video intelligence*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | A video/post URL on tiktok, youtube, instagram, x or facebook. — e.g. `https://www.tiktok.com/@nasa/video/7665075736742530317` |
| `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` |

**Cost:** 8 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
curl "https://www.monocrawl.com/v1/panorama/video-intel?url=https%3A%2F%2Fwww.tiktok.com%2F%40nasa%2Fvideo%2F7665075736742530317" \
  -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
{
  "resolved": {
    "platform": "youtube",
    "endpoint": "video",
    "url": "https://www.youtube.com/watch?v=example1234"
  },
  "video": {
    "id": "example1234",
    "views": 1000,
    "likes": 10,
    "comments_count": 5
  },
  "transcript": null,
  "author": null,
  "top_comments": [],
  "engagement": {
    "plays": 1000,
    "interactions": 15,
    "engagement_rate": 0.015,
    "counts": {
      "likes": 10,
      "comments": 5,
      "shares": null,
      "views": 1000
    },
    "count_sources": {
      "likes": "likes",
      "comments": "comments_count",
      "shares": null,
      "views": "views"
    },
    "counters_reported": 2
  }
}
```

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