Fetches the full record and relationships for an identified music entity. Given an artist, album, song, or label, it can expand a discography, tracklist, band member list, or songwriting credits. If you only have a name, this operation resolves it to an identifier automatically before looking up.
You have identified an entity and want its facts and relationships expanded.
Finding an entity by name when you do not have its identifier yet.
0.1 credits / lookup
A discography or tracklist may identify the entity first, which costs one extra lookup step.
Set these inside the intent when you run it.
The name of the artist, album, song, or label to look up, or a known stable identifier.
What you want to know, such as discography, tracklist, members, or writers.
The performing artist, to disambiguate when the album or song title is common.
A known stable music identifier, to skip the name-lookup step.
The full entity record with the requested relationships, such as album list, tracklist, member lineup, or writing credits.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Music Metadata skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/music/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"lookup","subject":"Kind of Blue","detail":"tracklist","artist":"Miles Davis","identifier":"9c5ca790-24d9-4d3f-b2d3-be57e86f4f81"}}'Example requests