Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.capriole.ai/llms.txt

Use this file to discover all available pages before exploring further.

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!"
  }'