I am using the genres filter on Soundcloud API, the codes:
$tracks = $client->get('tracks', array('genres' => 'punk'));
It is working well and return all tracks which genre are punk, but when I try to change the codes:
$tracks = $client->get('tracks', array('genres' => 'rock'));
It can not return all tracks which genre are rock.
My question is: where can we find correct music genres from Soundcloud?
Maybe the Soundcloud API which should give us a method to get a list for common genres.