url_analytics
Analyze click statistics for shortened URLs within specific timeframes, providing insights into performance and usage trends.
Instructions
Get detailed click analytics for a shortened URL within a date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | No | The time period for analytics (e.g., "day", "week", "month") | |
shorturl | Yes | The short URL to get analytics for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"period": {
"description": "The time period for analytics (e.g., \"day\", \"week\", \"month\")",
"type": "string"
},
"shorturl": {
"description": "The short URL to get analytics for",
"type": "string"
}
},
"required": [
"shorturl"
],
"type": "object"
}