{"openapi": "3.1.0", "info": {"title": "momatio prompt API", "version": "0.2-prompts", "description": "A public, read-only library of ready-to-run AI prompts. No auth, CORS-open, so any agent (Grok, ChatGPT, Claude) can call it and act on a prompt."}, "servers": [{"url": "https://momatio.com"}], "paths": {"/api/prompts": {"get": {"operationId": "listPrompts", "summary": "List or search prompts (metadata only, no full text).", "parameters": [{"name": "q", "in": "query", "schema": {"type": "string"}, "description": "search title/summary/tags"}, {"name": "tag", "in": "query", "schema": {"type": "string"}, "description": "filter by exact tag"}, {"name": "limit", "in": "query", "schema": {"type": "integer"}, "description": "max results (default 500)"}], "responses": {"200": {"description": "matching prompts: id, title, tags, summary, platform, url"}}}}, "/api/prompts/{id}": {"get": {"operationId": "getPrompt", "summary": "Get one prompt INCLUDING its full runnable `prompt` text.", "parameters": [{"name": "id", "in": "path", "required": true, "schema": {"type": "string"}}], "responses": {"200": {"description": "the prompt object; use the `prompt` field as the instructions"}, "404": {"description": "not found"}}}}}}