get_release_info_from_ffm_shortlink
feature.fmFetch detailed music pre-save or release metadata and direct distribution links from https://feature.fm (ffm.to) shortlinks. Returns artist and release details, release timing, cover art, service URLs, and social profiles.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_release_info_from_ffm_shortlink?
Fetch detailed music pre-save or release metadata and direct distribution links from https://feature.fm (ffm.to) shortlinks. Returns artist and release details, release timing, cover art, service URLs, and social profiles. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass link and get the result back without maintaining a scraper.
Response
{
"slug": "<string>",
"metadata": {},
"services": [
{
"action": "<string>",
"service": "<string>",
"direct_url": "<string>",
"service_name": "<string>",
"service_type": "<string>"
}
],
"artist_id": "<string>",
"link_type": "<string>",
"record_id": "<string>",
"source_url": "<string>",
"artist_name": "<string>",
"release_date": "<string>",
"cover_art_url": "<string>",
"release_title": "<string>",
"social_profiles": [
{
"url": "<string>",
"platform": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/20183546-86a6-4fa1-b425-2c2ccff6a6fd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "20183546-86a6-4fa1-b425-2c2ccff6a6fd",
"variables": {
"link": "asotibiza2026"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="20183546-86a6-4fa1-b425-2c2ccff6a6fd") — the "get_release_info_from_ffm_shortlink" function, which fetch detailed music pre-save or release metadata and direct distribution links from https://feature.fm (ffm.to) shortlinks. Returns artist and release details, release timing, cover art, service URLs, and social profiles.. It takes link (str). Return the result as structured JSON.