Liveblog Feed API

Overview

The Liveblog Feed API provides RSS, Atom, and JSON Feed compatible formats for liveblog content. This allows easy access to liveblog content.

Endpoints

RSS Feed

Request: GET /api/embed/v4/feed/liveblog.rss

Returns: RSS 2.0 format (Content-Type: application/rss+xml; charset=utf-8)

Atom Feed

Request: GET /api/embed/v4/feed/liveblog.atom

Returns: Atom 1.0 format (Content-Type: application/atom+xml; charset=utf-8)

JSON Feed

Request: GET /api/embed/v4/feed/liveblog.json

Returns: JSON Feed 1.1 format (Content-Type: application/json; charset=utf-8)

Query Parameters

Required Parameters

  • liveblogId: (String, required) The integration ID of the liveblog

Optional Parameters

  • limit: (Integer) Limit the number of events included in the feed (default: 20)
  • sort: (String) Sort order for events: asc (oldest first) or desc (newest first, default)
  • continue_event_id: (String) For pagination, specifies the last event id in the previous response
  • include_continue_event: (true/false, default: false) For pagination, should the event specified by continue_event_id itself be included in the response
  • themeId: (String) Theme ID to apply theme-specific configuration for filtering and sorting

Additional theme configuration parameters may be passed through query parameters and will be merged with the theme configuration if a themeId is provided.

Caching

This feed is cached, updates may be delayed by several seconds!

Example Usage

RSS Feed

curl "https://www.tickaroo.com/api/embed/v4/feed/liveblog.rss?liveblogId=YOUR_LIVEBLOG_ID&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET"