Panorama API

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.

Read as Markdown · Use with an AI agent

Endpoint

GET/v1/panorama/creator-vettinglive · provenUp to 8 credits
Try in Playground

Parameters

Query parameters

NameRequiredDescriptionExample
handleyesCreator username without the @.nasa
platformyestiktok, instagram, youtube, x or threads.tiktok
posts_limitnoInteger1–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.20
comment_postsnoInteger0–10, default3; maximum posts to sample comments from.3
comments_per_postnoInteger1–50, default20; maximum comments requested for each sampled post.20
content_reviewnoOptional 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.1
dry_runnoRead a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution.1

Examples

Make the request

curl
curl "https://www.monocrawl.com/v1/panorama/creator-vetting?handle=nasa&platform=tiktok" \
  -H "x-api-key: mn_your_key_here"
TypeScript
typescript
const key = process.env.MONOCRAWL_API_KEY;
if (!key) throw new Error('Set MONOCRAWL_API_KEY on your server.');
const res = await fetch(
  "https://www.monocrawl.com/v1/panorama/creator-vetting?handle=nasa&platform=tiktok",
  { headers: { "x-api-key": key } },
);
const body = await res.json();

if (!body.success) {
  // one error shape for every endpoint — see /docs/errors
  throw new Error(`${body.error.type}: ${body.error.message}`);
}

console.log(body.data, "credits left:", body.credits_remaining);
Python
python
import os
import requests

res = requests.get(
    "https://www.monocrawl.com/v1/panorama/creator-vetting?handle=nasa&platform=tiktok",
    headers={"x-api-key": os.environ["MONOCRAWL_API_KEY"]},
    timeout=60,
)
body = res.json()

if not body["success"]:
    # one error shape for every endpoint — see /docs/errors
    raise RuntimeError(f"{body['error']['type']}: {body['error']['message']}")

print(body["data"], "credits left:", body["credits_remaining"])

Response

Response fields and example

This example is illustrative, not a captured live response. Variable-cost operations may settle a charge different from the list price below. A successful response puts the platform payload in data and reports the exact credits used, remaining balance, request id and cache status beside it.

200 · application/json
{
  "success": true,
  "platform": "panorama",
  "endpoint": "/v1/panorama/creator-vetting",
  "data": {
    "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": []
    }
  },
  "credits_used": 8,
  "credits_remaining": 99,
  "request_id": "req_…",
  "cached": false
}

The example uses fictional values and shows a documented subset of data. The fields below are optional across supported sources; nullable fields can also be absent. Preserve unknown values and accept additional fields.

Download the data JSON Schema. Validate response.data, not the whole envelope. A valid shape does not establish that every field or source record was returned.

