Skip to Content
GuidesBring Your Own Key

Bring Your Own Key (BYOK)

Use your own AI provider API key with the Career API. When BYOK is enabled, AI limits are removed because you’re paying for AI costs directly.

Prerequisites

  • An active recurring Laddro subscription
  • An API key from one of the 10 supported providers

Setup

Via API

curl -X PUT https://api.laddro.com/v1/settings/model \ -H "x-api-key: YOUR_LADDRO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "provider": "anthropic", "modelId": "claude-haiku-4.5", "apiKey": "sk-ant-your-key" }'

Via Console

  1. Go to console.laddro.com 
  2. Navigate to AI Settings
  3. Select a provider and model
  4. Enter your API key
  5. Click Save

Supported Providers

ProviderDefault ModelGet a Key
OpenAIgpt-4.1-miniplatform.openai.com 
Anthropicclaude-haiku-4.5console.anthropic.com 
Geminigemini-2.5-flashaistudio.google.com 
DeepSeekdeepseek-chatplatform.deepseek.com 
Groqllama-3.3-70bconsole.groq.com 
TogetherLlama 3.3 70B Turboapi.together.xyz 
FireworksLlama 3.3 70Bfireworks.ai 
Mistralmistral-smallconsole.mistral.ai 
xAIgrok-3-mini-fastconsole.x.ai 
Perplexitysonar-properplexity.ai 

Key Validation

Your provider API key is validated with a minimal test call (5 tokens) before being saved. If the key is invalid, you’ll get a clear error message.

Security

  • Keys are encrypted at rest using AES-256
  • Keys are never logged or exposed in API responses
  • Keys are only used server-side when making AI calls

Reset to Default

curl -X DELETE https://api.laddro.com/v1/settings/model \ -H "x-api-key: YOUR_LADDRO_API_KEY"

This reverts to the system default (OpenAI gpt-4o-mini).

Last updated on