OpenAI-compatible inference, verified.

One endpoint, the models you want, billed by the token. Point any OpenAI SDK at https://api.engy.ai/v1 and go. Inference is served by an open pool of miners; verification + on-chain settlement land next.

Get an API key Log in

Models & pricing ($ per 1M tokens)

modelinputoutput
glm-5.2$1.4$4.4
qwen3.6-35b-a3b$0.15$1

Quickstart

curl https://api.engy.ai/v1/chat/completions \
  -H "Authorization: Bearer $ENGY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"glm-5.2","messages":[{"role":"user","content":"hello"}]}'
from openai import OpenAI
client = OpenAI(base_url="https://api.engy.ai/v1", api_key="$ENGY_API_KEY")
client.chat.completions.create(model="glm-5.2",
    messages=[{"role":"user","content":"hello"}])