Retrieve a list of available AI models with their capabilities, pricing, and configuration details.
ui_models_only boolean optional · Defaults to false
Filter to show only UI-visible models. When true, returns only models that should be displayed in user interfaces.
include_pricing boolean optional · Defaults to false
Include pricing information (input_synapses_cost, output_synapses_cost) in the response.
include_details boolean optional · Defaults to false
Include detailed model information (provider, context_window, release_date, training_data_cutoff, added_to_aitronos_date, description, recommended_for).
include_capabilities boolean optional · Defaults to true
Include model capabilities array (text_generation, vision, tool_calling, etc.).
include_deprecated boolean optional · Defaults to false
Include deprecated models in the response.
include_legacy boolean optional · Defaults to false
Include legacy models that may be phased out.
A list of Model objects.
- Bash
- Python
- JavaScript
curl "https://api.aitronos.com/v1/models" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
{
"models": [
{
"id": "mdl_09adacc3e5d3",
"key": "gpt-4o",
"name": "GPT-4o",
"is_visible_in_ui": true,
"is_deprecated": false,
"capabilities": ["text_generation", "vision", "tool_calling"]
}
],
"totalCount": 1
}