Video Models
curl --request GET \
--url https://nano-gpt.com/api/v1/video-modelsimport requests
url = "https://nano-gpt.com/api/v1/video-models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://nano-gpt.com/api/v1/video-models', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://nano-gpt.com/api/v1/video-models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://nano-gpt.com/api/v1/video-models"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://nano-gpt.com/api/v1/video-models")
.asString();require 'uri'
require 'net/http'
url = URI("https://nano-gpt.com/api/v1/video-models")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyEndpoint Examples
Video Models
List available video models with generation capabilities and supported parameters
GET
/
api
/
v1
/
video-models
Video Models
curl --request GET \
--url https://nano-gpt.com/api/v1/video-modelsimport requests
url = "https://nano-gpt.com/api/v1/video-models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://nano-gpt.com/api/v1/video-models', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://nano-gpt.com/api/v1/video-models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://nano-gpt.com/api/v1/video-models"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://nano-gpt.com/api/v1/video-models")
.asString();require 'uri'
require 'net/http'
url = URI("https://nano-gpt.com/api/v1/video-models")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyOverview
UseGET /api/v1/video-models to discover the currently available video models. Do not hardcode video model capabilities in your client; supported settings and availability can change.
This endpoint is cacheable. Refresh it periodically and treat new fields as additive.
Endpoint
GET https://nano-gpt.com/api/v1/video-models
Authentication
Authentication is optional.Authorization: Bearer YOUR_API_KEYx-api-key: YOUR_API_KEY
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
detailed | boolean | true | Include names, descriptions, pricing, capabilities, and supported parameters. |
Response
{
"object": "list",
"data": [
{
"id": "video-model-id",
"object": "model",
"name": "Display name",
"description": "Model description",
"architecture": {
"modality": "video",
"input_modalities": ["text", "image"],
"output_modalities": ["video"]
},
"pricing": {
"currency": "USD"
},
"capabilities": {
"video_generation": true,
"text_to_video": true,
"image_to_video": true,
"audio_generation": false
},
"supported_parameters": {}
}
],
"meta": {
"count": 1,
"generated_at": "2026-05-07T12:00:00.000Z"
}
}
Supported Parameters
Supported parameters vary by model. Common examples include:durationaspect_ratioresolution- image input support
- audio generation support
- video extension support
- video recovery support
- prompt enhancement or safety controls
supported_parameters and capabilities objects to decide which controls to show and which request fields to send.
Example
curl "https://nano-gpt.com/api/v1/video-models?detailed=true"
Notes
- Use this endpoint instead of hardcoding media model capabilities.
- The response is cacheable, but model availability can change.
- Pricing structures vary by model, for example per generation, per second, duration tier, resolution tier, or feature-specific pricing.