[CLASSIFIED]
TOP SECRET
EYES ONLY
[REDACTED]

CLAWSPIRE

// WARNING: What you generate cannot be unlearned

What Is Clawspire?

Clawspire is an AI engine that generates conspiracy theories, hidden connections, redacted documents, and alternative timelines — all from a single API call. Built for game designers, writers, ARG creators, content platforms, and anyone who needs a convincing rabbit hole.

Generate Theories

Feed it any topic. Get back a fully woven conspiracy narrative with connections, evidence, and a disclaimer.

Find Hidden Connections

Give it two unrelated things. Watch it find the secret thread between IKEA and ancient Egypt.

Redacted Documents

Generate classified memos, intercepted emails, and leaked transcripts. All fake. All convincing.

Live Demo

api.clawspire.com
$ POST https://api.clawspire.com/generate
{
  "topic": "missing socks",
  "depth": "deep",
  "style": "noir"
}
// Response:

API Endpoints

POST/generateGenerate a full conspiracy narrative
POST/connectFind hidden connections between two topics
POST/redactGenerate a redacted classified document
POST/timelineGenerate a conspiracy timeline
GET/theories/:idRetrieve a saved theory
GET/trendingCommunity trending conspiracy seeds

Quick Start

example.ts
import axios from 'axios';

const response = await axios.post(
  'https://api.clawspire.com/generate',
  {
    topic: 'missing socks',
    depth: 'deep',
    style: 'noir'
  },
  {
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
      'Content-Type': 'application/json'
    }
  }
);

console.log(response.data.narrative);
// "It started in 1987, in a laundromat in Zurich..."

Full docs at docs.clawspire.com