| title | description |
|---|---|
Quickstart |
Get started with Timepoint AI — render your first historical moment in minutes. |
Flash is the fastest way to see Timepoint in action. It generates grounded historical scenes from natural language.
- Python 3.10+
- A Google API key (free at AI Studio)
git clone https://github.com/timepointai/timepoint-flash.git
cd timepoint-flash
pip install -e .Set your API key:
export GOOGLE_API_KEY="your-key-here"Start the server:
flash servecurl -X POST http://localhost:8000/api/v1/timepoints/generate/sync \
-H "Content-Type: application/json" \
-d '{"query": "AlphaGo plays Move 37, Seoul, March 10 2016", "generate_image": true}'You'll get back a complete scene: characters with distinct voices, period-accurate dialog, relationship dynamics, source citations, and a photorealistic image.
Pro is the SNAG engine — it simulates social dynamics with causal provenance.
git clone https://github.com/timepointai/timepoint-pro.git
cd timepoint-pro
pip install -e .Set your LLM provider:
export OPENROUTER_API_KEY="your-key-here"python run.sh --template board-meeting --fidelity 3Pro supports 21 verified templates at $0.15–$1.00 per run.
The Clockchain is a public API — no authentication needed for read access.
# Get graph statistics
curl https://clockchain.timepointai.com/api/v1/stats
# List moments
curl "https://clockchain.timepointai.com/api/v1/moments?limit=10"
# Search by keyword
curl "https://clockchain.timepointai.com/api/v1/moments?q=rome"
# Filter by date range
curl "https://clockchain.timepointai.com/api/v1/moments?year_from=1900&year_to=2000"Understand timepoints, SNAG, and temporal modes The 14-agent pipeline explained Full endpoint documentation How the temporal graph works