SETUP GUIDE
curl
Send a direct Chat Completions request without an SDK.
Status: Supported for Chat Completions
1. Recommended setup
After signup, verification, and membership activation, issue a key in the dashboard. It is displayed once; keep it in a local secret store.
curl --fail-with-body -sS https://api.profundoai.com/v1/chat/completions \
-H "Authorization: Bearer $PROFUNDO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"glm-5.2","messages":[{"role":"user","content":"Hello"}]}'- Set `PROFUNDO_API_KEY` in your shell.
- Run the request.
- Read the JSON response from `glm-5.2` (or `minimax-m3` / `nemotron-ultra`).
Optional alternatives
Streaming response
Add `-N` and `stream: true` to receive streamed events.
curl --fail-with-body -sS -N https://api.profundoai.com/v1/chat/completions \
-H "Authorization: Bearer $PROFUNDO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"glm-5.2","stream":true,"messages":[{"role":"user","content":"Hello"}]}'2. Verify your key
Set PROFUNDO_API_KEY in your shell, then run:
curl https://api.profundoai.com/v1/chat/completions \
-H "Authorization: Bearer $PROFUNDO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"minimax-m3","messages":[{"role":"user","content":"Say hello"}]}'Use glm-5.2, minimax-m3, or nemotron-ultra with https://api.profundoai.com/v1.