Skip to content

Retrieve Multiple AI Style Groups in a Space

https://mapi.storyblok.com/v1/spaces/:space_id/ai_style_groups

Returns all AI style groups available in the specified space, including space-specific groups and inherited organization groups.

  • :space_id required number

    The ID of the Space

curl "https://mapi.storyblok.com/v1/spaces/288868932106293/ai_style_groups" \
-H "Authorization: YOUR_OAUTH_TOKEN"
Response
{
"ai_style_groups": [
{
"id": 112349681021576,
"name": "Marketing Headlines",
"description": "AI style group for generating catchy marketing headlines.",
"source": "Space",
"author": "Arpit Batra",
"rules_count": 0,
"ai_output_rule_ids": []
},
{
"id": 112351668400777,
"name": "Technical Documentation",
"description": "AI style group for consistent technical documentation output.",
"source": "Space",
"author": "Arpit Batra",
"rules_count": 0,
"ai_output_rule_ids": []
}
]
}