artist.getSimilar

Description: 

Retrieves a list of artists similar to a specific artist
From: v. 1.0


Authentication : NOT REQUIRED
Parameters: 
apikey : application developer identifier [R]
country : catalogue country
format : output format
artistCode : artist's identifier within Dada catalogue [R]
page : result page number
step : number of elements to retrieve

Return values: 

List of artist entities


Sample call
http://api.playme.com/artist.getSimilar?artistCode=421

Sample Result: XML
<?xml version="1.0" encoding="UTF-8"?>
<response>
  <artists>
    <artist>
      <artistCode>67024</artistCode>
      <name><![CDATA[Tin Machine]]></name>
      <url><![CDATA[http://contents_site_url/artist_page]]></url>
    </artist>
    <artist>
      <artistCode>2063</artistCode>
      <name><![CDATA[Iggy Pop]]></name>
      <url><![CDATA[http://contents_site_url/artist_page]]></url>
    </artist>
    <artist>

      <artistCode>960</artistCode>
      <name><![CDATA[Lou Reed]]></name>
      <url><![CDATA[http://contents_site_url/artist_page]]></url>
    </artist>
    <artist>
      <artistCode>9336</artistCode>
      <name><![CDATA[T. Rex]]></name>
      <url><![CDATA[http://contents_site_url/artist_page]]></url>
    </artist>
  </artists>
</response>

Sample Result: JSON
{
  "response": {
    "artists": [{
      "artistCode": "67024",
      "name": "Tin Machine",
      "url": "http://contents_site_url/artist_page/"
    },
    {
      "artistCode": "2063",
      "name": "Iggy Pop",
      "url": "http://contents_site_url/artist_page/"
    },
    {
      "artistCode": "960",
      "name": "Lou Reed",
      "url": "http://contents_site_url/artist_page/"
    },
    {
      "artistCode": "9336",
      "name": "T. Rex",
      "url": "http://contents_site_url/artist_page/"
    }]
  }
}