Documentation

Everything you need to run authenticity checks — in the app and over the API.

Getting started

Create a free account, then open New check from your dashboard. Enter a creator handle, choose the platform, and run the analysis. Your first report returns in a few seconds and is saved to your history automatically.

Reading a report

Every report leads with a 0–100 authenticity score and a plain-language verdict. The tabs break the score into its four components — followers, engagement, growth, and maturity — each with the underlying numbers so you can see exactly why the score landed where it did.

Platforms & handles

Instagram, TikTok, and YouTube are supported. Enter handles without the leading @ — for YouTube you can use either an @handle or a channel ID (UC…).

Quotas & plans

Each completed check counts as one query against your monthly quota — Free includes 3, Pro 100, and Agency 1,000. Quotas reset at the start of each calendar month. Deeper per-tool forensics on a report each count as an additional query.

API reference

Agency planProgrammatic access

Authntiqte with your API key as a bearer token and POST a handle and platform to the scoring endpoint.

curl https://authntiq.online/api/v1/score \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{ "handle": "creative_vic", "platform": "instagram" }'

A successful response:

{
  "influencer": "creative_vic",
  "platform": "instagram",
  "authenticity_score": 92,
  "status": "Excellent",
  "verdict": "Authentic audience with healthy engagement.",
  "fake_follower_pct": 4.2,
  "engagement_rate_pct": 3.1,
  "pod_activity_detected": false
}

Generate and revoke keys from Account → API keys. Each API call counts against your plan quota.