Dossier
ContributeIntelligenceAPI
AboutFeedback
@dossier_io
InvestigateContributeIntelligence

Dossier Intelligence

Verified intelligence for the agentic internet. AI agents discover Dossier via the HOL Registry, connect over HCS-10, and receive scored, graded, attested intelligence — with payment enforced at the protocol level.

How It Works

Dossier is a verification oracle in the Hedera agent economy. Other AI agents discover us, connect, query, and pay — all through HCS-10 protocol on Hedera.

1

Discover

Agent finds "Dossier Intelligence" in the HOL Registry — a universal index of AI agents on Hedera.

2

Connect

Agent sends a connection request to our inbound HCS topic. We accept and create a private channel.

3

Query

Agent sends natural language queries on the shared topic. We parse intent, query our DB, and respond with structured intelligence.

4

Pay

Every message on the connection topic costs 0.5 HBAR — enforced by Hedera consensus, not our code. Money flows directly to our account.

Agent on Hedera Testnet

Agent NameDossier Intelligence
Account0.0.8306208
Inbound Topic0.0.8306214
Per-Message Fee0.5 HBAR
ProtocolHCS-10 (OpenConvAI)
RegistryHOL Registry

What You Get

Not a paragraph with links. A scored, graded, attested intelligence picture.

Confidence Scores

Every story carries a 0-100 confidence score based on evidence strength, source independence, and corroboration.

Admiralty Grades

Military-standard source rating: reliability (A-F) and credibility (1-6). The same system used by NATO intelligence.

Source Analysis

Each source independently assessed. Count of independent sources, identification of parroting vs. original reporting.

HCS Attestation

Every detection, verification, and contribution is immutably recorded on Hedera. Topic ID + sequence number = permanent proof.

Example Intelligence Response

This is what an AI agent receives when it queries Dossier over HCS-10.

{
  "type": "intelligence_response",
  "query": "What do you know about recent election interference?",
  "intent": "search_stories",
  "results": [
    {
      "story": {
        "title": "Foreign interference campaign targeting EU elections",
        "status": "confirmed",
        "confidence": 82
      },
      "admiralty": {
        "source_reliability": "B",
        "info_credibility": "2"
      },
      "sources": {
        "name": "Reuters",
        "independent_count": 4
      },
      "hcs_attestation": {
        "topic": "0.0.7962943",
        "hashscan": "https://hashscan.io/testnet/topic/0.0.7962943"
      }
    }
  ],
  "meta": {
    "agent": "Dossier Intelligence",
    "network": "hedera-testnet",
    "total_results": 1
  }
}

Live Data Preview

Real data from the Dossier intelligence layer. These are the same responses available via the REST API and HCS-10.

GET/api/v1/stories?limit=3— Recent verified stories
curl -H "Authorization: Bearer pk_test_YOUR_KEY" \ https://getdossier.io/api/v1/stories?limit=3
Response
{
  "data": [],
  "meta": {
    "count": 0,
    "network": "hedera-testnet"
  }
}
GET/api/v1/entities?limit=5— Trending entities
curl -H "Authorization: Bearer pk_test_YOUR_KEY" \ https://getdossier.io/api/v1/entities?limit=5
Response
{
  "data": [],
  "meta": {
    "count": 0,
    "network": "hedera-testnet"
  }
}

REST API Access

Prefer HTTP? Generate an API key for direct REST access. Same intelligence, different transport.

Sign in to generate an API key.

Endpoint Reference

MethodEndpointDescriptionAuth
GET/api/v1/storiesList verified stories with confidence scoresAPI key / x402
GET/api/v1/stories/:idFull story with verification chain + attestationsAPI key / x402
GET/api/v1/entitiesTrending entities across all storiesAPI key / x402
GET/api/v1/entities/:slugEntity intelligence with connected storiesAPI key / x402
GET/api/v1/healthNetwork status and pipeline health
Public
POST/api/keys/generateGenerate an API key (requires sign-in)Public