List Models
curl --request GET \
--url https://modelslab.com/api/v7/llm/v1/models \
--header 'x-api-key: <api-key>'import requests
url = "https://modelslab.com/api/v7/llm/v1/models"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://modelslab.com/api/v7/llm/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://modelslab.com/api/v7/llm/v1/models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://modelslab.com/api/v7/llm/v1/models"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://modelslab.com/api/v7/llm/v1/models")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://modelslab.com/api/v7/llm/v1/models")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"object": "list",
"data": [
{
"id": "<string>",
"object": "model",
"created": 123,
"owned_by": "<string>"
}
]
}List Models
Retrieve the list of all available LLM models and their capabilities.
GET
/
v1
/
models
List Models
curl --request GET \
--url https://modelslab.com/api/v7/llm/v1/models \
--header 'x-api-key: <api-key>'import requests
url = "https://modelslab.com/api/v7/llm/v1/models"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://modelslab.com/api/v7/llm/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://modelslab.com/api/v7/llm/v1/models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://modelslab.com/api/v7/llm/v1/models"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://modelslab.com/api/v7/llm/v1/models")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://modelslab.com/api/v7/llm/v1/models")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"object": "list",
"data": [
{
"id": "<string>",
"object": "model",
"created": 123,
"owned_by": "<string>"
}
]
}Request
GET https://modelslab.com/api/v7/llm/v1/models
curl https://modelslab.com/api/v7/llm/v1/models \
-H "x-api-key: $MODELSLAB_API_KEY"
Response
{
"object": "list",
"data": [
{
"id": "Qwen/Qwen2.5-VL-72B-Instruct-together",
"object": "model",
"created": 1712345678,
"owned_by": "Qwen"
},
{
"id": "meta-llama/Llama-3.1-70B-Instruct",
"object": "model",
"created": 1712345678,
"owned_by": "Meta"
}
]
}
Usage with SDKs
- OpenAI SDK
- Anthropic SDK
from openai import OpenAI
client = OpenAI(
api_key="YOUR_MODELSLAB_API_KEY",
base_url="https://modelslab.com/api/v7/llm",
)
models = client.models.list()
for model in models.data:
print(model.id)
import requests
response = requests.get(
"https://modelslab.com/api/v7/llm/v1/models",
headers={"x-api-key": "YOUR_MODELSLAB_API_KEY"},
)
models = response.json()
for model in models["data"]:
print(model["id"])
You can also browse all available models with details and playground access at modelslab.com/models/category/llmaster.
Was this page helpful?
⌘I

