Skip to content
Last updated
🔨 In Development — This section is still being developed and may change.
GET/v1/model/response/output-modes

Get all available output modes for AI responses.

Returns a list of supported output modes with descriptions and default flag.

  • text - Rich text with markdown formatting (default)
  • plain - Plain text with all markdown formatting stripped
  • blocks - Structured blocks format with tool calls, results, and text

Returns

Returns an array of output mode objects with mode identifier, description, and default flag.

cURL
curl https://api.aitronos.com/v1/model/response/output-modes \
  -H "X-API-Key: $FREDDY_API_KEY"

Response

{
  "success": true,
  "output_modes": [
    {
      "mode": "text",
      "description": "Rich text with markdown formatting (default)",
      "is_default": true
    },
    {
      "mode": "plain",
      "description": "Plain text with all markdown formatting stripped",
      "is_default": false
    },
    {
      "mode": "blocks",
      "description": "Structured blocks format with tool calls, results, and text",
      "is_default": false
    }
  ]
}