API
API Overview
Integrate your fine-tuned models into any application with the OpenAI-compatible API.
Commissioned exposes an OpenAI-compatible REST API for calling your fine-tuned models.
Base URL
https://app.commissioned.tech/v1Endpoints
| Endpoint | Method | Description |
|---|---|---|
/v1/chat/completions | POST | Send messages to a fine-tuned model |
Authentication
All requests require a Bearer token (API key). Create keys from your profile. See Authentication.
Quick start
curl https://app.commissioned.tech/v1/chat/completions \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "your-model-id",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'