get_api_usage_stats
Retrieve detailed Linked API usage statistics for a specified period in ISO 8601 format to monitor and analyze usage patterns effectively.
Instructions
Retrieve Linked API usage statistics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | End date for the statistics period in ISO 8601 format (e.g., '2024-01-31T23:59:59Z') | |
start | Yes | Start date for the statistics period in ISO 8601 format (e.g., '2024-01-01T00:00:00Z') |
Input Schema (JSON Schema)
{
"properties": {
"end": {
"description": "End date for the statistics period in ISO 8601 format (e.g., '2024-01-31T23:59:59Z')",
"type": "string"
},
"start": {
"description": "Start date for the statistics period in ISO 8601 format (e.g., '2024-01-01T00:00:00Z')",
"type": "string"
}
},
"required": [
"start",
"end"
],
"type": "object"
}