Skip to content
GET /openapi.json

Identical to `GET /schema/openapi.json`. Exists at this conventional path for tooling that looks for an OpenAPI document at the API origin without being told where it lives.

curl -X GET 'https://api.elaichi.ai/openapi.json' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.elaichi.ai/openapi.json', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
import os
import requests

url = "https://api.elaichi.ai/openapi.json"
headers = {
    "Content-Type": "application/json",
}

response = requests.get(url, headers=headers)
print(response.json())