Model catalog
Get Model Pricing
Batch pricing read: a versioned, pricingMode-discriminated rate card per endpoint. Repeat the endpoint parameter for a batch (aliases may contain slashes, so endpoints are never comma-joined). Endpoints that resolve to no priceable model are reported under notFound instead of failing the batch.
GET
/
models
/
pricing
Get Model Pricing
curl --request GET \
--url https://api.modelrunner.run/models/pricingimport requests
url = "https://api.modelrunner.run/models/pricing"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.modelrunner.run/models/pricing', 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/pricing",
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/pricing"
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/pricing")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.modelrunner.run/models/pricing")
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{
"version": 1,
"prices": [
{
"endpoint": "<string>",
"rateCard": {
"pricingMode": "per_output",
"pricePerOutput": "<string>"
},
"pricingRules": {},
"averageCost": "<string>",
"currency": "USD"
}
],
"notFound": [
"<string>"
]
}{
"error": "<string>",
"request_id": "<string>"
}⌘I
Get Model Pricing
curl --request GET \
--url https://api.modelrunner.run/models/pricingimport requests
url = "https://api.modelrunner.run/models/pricing"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.modelrunner.run/models/pricing', 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/pricing",
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/pricing"
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/pricing")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.modelrunner.run/models/pricing")
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{
"version": 1,
"prices": [
{
"endpoint": "<string>",
"rateCard": {
"pricingMode": "per_output",
"pricePerOutput": "<string>"
},
"pricingRules": {},
"averageCost": "<string>",
"currency": "USD"
}
],
"notFound": [
"<string>"
]
}{
"error": "<string>",
"request_id": "<string>"
}
