> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Kimi K3

> Moonshot AI's Kimi K3 language model

Kimi K3 is Moonshot AI's flagship language model, with strong reasoning, coding, and agentic capabilities.

## Model

```
moonshotai/kimi-k3
```

|              |             |
| ------------ | ----------- |
| **Provider** | Moonshot AI |
| **Name**     | Kimi K3     |

## Supported Endpoints

All three API formats are supported:

* [Chat Completions](/api-reference/v1-chat-completions) — `POST /v1/chat/completions`
* [Responses](/api-reference/v1-responses) — `POST /v1/responses`
* [Messages](/api-reference/v1-messages) — `POST /v1/messages`

## Example

```bash theme={null}
curl -X POST https://api.unifically.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "moonshotai/kimi-k3",
    "messages": [
      {"role": "user", "content": "Refactor this function to be more testable."}
    ]
  }'
```
