Coding Endpoints
API endpoints for LLM completions via the coding plan.
On this page
Overview
Coding endpoints provide access to LLMs for chat and completions. They are compatible with the OpenAI API format.
Send a completion
POST /v1/coding/chat/completions
Authorization: Bearer sk_...
{
"model": "auto",
"messages": [
{"role": "system", "content": "You are a coding assistant."},
{"role": "user", "content": "Write a Python function"}
]
}Other endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/coding/plans | List available plans |
| GET | /v1/coding/models | List available models |
| GET | /v1/coding/quota | Check usage and limits |