Model catalog
List Models
Paginated public model catalog with free-text search and structured filters. Private models are unlisted here (direct reads by endpoint still resolve them — ‘private’ means unlisted, not access-controlled).
GET
/
models
List Models
curl --request GET \
--url https://api.modelrunner.run/modelsimport requests
url = "https://api.modelrunner.run/models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.modelrunner.run/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.modelrunner.run/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.modelrunner.run/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.modelrunner.run/models")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.modelrunner.run/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{
"page": 123,
"limit": 123,
"total": 123,
"totalPages": 123,
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ownerName": "<string>",
"alias": "<string>",
"name": "<string>",
"category": "<string>",
"shortDescription": "<string>",
"description": "<string>",
"thumbnailUrl": "<string>",
"tags": [
"<string>"
],
"useCases": [
"<string>"
],
"inputModalities": [
"<string>"
],
"outputModalities": [
"<string>"
],
"capabilities": [
"<string>"
],
"features": [
"<string>"
],
"schema": {},
"pricingMode": "per_second",
"averageCost": "<string>",
"official": true,
"featured": true,
"examples": [
"<string>"
],
"contextWindow": 123,
"maxOutputTokens": 123,
"providerRequestConfig": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}Query Parameters
Free-text search over name, alias, description, owner, category, tags.
e.g. text, image, video, audio.
⌘I
List Models
curl --request GET \
--url https://api.modelrunner.run/modelsimport requests
url = "https://api.modelrunner.run/models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.modelrunner.run/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.modelrunner.run/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.modelrunner.run/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.modelrunner.run/models")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.modelrunner.run/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{
"page": 123,
"limit": 123,
"total": 123,
"totalPages": 123,
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ownerName": "<string>",
"alias": "<string>",
"name": "<string>",
"category": "<string>",
"shortDescription": "<string>",
"description": "<string>",
"thumbnailUrl": "<string>",
"tags": [
"<string>"
],
"useCases": [
"<string>"
],
"inputModalities": [
"<string>"
],
"outputModalities": [
"<string>"
],
"capabilities": [
"<string>"
],
"features": [
"<string>"
],
"schema": {},
"pricingMode": "per_second",
"averageCost": "<string>",
"official": true,
"featured": true,
"examples": [
"<string>"
],
"contextWindow": 123,
"maxOutputTokens": 123,
"providerRequestConfig": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
