(Deprecated) GET /artists/widget_items_<lang>.json - List of artists

Get the list of artists, with orders by ID, alphabetical, headliner and days.
For each artist, a limited set of information is returned (id, title, subtitle, image, shows and tags).

Endpoint URL

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

Request information

Request type

GET

Request parameters

ParameterMandatoryDescription
project_tagX


See common endpoint parameters
for more information

hashX
langX

Response information

A dictionary of all artists, all headliners order, all alphabetical letters, and all days.

  • On the "artists" key, a dict of artist IDs. For each main artist information can be found (ID, title, subtitle, image URL, tags IDs, main tag color, show dates, and shows).
    For each artist show, the ID, venue title, date and formatted date.
  • On the "alphabetical" key, a list of all the first letters of the artists. For each letter, the associated artists IDs. 
    Can be used to display separators between artist names. 
  • On the "headliner" key, the list of artist IDs ordered in the same way it is on gomanager with the "order" parameter. 
    Can be used to display artists per headliners.
  • On the "byDay" key, the list of dates of shows associated to artists. For each date, the associated artists IDs, and the formatted date.
    Can be used to display list of dates and filter artists per date. 

Response format

JSON

Response sample

[
    {
        "artists": {
            "3": {
                "id": "3",
                "title": "Kendrick Lamar",
                "subtitle": null,
                "imageURL": "//goevent-images.s3.amazonaws.com/.../web/artist_3_20140331112744_d57b5a70.jpg",
                "gcInfo": "artist$kendrick-lamar/3",
                "shows": [
                    {
                        "id": 153,
                        "venueTitle": "Sapporo scene",
                        "formattedDate": "Sunday, August 31",
                        "date": "2014-08-31",
						"title": "Kendrick Lamar"
                    }
                ],
                "tags": ",8,159,164,",
                "color": "#00a0a0",
                "dates": [
                    "2014-08-31"
                ]
            },...
        },
        "alphabetical": {
           "A": {
                "letter": "A",
                "artists": [
                    "48"
                ]
            },
            "W":{
                "letter": "W",
                "artists": [
                    "18",...
                ]
            }
        },
        "headliner": [
            "48",...
            "26"
        ],
        "byDay": {
            "2014-08-31": {
                "artists": [
                    "48", ...
                    "26"
                ],
                "formattedDate": "Sun 31"
            },
            "2014-09-01": {
                "artists": [
                    "27", ...
                    "30"
                ],
                "formattedDate": "Mon  1"
            },
            "2014-08-30": {
                "artists": [
                    "56", ...
                    "18"
                ],
                "formattedDate": "Sat 30"
            }
        }
    }
]