Tool details
| Field | Value |
|---|---|
| Name | get_usage_limits |
| Group | Billing & Usage |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {},
"additionalProperties": false,
"description": "Input schema for the get_usage_limits tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"tier": {
"type": "string",
"description": "The tier associated with this tool result."
},
"limits": {
"type": "object",
"properties": {
"storage": {
"type": "number",
"description": "The storage associated with this tool result."
},
"bandwidth": {
"type": "number",
"description": "The bandwidth associated with this tool result."
},
"api_calls": {
"type": "number",
"description": "The api calls associated with this tool result."
},
"custom_domains": {
"type": "number",
"description": "The custom domains associated with this tool result."
},
"code_exports": {
"type": "number",
"description": "The code exports associated with this tool result."
},
"veryfront_badge": {
"type": "number",
"description": "The veryfront badge associated with this tool result."
}
},
"required": [
"storage",
"bandwidth",
"api_calls",
"custom_domains",
"code_exports",
"veryfront_badge"
],
"additionalProperties": false,
"description": "Structured limits details associated with this tool result."
}
},
"required": [
"tier",
"limits"
],
"additionalProperties": false,
"description": "Structured result returned by the get_usage_limits tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}