Get Model
GEThttps://api.confident-ai.com/v2/organization/models
Returns one of your organization's default models, selected by the required type query parameter. PLATFORM is the model behind Confident AI's own AI features, like classification, summaries and report generation. SIMULATION is the model that simulates user turns in conversation simulations, including multi-turn test runs and red teaming.
Each default applies to every project that has no override of its own for that type; read a single project's effective model with the project models endpoint. Reading never creates configuration, so this answers with null until the organization sets one.
curl -X GET "https://api.confident-ai.com/v2/organization/models" \
-H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"{
"success": true,
"data": {
"id": "<MODEL-ID>",
"type": "EVALUATION",
"provider": "GEMINI",
"name": "gemini-2.0-flash",
"maxConcurrency": 5,
"maxInputTokens": 128000,
"projectId": null,
"organizationId": "<ORGANIZATION-ID>"
},
"deprecated": false
}Headers
CONFIDENT_API_KEYstringRequiredThe organization API key for your Confident AI organization.
Query parameters
typeenumRequiredWhich of the organization's models to read. The organization has no evaluation model of its own; that one is always configured per project.
Response
Get Model succeeded.
successbooleanIndicates if the request was successful.
dataobject | nullOne model configuration: the provider and model Confident AI calls for a given purpose, with the limits it calls them under. A configuration belongs either to the organization (
organizationIdset) or to a single project (projectIdset), never to both.Show 8 propertiesHide 8 properties
idstringThe id of the model configuration, generated by Confident AI.
typeenumWhat a configured model is used for.
EVALUATIONis the LLM judge that scores a project's metrics,PLATFORMis the model behind Confident AI's own AI features such as classification, summaries and report generation, andSIMULATIONis the model that simulates user turns in conversation simulations. Those three are the only types the public API reads or writes.Show 6 enum valuesHide 6 enum values
EVALUATIONPLATFORMGENERATIONSIMULATIONTEXT_TO_SPEECHSPEECH_TO_TEXT
providerenum | nullThis is the provider of the model.
Show 18 enum valuesHide 18 enum values
OPEN_AICUSTOMCONFIDENT_AIBEDROCKANTHROPICGEMINIX_AIDEEPSEEKMOONSHOT_AIVERTEX_AIAZUREMISTRALPERPLEXITYOPEN_ROUTERPORTKEYLITE_LLMTRUE_FOUNDRYHUGGING_FACE
namestring | nullThe model to call at that provider, or null when the provider's default is used. Always null for
CONFIDENT_AI.maxConcurrencyinteger | nullHow many calls Confident AI makes to this model at once, or null for no limit of its own.
maxInputTokensinteger | nullHow many input tokens Confident AI sends to this model per call, or null for no limit of its own.
projectIdstring | nullThe id of the project this configuration overrides the organization default for, or null when it is the organization default itself.
organizationIdstring | nullThe id of the organization this configuration is the default for, or null when it is a project override.
deprecatedbooleanIndicates if this endpoint is deprecated.