Get all events in a specific location by country or city name.
static
PaginatedResult
getEvents
([
string $location =
null], [
float $lat =
null], [
float $long =
null], [
integer $distance =
null], [
integer $page =
null])
-
string
$location: Specifies a location to retrieve events for (service returns nearby events by default). (Optional)
-
float
$lat: Specifies a latitude value to retrieve events for (service returns nearby events by default). (Optional)
-
float
$long: Specifies a longitude value to retrieve events for (service returns nearby events by default). (Optional)
-
integer
$distance: Find events within a specified distance. (Optional)
-
integer
$page: Display more results by pagination. (Optional)
Get the most popular artists on last.fm by country.
static
array
getTopArtists
(string $country)
-
string
$country: country A country name, as defined by the ISO 3166-1 country names standard. (Required)
Get the most popular tracks on last.fm by country.
static
array
getTopTracks
(string $country, [string $location = null])
-
string
$country: country A country name, as defined by the ISO 3166-1 country names standard. (Required)
-
string
$location: location A metro name, to fetch the charts for (must be within the country specified). (Optional)