QUICKSTART
Quickstart
Send a first request to https://api.profundoai.com/v1 in about a minute.
1. Create a key
Issue an API key from the dashboard and 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 ***" \
-H "Content-Type: application/json" \
-d '{"model":"minimax-m3","messages":[{"role":"user","content":"Hello"}]}'3. Stream when you need incremental output
curl https://api.profundoai.com/v1/chat/completions \
-H "Authorization: Bearer ***" \
-H "Content-Type: application/json" \
-d '{"model":"minimax-m3","stream":true,"messages":[{"role":"user","content":"Write one sentence"}]}'