List budgets applicable to the project
import requests
url = "https://app.langwatch.ai/api/gateway/v1/budgets"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "<string>",
"organization_id": "<string>",
"scope_type": "<string>",
"scope_id": "<string>",
"name": "<string>",
"description": "<string>",
"window": "<string>",
"limit_usd": "<string>",
"spent_usd": "<string>",
"resets_at": "<string>",
"archived_at": "<string>"
}
]
}Gateway: Budgets
List budgets applicable to the project
Returns every budget that could apply to requests routed through this project — org, team, and project scope. VK and principal-scoped budgets are returned via their detail pages.
GET
/
api
/
gateway
/
v1
/
budgets
List budgets applicable to the project
import requests
url = "https://app.langwatch.ai/api/gateway/v1/budgets"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "<string>",
"organization_id": "<string>",
"scope_type": "<string>",
"scope_id": "<string>",
"name": "<string>",
"description": "<string>",
"window": "<string>",
"limit_usd": "<string>",
"spent_usd": "<string>",
"resets_at": "<string>",
"archived_at": "<string>"
}
]
}Was this page helpful?
⌘I