Auth paths
none ●
Public server-rendered schedule page — the showtimes are machine-readable data attributes. Nothing to store.
Operations
| Op | Kind | Risk | Requires | Description |
|---|---|---|---|---|
| kvikmyndir.is/showtimes | rest | read-only | Every showtime today: movie, cinema, time, hall (Flauel/Lúxus/MAX/…), approximate end time, and the purchase URL. Filter by cinema. verified 2026-08-21 input{
"type": "object",
"properties": {
"cinema": {
"type": "string",
"description": "Filter, e.g. Smárabíó"
}
}
} output{
"type": "object",
"properties": {
"movieId": {
"type": "integer"
},
"movie": {
"type": "string"
},
"cinema": {
"type": "string"
},
"time": {
"type": "string",
"description": "HH:MM"
},
"showtime": {
"type": "string",
"description": "ISO datetime"
},
"endsAt": {
"type": [
"string",
"null"
],
"description": "Búin kl. ~HH:MM"
},
"hall": {
"type": [
"string",
"null"
]
},
"url": {
"type": "string"
}
}
} | |
| kvikmyndir.is/movies | rest | read-only | The movies playing today with their IMDb ratings and kvikmyndir.is ids. verified 2026-08-21 output{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"title": {
"type": "string"
},
"year": {
"type": [
"integer",
"null"
]
},
"imdb": {
"type": [
"number",
"null"
]
},
"url": {
"type": "string"
}
}
} |
Raw artifacts
The manifest is the discovery record — the schema, the docs, and the search index in one file. manifest.json · recipe.ts · README.md