// docs · api reference
REST reference.
All endpoints require Authorization: Bearer mtn_live_... and a Pro subscription.
/api/v1/me Returns the caller's uid, tier, and remaining rate limit.
Response 200
{
"uid": "string",
"tier": "pro",
"rate_limit": {
"limit": 10000,
"used": 12,
"remaining": 9988,
"reset_at": 1780000000
}
} /api/v1/prompts List prompt catalog metadata. Body is fetched per-prompt via /api/v1/prompts/:id.
Query parameters
category— filter by categorytier—freeorpremiumtag— substring match (case-insensitive)limit— max 200, default 100
/api/v1/prompts/:id Returns the full prompt body — paste it straight into Claude / Cursor / v0.
Response 200
{
"data": {
"id": "stellar-ai",
"title": "Stellar AI Suite",
"category": "Landing Page",
"tier": "premium",
"blurb": "...",
"tags": ["..."],
"cover": "https://...",
"body": "Build Prompt: ..."
}
} /api/v1/prompts/search Relevance-scored full-text search over title, blurb, tags, category.
Query parameters
q— required, free-text querylimit— max 50, default 20