# List campaign clicks
# HTTP method: GET
https://api.sender.net/v2/campaigns/{id}/clicks
Returns a list of subscribers who clicked a link in this campaign.
id string
required
Campaign ID
Code snippets
Response example
{
"data": {
"recipient_id": "W6EX1PJ",
"link_id": "o2XYWj",
"created_at": "2021-05-13 17:00:07",
"email": "[email protected]",
"url": "www.sender.net"
},
"links": {
"first": "https://api.sender.net/v2/campaigns/epkoYp/clicks?page=1",
"last": "https://api.sender.net/v2/campaigns/epkoYp/clicks?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "pagination.previous",
"active": false
},
{
"url": "https://api.sender.net/v2/campaigns/epkoYp/clicks?page=1",
"label": 1,
"active": true
},
{
"url": null,
"label": "pagination.next",
"active": false
}
],
"path": "https://api.sender.net/v2/campaigns/epkoYp/clicks",
"per_page": 10,
"to": 1,
"total": 1
}
}