Skip to main content
GET
/
v1
/
sends
List or get campaign sends
curl --request GET \
  --url https://brew.new/api/v1/sends \
  --header 'Authorization: Bearer <token>'
{
  "sends": [
    {
      "emailId": "eml_promo",
      "status": "sent",
      "audienceId": "aud_subscribers",
      "runId": "wrun_abc",
      "completedAt": "2026-04-08T12:34:56.000Z",
      "stats": {
        "sent": 1200,
        "delivered": 1180,
        "opened": 540,
        "clicked": 96,
        "bounced": 20,
        "complained": 1,
        "unsubscribed": 4
      },
      "createdAt": "2026-04-08T12:00:00.000Z",
      "updatedAt": "2026-04-08T12:34:56.000Z"
    }
  ],
  "pagination": {
    "limit": 100,
    "cursor": null,
    "hasMore": false
  }
}

Authorizations

Authorization
string
header
default:Bearer brew_your_api_key
required

Send your Brew API key as Authorization: Bearer brew_xxx.

Query Parameters

emailId
string
Minimum string length: 1
status
enum<string>
Available options:
scheduled,
queued,
sending,
sent,
failed
from
string<date-time>
to
string<date-time>
limit
integer

Page size (1–100). Defaults to 100.

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor echoed from the previous page’s pagination.cursor. Omit for the first page.

Required string length: 1 - 512

Response

Campaign sends for this brand.

sends
object[]
required
pagination
object