Skip to content

Retrieve Multiple Tags

Returns an array of tag objects used in a space. Only tags assigned to at least one story are included.

Terminal window
https://api.storyblok.com/v2/cdn/tags
  • token required string

    A preview or public access token

  • starts_with string

    Filter by story full_slug to only return tags assigned to stories with a full_slug starting with the given value

  • version draft | published

    Default: published

curl "https://api.storyblok.com/v2/cdn/tags?starts_with=articles%2F&token=ask9soUkv02QqbZgmZdeDAtt"
Response
{
"tags": [
{
"name": "Editor's Choice",
"taggings_count": 11
},
{
"name": "Featured",
"taggings_count": 7
}
]
}