Get details

0.1 credits / lookup

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.

Use when

You have identified an entity and want its facts and relationships expanded.

Not for

Finding an entity by name when you do not have its identifier yet.

Cost

0.1 credits / lookup

A discography or tracklist may identify the entity first, which costs one extra lookup step.

What it accepts

Set these inside the intent when you run it.

subjectrequired

The name of the artist, album, song, or label to look up, or a known stable identifier.

detailoptional

What you want to know, such as discography, tracklist, members, or writers.

artistoptional

The performing artist, to disambiguate when the album or song title is common.

identifieroptional

A known stable music identifier, to skip the name-lookup step.

What you get back

The full entity record with the requested relationships, such as album list, tracklist, member lineup, or writing credits.

Run it

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

  • What albums did David Bowie release?
  • List the tracks on Kind of Blue by Miles Davis
  • Who are the members of Radiohead?