Skip to main content
Kick the tires of the Incredible API in under a minute. This page walks you through a minimal, copy‑paste flow with multiple language options.

1) Say hello (non‑streaming)

Send your first request with model small-1 and get a complete response:
curl -X POST "https://api.incredible.one/v1/chat-completion" \
-H "Content-Type: application/json" \
-d '{
  "model": "small-1",
  "messages": [
    { "role": "user", "content": "Hello, Incredible!" }
  ]
}'
You’ll receive a JSON body where the assistant’s reply is in result.response[0].content.

2) Understand the response

The assistant’s text is in result.response[0].content:
{
  "result": {
    "response": [
      { "role": "assistant", "content": "Hello, Incredible!" }
    ]
  }
}
Want streaming output? See → Streaming Chat