(Deprecated) GET /timeline/widget_items_<date>_<lang>.json - List of shows of a specific date

Get the list of shows for a specific date, ordered by time.
For each show, the main information is returned (artist or event title, date and time start, venue ID, tags and tag main color).

Endpoint URL

https://s3.amazonaws.com/goeventweb-static.greencopper.com/<hash>/<project_tag>/assets/widgets/timeline/widget_items_<date>_<lang>.json

Request information

Request type

GET

Request parameters

ParameterMandatoryDescription
project_tagX


See common endpoint parameters
for more information

hashX
langX
dateX

Date in US format (YYYY-MM-DD).
The date must be an existing one from the "List of shows dates" method.

Value: "YYYY-MM-DD" (e.g. "2014-08-30")

Response information

A dictionary of all shows of a specific date ordered by time, and all shows venues with their associated orders.

  • On the "venues" key, a dict of all the shows venues. For each show venue, the ID, the title and the "order" of that venue. 
    Can be used to display a list of venues to filter shows, or to create headers per venue.
  • On the "venuesOrder" key, the list of venue IDs ordered in the same way it is on gomanager with the "order" property. 
    Can be used to sort venues per order.
  • On the "items" key, a list of associated shows of that date ordered by time. For each, the main show information can be found (ID, artist or event title, schedule object type ("artist" or "event"), the real start and end date and time, image thumbnail URL, venue ID, ticket link, show tags and show tag main color. 

Response format

JSON

Response sample

{
    "venues": {
        "5": {
            "title": "Main stage",
            "order": "2"
        },
        "6": {
            "title": "Green stage",
            "order": "1"
        },
        ...
    },
    "venuesOrder": [
        "6",
        "5",
        ...
    ],
    "items": [
        {
            "id": "79",
            "title": "Chance The Rapper",
            "favoriteId": null,
            "dateStart": "2013-08-24",
            "timeStart": "01:00:00",
            "dateEnd": "2013-08-24",
            "timeEnd": "02:40:00",
            "formattedTimeStart": " 1:00 AM",
            "formattedTimeEnd": " 2:40 AM",
            "imageURL": "//goevent-images.s3.amazonaws.com/m.../th_artist_21_20140304020436_1564e777.jpg",
            "gcInfo": "artist$chance-the-rapper/21",
            "venueId": "7",
            "ticketLink": "http://...",
            "tags": ",67,",
            "color": "#C0C000",
            "objectId": "21",
            "type": "artist"
        },
        ...
    ]
}