Tài liệu APIZ

cURL

Cách ngắn nhất để xác minh DNS, TLS, key và model.

Liệt kê model

curl -sS https://api.apiz.vn/v1/models \
  -H "Authorization: Bearer $APIZ_API_KEY"

Chat Completions

curl -sS https://api.apiz.vn/v1/chat/completions \
  -H "Authorization: Bearer $APIZ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"YOUR_MODEL_ID","messages":[{"role":"user","content":"Xin chao APIZ"}]}'