get_domain_visitors
Retrieve website visitor analytics from specific domains using Clicky data, including visitor counts and page-level traffic details for any date range.
Instructions
Get visitors filtered by domain from Clicky analytics with optional segmentation data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain name to filter by (e.g., "facebook.com", "google.com") | |
| end_date | Yes | End date in YYYY-MM-DD format | |
| limit | No | Optional limit for results (max 1000) | |
| segments | No | Optional array of segments to include (pages, visitors). Defaults to visitors only. "visitors" gets the total number of visitors from the domain. "pages" get the list of pages and its visited count from the domain. | |
| start_date | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "Domain name to filter by (e.g., \"facebook.com\", \"google.com\")",
"type": "string"
},
"end_date": {
"description": "End date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"limit": {
"description": "Optional limit for results (max 1000)",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"segments": {
"description": "Optional array of segments to include (pages, visitors). Defaults to visitors only. \"visitors\" gets the total number of visitors from the domain. \"pages\" get the list of pages and its visited count from the domain.",
"items": {
"enum": [
"pages",
"visitors"
],
"type": "string"
},
"type": "array"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
}
},
"required": [
"domain",
"start_date",
"end_date"
],
"type": "object"
}