Skip to content
This repository was archived by the owner on Dec 28, 2020. It is now read-only.

API Event Methods

Chris Carlevato edited this page Mar 27, 2017 · 1 revision

Methods

  • events_c - Current Events. Sorted chronologically by event date and time.
  • events_b - Billboard (Featured) Events. Sorted chronologically by event date and time.
  • events_p - Popular Events. Sorted by average daily views, highest average first.
  • events_n - Newest Events. Sorted by published date, newest first.

Request Parameters

  • u - Username to authenticate request.
  • k - API Key to authenticate request.
  • data - Method being requested.

Sample Request

http://demo.helioscalendar.com/api/?u=YOUR_USERNAME&k=YOUR_KEY&data=METHOD

Sample Response

{
"api": {
    "version": "1.0",
    "cal_url": "http://demo.helioscalendar.com",
    "encoding": "ISO-8859-1",
    "generated": "2012-12-16T10:24:10-08:00",
    "contents": "events_current"
},
"0": {
    "id": "142",
    "title": "Easy to Localize and Translate",
    "date_start": "2012-12-16T09:00:00-08:00",
    "date_end": "2012-12-16T12:00:00-08:00",
    "venue_id": "8",
    "venue_name": "Golf Course",
    "venue_add": "1850 Country Club Road",
    "venue_add2": "",
    "venue_city": "Hood River",
    "venue_region": "OR",
    "venue_postal": "97031",
    "venue_country": "USA",
    "venue_lat": "45.6712601",
    "venue_lon": "-121.5859774",
    "contact": "",
    "contact_email": "",
    "contact_phone": "",
    "billboard": "false",
    "image': "http://www.mydomain.com/image.png",
    "series_id": "48c109286ba781593",
    "registration": "none",
    "registration_url": "",
    "categories": {
        "11": "Earth Day",
        "19": "Futbol",
        "24": "Networking"
    }
},
"1": {...},
"N": {...}
}

Clone this wiki locally