POST
/
v1
/
chat
/
completions
curl --request POST \
  --url https://api.siliconstorm.ai/v1/chat/completions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "DeepSeek-R1",
  "messages": [
    {
      "content": "Write a hello word and explain the code",
      "role": "user"
    }
  ],
  "stream": true
}'
{
  "id": "<string>",
  "object": "<string>",
  "created": 123,
  "model": "<string>",
  "choices": [
    {
      "index": 123,
      "delta": {
        "role": "<string>",
        "content": "<string>"
      },
      "finish_reason": "<string>"
    }
  ],
  "usage": {
    "prompt_tokens": 123,
    "completion_tokens": 123,
    "total_tokens": 123
  }
}

The REST API endpoint can be used with the locally running MindsDB at https://api.siliconstorm.ai/v1/chat/completions.

Authorizations

Authorization
string
header
required

Use the following format for authentication: Bearer <your api key>.

Body

application/json

Plant to add to the store

The body is of type object.

Response

200 - application/json

Return example

The response is of type object.