cURL
curl "https://app.us.goclicks.ai/api/orchestrator/v1/openapi.json" \
-o openapi.public.jsonimport requests
resp = requests.get("https://app.us.goclicks.ai/api/orchestrator/v1/openapi.json")
resp.raise_for_status()
schema = resp.json()
print(schema["info"]["title"], schema["info"]["version"]){}Schema
Download the OpenAPI schema
Return the OpenAPI 3.1 document that describes this API.
The document is the same contract this reference renders from. Use it to generate typed clients. The endpoint requires no authentication.
GET
/
v1
/
openapi.json
cURL
curl "https://app.us.goclicks.ai/api/orchestrator/v1/openapi.json" \
-o openapi.public.jsonimport requests
resp = requests.get("https://app.us.goclicks.ai/api/orchestrator/v1/openapi.json")
resp.raise_for_status()
schema = resp.json()
print(schema["info"]["title"], schema["info"]["version"]){}Response
200 - application/json
Successful Response
The response is of type Response Public Get Openapi Schema ยท object.