Bevy API GDG
  1. Bevy Virtual
Bevy API GDG
  • Attendee
    • Add Attendees
      POST
    • Get Attendee Search
      GET
    • Update Attendee
      PUT
    • Send Event Email
      PUT
    • Resend Event Email
      POST
    • Get Event Attendees
      GET
    • Checkin Attendee
      PUT
    • Delete attendee registration
      DELETE
    • Get Attendee by ID
      GET
    • Delete all attendee registrations by event
      DELETE
  • Order
    • Add Order
      POST
    • Update Order
      PUT
    • Check Order by ID
      GET
  • Membership
    • Add Membership
      POST
  • Bevy Virtual
    • Get Main Stage Video
      GET
    • Get Session Video IDs
      GET
    • Get Session Video URLs
      GET
  • Chapter
    • Get Chapters Status
      GET
    • Get Chapter Regions
      GET
    • Create Chapter
      POST
    • List chapters
      GET
    • Get Chapter by ID
      GET
    • List Chapter Events
      GET
    • List Chapter Members
      GET
    • Add Chapter Member
      POST
    • List Chapter Team
      GET
    • Add Chapter Team Member
      POST
    • Update Chapter Team Member
      PUT
    • Partial Update Chapter Team Member
      PATCH
    • Delete Chapter Team Member
      DELETE
    • Add chapter's members in batch
      POST
    • Delete chapter's member
      DELETE
  • Cohosted Events
    • List collaborating chapters
    • Delete cohosted event
    • Add all chapters as cohosts
    • Chapters a user can add as a cohost
  • Event
    • Get Event Counts
    • Get Event by ID
    • List events
    • List event types
    • Get Event Type by ID
    • List Event Attendees
    • List event tags
  • Search
    • Search chapters
    • Search events
  • User
    • List users
    • Get User by ID or Email
    • Update User
    • Delete User
    • Deactivate User
    • List user's events
    • List user's chapters
    • List user's chapter teams
    • Create Prospective User
    • Opt out of emails
    • Get User Counts
  1. Bevy Virtual

Get Main Stage Video

GET
/streaming/archive/
Bevy Virtual
Access the Main Stage recording URL's immediately after the recording has completed (i.e. after you hit the STOP Broadcast button on the backstage). You are able to access this information even before the event completes. All Mainstage Broadcasts are automatically recorded. If you do record a mainstage broadcast by clicking the "Record" button, then you will also have backstage recordings and you'll find them in the Session Video ID's api call.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/streaming/archive/?event'
Response Response Example
200 - Example 1
{
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 7890,
            "url": "https://stream.mux.com/n01sm00/high.mp4?download=Recording_-_01:23:45",
            "duration": 24,
            "created_date": "2024-01-09T17:59:22Z"
        }
    ]
}

Request

Query Params
event
integer 
required
The ID of the event to retrieve the main stage video for. You can find this in the Bevy dashboard, by looking at the URL of the event

Responses

🟢200OK
application/json
successful operation
Body
count
number 
required
Example:
1
next
string  | null 
required
Example:
null
previous
string  | null 
required
Example:
null
results
array [object {4}] 
required
id
integer 
required
Example:
7890
url
string 
required
Example:
https://stream.mux.com/n01sm00/high.mp4?download=Recording_-_01:23:45
duration
number 
required
Duration of the video in seconds
Example:
24
created_date
string 
required
Example:
2024-01-09T17:59:22Z
🟠400Bad Request
🔴500Server Error
Previous
Add Membership
Next
Get Session Video IDs
Built with