Marketplace
No threads yet
Live

list_amc_theatres_by_market

amctheatres.com

Lists AMC theatre locations in a requested market from https://www.amctheatres.com, including each theatre name, slug, city, state, address, coordinates, identifiers, and available theatre attributes.

Parameters1
Runs13
Updated10d ago
Degraded13 runs · 76.9% 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_amc_theatres_by_market?

Lists AMC theatre locations in a requested market from https://www.amctheatres.com, including each theatre name, slug, city, state, address, coordinates, identifiers, and available theatre attributes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass market_slug and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "theatres": [
    {
      "city": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "brand": "<string>",
      "state": "<string>",
      "citySlug": "<string>",
      "latitude": 0,
      "longName": "<string>",
      "longitude": 0,
      "stateCode": "<string>",
      "stateSlug": "<string>",
      "theatreId": 0,
      "utcOffset": "<string>",
      "attributes": [
        {
          "code": "<string>",
          "name": "<string>",
          "sort": 0
        }
      ],
      "marketName": "<string>",
      "marketSlug": "<string>",
      "postalCode": "<string>",
      "ticketable": true,
      "websiteUrl": "<string>",
      "addressLine1": "<string>",
      "directionsUrl": "<string>",
      "absoluteWebsiteUrl": "<string>",
      "timezoneAbbreviation": "<string>",
      "guestServicesPhoneNumber": "<string>"
    }
  ],
  "sourceUrl": "<string>",
  "marketName": "<string>",
  "marketSlug": "<string>",
  "retrievedAt": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7bd5d904-62a6-4088-82fa-9ddefdaef69e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7bd5d904-62a6-4088-82fa-9ddefdaef69e",
    "variables": {
        "market_slug": "new-york-city"
    }
}'

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="7bd5d904-62a6-4088-82fa-9ddefdaef69e") — the "list_amc_theatres_by_market" function, which lists AMC theatre locations in a requested market from https://www.amctheatres.com, including each theatre name, slug, city, state, address, coordinates, identifiers, and available theatre attributes..

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