get_amc_theatre_showtimes
amctheatres.comGets current AMC movie showtimes for a theatre and date from https://www.amctheatres.com. Returns each movie with rating, duration, poster and other details, plus showtimes grouped by format with language/audio attributes, amenities, and availability.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_amc_theatre_showtimes?
Gets current AMC movie showtimes for a theatre and date from https://www.amctheatres.com. Returns each movie with rating, duration, poster and other details, plus showtimes grouped by format with language/audio attributes, amenities, and availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass market_slug, theatre_slug, date and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"movies": [
{
"name": "<string>",
"slug": "<string>",
"poster": {},
"movieId": 0,
"duration": "<string>",
"mpaaRating": "<string>",
"formatGroups": [
{
"code": "<string>",
"name": "<string>",
"formats": [
"<string>"
],
"amenities": [
"<string>"
],
"showtimes": [
{
"status": "<string>",
"display": {},
"available": true,
"isSoldOut": true,
"ticketUrl": "<string>",
"showtimeId": 0,
"hasTrailers": true,
"businessDate": "<string>",
"isAlmostSoldOut": true,
"showDateTimeUtc": "<string>",
"isReservedSeating": true,
"showtimeHasPassed": true
}
],
"attributes": [
{
"code": "<string>",
"name": "<string>",
"sort": 0
}
]
}
],
"runTimeMinutes": 0
}
],
"theatre": {},
"sourceUrl": "<string>",
"movieCount": 0,
"retrievedAt": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/ca3bc227-3a47-467d-a97c-4680531cad9c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ca3bc227-3a47-467d-a97c-4680531cad9c",
"variables": {
"market_slug": "new-york-city",
"theatre_slug": "amc-empire-25",
"date": ""
}
}'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="ca3bc227-3a47-467d-a97c-4680531cad9c") — the "get_amc_theatre_showtimes" function, which gets current AMC movie showtimes for a theatre and date from https://www.amctheatres.com. Returns each movie with rating, duration, poster and other details, plus showtimes grouped by format with language/audio attributes, amenities, and availability.. It takes market_slug (str), theatre_slug (str), date (str). Return the result as structured JSON.