Skip to main content

Overview

Use this endpoint to read upcoming events across the projects in a workspace.
  • Endpoint: GET https://api.broadcast.events/workspace/events
  • Auth: Authorization: Bearer <api-key>
The feed returns upcoming events for the workspace behind the API key. It merges events across venue, promoter, and festival projects, dedupes them by event id, and sorts results by start time. For a history of API and documentation changes, see the API changelog.

Approach

This endpoint is designed for authenticated workspace integrations that need more context than the public feed. The workspace route uses the API key itself as the boundary:
  • The key decides which workspace is queried.
  • The key can optionally restrict results to a subset of allowed projects.
  • The response includes the public event fields plus workspace-specific fields such as publishing metadata, richer ticketing details, related events, and JSON-LD.
The response meta.projects lists the distinct workspace projects represented in the returned page of results. Source of truth: Event details can change after you fetch them. We recommend linking end users to the canonical Broadcast event using links.self, and to venue pages or profile links when relevant.

Caching

Responses may be cached on our side for about 15 seconds to keep the feed fast and protect the data layer.

Access and authentication

This API is currently available on request. Contact support@broadcast.events to enable access for your workspace.
Send your workspace API key as a bearer token:
Raw HTTP
The key must include the workspace.events.read scope.

Query parameters

Notes:
  • Ticketmaster affiliate wrapping is disabled for this route.
  • UTM parameters are enabled by default unless you pass disableUtmLinks=true.
  • Invalid or non-positive limit values fall back to 50.

Example request

Example response

Use the copy control on the code block to grab the full JSON.
Example response

Response fields

Empty values are omitted from the response, so some optional fields may be missing.

At a glance

Response meta

meta.projects[]

Event object

The workspace event object starts with the public event shape and adds a few workspace-specific fields.

timing

classification

attendance

attendance.price

attendance.callToAction

location

location.venue

location.venue.address

location.venue.geo

location.venue.profile

media

Image asset

image.variants

media.embeds[]

Event meta

source

relatedEvents

structuredData

Error responses

Notes

  • This endpoint merges events across venue, promoter, and festival projects in the workspace.
  • Events are deduped by event id and sorted by start time before the final limit is applied.
  • meta.projects reflects the projects represented in the current returned slice, not every project in the workspace.
  • The route is workspace-scoped and intended for richer internal integrations than the public feed.
Last modified on June 19, 2026