Get All List Segments

Retrieve all segments created within a specific subscriber list. Each segment includes a unique identifier, name, and the number of subscribers it contains.

🧩 Get All List Segments

Retrieve all available segments associated with a specific subscriber list. Segments allow you to filter and target contacts based on predefined conditions.

🔹 HTTP Request

GET API-URL/lists/LIST-UNIQUE-ID/segments

🔸 URL Segments

Segment
Required
Description

LIST-UNIQUE-ID

Yes

Unique identifier of the subscriber list.

🔸 Query Parameters

Parameter
Default
Description

page

1

Page number to retrieve.

per_page

10

Number of segments to return per page.

🔐 Authorization Header

X-API-KEY: your-api-key-here

💻 PHP Example

// GET ALL ITEMS
$response = $endpoint->getSegments('LIST-UNIQUE-ID');

// DISPLAY RESPONSE
echo '<pre>';
print_r($response->body);
echo '</pre>';

📦 Sample JSON Response