get_tag_items
Retrieve articles associated with a specific tag from Qiita's developer community platform. Use this tool to fetch tagged content listings with pagination support for efficient browsing.
Instructions
指定されたタグの記事一覧を取得します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ページ番号(1-100) | |
| perPage | No | 1ページあたりの件数(1-100) | |
| tagId | Yes | タグID |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "ページ番号(1-100)",
"type": "number"
},
"perPage": {
"default": 20,
"description": "1ページあたりの件数(1-100)",
"type": "number"
},
"tagId": {
"description": "タグID",
"type": "string"
}
},
"required": [
"tagId"
],
"type": "object"
}