cubesModels

List the models available to your AlphaNeural API key. This endpoint is OpenAI-compatible, so tools and SDKs that expect GET /v1/models will work out of the box.

List models

GET /v1/models openapi

AlphaNeural also exposes GET /models as an alias for compatibility. openapi

Authentication

Send your key in the Authorization header.

-H "Authorization: Bearer $ALPHANEURAL_API_KEY"

Query parameters

These are optional. If you do not pass anything, you get the default model list for your key. openapi

  • return_wildcard_routes (boolean). Include wildcard routes in the returned list.

  • team_id (string). Filter models by team.

  • include_model_access_groups (boolean). Include model access group information.

  • only_model_access_groups (boolean). Return only model access groups.

  • include_metadata (boolean). Include additional metadata in the response with fallback information.

  • fallback_type (string). Which fallback class to include when include_metadata=true. Supported values include general, context_window, content_policy.

circle-info

For richer model details like pricing, mode, and config-derived metadata, the spec recommends using /v1/model/info. This page focuses on OpenAI-compatible listing for developer tooling compatibility.

Examples

cURL

With metadata and fallback info:

Python (OpenAI SDK style)

JavaScript/TypeScript (OpenAI SDK style)

Response

Returns an OpenAI-style “list” of model objects. The exact fields can vary by upstream and by whether you enable metadata. openapi

Example shape (illustrative):

  • Retrieve a specific model: GET /v1/models/{model_id}

Last updated