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":"gpt-6-astra","messages":[{"role":"user","content":"Hello"}]}'- Set `PROFUNDO_API_KEY` in your shell.
- Run the request.
- Read the JSON response from `gpt-6-astra` (or `claude-fable-5-1` / `gpt-5.6-luna`).
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":"gpt-6-astra","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":"gpt-6-astra","messages":[{"role":"user","content":"Say hello"}]}'Use any model returned by GET /v1/models with https://api.profundoai.com/v1.