List Broadcast Clicked Links
list-broadcast-clicked-linksGet the links clicked in an email broadcast, ranked by total clicks. Review each URL's total and unique clicks to assess campaign engagement and identify top-performing content.
Instructions
Purpose: List the links clicked in a broadcast, ranked by total clicks.
Returns: For each link: id (opaque pagination cursor for that row, not an entity id), url, clicks (total), unique_clicks. Use pagination (limit, after/before) for large lists.
When to use:
User asks "what links were clicked in this broadcast?", "top clicked links", "click breakdown for this campaign"
Use get-broadcast for overall broadcast details; use this for per-link click data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Cursor after which to retrieve more (for forward pagination). Cannot be used with "before". | |
| limit | No | Number of links to retrieve. Default: 20, Max: 100, Min: 1 | |
| before | No | Cursor before which to retrieve more (for backward pagination). Cannot be used with "after". | |
| broadcastId | Yes | Broadcast ID or Resend dashboard URL (e.g. https://resend.com/broadcasts/<id>) |