curl --request GET \
--url https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings \
--header 'Authorization: Bearer <token>'import requests
url = "https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings', 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://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model_alias": "gpt-4o-mini",
"upstream_model": "gpt-4o-mini-2024-07-18",
"enabled": true,
"priority": 123,
"retry_on_429_count": 5,
"retry_on_429_max_wait_secs": 90,
"bare_alias": true,
"provider_name": "<string>",
"stream_idle_timeout_secs": 900,
"max_concurrent_requests": 5000,
"request_timeout_secs": 1800,
"budget_status": {
"scope": "org",
"target_kind": "llm_provider",
"target_id": "<string>",
"budget_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"budget_name": "<string>",
"period": "monthly",
"usage": 123,
"limit": 123
}
}
]List a provider's model routes
curl --request GET \
--url https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings \
--header 'Authorization: Bearer <token>'import requests
url = "https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings', 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://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/providers/{provider_id}/model-mappings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model_alias": "gpt-4o-mini",
"upstream_model": "gpt-4o-mini-2024-07-18",
"enabled": true,
"priority": 123,
"retry_on_429_count": 5,
"retry_on_429_max_wait_secs": 90,
"bare_alias": true,
"provider_name": "<string>",
"stream_idle_timeout_secs": 900,
"max_concurrent_requests": 5000,
"request_timeout_secs": 1800,
"budget_status": {
"scope": "org",
"target_kind": "llm_provider",
"target_id": "<string>",
"budget_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"budget_name": "<string>",
"period": "monthly",
"usage": 123,
"limit": 123
}
}
]Authorizations
JWT obtained through Barndoor's authentication flow. Pass the token
verbatim in Authorization: Bearer <token>. Use the Barndoor SDK's
loginInteractive() helper to obtain a token in scripts and notebooks.
Path Parameters
Response
List of routes
"gpt-4o-mini"
"gpt-4o-mini-2024-07-18"
Lower numbers are tried first within the same alias
Same-route retries on upstream 429 before failing over
0 <= x <= 10Cap on honoring upstream Retry-After (0 = use small built-in default)
0 <= x <= 180When true the route participates in plain-alias resolution
(e.g. model: "gpt-4o-mini"). When false it is only
addressable as <provider>/<upstream-model>.
Present on cross-provider listings
1 <= x <= 1800Cap on in-flight requests per gateway pod against this route
1 <= x <= 100001 <= x <= 3600Present (and only present) when one of this route's targeted budgets
with action_on_exhaust = block is currently exhausted. The
runtime drops this route until the budget rolls over.
Show child attributes
Show child attributes