PromptMeGood API
Automate prompt generation, optimization, and enhancement in your own apps.
REST API
API Key Auth
JSON responses
Your API Keys
Generate a key, copy it once, and use it in your app's Authorization header. Revoke any time.
Loading…
Endpoints
All endpoints accept JSON and return JSON. Include your API key as: Authorization: Bearer pmg_live_...
POST/api/generate
Build a structured prompt from a plain-English goal.
Request body
{
"goal": "string — what you want the prompt to do",
"category": "string — optional: General | Business | Money | Content | Career | Personal | Productivity | Learning | Faith",
"tone": "string — optional: Professional | Bold & Direct | Casual | Expert",
"format": "string — optional: Step-By-Step | List | Detailed Breakdown",
"personality": "string — optional: see app for full list",
"targetModel": "string — optional: Universal | Claude | ChatGPT | Gemini | Perplexity",
"framework": "string — optional: Auto | RISE | CARE | Step-by-Step"
}
Response
{ "result": "string — the generated prompt" }
POST/api/boost
Automatically improve an existing prompt.
Request body
{ "prompt": "string — your existing prompt text" }
Response
{ "result": "string — the improved prompt" }
POST/api/auto-tune
Fine-tune a prompt's tone, clarity, and structure.
Request body
{ "prompt": "string — your existing prompt text" }
Response
{ "result": "string — the tuned prompt" }
API key requests share your plan's daily limits. Free: 10 requests/day. Pro: 100/day. Pro Studio: unlimited.
Quick Start
One curl command — drop in your key and run it.
curl -X POST https://www.promptmegood.com/api/boost \
-H "Content-Type: application/json" \
-H "Authorization: Bearer pmg_live_your_key_here" \
-d '{"prompt": "Write me a sales email"}'