get_posts
Retrieve posts from a specified band group in BAND, enabling users to access group content and manage post data through the Band API.
Instructions
Get posts from a specific band in BAND.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | for paging | |
band_key | Yes | band identifier | |
limit | No | number of posts to load. min: 1, max: 100, default: 20 | |
locale | No | Region and language | ja_JP |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"description": "for paging",
"title": "After",
"type": "string"
},
"band_key": {
"description": "band identifier",
"title": "Band Key",
"type": "string"
},
"limit": {
"default": 20,
"description": "number of posts to load. min: 1, max: 100, default: 20",
"title": "Limit",
"type": "number"
},
"locale": {
"default": "ja_JP",
"description": "Region and language",
"title": "Locale",
"type": "string"
}
},
"required": [
"band_key"
],
"type": "object"
}