Skip to main content
POST
/
api
/
show
Show Model
curl --request POST \
  --url https://api.ajstudioz.co.in/api/show \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "verbose": true
}
'
{
  "model": "gemma3:27b",
  "modified_at": "2025-03-12T00:00:00Z",
  "template": "{{ if .System }}<start_of_turn>user\n{{ .System }}<end_of_turn>\n{{ end }}{{ range .Messages }}{{ if eq .Role \"user\" }}<start_of_turn>user\n{{ .Content }}<end_of_turn>\n<start_of_turn>model\n{{ else if eq .Role \"assistant\" }}{{ .Content }}<end_of_turn>\n{{ end }}{{ end }}",
  "system": "",
  "details": {
    "parent_model": "",
    "format": "gguf",
    "family": "gemma3",
    "families": ["gemma3"],
    "parameter_size": "27.2B",
    "quantization_level": "Q4_K_M"
  },
  "modelinfo": {
    "general.architecture": "gemma3",
    "general.name": "Gemma 3 27B Instruct",
    "gemma3.attention.head_count": 32,
    "gemma3.context_length": 131072
  }
}

Documentation Index

Fetch the complete documentation index at: https://student-213fb9fc.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Returns detailed information about a specific model, including its parameters, template, and system prompt. Compatible with Ollama’s POST /api/show format.

Request

Headers

Authorization
string
required
Bearer token: Bearer YOUR_API_KEY

Body

model
string
required
The model name to get information about. See available models.
verbose
boolean
default:"false"
If true, returns full verbose data including layer information.

Response

modelinfo
object
Detailed model information including architecture and capabilities.
template
string
The prompt template used by the model.
system
string
Default system prompt for the model (if any).
details
object
Model details:
  • parent_model
  • format
  • family
  • families
  • parameter_size
  • quantization_level
modified_at
string
ISO 8601 timestamp of when the model was last modified.

Example

curl https://api.ajstudioz.co.in/api/show \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "gemma3:27b"}'
{
  "model": "gemma3:27b",
  "modified_at": "2025-03-12T00:00:00Z",
  "template": "{{ if .System }}<start_of_turn>user\n{{ .System }}<end_of_turn>\n{{ end }}{{ range .Messages }}{{ if eq .Role \"user\" }}<start_of_turn>user\n{{ .Content }}<end_of_turn>\n<start_of_turn>model\n{{ else if eq .Role \"assistant\" }}{{ .Content }}<end_of_turn>\n{{ end }}{{ end }}",
  "system": "",
  "details": {
    "parent_model": "",
    "format": "gguf",
    "family": "gemma3",
    "families": ["gemma3"],
    "parameter_size": "27.2B",
    "quantization_level": "Q4_K_M"
  },
  "modelinfo": {
    "general.architecture": "gemma3",
    "general.name": "Gemma 3 27B Instruct",
    "gemma3.attention.head_count": 32,
    "gemma3.context_length": 131072
  }
}