Field inside dataTypeMeaning
post_evidencearrayNested response fields; optional unless explicitly documented.
post_evidence[].idstring | nullOriginal post id.
post_evidence[].urlstring | nullOriginal post link.
post_evidence[].countsobjectNested response fields; optional unless explicitly documented.
post_evidence[].counts.likesnumber | nullLikes.
post_evidence[].counts.commentsnumber | nullComments.
post_evidence[].counts.sharesnumber | nullShares.
post_evidence[].counts.viewsnumber | nullViews.
post_evidence[].interactionsnumber | nullObserved likes+comments+shares; views separate.
post_evidence[].counters_reportednumber | nullKnown interaction counters.
post_evidence[].view_engagement_ratenumber | nullObserved interactions/views, fraction; null with missing or zero views.
post_evidence[].created_atstring | nullOriginal publication timestamp.
post_evidence[].count_sourcesobjectNested response fields; optional unless explicitly documented.
post_evidence[].count_sources.likesobject | nullNested response fields; optional unless explicitly documented.
post_evidence[].count_sources.likes.endpointstring | nullQualified source endpoint.
post_evidence[].count_sources.likes.idstring | nullNative post id matched exactly.
post_evidence[].count_sources.likes.fieldstring | nullField path in that endpoint’s normalized response.
post_evidence[].count_sources.commentsobject | nullNested response fields; optional unless explicitly documented.
post_evidence[].count_sources.comments.endpointstring | nullQualified source endpoint.
post_evidence[].count_sources.comments.idstring | nullNative post id matched exactly.
post_evidence[].count_sources.comments.fieldstring | nullField path in that endpoint’s normalized response.
post_evidence[].count_sources.sharesobject | nullNested response fields; optional unless explicitly documented.
post_evidence[].count_sources.shares.endpointstring | nullQualified source endpoint.
post_evidence[].count_sources.shares.idstring | nullNative post id matched exactly.
post_evidence[].count_sources.shares.fieldstring | nullField path in that endpoint’s normalized response.
post_evidence[].count_sources.viewsobject | nullNested response fields; optional unless explicitly documented.
post_evidence[].count_sources.views.endpointstring | nullQualified source endpoint.
post_evidence[].count_sources.views.idstring | nullNative post id matched exactly.
post_evidence[].count_sources.views.fieldstring | nullField path in that endpoint’s normalized response.
sampleobjectNested response fields; optional unless explicitly documented.
sample.posts_limitnumber | nullRequested maximum posts, integer1–20.
sample.comment_posts_requestednumber | nullRequested maximum posts to sample for comments, integer0–10.
sample.comment_posts_attemptednumber | nullPosts selected for comment requests; inspect source receipts for dispatch or budget refusals.
sample.comment_posts_completednumber | nullSelected posts whose comment lookup returned data.
sample.comments_per_postnumber | nullMaximum retained comments from each selected post, integer1–50.
sample.comments_returnednumber | nullRetained nonempty comment records after native ID deduplication per post.
sample.selectionstring | nullHighest reported interaction counts within the returned recent-post page.
sample.exhaustiveboolean | nullFalse: bounded samples are not an audience census.
_metaobjectNested response fields; optional unless explicitly documented.
_meta.methodology_versionstring | nullcreator-vetting-v3.
outputobjectNested response fields; optional unless explicitly documented.
output.posts_samplednumber | nullNumber of posts retained from the returned recent-post page.
output.posts_with_engagementnumber | nullReturned posts with observed interaction inputs, including legitimate zeros.
output.posts_missing_engagementnumber | nullPosts with no usable interaction inputs.
output.avg_engagement_per_postnumber | nullRounded mean of reported interactions over posts with at least one known counter, including zeros.
output.engagement_ratenumber | nullavg_engagement_per_post divided by followers; fraction, null without a usable denominator.
output.posting_cadence_daysnumber | nullMean gap in UTC days between consecutive dated sampled posts; null with fewer than two dates.
output.follower_denominatornumber | nullPublished follower/subscriber denominator; null when unavailable or hidden.
output.follower_source_fieldstring | nullfollowers, followers_count or subscribers; null when unknown.
comment_samplearrayNested response fields; optional unless explicitly documented.
comment_sample[].idstring | nullNative comment id.
comment_sample[].textstring | nullOriginal nonempty comment text.
comment_sample[].likesnumber | nullOriginal like count or null.
comment_sample[].authorobject | string | nullNested response fields; optional unless explicitly documented.
comment_sample[].urlstring | nullOriginal comment URL or null.
comment_sample[].post_idstring | nullParent post native id.
comment_sample[].post_urlstring | nullParent post URL.
comment_sample[].created_atstring | nullOriginal comment timestamp or null.
metrics_hydrationobjectNested response fields; optional unless explicitly documented.
metrics_hydration.statusstring | nullnot_needed, complete, partial or unavailable. Complete means all requested hydration rows have views, likes and comment counts.
metrics_hydration.endpointstring | nullyoutube/videos for YouTube; otherwise null.
metrics_hydration.requestednumber | nullUnique video IDs requested, at most10.
metrics_hydration.returnednumber | nullIdentity-matched returned rows, even if some counters are unpublished.
metrics_hydration.capnumber | null10.
metrics_hydration.missing_idsarrayNested response fields; optional unless explicitly documented.
content_reviewobjectNested response fields; optional unless explicitly documented.
content_review.versionstring | nullcreator-post-text-review-v1.
content_review.statusstring | nullcomplete, partial, unavailable or no_candidates.
content_review.scopestring | nullreturned_post_text_only.
content_review.posts_returnednumber | nullRetained original posts, at most20.
content_review.posts_selectednumber | nullAt most8 evenly spaced posts.
content_review.posts_examinednumber | nullPosts with complete or partial model output.
content_review.posts_completednumber | nullPosts whose full criteria set was answered, including uncertainty.
content_review.remaining_unclassifiednumber | nullUnselected, unavailable or incomplete posts.
content_review.source_postsarrayNested response fields; optional unless explicitly documented.
content_review.source_posts[].idstring | number | nullNested response fields; optional unless explicitly documented.
content_review.source_posts[].urlstring | nullOriginal link.
content_review.source_posts[].titlestring | nullOriginal title.
content_review.source_posts[].textstring | nullOriginal text.
content_review.source_posts[].captionstring | nullOriginal caption.
content_review.flagsarrayNested response fields; optional unless explicitly documented.
content_review.flags[].native_idstring | number | nullNested response fields; optional unless explicitly documented.
content_review.flags[].patharrayNested response fields; optional unless explicitly documented.
content_review.flags[].urlstring | nullOriginal link.
content_review.flags[].categorystringNested response fields; optional unless explicitly documented.
content_review.flags[].supportnumber | nullModel support, not calibrated accuracy.
content_review.flags[].evidencearrayNested response fields; optional unless explicitly documented.
content_review.flags[].evidence[].sentence_indexnumber | nullZero-based sentence index in the bounded classifier input.
content_review.flags[].evidence[].fieldstring | nullOriginal returned text field.
content_review.flags[].evidence[].startnumber | nullInclusive UTF-16 offset in that field.
content_review.flags[].evidence[].endnumber | nullExclusive UTF-16 offset.
content_review.flags[].evidence[].textstring | nullExact original substring; never generated supporting prose.
content_review.flags[].requires_human_reviewboolean | nullTrue.
content_review.assessmentsarrayNested response fields; optional unless explicitly documented.
content_review.assessments[].native_idstring | number | nullNested response fields; optional unless explicitly documented.
content_review.assessments[].patharrayNested response fields; optional unless explicitly documented.
content_review.assessments[].urlstring | nullOriginal link.
content_review.assessments[].statusstring | nullComplete, partial or unavailable annotation.
content_review.assessments[].scopestring | nullReturned text scope.
content_review.assessments[].judgmentsobjectNested response fields; optional unless explicitly documented.
content_review.breakdownobject | nullNested response fields; optional unless explicitly documented.
content_review.requires_human_reviewboolean | nullTrue.
content_review.images_and_video_analyzedboolean | nullFalse.
content_review.interpretationstring | nullText sample limits; no creator identity, authenticity or suitability judgment.
analysis_legsarrayNested response fields; optional unless explicitly documented.
analysis_legs[].sourcestring | nullintelligence:jev.
analysis_legs[].okboolean | nullModel request completed.
analysis_legs[].skippedboolean | nullNo model dispatch occurred.
analysis_legs[].cost_microsnumber | nullKnown supplier cost in micro-GBP; inspect pending_cost before interpreting zero.
analysis_legs[].cost_confirmedboolean | nullA measured receipt exists.
analysis_legs[].pending_costboolean | nullDispatch had no final measured receipt; quoted allowance remains held.
analysis_legs[].funding_reasonstring | nullAdmission limit that prevented dispatch.

Comments are sampled from multiple bounded posts. Low followers, inactivity or small comment samples do not establish a fake audience.

Keep zero counters separate from missing inputs. Rates describe the documented returned sample, not complete account history.

YouTube upload feeds can omit counters. One qualified batch fills missing fields for at most10 videos, sharing the workflow budget and deadline. Existing feed counters are preserved, extra or mismatched IDs are ignored, and count_sources links every measured input to its endpoint/id/field. Inspect posts_missing_engagement and metrics_hydration before using a rate.

content_review=1 optionally reviews text from at most8 already-returned posts under the same8-credit workflow. Exact spans point to content_review.source_posts. Flags concern explicit text, never creator identity, authenticity, personal traits or overall suitability. Images and video are not analyzed; missing or uncertain flags do not establish safety. Retrieval coverage can be lower because the existing funding/time limit protects a bounded review allowance.

Failures use the typed error envelope. A confirmed uncharged or refunded failure reports zero; a pending reconciliation can report an unknown charge. Read credits_used and error.details.billing_status, and keep request_id for recovery. Response contract · Error reference

First call in under a minute

1,000 monthly free credits and a ready-made key the moment you sign up. No card.