Documentation

API Overview

PromptMan provides a full REST API supporting CRUD operations for prompts, skills, and workspaces.

Base Information

ItemValue
Base URLhttps://prompt.solokit.run
API Versionv1
AuthenticationBearer Token (ph_ prefix)
Request formatapplication/json
Response formatapplication/json

Standard Response Shape

json
// Success
{ "data": { ... } }

// List
{ "data": [...], "total": 42, "page": 1, "limit": 20 }

// Error
{ "error": "human-readable description" }

Continue Reading