{"openapi":"3.1.0","info":{"title":"All Concepts of Life — Wisdom API","description":"A free, CC0-licensed read-only API for the world's contemplative wisdom traditions. Concepts, quotes, the connection graph between them. Built for AI tools, daily-email pipelines, dashboards, and any client that wants structured wisdom data.","version":"1.0.0","license":{"name":"CC0-1.0","url":"https://creativecommons.org/publicdomain/zero/1.0/"},"contact":{"name":"humanconcepts.in","url":"https://humanconcepts.in/"}},"servers":[{"url":"https://humanconcepts.in/api/v1","description":"Production"}],"paths":{"/":{"get":{"summary":"API root + endpoint catalogue","responses":{"200":{"description":"OK"}}}},"/concepts":{"get":{"summary":"List all live concepts","parameters":[{"name":"status","in":"query","schema":{"type":"string","enum":["live","coming_soon"]}}],"responses":{"200":{"description":"OK"}}}},"/concepts/{slug}":{"get":{"summary":"Full concept details with related-concepts graph","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"},"404":{"description":"Not found"}}}},"/quotes":{"get":{"summary":"Paginated quote list (filter by concept)","parameters":[{"name":"concept","in":"query","schema":{"type":"string"}},{"name":"limit","in":"query","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}},{"name":"offset","in":"query","schema":{"type":"integer","minimum":0,"default":0}}],"responses":{"200":{"description":"OK"}}}},"/quotes/{id}":{"get":{"summary":"Single quote by id","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"OK"},"404":{"description":"Not found"}}}},"/quotes/today":{"get":{"summary":"Deterministic quote of the day (same for everyone, anywhere, by UTC date)","responses":{"200":{"description":"OK"}}}},"/quotes/random":{"get":{"summary":"A random quote","parameters":[{"name":"concept","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"OK"}}}},"/graph":{"get":{"summary":"Concept connection graph (24 nodes, ~74 weighted edges)","responses":{"200":{"description":"OK"}}}},"/themes":{"get":{"summary":"Cross-tradition themes (tags appearing in ≥ 2 live concepts)","responses":{"200":{"description":"OK"}}}}}}