Documentation
API Overview
PromptMan provides a full REST API supporting CRUD operations for prompts, skills, and workspaces. ## Base Information | Item | Value | | --- | --- | | Base URL | https://prompt.solokit.run | | API Version | v1 | | Authentication | Bearer Token (ph_ prefix) | | Request format | application/json | | Response format | application/json | ## Standard Response Shape ```json // Success { "data": { ... } } // List { "data": [...], "total": 42, "page": 1, "limit": 20 } // Error { "error": "human-readable description" } ```
Continue Reading