/p5-WebService-Songkick

WebService::Songkick - A simple and fast interface to the songkick API

Primary LanguagePerlOtherNOASSERTION

NAME

WebService::Songkick - A simple and fast interface to the Songkick API

SYNOPSIS

use WebService::Songkick;

my $songkick = new WebService::Songkick(apikey => 'YOUR_API_KEY');

DESCRIPTION

The module provides a simple interface to the Songkick API. To use this module, you must first sign up at http://www.songkick.com/developer/ to receive an API key.

METHODS

These methods usage: http://www.songkick.com/developer/

artists_calendar

my $data = $songkick->artists_calendar(331163);
$data = $songkick->artists_calendar('mbid:65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab');

venues_calendar

my $data = $songkick->venues_calendar(6239);

metro_areas_calendar

my $data = $songkick->metro_areas_calendar(30717);

users_calendar

my $data = $songkick->users_calendar('hondallica', reason => 'tracked_artist');

events

my $data = $songkick->events(artist_name => 'Metallica');

search_artists

my $data = $songkick->search_artists(query => 'Metallica');

search_venues

my $data = $songkick->search_venues(query => 'Tokyo');

search_locations

my $data = $songkick->search_locations(query => 'Tokyo');

SEE ALSO

http://www.songkick.com/developer/

LICENSE

Copyright (C) Hondallica.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Hondallica hondallica@gmail.com