> ## 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.

# Composer 2.5

> Cursor's Composer 2.5 coding model

Composer 2.5 is Cursor's flagship coding model, optimized for agentic software development tasks.

## Model

```
cursor/composer-2.5
```

|              |              |
| ------------ | ------------ |
| **Provider** | Cursor       |
| **Name**     | Composer 2.5 |

## 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": "cursor/composer-2.5",
    "messages": [
      {"role": "user", "content": "Write a Python function to merge two sorted lists."}
    ]
  }'
```
