List models
curl --request GET \
--url https://api.llm7.io/v1/modelsimport requests
url = "https://api.llm7.io/v1/models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.llm7.io/v1/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://api.llm7.io/v1/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://api.llm7.io/v1/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://api.llm7.io/v1/models")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.llm7.io/v1/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_body{
"object": "list",
"data": [
{
"id": "gemini-veo31",
"object": "model",
"created": 123,
"owned_by": "<string>",
"tier": "<string>",
"model_type": "video",
"pricing_mode": "<string>",
"pricing": {
"input": 123,
"output": 123,
"price": 0.01875,
"minimum_request_price_usd": 123,
"minimum_cache_tokens": 123,
"currency": "USD",
"unit": "second"
},
"modalities": {
"input": [
"text",
"image"
],
"output": [
"video"
]
},
"context_window": {},
"usage_based_only": true,
"stream": true,
"json_mode": true,
"reasoning": true,
"tools_calling": true,
"capabilities": {
"video_generation": true,
"video_async": true,
"supported_seconds": [
4,
6,
8
],
"supported_sizes": [
"1280x720",
"720x1280",
"1920x1080"
],
"max_reference_images": 123,
"max_reference_image_bytes": 8388608,
"requires_reference_image": true
}
}
]
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"param": "<string>"
}
}Models
List models
List the live model catalog, including pricing, modalities, and capability metadata.
GET
/
models
List models
curl --request GET \
--url https://api.llm7.io/v1/modelsimport requests
url = "https://api.llm7.io/v1/models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.llm7.io/v1/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://api.llm7.io/v1/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://api.llm7.io/v1/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://api.llm7.io/v1/models")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.llm7.io/v1/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_body{
"object": "list",
"data": [
{
"id": "gemini-veo31",
"object": "model",
"created": 123,
"owned_by": "<string>",
"tier": "<string>",
"model_type": "video",
"pricing_mode": "<string>",
"pricing": {
"input": 123,
"output": 123,
"price": 0.01875,
"minimum_request_price_usd": 123,
"minimum_cache_tokens": 123,
"currency": "USD",
"unit": "second"
},
"modalities": {
"input": [
"text",
"image"
],
"output": [
"video"
]
},
"context_window": {},
"usage_based_only": true,
"stream": true,
"json_mode": true,
"reasoning": true,
"tools_calling": true,
"capabilities": {
"video_generation": true,
"video_async": true,
"supported_seconds": [
4,
6,
8
],
"supported_sizes": [
"1280x720",
"720x1280",
"1920x1080"
],
"max_reference_images": 123,
"max_reference_image_bytes": 8388608,
"requires_reference_image": true
}
}
]
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"param": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"param": "<string>"
}
}⌘I
