Open Data Specification v2.4

Public API & Data Feeds.

Ingest structured intelligence data programmatically for academic research, automated RSS ingest, and analytical syndication.

Authentication
None Required (Public)
Rate Limit
1,000 req / min per node
Response Format
JSON / RSS 2.0 XML
GETIntelligence
/api/share

Retrieves recent public intelligence drops and whistleblower submissions in structured JSON format.

GETSyndication
/feed.xml

Standard RSS 2.0 XML syndication feed for all published field reports and dossier summaries.

GETField Reports
/blogs

Access master field reports, dossier summaries, and investigative article indexes.

GETBroadcasts
/videos

Dedicated broadcast stream index for cinematic video logs and documentary releases.

GETTelemetry
/monitor

Returns live node operational health, edge synchronization metrics, and current DEFCON threat level.

GETQuery Engine
/search?q={query}

Programmatic search endpoint to query title parameters, tags, and declassified categories.

GETDirectory
/author

Public metadata directory of core investigative operatives and publication counts.

GETDatabase
/archives

Structured access to master declassified article categories, tags, and historical logs.

API_FETCH_PAYLOAD.js
// Reality Decoded OSINT Ingest Script (JavaScript)
async function fetchSyndicateIntelligence() {
  const response = await fetch('https://realitydecoded.in/api/share', {
    method: 'GET',
    headers: { 'Accept': 'application/json' }
  });
  const telemetry = await response.json();
  console.log("Declassified Intelligence Streams:", telemetry);
}
fetchSyndicateIntelligence();