get_items
Retrieve articles from Qiita's developer community platform using search queries, pagination, and filtering options to find relevant technical content.
Instructions
記事一覧を取得します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ページ番号(1-100) | |
| perPage | No | 1ページあたりの件数(1-100) | |
| query | No | 検索クエリ |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "ページ番号(1-100)",
"type": "number"
},
"perPage": {
"default": 20,
"description": "1ページあたりの件数(1-100)",
"type": "number"
},
"query": {
"description": "検索クエリ",
"type": "string"
}
},
"required": [],
"type": "object"
}