NyxosNyxos API
Models & Pricing

Live Model Catalog & Real-Time Pricing

Explore the live model catalog, token ratios, and per-group availability on the /pricing dashboard.

The gateway catalog evolves constantly as providers release new model versions, so this documentation never hard-codes a static list. Nyxos API publishes its live catalog at /pricing.


Exploring the Pricing Dashboard

You can inspect the entire catalog anytime without logging in:

What Each Column Means

ParameterDescription
Model NameThe exact identifier required in the model field of your API calls. Always copy it verbatim from here.
Vendor / OwnerUpstream provider (Anthropic, OpenAI, xAI, etc.).
Quota TypeToken-based: billed per input/output tokens.
Per-request: fixed cost per generation (common for image and video models).
Model RatioBase cost coefficient applied to usage.
Completion RatioExtra multiplier applied to output/completion tokens (generation costs more than reading).
Cache RatioDiscount factor applied to cached prompt tokens when prompt caching is supported.
Enabled GroupsWhich token groups can call this model. With the Auto-A automatic group you get the widest coverage (see Groups & Multipliers).

Programmatic Model Discovery via API

You can also fetch the live list of models your token can call through the standard OpenAI-compatible endpoint:

cURL

curl https://api.nyxos.shop/v1/models \
  -H "Authorization: Bearer sk-YOUR_TOKEN_HERE"

Python

from openai import OpenAI

client = OpenAI(
    base_url="https://api.nyxos.shop/v1",
    api_key="sk-YOUR_TOKEN_HERE",
)

models = client.models.list()
for model in models.data:
    print(model.id)

Tip: the GET /v1/models response reflects your token's group permissions. If a model you saw on /pricing is missing here, check that your token uses the Auto-A group (Tokens → Edit in the panel).

On this page