Skip to main content
GET
/
platform
/
v2
/
models
List models with pricing
curl --request GET \
  --url https://platform.ai.gloo.com/platform/v2/models
{
  "object": "list",
  "data": [
    {
      "id": "gloo-openai-gpt-5-mini",
      "provider_id": "openai/gpt-5-mini",
      "name": "GPT-5 Mini",
      "family": "OpenAI",
      "description": "Balanced small model providing strong reasoning at minimal compute.",
      "context_window": 400000,
      "max_input_tokens": 400000,
      "max_output_tokens": 128000,
      "modalities": [],
      "speed": 4,
      "pricing": {
        "input": {
          "rate_per_1k_tokens": "0.0003059",
          "rate_per_1m_tokens": "0.3059"
        },
        "output": {
          "rate_per_1k_tokens": "0.0021944",
          "rate_per_1m_tokens": "2.1944"
        }
      }
    }
  ]
}
Returns all available Gloo AI models with metadata and pricing. No authentication required. Each model includes:
  • Identification — Gloo model ID (for API requests), provider ID, name, and family
  • Capabilities — Context window, max input/output tokens, supported modalities, speed rating
  • Pricing — Per-1K and per-1M token rates for both input and output
Use the id field as the model parameter in Completions V2 requests.

Response

200 - application/json

Successful response

object
string

Object type, always "list".

data
ModelV2Response · object[]