StarriseStarrise API
OverviewGuideAPI

Models

List models available to your token and account.

List Models (OpenAI format)

curl https://api.starrise.ai/v1/models \
  -H "Authorization: Bearer sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Response follows OpenAI list object shape with data[] entries (id, object, owned_by, etc.).

Retrieve Model

curl https://api.starrise.ai/v1/models/gpt-4o \
  -H "Authorization: Bearer sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Claude Model List

Use Anthropic-style headers:

curl https://api.starrise.ai/v1/models \
  -H "x-api-key: sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
  -H "anthropic-version: 2023-06-01"

Gemini Model List

curl "https://api.starrise.ai/v1beta/models?key=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Or:

curl https://api.starrise.ai/v1beta/models \
  -H "x-goog-api-key: sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

OpenAI-compatible Gemini list:

curl https://api.starrise.ai/v1beta/openai/models \
  -H "Authorization: Bearer sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Console

Browse full pricing and availability under Pricing in the console.

Model availability depends on your account and whether model limits are enabled on your token.

On this page