# Get hard bounces of a campaign

# HTTP method: GET

https://api.sender.net/v2/campaigns/{id}/hard_bounces

Returns a list of subscribers who hard-bounced in this campaign.

id string required

Campaign ID

Code snippets

Response example

{
  "data": {
    "recipient_id": "gJqN9mj",
    "email": "[email protected]",
    "message": null,
    "created_at": "2021-05-13 17:05:03"
  },
  "links": {
    "first": "https://api.sender.net/v2/campaigns/bYyY6M/hard_bounces?page=1",
    "last": "https://api.sender.net/v2/campaigns/bYyY6M/hard_bounces?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/bYyY6M/hard_bounces?page=1",
        "label": 1,
        "active": true
      },
      {
        "url": null,
        "label": "pagination.next",
        "active": false
      }
    ],
    "path": "https://api.sender.net/v2/campaigns/bYyY6M/hard_bounces",
    "per_page": 10,
    "to": 1,
    "total": 1
  }
}