Skip to content

Retrieve a Single Component Version

Terminal window
https://mapi.storyblok.com/v1/spaces/:space_id/components/:component_id/component_versions/:version_id

Retrieve the schema details of a component version.

  • :space_id required number

    Numeric ID of a space

  • :component_id number

    Numeric ID of a component

  • :version_id number

    Numeric ID of a component version

curl "https://mapi.storyblok.com/v1/spaces/656/components/6826721/component_versions/279820267" \
-H "Authorization: YOUR_OAUTH_TOKEN"
Example Object
{
"component_version": {
"schema": {
"bio": {
"type": "richtext",
"pos": 0,
"id": "ih9EQ581Qs-rEN3plhuV1w"
},
"name": {
"type": "text",
"pos": 1,
"id": "YmDMYXlRQqqPGXAcLTHXhQ"
}
}
}
}