Your opinion matters! Join our Docs team for a 30-min call and receive a $30 e-gift card. Apply now.
Tools
- Overview
- Working with conda
- Anaconda Navigator
- Anaconda Notebooks
- Anaconda.org
- Anaconda Toolbox Excel Add-in
- Anaconda AI Navigator
- Overview
- System Requirements
- Installing Anaconda AI Navigator
- Getting started with Anaconda AI Navigator
- User Guide
- Developer Guide
- AI Navigator API
- Tutorials
- Resources
Get model details by ID
Retrieves detailed information about a specific model, including its metadata and files
GET
/
api
/
models
/
{id}
Copy
Ask AI
{
"data": {
"id": "<string>",
"name": "<string>",
"metadata": {
"numParameters": 123,
"contextWindowSize": 123,
"trainedFor": "text-generation",
"description": "<string>",
"license": "<string>",
"languages": [
"<string>"
],
"last_updated": "2023-11-07T05:31:56Z",
"library_name": "<string>",
"model_type": "<string>",
"resources": {
"canonicalUrl": "<string>",
"paperUrl": "<string>"
},
"publisher": "<string>",
"files": [
{
"id": "<string>",
"name": "<string>",
"downloadUrl": "<string>",
"sizeBytes": 123,
"sha256checksum": "<string>",
"quantization": "<string>",
"format": "<string>",
"maxRamUsage": 123,
"isDownloaded": true,
"localPath": "<string>"
}
]
}
}
}
Authorizations
Enter your API key here
Path Parameters
ID of the model to retrieve
Response
200
application/json
Model details retrieved successfully
The response is of type object
.
Was this page helpful?
Copy
Ask AI
{
"data": {
"id": "<string>",
"name": "<string>",
"metadata": {
"numParameters": 123,
"contextWindowSize": 123,
"trainedFor": "text-generation",
"description": "<string>",
"license": "<string>",
"languages": [
"<string>"
],
"last_updated": "2023-11-07T05:31:56Z",
"library_name": "<string>",
"model_type": "<string>",
"resources": {
"canonicalUrl": "<string>",
"paperUrl": "<string>"
},
"publisher": "<string>",
"files": [
{
"id": "<string>",
"name": "<string>",
"downloadUrl": "<string>",
"sizeBytes": 123,
"sha256checksum": "<string>",
"quantization": "<string>",
"format": "<string>",
"maxRamUsage": 123,
"isDownloaded": true,
"localPath": "<string>"
}
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.