One call returns everything flat. No pagination. No joins. Every client, contract, file, and platform stat, raw JSON, ready for any AI model or automation.
Everything returned in a single call. Colours denote data type, no headers needed.
{ "user": "you@domain.com", "client_count": 12, "clients": [{ "name": "Acme Corp", "email": "hi@acme.com", "industry": "SaaS", "join_date": "2025-11-01", "notes": "Follow up Q1. Decision maker is Sarah.", "delivery_freq_days": 30, "sent": false, "contracts": [{ "name": "contract.pdf", "url": "https://files.titanlineco.com/...", "text": "This agreement is entered into between Acme Corp and... payment terms net 30. Deliverables defined in Schedule A." }], "files": [{ "name": "brief.pdf", "url": "https://files.titanlineco.com/...", "text": "Project brief: redesign onboarding. Target 40% drop-off reduction. Launch Q2." }] }], "platform_count": 3, "platforms": [{ "name": "LinkedIn", "account": "@yourhandle", "total": 4200, "follow_ups": 180, "interest": 42, "ready": 8 }] }
HTTP Request node with Header Auth. Query field accepts JSON body for write operations.
Full closed circuit. Data pulled from Titanline, written to file, loaded as knowledge base, queried via model.
import prime import requests, json, os
KEY = "YOUR_KEY" BASE = "https://titanlineco.com/api" H = {"Authorization": f"Bearer {KEY}"} data = requests.get(f"{BASE}/data?add=clients,platforms", headers=H).json() with open("titanline_data.txt", "w") as f: f.write(json.dumps(data, indent=2))
def knowledge_base(path="titanline_data.txt"): with open(path) as f: return f.read()
def generate_via_prompt(prompt): context = knowledge_base() return prime.chat( system = f"Client data:\n\n{context}", prompt = prompt ) print(generate_via_prompt("Which clients are overdue for delivery?"))
Missed a sync window? Download a full snapshot straight to a file and catch up.
Pulls everything to a local file. Feed it manually into any model or audit a specific period.
curl "https://titanlineco.com/api/data?add=clients,platforms" \
-H "Authorization: Bearer YOUR_KEY" >> clients.txt
Loads once on login. Writes are immediate. Background refresh only fires when the tab is visible. Snapshot diff, if nothing changed, zero re-render.
Subscribe to get your API key from the Settings panel.