Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Get the usage limits for the current user’s subscription tier
| Field | Value |
|---|
| Name | get_usage_limits |
| Group | Usage |
Playground
{
"type": "object",
"properties": {},
"additionalProperties": false,
"description": "Input schema for the get_usage_limits tool.",
"$schema": "http://json-schema.org/draft-07/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."
},
"api_calls": {
"type": "number",
"description": "The api calls associated with this tool result."
}
},
"required": [
"storage",
"api_calls"
],
"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#"
}