Models

Tributary gives you access to 270+ models from 40+ organizations through a single API.

All models are accessed through the same OpenAI-compatible endpoint. The only thing that changes between providers is the model parameter.

Model ID format

Model IDs follow the format org:model, where org is the organization slug and model is the model slug.

google:gemma-4-26b-a4b-it
google:gemma-4-31b-it
z-ai:glm-5v-turbo
arcee:trinity-large-thinking

You can browse the full catalog on the models page, or query it programmatically using the /openai/v1/models endpoint below.

Response format

The GET /openai/v1/models endpoint returns an OpenAI-compatible list of all available models. No authentication is required (you're welcome!)

{
  "object": "list",
  "data": [
    {
      "id": "google:gemma-4-26b-a4b-it",
      "object": "model",
      "created": 1775113200,
      "owned_by": "google"
    },
    "..."
  ]
}