Fetch a list of models and their details
curl http://localhost:11434/api/tags{
"models": [
{
"name": "gemma3",
"modified_at": "2025-10-03T23:34:03.409490317-07:00",
"size": 3338801804,
"digest": "a2af6cc3eb7fa8be8504abaf9b04e88f17a119ec3f04a3addf55f92841195f5a",
"details": {
"format": "gguf",
"family": "gemma",
"families": [
"gemma"
],
"parameter_size": "4.3B",
"quantization_level": "Q4_K_M"
}
}
]
}List available models
Show child attributes
Model name
Last modified timestamp in ISO 8601 format
Total size of the model on disk in bytes
SHA256 digest identifier of the model contents
Additional information about the model's format and family
Show child attributes
Model file format (for example gguf)
Primary model family (for example llama)
All families the model belongs to, when applicable
Approximate parameter count label (for example 7B, 13B)
Quantization level used (for example Q4_0)
curl http://localhost:11434/api/tags{
"models": [
{
"name": "gemma3",
"modified_at": "2025-10-03T23:34:03.409490317-07:00",
"size": 3338801804,
"digest": "a2af6cc3eb7fa8be8504abaf9b04e88f17a119ec3f04a3addf55f92841195f5a",
"details": {
"format": "gguf",
"family": "gemma",
"families": [
"gemma"
],
"parameter_size": "4.3B",
"quantization_level": "Q4_K_M"
}
}
]
}