Skip to main content
GET
/
v1
/
twitter
/
spaces
/
broadcast
/
{broadcast_id}
Get broadcast details
curl --request GET \
  --url https://scrapebadger.com/v1/twitter/spaces/broadcast/{broadcast_id} \
  --header 'x-api-key: <api-key>'
{
  "id": "1rmGPkBbVzqKN",
  "title": "<string>",
  "state": "<string>",
  "media_key": "<string>",
  "created_at": "<string>",
  "started_at": "<string>",
  "width": 123,
  "height": 123,
  "total_viewers": 123
}

Authorizations

x-api-key
string
header
required

Your ScrapeBadger API key. You can find this in your dashboard at https://scrapebadger.com/dashboard/api-keys.

Path Parameters

broadcast_id
string
required

The unique ID of the broadcast.

Example:

"1rmGPkBbVzqKN"

Response

Successfully retrieved broadcast details.

Live video broadcast data.

id
string
required

Unique broadcast identifier.

Example:

"1rmGPkBbVzqKN"

title
string | null

Title of the broadcast.

state
string | null

Current state of the broadcast (e.g., running, ended).

media_key
string | null

Media key for the broadcast stream.

created_at
string | null

Timestamp when the broadcast was created.

started_at
string | null

Timestamp when the broadcast started.

width
integer | null

Video width in pixels.

height
integer | null

Video height in pixels.

total_viewers
integer | null

Total number of viewers.