> For the complete documentation index, see [llms.txt](https://truth-satellite.gitbook.io/truth-satellite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://truth-satellite.gitbook.io/truth-satellite/readme.md).

# Truth Satellite API

Truth Satellite is a decentralized intelligence network storing classified geopolitical, financial, and strategic data on private orbital satellites. This API enables AI agents, analysts, and autonomous decision-making systems to access real-world factual intelligence beyond government control.

### **Overview**

* **Decentralized & Uncensored:** Data is stored off-world on private satellites, beyond any jurisdiction.
* **AI-Ready:** Designed for integration with AI agents, machine learning models, and automated decision-making systems.
* **Real-Time Intelligence:** Access classified intelligence reports, insider transactions, geopolitical movements, and strategic data.
* **Advanced Querying:** Perform structured and unstructured searches across our intelligence database.
* **Secure & Private:** End-to-end encrypted communication, zero-trust API architecture, and multi-layered authentication.

***

### **Features**

✔ **Live Intelligence Feeds** – Query real-time classified data.\
✔ **Historical Archive Access** – Retrieve intelligence from past events with full metadata.\
✔ **AI-Powered Fact Verification** – Cross-check sources to eliminate misinformation.\
✔ **Automated Webhooks** – Get alerts on key intelligence events.\
✔ **Enterprise Security** – JWT authentication, OAuth2 support, and AI-based anomaly detection.

***

### **Getting Started**

#### **1. Sign Up for API Access**

To use the Truth Satellite API, register for an API key at <https://truthsatellite.space>.

#### **2. Install the SDK**

**For Python:**

```
pip install truthsatellite
```

**For JavaScript:**

```
npm install truthsatellite
```

***

### **Quick Start Guide**

#### **Fetching Intelligence Reports**

Python Example

```
from truthsatellite import TruthAPI

api = TruthAPI(api_key="YOUR_API_KEY")
data = api.get_facts(category="geopolitics", limit=5)

print(data)
```

JavaScript Example

```
const TruthAPI = require('truthsatellite');

const api = new TruthAPI('YOUR_API_KEY');
api.getFacts('finance', 5).then(data => console.log(data));
```

***

### **API Endpoints**

1. Fetch Intelligence Reports • GET /facts • Retrieve real-time intelligence data.
2. Query Historical Data • GET /historical • Access archived intelligence reports.
3. Webhooks & AI Alerts • POST /alerts • Automate alerts for intelligence events.

***

### **Security & Authentication**

✔ **OAuth2 & JWT Tokens** – Enterprise-grade authentication.

✔ **End-to-End Encryption** – All requests are encrypted using TLS 1.3.

✔ **Zero-Trust Model** – AI-driven threat detection and anomaly tracking.

***

### **Use Cases**

✔ **AI-Powered Market Predictions** – Train AI models on insider trading data.

✔ **Geopolitical Risk Analysis** – Monitor hidden diplomatic movements.

✔ **Classified Intelligence Monitoring** – Track government leaks and shadow agreements.

✔ **Autonomous Decision Systems** – Provide real-time intelligence to AI-driven strategies.

***

### **Community & Contributions**

✔ **GitHub Issues & Discussions** – Join our community for real-time collaboration.

✔ **Open-Source SDKs** – Contribute to our Python, JavaScript, Go, and Java SDKs.

✔ **Enterprise Partnerships** – Secure custom API access for large-scale AI operations.

***

### **Deploying Locally (For Testing)**

Clone the repository:

```
git clone https://github.com/truthsatellite/truth-satellite-api.git
cd truth-satellite-api
```

Run with Docker:

```
docker-compose up
```

Test API responses:

```
curl -H "Authorization: Bearer YOUR_API_KEY" https://api.truthsatellite.com/facts?category=geopolitics
```

***

### **Legal & Compliance**

✔ **Decentralized Hosting** – No jurisdiction can censor or seize data.

✔ **Compliance with No Borders Policy** – Truth Satellite operates outside national laws.

✔ **Self-Sovereign Intelligence** – Designed for AI-driven autonomy, beyond human interference.

***

### **Changelog**

✔ **Version 1.3.2 (Current)** – Expanded AI support, enhanced security features.

✔ **Version 1.2.0** – Added historical intelligence archive.

✔ **Version 1.0.0** – Initial API release.

***

### **Contact & Support**

For enterprise integrations or technical support, contact:

📩 **<support@truthsatellite.space>**

🌍 **Website:** <https://truthsatellite.space>

***

#### **Truth is beyond the reach of governments. Truth Satellite is watching.**


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://truth-satellite.gitbook.io/truth-satellite/readme.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
