get-stats
Retrieve page view statistics from your note.com dashboard with customizable filters for time periods, sorting options, and pagination to analyze content performance.
Instructions
ダッシュボードのPV統計情報を取得する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | 期間フィルター | all |
| page | No | ページ番号 | |
| sort | No | ソート方法(pv: PV数順, date: 日付順) | pv |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"default": "all",
"description": "期間フィルター",
"enum": [
"all",
"day",
"week",
"month"
],
"type": "string"
},
"page": {
"default": 1,
"description": "ページ番号",
"type": "number"
},
"sort": {
"default": "pv",
"description": "ソート方法(pv: PV数順, date: 日付順)",
"enum": [
"pv",
"date"
],
"type": "string"
}
},
"type": "object"
}