Broadcasts
Get broadcasts created by a user
Get all incoming, ongoing, and finished official broadcasts. The broadcasts are sorted by created date, most recent first.
If you are authenticated as the user whose broadcasts you are requesting, you will also see your private and unlisted broadcasts.
get/api/broadcast/by/{username}
Path parameters
usernamestring required
Query parameters
pageinteger
Example:1
htmlboolean
Convert the "description" field from markdown to HTML
Response
A paginated list of the broadcasts created by a user.
Example response
{
"currentPage": 4,
"maxPerPage": 15,
"currentPageResults": [
{
"tour": {
"createdAt": 1722169800000,
"dates": [
1722169800000,
1722666600000
]
}
}
],
"nbResults": 205194,
"previousPage": 3,
"nextPage": 5,
"nbPages": 13680
}