blob: befbd22da16a3f16385c9ac9c40ebd09a27fff0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Show model details
`POST /api/show` — Get detailed information about a specific model.
**Server:** `http://localhost:11434`
## Request
| Field | Type | Required | Description |
|---|---|---|---|
| `model` | string | yes | Model name to show |
| `verbose` | boolean | no | Include large verbose fields in the response |
## Response
| Field | Type | Description |
|---|---|---|
| `parameters` | string | Model parameter settings (text) |
| `modified_at` | string | Last modified (ISO 8601) |
| `template` | string | Prompt template used by the model |
| `capabilities` | string[] | Supported features (e.g. `"completion"`, `"vision"`) |
| `details.format` | string | File format (e.g. `"gguf"`) |
| `details.family` | string | Model family |
| `details.families` | string[] | All families |
| `details.parameter_size` | string | Parameter count label (e.g. `"4.3B"`) |
| `details.quantization_level` | string | Quantization level (e.g. `"Q4_K_M"`) |
| `model_info` | object | Architecture metadata (context length, embedding size, etc.) |
## Examples
```bash
curl http://localhost:11434/api/show -d '{
"model": "gemma3"
}'
```
### Verbose
```bash
curl http://localhost:11434/api/show -d '{
"model": "gemma3",
"verbose": true
}'
```
|