| Key | Last Used | Requests this month | Allowance | |
|---|---|---|---|---|
No keys yetClick "+ New Key" to create your first one. | ||||
Using your key
# OpenAI-compatible endpoint
$ curl https://api.amplifiedsmp.org/v1/chat/completions \
-H "Authorization: Bearer axion-sk-…" \
-H "Content-Type: application/json" \
-d '{"model":"lumen","messages":[{"role":"user","content":"Hello"}]}'
$ curl https://api.amplifiedsmp.org/v1/chat/completions \
-H "Authorization: Bearer axion-sk-…" \
-H "Content-Type: application/json" \
-d '{"model":"lumen","messages":[{"role":"user","content":"Hello"}]}'
# Python — openai library
from openai import OpenAI
client = OpenAI(api_key="axion-sk-…", base_url="https://api.amplifiedsmp.org/v1")
resp = client.chat.completions.create(model="lumen", messages=[{"role":"user","content":"Hello"}])
from openai import OpenAI
client = OpenAI(api_key="axion-sk-…", base_url="https://api.amplifiedsmp.org/v1")
resp = client.chat.completions.create(model="lumen", messages=[{"role":"user","content":"Hello"}])
# Axion CLI
› /axion-key axion-sk-…
› /model lumen
› /axion-key axion-sk-…
› /model lumen