matomo_get_visits_summary
Retrieve a summary of site visits, including metrics like unique visitors and page views, for a specified date and period using the Matomo Analytics API. Input site ID, date, and period for analysis.
Instructions
Lấy tổng quan lượt truy cập của site
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Ngày cần lấy dữ liệu (YYYY-MM-DD) | |
| period | No | Chu kỳ (day, week, month, year) | day |
| siteId | Yes | ID của site |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Ngày cần lấy dữ liệu (YYYY-MM-DD)",
"type": "string"
},
"period": {
"default": "day",
"description": "Chu kỳ (day, week, month, year)",
"type": "string"
},
"siteId": {
"description": "ID của site",
"type": "number"
}
},
"required": [
"siteId",
"date"
],
"type": "object"
}