Models

Test Model

Tests a model by sending a simple prompt and reporting pass/fail.

post/api/v1/models/{id}/test

Path parameters

idstring required

The model identifier.

Query parameters

mode'basic' | 'deep'

Single-model test mode.

Test mode for the single-model test endpoint. Defaults to basic.

Response

Test result

model_idstring required

The model identifier that was tested.

status'ok' | 'error' | 'skip' required

Whether the model responded successfully, failed, or was skipped because its provider is not configured.

error_messagestring nullable

Error details when status is "error".

Example response

{
  "model_id": "claude-opus-4-6"
}

Changes