fetch_stories
Retrieve stories from Storyblok CMS using customizable filters such as pagination, slugs, search terms, and sorting to efficiently manage and access content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_slugs | No | ||
excluding_slugs | No | ||
page | No | ||
per_page | No | ||
search_term | No | ||
sort_by | No | ||
starts_with | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"by_slugs": {
"type": "string"
},
"excluding_slugs": {
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"search_term": {
"type": "string"
},
"sort_by": {
"type": "string"
},
"starts_with": {
"type": "string"
}
},
"type": "object"
}