Marketplace
No threads yet
Live

list_us_releases

filmaffinity.com

Returns recent or upcoming US theatrical and streaming releases from https://filmaffinity.com with dates and complete non-empty movie-card metadata.

Parameters2
Runs5
Updated3d ago
Operational5 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_us_releases?

Returns recent or upcoming US theatrical and streaming releases from https://filmaffinity.com with dates and complete non-empty movie-card metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass platform, release_status and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "platform": "<string>",
  "releases": [
    {}
  ],
  "source_url": "<string>",
  "category_id": "<string>",
  "category_title": "<string>",
  "platform_label": "<string>",
  "release_status": "<string>",
  "release_date_to": "<string>",
  "release_date_from": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2c87a8eb-ee58-48c0-9750-7dcf9bcd0779/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2c87a8eb-ee58-48c0-9750-7dcf9bcd0779",
    "variables": {
        "platform": "theatrical",
        "release_status": "recent"
    }
}'

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="2c87a8eb-ee58-48c0-9750-7dcf9bcd0779") — the "list_us_releases" function, which returns recent or upcoming US theatrical and streaming releases from https://filmaffinity.com with dates and complete non-empty movie-card metadata..

It takes platform (str), release_status (str). Return the result as structured JSON.