get_post
Retrieve a specific post from a Band group by providing the band identifier and post identifier. This tool accesses Band API data to fetch individual posts for viewing or processing.
Instructions
Get a single post from BAND.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
band_key | Yes | band identifier | |
post_key | Yes | post identifier |
Input Schema (JSON Schema)
{
"properties": {
"band_key": {
"description": "band identifier",
"title": "Band Key",
"type": "string"
},
"post_key": {
"description": "post identifier",
"title": "Post Key",
"type": "string"
}
},
"required": [
"band_key",
"post_key"
],
"type": "object"
}