## panorama/creator-vetting

`GET /v1/panorama/creator-vetting`

Research one creator on TikTok, Instagram, YouTube, X or Threads: public profile, a bounded recent-post sample, observed interaction metrics and posting cadence. Supported comment lookups sample multiple selected posts with explicit caps and original evidence. Optional content_review=1 adds advisory text-only flags with exact evidence for human review; it does not inspect images or videos. Missing counters stay unknown; no audience authenticity grade is inferred.

*Creator vetting*

| Parameter | Required | Description |
| --- | --- | --- |
| `handle` | yes | Creator username without the @. — e.g. `nasa` |
| `platform` | yes | tiktok, instagram, youtube, x or threads. — e.g. `tiktok` |
| `posts_limit` | no | Integer1–20, default20; returned source can contain fewer posts. Missing YouTube counters are hydrated in one bounded batch for at most10 retained videos, subject to the same workflow budget. — e.g. `20` |
| `comment_posts` | no | Integer0–10, default3; maximum posts to sample comments from. — e.g. `3` |
| `comments_per_post` | no | Integer1–50, default20; maximum comments requested for each sampled post. — e.g. `20` |
| `content_review` | no | Optional review of text from already-returned creator posts (default off). At most eight posts receive bounded advisory flags with exact source sentences for human review. Does not inspect images/video, verify allegations, infer identity or personal traits, determine authenticity, or score the creator. No extra source calls or credit surcharge; unavailable or uncertain analysis remains explicit within the existing request budget. — 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` |

**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/creator-vetting?handle=nasa&platform=tiktok" \
  -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
{
  "output": {
    "posts_sampled": 1,
    "posts_with_engagement": 1,
    "posts_missing_engagement": 0,
    "avg_engagement_per_post": 0,
    "engagement_rate": 0,
    "posting_cadence_days": null,
    "follower_denominator": 100,
    "follower_source_field": "followers"
  },
  "post_evidence": [
    {
      "id": "example-post",
      "url": null,
      "counts": {
        "likes": 0,
        "comments": 0,
        "shares": null,
        "views": 100
      },
      "interactions": 0,
      "counters_reported": 2,
      "view_engagement_rate": 0,
      "created_at": null,
      "count_sources": {
        "likes": {
          "endpoint": "instagram/posts",
          "id": "example-post",
          "field": "stats.likes"
        },
        "comments": {
          "endpoint": "instagram/posts",
          "id": "example-post",
          "field": "stats.comments"
        },
        "shares": null,
        "views": {
          "endpoint": "instagram/posts",
          "id": "example-post",
          "field": "stats.views"
        }
      }
    }
  ],
  "comment_sample": [],
  "sample": {
    "posts_limit": 20,
    "comment_posts_requested": 0,
    "comment_posts_attempted": 0,
    "comment_posts_completed": 0,
    "comments_per_post": 20,
    "comments_returned": 0,
    "selection": "highest reported interaction counts within the returned recent-post page",
    "exhaustive": false
  },
  "_meta": {
    "methodology_version": "creator-vetting-v3"
  },
  "metrics_hydration": {
    "status": "not_needed",
    "endpoint": null,
    "requested": 0,
    "returned": 0,
    "cap": 10,
    "missing_ids": []
  }
}
```

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