Skip to main content
📅

Timeline AI

Visual case chronology builder with AI-powered event extraction, relationship mapping, and inconsistency detection.

Features

📄

Auto Event Extraction

AI extracts dates, events, and participants from documents automatically.

📊

Visual Timeline

Interactive chronological visualization with zoom and filtering.

🔗

Relationship Mapping

AI infers connections between events: causes, responses, contradictions.

⚠️

Inconsistency Detection

Automatically identify date conflicts, gaps, and contradicting statements.

📁

Multi-Document Support

Build timeline from multiple documents, depositions, and evidence.

📤

Export Options

Export to PDF, Word, Excel, or interactive HTML for court submission.

Event Types

📝 Contract 💬 Communication 👥 Meeting ⚖️ Filing 🔨 Decision 🔍 Evidence

Sample Timeline View

2025-01-15
Contract Signed
Contract
2025-03-20
First Payment Due
Deadline
2025-06-10
Performance Issue Reported
Communication
2025-07-01
Demand Letter Sent
Document
2025-08-15
Complaint Filed
Filing

Create Timeline

📄

Extract Events from Document

Paste document text and let AI automatically extract events with dates, participants, and significance.

Add Event Manually

Analyze Inconsistencies

AI will check for date conflicts, statement contradictions, and suspicious gaps.

Export Timeline

Export to PDF, Word, Excel, or interactive HTML format.

API Endpoints

GET/api/timelineai/timelines/List timelines
POST/api/timelineai/timelines/{id}/extract_events/Extract events from text
POST/api/timelineai/timelines/{id}/analyze_inconsistencies/Find inconsistencies
POST/api/timelineai/exports/create_export/Export timeline

Extract Events from Text

curl -X POST "http://localhost:8000/api/timelineai/timelines/<timeline_id>/extract_events/" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "document_text": "On January 15, 2025, the parties signed the contract...",
    "ai_model": "gemini-1.5-flash"
  }'