search-users
Find users on note.com by entering search keywords to locate specific members or discover new content creators within the platform.
Instructions
ユーザーを検索する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | 検索キーワード | |
| size | No | 取得する件数(最大20) | |
| start | No | 検索結果の開始位置 |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "検索キーワード",
"type": "string"
},
"size": {
"default": 10,
"description": "取得する件数(最大20)",
"type": "number"
},
"start": {
"default": 0,
"description": "検索結果の開始位置",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}