Skip to content

Retrieve Multiple Ideas

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

Returns an array of idea objects.

  • :space_id required number

    Numeric ID of a space

  • sort_by string

    Possible values: created_at:asc, created_at:desc, updated_at:asc, updated_at:desc, short_filename:asc, short_filename:desc

  • per_page number

    Default: 25. Max: 100. Learn more under Pagination.

  • filter_by_name string | object

    Filter by a specific name of your idea.

  • by_status string

    Filter ideas based on their status.

  • with_tag string

    Filter by specific tag(s). Multiple tags can be provided as a comma-separated string (treated like an OR operator). Examples: with_tag=featured with_tag=featured, editors_choice

  • in_trash boolean

    Filter by items in the trash folder

  • favourite boolean

    Filter by your favourites.

  • by_assignee_id number

    Filter by the assignee’s id

  • discussions Idea's Discussions Object[]
  • comments Idea's Comments Object[]
  • by_ids string

    Filter by ids (comma separated)

Example Request

curl "https://mapi.storyblok.com/v1/spaces/606/ideas/" \
-H "Authorization: YOUR_OAUTH_TOKEN"

Query Examples

spaces/:space_id/ideas?sort_by=created_at:asc
spaces/:space_id/ideas?per_page=10
spaces/:space_id/ideas?by_status=in_review
spaces/:space_id/ideas?by_assignee_id=12345