The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

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

SYNOPSIS

    use WebService::Openaura;

    my $openaura = new WebService::Openaura(api_key => 'YOUR_API_KEY');
    my $data = $openaura->info_artists_bio(
        '65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab',
        { id_type => 'musicbrainz:gid', }
    );
    $data = $openaura->search_artists({
        q => 'Metallica'
    });

DESCRIPTION

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

METHODS

These methods usage: http://developer.openaura.com/docs/

classic_artists

classic_version

info_artists

info_artists_bio

info_artists_cover_photo

info_artists_fact_card

info_artists_profile_photo

info_artists_release_art

info_artists_tags

info_version

particles_artists

particles_particle

particles_sources

particles_version

search_artists

search_artists_all

search_version

source_artists

source_sources

source_version

SEE ALSO

http://developer.openaura.com/docs/

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>