curl --request PUT \
--url https://{host}/api/llm-gateway/admin/model-pricing/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input_cost_per_million_tokens": 123,
"output_cost_per_million_tokens": 123,
"effective_from": "2023-11-07T05:31:56Z",
"change_reason": "<string>",
"cache_read_cost_per_million_tokens": 123,
"cache_write_cost_per_million_tokens": 123
}
'import requests
url = "https://{host}/api/llm-gateway/admin/model-pricing/{id}"
payload = {
"input_cost_per_million_tokens": 123,
"output_cost_per_million_tokens": 123,
"effective_from": "2023-11-07T05:31:56Z",
"change_reason": "<string>",
"cache_read_cost_per_million_tokens": 123,
"cache_write_cost_per_million_tokens": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input_cost_per_million_tokens: 123,
output_cost_per_million_tokens: 123,
effective_from: '2023-11-07T05:31:56Z',
change_reason: '<string>',
cache_read_cost_per_million_tokens: 123,
cache_write_cost_per_million_tokens: 123
})
};
fetch('https://{host}/api/llm-gateway/admin/model-pricing/{id}', 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/model-pricing/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'input_cost_per_million_tokens' => 123,
'output_cost_per_million_tokens' => 123,
'effective_from' => '2023-11-07T05:31:56Z',
'change_reason' => '<string>',
'cache_read_cost_per_million_tokens' => 123,
'cache_write_cost_per_million_tokens' => 123
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{host}/api/llm-gateway/admin/model-pricing/{id}"
payload := strings.NewReader("{\n \"input_cost_per_million_tokens\": 123,\n \"output_cost_per_million_tokens\": 123,\n \"effective_from\": \"2023-11-07T05:31:56Z\",\n \"change_reason\": \"<string>\",\n \"cache_read_cost_per_million_tokens\": 123,\n \"cache_write_cost_per_million_tokens\": 123\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://{host}/api/llm-gateway/admin/model-pricing/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"input_cost_per_million_tokens\": 123,\n \"output_cost_per_million_tokens\": 123,\n \"effective_from\": \"2023-11-07T05:31:56Z\",\n \"change_reason\": \"<string>\",\n \"cache_read_cost_per_million_tokens\": 123,\n \"cache_write_cost_per_million_tokens\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/model-pricing/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"input_cost_per_million_tokens\": 123,\n \"output_cost_per_million_tokens\": 123,\n \"effective_from\": \"2023-11-07T05:31:56Z\",\n \"change_reason\": \"<string>\",\n \"cache_read_cost_per_million_tokens\": 123,\n \"cache_write_cost_per_million_tokens\": 123\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model_pattern": "gpt-4o-mini",
"input_cost_per_million_tokens": 0.15,
"output_cost_per_million_tokens": 0.6,
"effective_from": "2023-11-07T05:31:56Z",
"sync_mode": "tracking",
"change_source": "admin_create",
"is_archived": true,
"model_provider": "<string>",
"provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"catalog_slug": "<string>",
"cache_read_cost_per_million_tokens": 123,
"cache_write_cost_per_million_tokens": 123,
"change_reason": "<string>",
"created_by_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_by_email": "<string>"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}Edit a scheduled pricing version
Updates a future-dated (scheduled) pricing version in place. Past
versions are immutable — to change the active price create a new
version via POST /admin/model-pricing instead.
curl --request PUT \
--url https://{host}/api/llm-gateway/admin/model-pricing/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input_cost_per_million_tokens": 123,
"output_cost_per_million_tokens": 123,
"effective_from": "2023-11-07T05:31:56Z",
"change_reason": "<string>",
"cache_read_cost_per_million_tokens": 123,
"cache_write_cost_per_million_tokens": 123
}
'import requests
url = "https://{host}/api/llm-gateway/admin/model-pricing/{id}"
payload = {
"input_cost_per_million_tokens": 123,
"output_cost_per_million_tokens": 123,
"effective_from": "2023-11-07T05:31:56Z",
"change_reason": "<string>",
"cache_read_cost_per_million_tokens": 123,
"cache_write_cost_per_million_tokens": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input_cost_per_million_tokens: 123,
output_cost_per_million_tokens: 123,
effective_from: '2023-11-07T05:31:56Z',
change_reason: '<string>',
cache_read_cost_per_million_tokens: 123,
cache_write_cost_per_million_tokens: 123
})
};
fetch('https://{host}/api/llm-gateway/admin/model-pricing/{id}', 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/model-pricing/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'input_cost_per_million_tokens' => 123,
'output_cost_per_million_tokens' => 123,
'effective_from' => '2023-11-07T05:31:56Z',
'change_reason' => '<string>',
'cache_read_cost_per_million_tokens' => 123,
'cache_write_cost_per_million_tokens' => 123
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{host}/api/llm-gateway/admin/model-pricing/{id}"
payload := strings.NewReader("{\n \"input_cost_per_million_tokens\": 123,\n \"output_cost_per_million_tokens\": 123,\n \"effective_from\": \"2023-11-07T05:31:56Z\",\n \"change_reason\": \"<string>\",\n \"cache_read_cost_per_million_tokens\": 123,\n \"cache_write_cost_per_million_tokens\": 123\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://{host}/api/llm-gateway/admin/model-pricing/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"input_cost_per_million_tokens\": 123,\n \"output_cost_per_million_tokens\": 123,\n \"effective_from\": \"2023-11-07T05:31:56Z\",\n \"change_reason\": \"<string>\",\n \"cache_read_cost_per_million_tokens\": 123,\n \"cache_write_cost_per_million_tokens\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/model-pricing/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"input_cost_per_million_tokens\": 123,\n \"output_cost_per_million_tokens\": 123,\n \"effective_from\": \"2023-11-07T05:31:56Z\",\n \"change_reason\": \"<string>\",\n \"cache_read_cost_per_million_tokens\": 123,\n \"cache_write_cost_per_million_tokens\": 123\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model_pattern": "gpt-4o-mini",
"input_cost_per_million_tokens": 0.15,
"output_cost_per_million_tokens": 0.6,
"effective_from": "2023-11-07T05:31:56Z",
"sync_mode": "tracking",
"change_source": "admin_create",
"is_archived": true,
"model_provider": "<string>",
"provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"catalog_slug": "<string>",
"cache_read_cost_per_million_tokens": 123,
"cache_write_cost_per_million_tokens": 123,
"change_reason": "<string>",
"created_by_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_by_email": "<string>"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}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
Body
Edit a scheduled (future-dated) pricing version in place. Past versions are immutable. Updating a current version is a no-op; create a new version instead.
How the row tracks Barndoor's managed defaults:
tracking— show the user a prompt when defaults changepinned— never sync; this is your numberauto— silently follow updates to the managed defaults
tracking, pinned, auto Response
The updated pricing version
A single pricing rule version. Each "rule" (logical row) has a stack
of versions; the latest version with effective_from <= now() is the
one that bills.
Upstream model name (or * wildcard)
"gpt-4o-mini"
0.15
0.6
When this version takes effect. Past = active; future = scheduled
How the row tracks Barndoor's managed defaults:
tracking— show the user a prompt when defaults changepinned— never sync; this is your numberauto— silently follow updates to the managed defaults
tracking, pinned, auto How this version of the pricing rule was produced
admin_create, admin_edit, admin_schedule, import, sync_manual, sync_auto, admin_archive, admin_restore When set, the rule only applies to routes served by this provider