(Deprecated) GET /artist/widget_<artist_id>_<lang>.json - Detail of an artist

Get all the information of an artist.
The main information (title, subtitle, etc.), links, artist shows, artist tags, and events shows where the artist is performing. 

Endpoint URL

https://s3.amazonaws.com/goeventweb-static.greencopper.com/<hash>/<project_tag>/assets/widgets/artist/widget_<artist_id>_<lang>.json

Request information

Request type

GET

Request parameters

ParameterMandatoryDescription
project_tagX


See common endpoint parameters
for more information

hashX
langX
artist_idX

Artist unique identifier.
The artist identifier must be an existing one from the "List of artists" method.

Value: Integer value (e.g. "52")

Response information

A dictionary of all artist information.

  • On the "main" key,the id, the title, subtitle, image large URL, the photo credit, and description
  • On the "extras" key, the country and style of the artist
  • On the "generics" key, some generics fields that can be opened on gomanager tools if you need to put extra information. By default, all fields are empty.
  • On the "links" key, all the links associated to the artist. For each link, the original link, the type of the link (website, facebook, twitter, youtube, vimeo, spotify, deezer, soundcloud), and the embedded URL to show them in iframe, if possible.
  • On the "shows" key, all the shows of the artist. For each show, the main information can be found (ID, venue title and subtitle, real start and end date and time, ticket link URL, price, tags, venue title).
  • On the "showsTags" key, a dict of shows tags per tag ID. For each tag information are given (id, title, and color).
  • On the "events" key, all the shows events where the artist is performing. For each show event, the main information can be found (event ID, event title, venue title, real start and end date and time, ,formatted date, event image thumbnail URL, show tags and show tag main color).
  • On the "artistTags" key, all the artist tags associated to the artist. For each tag information are given (id, title, and color).

Response format

JSON

Response sample

[
    {
        "main": {
            "id": "50",
            "title": "Blood Squad",
            "subtitle": null,
            "photocredit": null,
            "description": "<p>Since 2007, Seattle improvisational quartet Blood Squad has been thrilling audiences with its unique blend of comedy and horror. Utilizing a deep knowledge of and genuine love for the classic teen slasher flick, Blood Squad takes a title created by the audience and turns it into a fully improvised horror “film”, complete with descriptive edits and asides. No blood, no props, no costumes, no mercy! Viewer discretion is always strongly advised.</p>",
            "imageURL": "//goevent-images.s3.amazonaws.com/.../xl_artist_50_20140408074449_220c393a.jpg"
        },
        "extras": {
            "country": null,
            "style": null
        },
        "generics": {
            "generic1": null,
            "generic2": null,
            "generic3": null,
            "generic4": null,
            "generic5": null,
            "generic6": null
        },
        "links": [
            {
                "link": "http://bloodsquad.org",
                "info": {
                    "type": "web"
                },
                "title": "Official website"
            },
            {
                "link": "https://www.facebook.com/thebloodsquad",
                "info": {
                    "type": "facebook",
                    "subtype": null,
                    "embed": null
                },
                "title": "Facebook"
            },
            {
                "link": "https://twitter.com/thebloodsquad",
                "info": {
                    "type": "twitter",
                    "subtype": null,
                    "embed": null
                },
                "title": "Twitter"
            },
            {
                "link": "http://open.spotify.com/user/1224832774/playlist/635tJSKWLUfcxanGgWp4jm",
                "info": {
                    "type": "spotify",
                    "subtype": "playlist",
                    "embed": "//embed.spotify.com/?uri=http://open.spotify.com/user/1224832774/playlist/635tJSKWLUfcxanGgWp4jm"
                },
                "title": "Spotify playlist"
            },
        ],
        "shows": [
            {
                "showId": "67",
                "showDateStart": "2014-08-31",
                "showTimeStart": "14:00:00",
                "showDateEnd": "2014-08-31",
                "showTimeEnd": "16:15:00",
                "formattedDate": "Sunday, August 31",
                "showLinkTicket": "http://...",
                "showPrice": "32 dollars",
                "venueTitle": "Theatre Puget Sound Stage",
                "tags": null,
                "color": null
            },
            {
                "showId": "306",
                "showDateStart": "2014-09-01",
                "showTimeStart": "13:00:00",
                "showDateEnd": "2014-09-01",
                "showTimeEnd": "14:25:00",
                "formattedDate": "Monday, September  1",
                "showLinkTicket": null,
                "showPrice": "Free",
                "venueTitle": "Theatre Puget Sound Stage",
 				"tags": null,
                "color": null
            },
			...
        ],
        "showsTags": {
            "80": {
                "id": "80",
                "title": "Music",
                "color": "#337FC3"
            },
            "81": {
                "id": "81",
                "title": "Visual Arts",
                "color": "#F0C330"
            },
            ...
        },
        "events": [
			{
                "eventId": "170",
                "eventName": "Workshop",
                "venueName": "Red room",
                "showDateStart": "2014-09-01",
                "showTimeStart": "14:30:00",
                "showDateEnd": "2014-09-01",
                "showTimeEnd": "16:30:00",
                "formattedEventDate": "Monday, September  1",
                "imageURL": "//s3.amazonaws.com/goevent-web-master-v6full/data/Images/th_default.png?lm=1396564489",
                "gcInfo": "event$workshop/170",
                "tags": null,
                "color": null
            }
		],
        "artistTags": [
            {
                "id": "89",
                "title": "Theatre",
                "color": "#E44D42"
            }
        ]
    }
]