Skip to main content

Base URL

https://api.caprioletech.com

Get started in two steps

1. Create an API key

Create your key from the Capriole AI API page.

2. Call POST /v1/chat

Send a simple text request.
curl https://api.caprioletech.com/v1/chat \
  -X POST \
  -H "Authorization: Bearer YOUR_CAPRIOLE_AI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-5.5",
    "input": "Hello World!"
  }'

Protocol-compatible endpoints

Use POST /v1/responses for OpenAI Responses clients, POST /v1/chat/completions for OpenAI Chat Completions clients, and POST /v1/messages for Anthropic Messages clients.