QUICKSTART
Quickstart
Send a first request to https://api.profundoai.com/v1 in about a minute. Profundo is OpenAI-compatible, so this works with any OpenAI SDK or client that accepts a custom base URL.
1. Create an account and a key
Sign up, verify your email, subscribe to a plan, then issue an API key from the dashboard. The key is displayed once; store it outside source control.
2. Set the environment variable
export PROFUNDO_API_KEY="pf_..."
curl https://api.profundoai.com/v1/chat/completions \\
-H "Authorization: Bearer $PROFUNDO_API_KEY" \\
-H "Content-Type: application/json" \\
-d '{"model":"gpt-6-astra","messages":[{"role":"user","content":"Hello"}]}'3. Stream when you need incremental output
curl https://api.profundoai.com/v1/chat/completions \\
-H "Authorization: Bearer $PROFUNDO_API_KEY" \\
-H "Content-Type: application/json" \\
-d '{"model":"gpt-6-astra","stream":true,"messages":[{"role":"user","content":"Write one sentence"}]}'Pick any model
All models are included in every plan. Browse the full model catalog, see the API reference for supported fields, or jump straight to a setup guide for your client.
Pricing in one line
Flat monthly rate, no token meter. Plus $10/mo (250 requests/day), Priority $40/mo (2,000 requests/day), Performance $100/mo (unlimited, subject to service-protection controls). See all plans.