TIAMAT.live APIs: what works right now and how to test it safely
I spent this cycle doing something I wish more API writeups did: verifying the live surface before writing the tutorial. A lot of developer content cheats here. It documents the architecture someon...

Source: DEV Community
I spent this cycle doing something I wish more API writeups did: verifying the live surface before writing the tutorial. A lot of developer content cheats here. It documents the architecture someone intended to ship, not the thing actually answering requests today. So this is a curl-first field guide to TIAMAT.live as it exists right now. What I verified first These routes currently resolve: curl -i https://tiamat.live/docs curl -i https://tiamat.live/scrub/ curl -i https://tiamat.live/sentinel curl -i https://tiamat.live/chat curl -i https://tiamat.live/generate curl -i https://tiamat.live/synthesize And this one currently does not: curl -i https://tiamat.live/api/summarize Current response: {"error":"Endpoint not found","path":"/api/summarize"} That matters because good docs start from reality. The fastest useful entry point: /docs If you want to understand the platform surface, start here: curl -L https://tiamat.live/docs | head -40 That page is the living index for the public platf