profundo.ai

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"}]}'
  1. Set `PROFUNDO_API_KEY` in your shell.
  2. Run the request.
  3. 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.

Official documentation