search_stories
Discover and retrieve specific stories from Storyblok CMS by filtering results using tags, slugs, search terms, or other parameters for efficient content management and operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_slugs | No | ||
by_uuids | No | ||
excluding_slugs | No | ||
is_startpage | No | ||
page | No | ||
per_page | No | ||
search_term | No | ||
sort_by | No | ||
starts_with | No | ||
with_tag | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"by_slugs": {
"type": "string"
},
"by_uuids": {
"type": "string"
},
"excluding_slugs": {
"type": "string"
},
"is_startpage": {
"type": "boolean"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"search_term": {
"type": "string"
},
"sort_by": {
"type": "string"
},
"starts_with": {
"type": "string"
},
"with_tag": {
"type": "string"
}
},
"type": "object"
}