PRIVATE BETA · LIMITED PARTNERS

Private Data Access

Athena Index provides evidence-backed credibility data on public market commentators, analysts, and public figures. We are currently onboarding a limited number of data partners across research, compliance, media, exchanges, wallets, and entity due diligence.

We help teams identify which public figures, analysts, and narratives are credible, risky, conflicted, or repeatedly wrong — using longitudinal claim tracking and behavioral scoring, not opinion.

Diligence Reports

Evidence-backed entity assessments with score drivers, claim history, and coverage notes

Risk Monitoring

Ongoing watchlists and alerts for score changes, elevated signals, and conflict-of-interest patterns

Data API

Direct access to scores, claims, outcomes, and risk fields for teams embedding credibility context

Built for Teams With Trust Risk

Athena helps teams evaluate who said what, how specific it was, what happened later, and whether the person handled outcomes transparently.

Funds and Research Teams

Screen public commentators, newsletters, and narratives before relying on them in research or diligence.

Exchanges and Wallets

Monitor entity risk, undisclosed promotion patterns, and claims tied to high-attention assets.

Media and Compliance

Check public claim history, methodology evidence, and coverage limits before publishing or partnering.

What We Offer

Five ways teams have used Athena data. Partners typically start with one, then expand.

Entity Due Diligence Reports

For Brands, exchanges, sponsors, media teams

Evidence-backed report on a specific public figure: score breakdown, claim history, notable outcomes, disclosure signals, and coverage notes.

Entity Risk Monitoring

For Wallets, exchanges, compliance teams

Ongoing watchlists for elevated-risk patterns — undisclosed promotions, repeated misses, score deterioration, and conflict-of-interest signals.

Narrative Credibility Watchlist

For Funds, research teams

Track the credibility of analysts and commentators behind specific narratives or asset categories. Know who is reliable, who is conflicted.

Disclosure & Conflict Monitoring

For Compliance, brand safety teams

Flag sponsored content, undisclosed affiliations, and claims that conflict with known portfolio positions. Useful for compliance workflows.

Claim Ledger API

For Platforms embedding credibility context

Direct API access to credibility scores, prediction outcomes, claim history, and risk fields. For products that want Athena data in their own UI.

Not sure which fits?

Tell us your use case in the form below and we'll suggest the right starting point.

How We Work Together

All new partners go through a scoped, founder-led engagement. We don't offer self-serve signup right now — every partner relationship starts with a conversation.

Design Partner
Free or discounted

For strategically valuable partners who provide regular feedback, data requirements, and are open to being referenced as early partners.

  • Bi-weekly feedback calls
  • Share use case outcomes
  • Open to public or private reference
Paid Pilot
$1k–$5k / month

Limited scope, high-touch engagement. You define what you need to validate within 30–60 days. We deliver and iterate.

  • Defined success criteria
  • Monthly check-in
  • Structured outcome report at close
Enterprise Pilot
$10k–$25k / 90 days

Custom reporting package, API access, and data delivery. Scoped to your workflow. Founder-led onboarding.

  • Full custom scope
  • Dedicated support
  • API + reports + dashboards as needed
API DOCUMENTATION

API Contract — v1

Canonical entity-centric endpoints. All requests must include X-API-Key: YOUR_KEY for authenticated access.

See our full subprocessor list and data handling commitments →

GET/api/v1/entitiesAuth: Optional — unauthenticated requests are rate-limited to 5 results.

List all tracked entities with credibility scores. Paginated.

Query Parameters

limit (int)requireddefault: 10

Results per page (1–100)

page (int)requireddefault: 1

Page number

min_score (int)optional

Filter by minimum Athena Index score

Example Response

{
  "influencers": [
    {
      "id": "f4fb2208-d473-40aa-8853-4c572810ddaa",
      "display_name": "Real Vision Finance",
      "slug": "RealVisionFinance",
      "subscriber_count": 450000,
      "total_predictions": 312,
      "evaluated_predictions": 189,
      "credibility_v1": {
        "overall_score": 74,
        "confidence": "high",
        "score_version": "v1.23"
      }
    }
  ],
  "total": 125,
  "page": 1,
  "limit": 10
}
GET/api/v1/entities/{slug}Auth: Optional

Full entity profile: metadata, subscriber counts, and 6-pillar credibility snapshot.

Query Parameters

slug (string)required

Entity URL slug (case-sensitive)

Example Response

{
  "id": "f4fb2208-d473-40aa-8853-4c572810ddaa",
  "display_name": "Real Vision Finance",
  "slug": "RealVisionFinance",
  "bio": "Macro research and interview platform.",
  "subscriber_count": 450000,
  "total_predictions": 312,
  "evaluated_predictions": 189,
  "credibility_v1": {
    "overall_score": 74,
    "confidence": "high",
    "pillars": {
      "outcome_alignment": 0.71,
      "calibration": 0.68,
      "consistency": 0.79,
      "specificity_quality": 0.72,
      "transparency": 0.81,
      "accountability": 0.75
    },
    "score_version": "v1.23",
    "computed_at": "2026-05-10T00:00:00Z"
  }
}
GET/api/v1/entities/{slug}/scoreAuth: Required for detailed driver fields

