Models API supported models

Model IDs available on the Models API for chat, embeddings, image generation, and text-to-speech—grouped by endpoint with their vendor.

🔬

Early preview: This API is in early preview. Fill out this form to request early access.

Overview

Pass these model values to the OpenAI-compatible endpoints (/chat/completions, /embeddings, /images/generations, /audio/speech).

Pricing: Usage is billed in monday AI tokens. There is no extra markup when you use the recommended monday-* chat aliases below. Direct model IDs on chat and all embeddings, image, and audio calls currently include a 10% surcharge on underlying cost. See Pricing and metering on the overview for details and preview rounding rules.

Recommended chat model aliases

For POST /chat/completions, we recommend always passing one of these aliases instead of a raw vendor model ID. Aliases are more stable: monday can change which underlying model powers each tier (fast, standard, powerful) without you renaming models in every app.

AliasResolves toNotes
monday-fastclaude-haiku-4-5Fast, cost efficient tier
monday-standardclaude-sonnet-4-6Default when you omit model from the request
monday-powerfulclaude-opus-4-6Highest capability tier

You can still pass any supported direct Claude or OpenAI ID from the tables below; those requests follow the 10% surcharge rule described on the overview.

Text and chat (/chat/completions)

Model IDVendor
gpt-4oOpenAI
gpt-4o-miniOpenAI
gpt-4.1OpenAI
gpt-4.1-miniOpenAI
gpt-4.1-nanoOpenAI
gpt-5OpenAI
gpt-5-miniOpenAI
gpt-5-nanoOpenAI
claude-opus-4-6Anthropic
claude-opus-4-5Anthropic
claude-sonnet-4-6Anthropic
claude-sonnet-4-5Anthropic
claude-sonnet-4Anthropic
claude-haiku-4-5Anthropic
claude-3-7-sonnetAnthropic
claude-3-5-sonnetAnthropic
claude-3-haikuAnthropic

Embeddings (/embeddings)

Model IDVendor
text-embedding-3-largeOpenAI
text-embedding-ada-002OpenAI

Image generation (/images/generations)

Models

Model IDVendor
dall-e-3OpenAI
dall-e-2OpenAI
gpt-image-1OpenAI

Typical size values

Exact availability depends on the model; common values include:

size values (reference)
256x256, 512x512, 1024x1024
1024x1792, 1792x1024 (where supported)
auto (where supported for a given model)

Validate sizes in your integration against live API behavior during preview—unsupported combinations may return an error with no usage charged.

Text-to-speech (/audio/speech)

Model IDVendor
tts-1OpenAI
tts-1-hdOpenAI
gpt-4o-mini-ttsOpenAI
gpt-4o-ttsOpenAI

Voices and audio formats follow the same parameter names as the OpenAI Speech API (for example voice, response_format, speed).

Defaults

If you omit model on /chat/completions, the Models API uses monday-standard, which resolves to claude-sonnet-4-6. For other endpoints, defaults vary; prefer setting model explicitly in production so upgrades to defaults never change your app behavior unexpectedly.

See also