Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ keywords: ["changelog", "API updates", "release notes", "what's new", "API chang

To subscribe to updates, please [**“Turn on notifications”**](https://help.x.com/en/managing-your-account/notifications-on-mobile-devices#:~:text=In%20the%20top%20menu,%20you,you%20would%20like%20to%20receive) for [**@API**](https://x.com/api). You can also follow this changelog in your feed reader via the [**RSS feed**](https://docs.x.com/changelog/rss.xml).

<Update label="Aug 25, 2026" description="X API v2">
### Broadcasts endpoints for live video

Today, we added [Broadcasts endpoints](/x-api/broadcasts/list-broadcasts) to the X API v2. You can now manage live video broadcasts programmatically:

- `GET /2/broadcasts` and `GET /2/broadcasts/{id}` — list your broadcasts and look one up by ID
- `POST /2/broadcasts/scheduled`, `GET /2/broadcasts/scheduled`, and `GET`/`PUT`/`DELETE /2/broadcasts/scheduled/{id}` — create, list, update, and delete scheduled broadcasts
- `POST /2/broadcasts/scheduled/{id}/live` — go live on a scheduled broadcast created with `manual_publish: true`
- `GET`/`POST /2/broadcasts/{id}/chat` — read broadcast chat history and send chat messages to a live broadcast
- `POST /2/broadcasts/{id}/chat/mutes`, `DELETE /2/broadcasts/{id}/chat/mutes/{user_id}`, and `DELETE /2/broadcasts/{id}/chat/{message_id}` — moderate broadcast chat by muting or timing out users and removing messages

These endpoints require user-context (OAuth 2.0) authentication with the new `broadcast.read` and `broadcast.write` scopes.
</Update>

<Update label="Aug 13, 2026" description="X Ads API">
### Updated `video_total_views` definition

Expand Down
18 changes: 18 additions & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,24 @@
"x-api/news/search-news"
]
},
{
"group": "Broadcasts",
"pages": [
"x-api/broadcasts/list-broadcasts",
"x-api/broadcasts/get-a-broadcast",
"x-api/broadcasts/list-scheduled-broadcasts",
"x-api/broadcasts/create-a-scheduled-broadcast",
"x-api/broadcasts/get-a-scheduled-broadcast",
"x-api/broadcasts/update-a-scheduled-broadcast",
"x-api/broadcasts/delete-a-scheduled-broadcast",
"x-api/broadcasts/go-live-on-a-scheduled-broadcast",
"x-api/broadcasts/get-broadcast-chat-history",
"x-api/broadcasts/send-a-chat-message-to-a-live-broadcast",
"x-api/broadcasts/mute-or-time-out-a-user-in-a-broadcast-chat",
"x-api/broadcasts/unmute-a-user-in-a-broadcast-chat",
"x-api/broadcasts/remove-a-chat-message-from-a-live-broadcast"
]
},
{
"group": "Media",
"pages": [
Expand Down