/v1/designs

GET {{baseUrl}}/v1/designs?query=<string>&continuation=<string>&ownership=<string>&sort_by=<string>

Lists metadata for all the designs in a Canva user's projects. You can also:

  • Use search terms to filter the listed designs.
  • Show designs either created by, or shared with the user.
  • Sort the results.

Request Params

KeyDatatypeRequiredDescription
querystringLets you search the user's designs, and designs shared with the user, using a search term or terms.
continuationstringIf the success response contains a continuation token, the list contains more designs
you can list. You can use this token as a query parameter and retrieve more
designs from the list, for example
/v1/designs?continuation={continuation}.

To retrieve all of a user's designs, you might need to make multiple requests. | | ownership | string | | Filter the list of designs based on the user's ownership of the designs. This can be one of the following:

  • owned: Designs owned by the user.

  • shared: Designs shared with the user.

  • any: Designs owned by and shared with the user. | | sort_by | string | | Sort the list of designs. This can be one of the following:

  • relevance: (Default) Sort results using a relevance algorithm.

  • modified_descending: Sort results by the date last modified in descending order.

  • modified_ascending: Sort results by the date last modified in ascending order.

  • title_descending: Sort results by title in descending order.

  • title_ascending: Sort results by title in ascending order. |

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;items&quot;:[{&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;owner&quot;:{&quot;team_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;user_id&quot;:&quot;\u003cstring\u003e&quot;},&quot;urls&quot;:{&quot;edit_url&quot;:&quot;\u003cstring\u003e&quot;,&quot;view_url&quot;:&quot;\u003cstring\u003e&quot;},&quot;title&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;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;owner&quot;:{&quot;team_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;user_id&quot;:&quot;\u003cstring\u003e&quot;},&quot;urls&quot;:{&quot;edit_url&quot;:&quot;\u003cstring\u003e&quot;,&quot;view_url&quot;:&quot;\u003cstring\u003e&quot;},&quot;title&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;continuation&quot;:&quot;\u003cstring\u003e&quot;}