API reference
Probe the API host
HEAD / request, response, and error contract.
HEAD /
Returns 204 with no response body. No authentication required.
Authentication¶
No authentication is required.
Examples¶
cURL¶
curl -I https://api.koscompute.com/
Python¶
import os
import requests
response = requests.head("https://api.koscompute.com/")
JavaScript¶
const response = await fetch("https://api.koscompute.com/", { method: "HEAD" });
Responses¶
| Status | Meaning |
|---|---|
204 |
API host is reachable |
Next steps¶
Use the endpoint guide for complete workflows, model capability notes, streaming behavior, and retry advice.