Live
get_full_credits
filmaffinity.comReturns complete movie credits from https://filmaffinity.com grouped into cast, director, screenwriter, music, cinematography, editing, and producer categories with profile links.
Parameters1
Runs5
Updated3d ago
Operational5 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_full_credits?
Returns complete movie credits from https://filmaffinity.com grouped into cast, director, screenwriter, music, cinematography, editing, and producer categories with profile links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass film_id and get the result back without maintaining a scraper.
Response
{
"year": 0,
"title": "<string>",
"film_id": "<string>",
"movie_url": "<string>",
"categories": [
{}
],
"source_url": "<string>",
"total_entries": 0,
"category_count": 0,
"original_title": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3baddcab-d09c-4bb9-b7d2-dcb92804b869/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3baddcab-d09c-4bb9-b7d2-dcb92804b869",
"variables": {
"film_id": "932476"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="3baddcab-d09c-4bb9-b7d2-dcb92804b869") — the "get_full_credits" function, which returns complete movie credits from https://filmaffinity.com grouped into cast, director, screenwriter, music, cinematography, editing, and producer categories with profile links.. It takes film_id (str). Return the result as structured JSON.