Getting Started
PARAM
VALUE
PARAM
VALUE
Invoke the Chat API
curl -X POST https://brainchat.dmind.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <Your API Key>" \
-d '{
"model": "dmind/dmind-1",
"messages": [
{"role": "user", "content": "What’s trending on Base chain?"}
],
"stream": false
}'Last updated