Full 6-pillar credibility score with confidence level, score drivers, and methodology version.

Query Parameters

slug (string)required

Entity URL slug

window (string)requireddefault: all_time

Scoring window: all_time | 90d | 30d

Example Response

{
  "influencer_id": "f4fb2208-d473-40aa-8853-4c572810ddaa",
  "overall_score": 74,
  "confidence": "high",
  "confidence_reason": "189 evaluated claims over 18 months",
  "pillars": {
    "outcome_alignment": 0.71,
    "calibration": 0.68,
    "consistency": 0.79,
    "specificity_quality": 0.72,
    "transparency": 0.81,
    "accountability": 0.75
  },
  "top_positive_drivers": [
    "High specificity claims",
    "Consistent disclosure behavior"
  ],
  "top_negative_drivers": [
    "Several missed BTC targets"
  ],
  "score_version": "v1.23",
  "sample_size": 189,
  "computed_at": "2026-05-10T00:00:00Z"
}
GET/api/v1/entities/{slug}/claimsAuth: Required

Entity claim ledger — source-linked claims with outcome verdicts. Paginated.

Query Parameters

slug (string)required

Entity URL slug

limit (int)requireddefault: 20

Results per page (1–100)

page (int)requireddefault: 1

Page number

outcome (string)optional

Filter: hit | miss | partial | open

Example Response

{
  "predictions": [
    {
      "id": "claim-uuid",
      "raw_text_snippet": "BTC will reach 100K before end of year.",
      "asset": "BTC",
      "direction": "up",
      "status": "RESOLVED",
      "confidence_from_text": 0.82,
      "source_url": "https://youtube.com/watch?v=example",
      "video_published_at": "2024-11-15T00:00:00Z",
      "evaluation": {
        "outcome": "hit",
        "outcome_at": "2024-12-16T00:00:00Z"
      }
    }
  ],
  "total": 312,
  "page": 1,
  "limit": 20
}
GET/api/v1/rankingsAuth: Optional

Athena Index leaderboard ranked by credibility score for a given window.

Query Parameters

window_type (string)requireddefault: all_time

all_time | 90d | 30d

limit (int)requireddefault: 50

Max results (1–100)

min_score (int)optional

Minimum score filter

Example Response

{
  "rankings": [
    {
      "rank": 1,
      "display_name": "Example Entity",
      "slug": "ExampleSlug",
      "overall_score": 87,
      "score_version": "v1.23",
      "evaluated_predictions": 204
    }
  ],
  "window_type": "all_time",
  "total": 125
}

Authentication & Security

API pilots use authenticated requests with an API key header:

X-API-Key: YOUR_API_KEY

TLS encryption, rate limiting, scoped access, and IP allowlisting are available for qualified pilots.

SAMPLE DATA

Try Before You Integrate

Representative datasets to evaluate schema, validate your pipeline, or prototype dashboards before requesting full API access.

sample_entities.json

10 entities · JSON · ~18 KB

Full credibility records for 10 representative entities — scores, 6-pillar breakdowns, badges, drivers, and methodology version. Ready to load into any pipeline or dashboard.

{ "entity_slug", "credibility_score", "pillars": { outcome_alignment, calibration, ... }, "badges", ... }
Download JSON

sample_claims.csv

20 claims · CSV · ~6 KB

Source-linked claim records with outcomes — asset, direction, stated confidence, timeframe, verdict (hit/miss/partial/open), outcome evidence, and methodology version.

claim_id, entity_slug, asset, direction, claim_text, outcome, outcome_date, outcome_evidence, methodology_version
Download CSV

Sample data uses representative fictional entities. Full entity data via authenticated API. Request access →

TRY IT LIVE

Interactive API Playground

Run live requests against the Athena API from your browser. Preview mode (no key) returns up to 5 results. Get a free API key for up to 100 results per request.

API Playground
Authentication
X-API-Key
Optional

Preview mode — results limited to 5. Get a free key for up to 100 results per request.

Parameters
limit
Max results (1–100)
GET https://api.athenaindex.com/api/v1/entities/?limit=10
cURL equivalent
curl 'https://api.athenaindex.com/api/v1/entities/?limit=10' \
  -H 'Accept: application/json'

Requests hit the live production API. Public endpoints are rate-limited at 100 req/min.

Get a free API key

Instant. No approval needed. 100 results/request, 100 req/min.

or

Request Enterprise or Pilot Access

Tell us what you need to evaluate, monitor, or integrate. We'll respond within 24 hours.

125+
Tracked Entities
210K+
Videos Collected
60K+
Claims Extracted
6
Credibility Pillars

Athena reports are evidence summaries for diligence and risk review. They do not certify people, provide investment advice, or guarantee future performance.