Marketplace
No threads yet
Live

list_current_movies

district.in

Returns all movies currently showing in theaters for a city from https://district.in, including movie details, languages, formats, and media. The city defaults to Mumbai and is matched against District's full city catalog.

Parameters1
Runs10
Updated10d ago
Operational10 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_current_movies?

Returns all movies currently showing in theaters for a city from https://district.in, including movie details, languages, formats, and media. The city defaults to Mumbai and is matched against District's full city catalog. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "movies": [
    {
      "title": "<string>",
      "genres": [
        "<string>"
      ],
      "trailer": {
        "url": "<string>",
        "thumbnail": "<string>"
      },
      "web_url": "<string>",
      "movie_id": "<string>",
      "format_id": "<string>",
      "hype_count": 0,
      "description": "<string>",
      "poster_image": "<string>",
      "premium_tags": [
        "<string>"
      ],
      "release_date": "<string>",
      "censor_rating": "<string>",
      "reminder_count": 0,
      "reason_to_watch": "<string>",
      "duration_minutes": 0,
      "spotlight_videos": {},
      "trailer_cta_text": "<string>",
      "available_formats": [
        "<string>"
      ],
      "available_variants": [
        {
          "format": "<string>",
          "language": "<string>"
        }
      ],
      "release_date_epoch": 0,
      "available_languages": [
        "<string>"
      ],
      "spotlight_video_url": "<string>",
      "story_thumbnail_url": "<string>",
      "movie_trailer_deeplink": "<string>",
      "spotlight_thumbnail_url": "<string>"
    }
  ],
  "matched_city": "<string>",
  "requested_city": "<string>",
  "city_catalog_id": "<string>",
  "state_or_region": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c4ae74e2-1314-47ab-8f25-407dfa3d9c24/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c4ae74e2-1314-47ab-8f25-407dfa3d9c24",
    "variables": {
        "city": "Mumbai"
    }
}'

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="c4ae74e2-1314-47ab-8f25-407dfa3d9c24") — the "list_current_movies" function, which returns all movies currently showing in theaters for a city from https://district.in, including movie details, languages, formats, and media. The city defaults to Mumbai and is matched against District's full city catalog..

It takes city (str). Return the result as structured JSON.