Applying to use the RSS

To apply for RSS API access, sign up at: https://evvnt.com/partner

Terms and conditions apply https://evvnt.com/api-terms-conditions/

RSS API Documentation

Evvnt delivers calendar data via RSS feeds. To find the URL of your calendar's RSS feed, look in the 'developers' section of your partner back office.

The structure of our our RSS feeds is as follows:

Section of FeedFieldField description
channel title Name of the feed
link URL of the calendar page
description Description of the feed
dc:source Data sources configured to be included in the feed
item title The title of the event
link URL of the event listing in the calendar
guid Unique identifier (which also happens to be the URL of the event listing in the calendar)
description Event listing description
media:content Images associated with the event listing
dc:date Start date/time of the event in the local time zone
dc:subject Category of the event
georss:point Latitude and Longitude of the event venue (space delimited)
georss:featureTypeTag Location type. Always 'venue'
georss:featureName Name of the venue

Here is an example:

  <rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" version="2.0">
    <channel>
      <title>Evvnt events calendar</title>
      <link>https://evvnt.com/events/</link>
      <description>Events publisher to the Evvnt events calendar</description>
      <dc:source>evvnt</dc:source>
      <item>
        <title>Top Flight Time Machine</title>
        <link>
          https://evvnt.com/events/?_ev_id=433925_top_flight_time_machine
        </link>
        <guid>
          https://evvnt.com/events/?_ev_id=433925_top_flight_time_machine
        </guid>
        <description>
          <![CDATA[
            Andy Dawson and Sam Delaney’s highly-acclaimed podcast is finally reimagined as a theatrical experience. This is no ordinary live recording of a podcast episode – Sam and Andy will be carrying out extreme physical movement, while the audience will experience similar emotional movement. This is it!
          ]]>
        </description>
        <media:content url="https://s3-eu-west-1.amazonaws.com/evvnt.production/uploads/event_image/402312/event_image/tftm-3375-x-1500-e1557910862964.png"/>
        <dc:date>2019-11-13T18:15:00+00:00</dc:date>
        <dc:subject>Comedy</dc:subject>
        <dc:source>evvnt</dc:source>
        <georss:point>52.474568 -1.896585</georss:point>
        <georss:featureTypeTag>venue</georss:featureTypeTag>
        <georss:featureName>Glee Club Birmingham</georss:featureName>
      </item>
    </channel>
  </rss>