Your agent confuses artists, releases, and IDs; this returns real music metadata with stable identifiers.
Open music metadata: search and look up artists, releases, recordings, works, and labels with stable identifiers (MBIDs) and rich relationships. Core data is public domain (CC0).
Look up a music entity by its MusicBrainz ID, optionally including related data.
"+"-joined related data to include (e.g. "recordings+releases"). Valid values depend on entity type.
MusicBrainz ID (UUID) of the entity.
Music entity type matching the MBID.
curl -X POST "https://skill.askfaro.com/skills/music/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get the details for this artist MBID"
}
}'askfaro describe music/lookup
Install pip install askfaro-cli, then askfaro auth login.
Search music entities (artists, releases, recordings, works, labels) by query.
Number of results (1-100).
Lucene search query (supports field scoping, e.g. "artist:Radiohead").
Music entity type to search.
Result offset for pagination.
curl -X POST "https://skill.askfaro.com/skills/music/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Search for the artist Radiohead"
}
}'askfaro describe music/search
Install pip install askfaro-cli, then askfaro auth login.