Create a token budget
curl --request POST \
--url https://{host}/api/llm-gateway/admin/budgets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"token_limit": 1,
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"alert_thresholds": [
80,
90
],
"traffic_type": "all",
"cost_limit": 123,
"currency": "USD",
"target_provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_upstream_model": "<string>",
"target_model_alias": "<string>"
}
'import requests
url = "https://{host}/api/llm-gateway/admin/budgets"
payload = {
"name": "<string>",
"token_limit": 1,
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"alert_thresholds": [80, 90],
"traffic_type": "all",
"cost_limit": 123,
"currency": "USD",
"target_provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_upstream_model": "<string>",
"target_model_alias": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
token_limit: 1,
scope_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
scope_value: '<string>',
alert_thresholds: [80, 90],
traffic_type: 'all',
cost_limit: 123,
currency: 'USD',
target_provider_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
target_upstream_model: '<string>',
target_model_alias: '<string>'
})
};
fetch('https://{host}/api/llm-gateway/admin/budgets', 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/budgets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'token_limit' => 1,
'scope_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'scope_value' => '<string>',
'alert_thresholds' => [
80,
90
],
'traffic_type' => 'all',
'cost_limit' => 123,
'currency' => 'USD',
'target_provider_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'target_upstream_model' => '<string>',
'target_model_alias' => '<string>'
]),
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/budgets"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"token_limit\": 1,\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"alert_thresholds\": [\n 80,\n 90\n ],\n \"traffic_type\": \"all\",\n \"cost_limit\": 123,\n \"currency\": \"USD\",\n \"target_provider_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"target_upstream_model\": \"<string>\",\n \"target_model_alias\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://{host}/api/llm-gateway/admin/budgets")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"token_limit\": 1,\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"alert_thresholds\": [\n 80,\n 90\n ],\n \"traffic_type\": \"all\",\n \"cost_limit\": 123,\n \"currency\": \"USD\",\n \"target_provider_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"target_upstream_model\": \"<string>\",\n \"target_model_alias\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/budgets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"token_limit\": 1,\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"alert_thresholds\": [\n 80,\n 90\n ],\n \"traffic_type\": \"all\",\n \"cost_limit\": 123,\n \"currency\": \"USD\",\n \"target_provider_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"target_upstream_model\": \"<string>\",\n \"target_model_alias\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Engineering monthly tokens",
"scope_type": "org",
"period": "daily",
"token_limit": 50000000,
"alert_thresholds": [
80,
90
],
"action_on_exhaust": "block",
"traffic_type": "all",
"currency": "USD",
"enabled": true,
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"cost_limit": 123,
"target_provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_upstream_model": "<string>",
"target_model_alias": "<string>"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}LLM Gateway: Token Budgets
Create a token budget
POST
/
admin
/
budgets
Create a token budget
curl --request POST \
--url https://{host}/api/llm-gateway/admin/budgets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"token_limit": 1,
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"alert_thresholds": [
80,
90
],
"traffic_type": "all",
"cost_limit": 123,
"currency": "USD",
"target_provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_upstream_model": "<string>",
"target_model_alias": "<string>"
}
'import requests
url = "https://{host}/api/llm-gateway/admin/budgets"
payload = {
"name": "<string>",
"token_limit": 1,
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"alert_thresholds": [80, 90],
"traffic_type": "all",
"cost_limit": 123,
"currency": "USD",
"target_provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_upstream_model": "<string>",
"target_model_alias": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
token_limit: 1,
scope_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
scope_value: '<string>',
alert_thresholds: [80, 90],
traffic_type: 'all',
cost_limit: 123,
currency: 'USD',
target_provider_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
target_upstream_model: '<string>',
target_model_alias: '<string>'
})
};
fetch('https://{host}/api/llm-gateway/admin/budgets', 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/budgets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'token_limit' => 1,
'scope_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'scope_value' => '<string>',
'alert_thresholds' => [
80,
90
],
'traffic_type' => 'all',
'cost_limit' => 123,
'currency' => 'USD',
'target_provider_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'target_upstream_model' => '<string>',
'target_model_alias' => '<string>'
]),
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/budgets"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"token_limit\": 1,\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"alert_thresholds\": [\n 80,\n 90\n ],\n \"traffic_type\": \"all\",\n \"cost_limit\": 123,\n \"currency\": \"USD\",\n \"target_provider_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"target_upstream_model\": \"<string>\",\n \"target_model_alias\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://{host}/api/llm-gateway/admin/budgets")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"token_limit\": 1,\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"alert_thresholds\": [\n 80,\n 90\n ],\n \"traffic_type\": \"all\",\n \"cost_limit\": 123,\n \"currency\": \"USD\",\n \"target_provider_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"target_upstream_model\": \"<string>\",\n \"target_model_alias\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/budgets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"token_limit\": 1,\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"alert_thresholds\": [\n 80,\n 90\n ],\n \"traffic_type\": \"all\",\n \"cost_limit\": 123,\n \"currency\": \"USD\",\n \"target_provider_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"target_upstream_model\": \"<string>\",\n \"target_model_alias\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Engineering monthly tokens",
"scope_type": "org",
"period": "daily",
"token_limit": 50000000,
"alert_thresholds": [
80,
90
],
"action_on_exhaust": "block",
"traffic_type": "all",
"currency": "USD",
"enabled": true,
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"cost_limit": 123,
"target_provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_upstream_model": "<string>",
"target_model_alias": "<string>"
}{
"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.
Body
application/json
Who the rate limit applies to
Available options:
org, team, user, role, group, api_key, mcp_server, agent, project, llm_provider, model, model_alias Available options:
daily, weekly, monthly, quarterly, yearly 0 is valid only when cost_limit is set
Required range:
x >= 0Required range:
0 <= x <= 100block— refuse new requests until the next periodalert— emit alerts at the configured thresholds but keep serving
Available options:
block, alert Whether the policy applies to LLM, MCP, or both kinds of traffic
Available options:
all, llm, mcp Response
The newly created budget
Example:
"Engineering monthly tokens"
Who the rate limit applies to
Available options:
org, team, user, role, group, api_key, mcp_server, agent, project, llm_provider, model, model_alias Available options:
daily, weekly, monthly, quarterly, yearly Example:
50000000
Required range:
0 <= x <= 100Example:
[80, 90]
block— refuse new requests until the next periodalert— emit alerts at the configured thresholds but keep serving
Available options:
block, alert Whether the policy applies to LLM, MCP, or both kinds of traffic
Available options:
all, llm, mcp Optional spend ceiling in currency
Restrict to traffic served by a specific provider
Restrict to traffic that ends up at this upstream model
Restrict to requests that used this client-facing alias