/v1/folders/:folderId/items

GET {{baseUrl}}/v1/folders/:folderId/items?continuation=<string>&item_types=<string>

This API is currently provided as a preview. Be aware of the following:

  • There might be unannounced breaking changes.
  • Any breaking changes to preview APIs won't produce a new API version.
  • Public integrations that use preview APIs will not pass the review process, and can't be made available to all Canva users.

Lists the items in a folder, including each item's type.

Folders can contain:

  • Other folders.
  • Assets, such as uploaded images and videos.
  • Designs, such as Instagram posts, Presentations, and Documents (Canva Docs).
  • Brand templates.

Request Params

KeyDatatypeRequiredDescription
continuationstringIf the success response contains a continuation token, the folder contains more items
you can list. You can use this token as a query parameter and retrieve more
items from the list, for example
/v1/folders/{folderId}/items?continuation={continuation}.

To retrieve all the items in a folder, you might need to make multiple requests. | | item_types | string | | Filter the folder items to only return specified types. The available types are: asset, design, folder, and template. To filter for more than one item type, provide a comma-delimited list. |

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;items&quot;:[{&quot;asset&quot;:{&quot;created_at&quot;:&quot;\u003clong\u003e&quot;,&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;tags&quot;:[&quot;\u003cstring\u003e&quot;,&quot;\u003cstring\u003e&quot;],&quot;updated_at&quot;:&quot;\u003clong\u003e&quot;,&quot;import_status&quot;:{&quot;state&quot;:&quot;failed&quot;,&quot;error&quot;:{&quot;code&quot;:&quot;file_too_big&quot;,&quot;message&quot;:&quot;\u003cstring\u003e&quot;}},&quot;thumbnail&quot;:{&quot;height&quot;:&quot;\u003cinteger\u003e&quot;,&quot;url&quot;:&quot;\u003cstring\u003e&quot;,&quot;width&quot;:&quot;\u003cinteger\u003e&quot;}},&quot;type&quot;:&quot;asset&quot;},{&quot;asset&quot;:{&quot;created_at&quot;:&quot;\u003clong\u003e&quot;,&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;tags&quot;:[&quot;\u003cstring\u003e&quot;,&quot;\u003cstring\u003e&quot;],&quot;updated_at&quot;:&quot;\u003clong\u003e&quot;,&quot;import_status&quot;:{&quot;state&quot;:&quot;in_progress&quot;,&quot;error&quot;:{&quot;code&quot;:&quot;file_too_big&quot;,&quot;message&quot;:&quot;\u003cstring\u003e&quot;}},&quot;thumbnail&quot;:{&quot;height&quot;:&quot;\u003cinteger\u003e&quot;,&quot;url&quot;:&quot;\u003cstring\u003e&quot;,&quot;width&quot;:&quot;\u003cinteger\u003e&quot;}},&quot;type&quot;:&quot;asset&quot;}],&quot;continuation&quot;:&quot;\u003cstring\u003e&quot;}