v3

latestOpenAPI 3.0.0©2023 All Rights Reserved2026-08-0659315450.0 KB
analytics

<Warning>

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.
</Warning> <Availability> To use this API, your integration must act on behalf of a user who is a member of a [Canva Enterprise](https://www.canva.com/enterprise/) organization. </Availability>

Lists trackable links and their metrics for a design.

get/v1/designs/{designId}/analytics/links

Path parameters

designIdstring required

The design ID.

Query parameters

limitinteger
Example:50

The maximum number of links to return per page.

continuationstring
Example:RkFGMgXlsVTDbMd:MR3L0QjiaUzycIAjx0yMyuNiV0OildoiOwL0x32G4NjNu4FwtAQNxowUQNMMYN

If the success response contains a continuation token, there are more links you can list. You can use this token as a query parameter and retrieve more links from the list, for example /v1/designs/{designId}/analytics/links?continuation={continuation}.

To retrieve all links, you might need to make multiple requests.

Response

OK

continuationstring

If the success response contains a continuation token, there are more links you can list. You can use this token as a query parameter and retrieve more links from the list, for example /v1/designs/{designId}/analytics/links?continuation={continuation}.

To retrieve all links, you might need to make multiple requests.

Example response

{
  "items": [
    {
      "link_id": "hddb98a3716",
      "name": "Newsletter link",
      "total_view_count": 64,
      "unique_view_count": 41,
      "total_view_duration_seconds": 2580,
      "average_view_duration_seconds": 40,
      "last_viewed_at": 1748044800
    }
  ],
  "continuation": "RkFGMgXlsVTDbMd:MR3L0QjiaUzycIAjx0yMyuNiV0OildoiOwL0x32G4NjNu4FwtAQNxowUQNMMYN"
}