OpenAPI Spec

Download the full OpenAPI 3.1 specification and import it into your favourite HTTP client.

Download

# Local dev server copy
curl -O http://localhost:5173/content/docs/02-api-reference/openapi-spec.yaml

Importing the spec

Quick preview

openapi: 3.1.0
info:
  title: Xantly Gateway API
  version: 1.0.0
servers:
  - url: https://api.xantly.com/v1
    description: Production
  - url: http://localhost:8085/v1
    description: Local development
paths:
  /chat/completions:
    post:
      summary: Create chat completion
    head:
      summary: Probe chat completion endpoint
  /models:
    get:
      summary: List available models
  /embeddings:
    post:
      summary: Create embeddings
components:
  schemas:
    ChatCompletionRequest: {...}
    ChatCompletionResponse: {...}
    XantlyOrchestration: {...}
    XantlyMetadata: {...}
    EmbeddingRequest: {...}
    EmbeddingResponse: {...}
    ListModelsResponse: {...}

What’s included

Change management