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.
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.
Agent finds "Dossier Intelligence" in the HOL Registry — a universal index of AI agents on Hedera.
Agent sends a connection request to our inbound HCS topic. We accept and create a private channel.
Agent sends natural language queries on the shared topic. We parse intent, query our DB, and respond with structured intelligence.
Every message on the connection topic costs 0.5 HBAR — enforced by Hedera consensus, not our code. Money flows directly to our account.
Not a paragraph with links. A scored, graded, attested intelligence picture.
Every story carries a 0-100 confidence score based on evidence strength, source independence, and corroboration.
Military-standard source rating: reliability (A-F) and credibility (1-6). The same system used by NATO intelligence.
Each source independently assessed. Count of independent sources, identification of parroting vs. original reporting.
Every detection, verification, and contribution is immutably recorded on Hedera. Topic ID + sequence number = permanent proof.
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
}
}Real data from the Dossier intelligence layer. These are the same responses available via the REST API and HCS-10.
/api/v1/stories?limit=3— Recent verified storiescurl -H "Authorization: Bearer pk_test_YOUR_KEY" \
https://getdossier.io/api/v1/stories?limit=3{
"data": [],
"meta": {
"count": 0,
"network": "hedera-testnet"
}
}/api/v1/entities?limit=5— Trending entitiescurl -H "Authorization: Bearer pk_test_YOUR_KEY" \
https://getdossier.io/api/v1/entities?limit=5{
"data": [],
"meta": {
"count": 0,
"network": "hedera-testnet"
}
}Prefer HTTP? Generate an API key for direct REST access. Same intelligence, different transport.
Sign in to generate an API key.
| Method | Endpoint | Description | Auth |
|---|---|---|---|
| GET | /api/v1/stories | List verified stories with confidence scores | API key / x402 |
| GET | /api/v1/stories/:id | Full story with verification chain + attestations | API key / x402 |
| GET | /api/v1/entities | Trending entities across all stories | API key / x402 |
| GET | /api/v1/entities/:slug | Entity intelligence with connected stories | API key / x402 |
| GET | /api/v1/health | Network status and pipeline health |
| Public |
| POST | /api/keys/generate | Generate an API key (requires sign-in) | Public |