GET /2/users/:user_id/broadcasts
Supports cursor pagination.
Query parameters
Response (example)
offset string from nextToken as the next pagination_token to fetch the following page.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
GET /2/users/:user_id/broadcasts returns the user’s broadcasts with cursor pagination (up to 100 per page).
GET /2/users/:user_id/broadcasts
GET /2/broadcasts instead, which omits the user ID from the path, supports OAuth 2.0 user context, and adds bulk lookup by ids. Ownership is still enforced through the authenticated user context.| Name | Type | Required | Description |
|---|---|---|---|
pagination_token | string | No | nextToken.offset (or previousToken.offset) from a prior response. |
{
"broadcasts": [
{ ...broadcast object... }
],
"nextToken": { "offset": "..." },
"previousToken": { "offset": "..." }
}
offset string from nextToken as the next pagination_token to fetch the following page.