Skip to main content
GET
/
broadcasts
List broadcasts
curl --request GET \
  --url https://api.getvero.com/api/v2/broadcasts \
  --header 'Authorization: <api-key>'
import requests

url = "https://api.getvero.com/api/v2/broadcasts"

headers = {"Authorization": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};

fetch('https://api.getvero.com/api/v2/broadcasts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getvero.com/api/v2/broadcasts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.getvero.com/api/v2/broadcasts"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.getvero.com/api/v2/broadcasts")
.header("Authorization", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.getvero.com/api/v2/broadcasts")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "id": 42,
      "name": "Welcome to the weekly digest",
      "channel": "email",
      "schedule": {
        "type": "single",
        "timezone_detection": false
      },
      "status": "active",
      "created_at": "2026-03-01T10:00:00Z",
      "updated_at": "2026-03-01T10:00:00Z"
    }
  ],
  "has_more": false,
  "next_cursor": null
}
{
"errors": [
{
"message": "<string>"
}
]
}

Authorizations

Authorization
string
header
required

Accepts either a raw API key or Bearer <key>.

Headers

revision
string

Optional dated API revision for the request. Must use YYYY-MM-DD format.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-03-01"

Query Parameters

limit
integer
default:25

Page size (1-100, default 25).

Required range: 1 <= x <= 100
sort
enum<string>
default:updated_at_desc

Sort order.

Available options:
updated_at_desc,
updated_at_asc,
created_at_desc,
created_at_asc,
name_asc,
name_desc
status
string

Filter by status. Comma-separated; archived broadcasts are excluded unless archived is included. Invalid values return 422.

Example:

"draft,active,paused"

schedule.type
string

Filter by schedule type. Comma-separated; both are included if omitted. Invalid values return 422.

Example:

"single,recurring"

cursor
string

Opaque pagination cursor from a previous response's next_cursor.

Response

Broadcasts listed.

Cursor-paginated list of broadcasts. No total count is exposed.

data
object[]
required
has_more
boolean
required

Whether more results exist beyond this page.

next_cursor
string | null
required

Opaque cursor for the next page, or null when has_more is false.