An OpenAI-compatible API across 7 career-native model families, plus live demo and media-generation endpoints. Base URL: https://api.careerstudiomax.com/api/camp
Every request needs your secret key in the Authorization header:
Authorization: Bearer sk_live_your_key_here
Generate a key from your dashboard after signing in — free, no credit card required. Each key carries its own model-family permissions (CareerLM, CareerVoice, CareerVision, CareerEmbed, CareerAgent, CareerScore, CareerWebAPI), so you only grant access to what you actually use.
| Method | Path | Description |
|---|---|---|
| POST | /v1/chat/completions | OpenAI-compatible chat completions |
| POST | /v1/embeddings | OpenAI-compatible embeddings |
| GET | /v1/models | List available models |
| POST | /score | Structured scoring (CV, content) |
| POST | /embed | Text embeddings (simplified) |
| POST | /agent/stream | Streaming agentic task execution |
curl -X POST https://api.careerstudiomax.com/api/camp/v1/chat/completions \
-H "Authorization: Bearer sk_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"model": "careerlm-base",
"messages": [{"role": "user", "content": "Write a cover letter opener for a Senior PM role"}]
}'Every error response is JSON with a success: false flag and an error message. Rate limits (rpm/tpm) are set per key based on your plan — see pricing.