{"openapi":"3.1.0","info":{"title":"StoicSoft Public Content API","version":"1.0.0","description":"Read-only access to published content across the StoicSoft network."},"servers":[{"url":"https://public-api.stoicsoft.com"}],"paths":{"/v1/sites":{"get":{"summary":"List sites","responses":{"200":{"description":"OK"}}}},"/v1/posts":{"get":{"summary":"List published posts","parameters":[{"name":"site","in":"query","required":false,"schema":{"type":"string"}},{"name":"category","in":"query","required":false,"schema":{"type":"string"}},{"name":"tag","in":"query","required":false,"schema":{"type":"string"}},{"name":"q","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer"}},{"name":"offset","in":"query","required":false,"schema":{"type":"integer"}}],"responses":{"200":{"description":"OK"}}}},"/v1/posts/{site}/{slug}":{"get":{"summary":"Get one post","parameters":[{"name":"site","in":"path","required":true,"schema":{"type":"string"}},{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"},"404":{"description":"Not found"}}}},"/v1/content":{"get":{"summary":"List structured content","parameters":[{"name":"site","in":"query","required":false,"schema":{"type":"string"}},{"name":"type","in":"query","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer"}},{"name":"offset","in":"query","required":false,"schema":{"type":"integer"}}],"responses":{"200":{"description":"OK"}}}},"/v1/content/{site}/{type}/{slug}":{"get":{"summary":"Get one content item","parameters":[{"name":"site","in":"path","required":true,"schema":{"type":"string"}},{"name":"type","in":"path","required":true,"schema":{"type":"string"}},{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"},"404":{"description":"Not found"}}}},"/llms.txt":{"get":{"summary":"LLM index (llmstxt.org convention)","responses":{"200":{"description":"OK"}}}}}}