get_traffic_sources
Retrieve traffic sources breakdown from Clicky analytics for any date range, with optional filtering by specific page URL to analyze visitor origins and referral patterns.
Instructions
Get traffic sources breakdown from Clicky analytics. Optionally filter by specific page URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | Yes | End date in YYYY-MM-DD format | |
| page_url | No | Optional: Full URL or path of the page to get traffic sources for (e.g., https://example.com/path or /path) | |
| start_date | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"page_url": {
"description": "Optional: Full URL or path of the page to get traffic sources for (e.g., https://example.com/path or /path)",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
}