Skip to content

Artists

ZYROUGE edited this page Apr 10, 2020 · 1 revision

Client#Artists

Represents Genius Artists Methods and Properties.

Methods


Methods

get

Usage: .get(id)

Searches the artist for the Corresponding ID in API

Parameter Type Description
id string or number ID of a Artist in Genius

Returns: Promise {<Artist>}

Example:

Genius.artists.get('62711')
.then(artist => console.log(artist))
.catch(e => console.error(e));