AiCompute.au API Documentation
Mascot, NSW, Australia
Primary Infrastructure: Mascot, NSW 2020, Australia

OpenAI-Compatible API Gateway

Low-latency, OpenAI-compatible AI model inference gateway for developer applications and automated workflows. Hosted locally in Mascot, NSW, Australia.

API Base URL
https://api.aicompute.au/v1
SSL / TLS 1.3 Active

Quick-Start Integration

Drop-in replacement for standard OpenAI SDKs using base_url="https://api.aicompute.au/v1".

from openai import OpenAI

client = OpenAI(
    base_url="https://api.aicompute.au/v1",
    api_key="dk_live_your_api_key_here"
)

response = client.chat.completions.create(
    model="glm-5",
    messages=[{"role": "user", "content": "Hello from Mascot, Australia!"}],
    stream=True
)

for chunk in response:
    if chunk.choices[0].delta.content:
        print(chunk.choices[0].delta.content, end="")

Supported Models & Rates

Billed per 1M tokens with a 20% discount applied below standard Vertex AI rates.

Model Alias Input Rate / 1M Tokens Output Rate / 1M Tokens Status
gemma-4-26b-a4b-it $0.22 (22¢) $0.22 (22¢) Active
glm-5 $0.48 (48¢) $1.44 (144¢) Active
gpt-oss-120b $0.72 (72¢) $2.16 (216¢) Active
gpt-oss-20b $0.16 (16¢) $0.48 (48¢) Active
gemma-4-31b-it $0.24 (24¢) $0.72 (72¢) Active

API Endpoints

POST /v1/chat/completions

Generates model responses for chat interactions. Supports SSE streaming when "stream": true.

GET /v1/models

Retrieves the list of active models enabled for your API key.