Skip to main content

events/date/{date}

Retrieves all the events that occur on a given date.

Arguments:

  • api_key (required)
  • per_page (optional - default 25)
  • page (optional - default 1)
  • date (required)

Example request:

http://[domain]/api/events/date/2008-12-25.xml?api_key=[api_key]
&per_page=10&page=1

Example response:

<?xml version="1.0" encoding="utf-8"?>
<events date="2008-12-25" category_id="21" page="1"
pages="1" per_page="10" total="1">
<event id="9" pick_of_week="0">
<title>My event</title>
<start_time></start_time>
<end_time></end_time>
<start_date>1230163200</start_date>
<end_date>1230163200</end_date>
<next_date>1230163200</next_date>
<interval>1</interval>
<location>Leicester</location>
<cost>£10.00</cost>
<content><![CDATA[Description]]></content>
<categories>
<category id="21" name="Category one” />
</categories>
</event>
</events>