Skip to main content
All requests to KiosAPI go to the base URL https://kiosapi.com/v1/. Depending on the endpoint format you’re using, you append the appropriate path to this base. Configure this URL in your SDK once and all subsequent requests will route through KiosAPI.

Endpoint URLs

The Dashboard > Console page always shows the current authoritative API base URL. If the address ever changes, the dashboard reflects the update first — check there before debugging connectivity issues.

Configuring Your SDK

Set the base URL once when you initialize the client. The examples below show how to do this in the most common SDKs.
Your KiosAPI key only works with the KiosAPI base URL. Here’s what works and what doesn’t:
  • KiosAPI keyhttps://kiosapi.com/v1/
  • ❌ KiosAPI key → https://api.openai.com/v1/ (will fail)
  • ❌ OpenAI key → https://kiosapi.com/v1/ (will fail)
Double-check both values in your dashboard before debugging authentication errors.

Environment Variables

Avoid hardcoding the base URL or API key directly in your source code. Store them in a .env file and load them at runtime:
KiosAPI is designed as a drop-in replacement for OpenAI, Claude, and Gemini APIs. By setting the base URL to kiosapi.com, you can use any existing OpenAI-compatible SDK without changing your application logic — just swap the URL and key.