Skip to content

Retrieve Multiple Tags

Terminal window
https://mapi.storyblok.com/v1/spaces/:space_id/tags

This endpoint returns an array of tag objects from a space.

  • :space_id required number

    Numeric ID of a space

  • search string

    Parameter to search by tag name

Example Request with search query parameter

curl "https://mapi.storyblok.com/v1/spaces/606/tags/?search=article" \
-H "Authorization: YOUR_OAUTH_TOKEN"

Example Request with all_tags parameter

curl "https://mapi.storyblok.com/v1/spaces/606/stories/?all_tags=true" \
-H "Authorization: YOUR_OAUTH_TOKEN"