Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?division=malmi&format=api&page=17
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1640,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=18",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=16"
    },
    "data": [
        {
            "id": "kulke:67120",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491010,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T07:13:37.593560Z",
                    "last_modified_time": "2025-10-06T07:13:37.593571Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777363.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491010/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:37.508426Z",
            "last_modified_time": "2025-10-06T08:14:32.155270Z",
            "date_published": null,
            "start_time": "2025-10-25T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/26D609C5FCF3FE3094FD2D39878DAE8D/Kino_Helios_Cancel_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/26D609C5FCF3FE3094FD2D39878DAE8D/Kino_Helios_Cancel_7_",
                "en": "http://www.malmitalo.fi/en/events/event/26D609C5FCF3FE3094FD2D39878DAE8D/Kino_Helios_Cancel_7_"
            },
            "description": {
                "fi": "<p>Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja.</p><p>Puhelimessa on äärimmäisen arkaa sisältöä, joka julki tullessaan johtaisi poikien cäncelöintiin. Pahimmillaan se tuhoaisi heidän jättimäisen suosionsa ja uransa sekä vesittäisi ennennäkemättömän suuren yhteistyödiilin. Kilpajuoksu puhelimen löytämiseksi alkaa, eikä yllättäviltä käänteiltä vältytä. Puhelin on saatava takaisin hinnalla millä hyvänsä. Kriittisen tilanteen keskellä kolmikon on myös punnittava, kumpi on tärkeämpää, ystävyys vai suosio?</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 08.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Cancel (7) – Kino Helios",
                "sv": "Kino Helios: Cancel (7) – Kino Helios",
                "en": "Kino Helios: Cancel (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67120/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67126",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491016,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:30.829322Z",
                    "last_modified_time": "2025-10-06T08:14:30.829336Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777291.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491016/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T08:14:30.743992Z",
            "last_modified_time": "2025-10-06T08:14:30.939982Z",
            "date_published": null,
            "start_time": "2025-10-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_",
                "en": "http://www.malmitalo.fi/en/events/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_"
            },
            "description": {
                "fi": "<p>Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa.</p><p>Menestyselokuvan jatko-osassa isä ja äiti pakenevat jouluvalmisteluja Lappiin, mutta rauha on tipotiessään, kun lapset seuraavat perässä. Kun Jussin uusi tyttöystävä Viktoria paljastuu miljonäärin ainoaksi lapseksi, isä tekee kaikkensa, että perhe tekisi mahdollisimman hyvän vaikutuksen uuteen miniäehdokkaaseen. Kun yllätykset seuraavat toisiaan, isän on laitettava kaikki ”osaamisensa” peliin.</p><p>Ikäraja: S<br>Kesto: 85 min<br>Ensi-ilta: 15.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Kyllä isä osaa Lapissa (S)",
                "sv": "Kino Helios: Kyllä isä osaa Lapissa (S)",
                "en": "Kino Helios: Kyllä isä osaa Lapissa (S)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67126/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67125",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491015,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:30.527351Z",
                    "last_modified_time": "2025-10-06T08:14:30.527364Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777290.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491015/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T08:14:30.440270Z",
            "last_modified_time": "2025-10-06T08:14:30.647401Z",
            "date_published": null,
            "start_time": "2025-10-24T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt",
                "en": "http://www.malmitalo.fi/en/events/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt"
            },
            "description": {
                "fi": "<p>Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama.</p><p>Elokuva kertoo yliopistoprofessorista (Julia Roberts), joka joutuu vaikeaan tilanteeseen, kun eräs hänen tähtiluokan opiskelijoistaan (Ayo Edebiri) esittää syytöksen yhtä hänen kollegaansa (Andrew Garfield) kohtaan. Samalla hänen menneisyytensä synkkä salaisuus uhkaa paljastua. After The Hunt on Nora Garrettin käsikirjoittama.</p><p>Ikäraja: ei tiedossa<br>Kesto: 139 min<br>Ensi-ilta: 17.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Kino Helios: After the Hunt",
                "sv": "Kino Helios: After the Hunt",
                "en": "Kino Helios: After the Hunt"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67125/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67123",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491008,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T07:13:36.046990Z",
                    "last_modified_time": "2025-10-06T07:13:36.047005Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777327.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491008/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:35.965360Z",
            "last_modified_time": "2025-10-06T08:14:29.701605Z",
            "date_published": null,
            "start_time": "2025-10-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt",
                "en": "http://www.malmitalo.fi/en/events/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt"
            },
            "description": {
                "fi": "<p>Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama.</p><p>Elokuva kertoo yliopistoprofessorista (Julia Roberts), joka joutuu vaikeaan tilanteeseen, kun eräs hänen tähtiluokan opiskelijoistaan (Ayo Edebiri) esittää syytöksen yhtä hänen kollegaansa (Andrew Garfield) kohtaan. Samalla hänen menneisyytensä synkkä salaisuus uhkaa paljastua. After The Hunt on Nora Garrettin käsikirjoittama.</p><p>Ikäraja: ei tiedossa<br>Kesto: 139 min<br>Ensi-ilta: 17.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Kino Helios: After the Hunt",
                "sv": "Kino Helios: After the Hunt",
                "en": "Kino Helios: After the Hunt"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67123/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67122",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sentimental-value-3997571/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sentimental-value-3997571/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sentimental-value-3997571/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491014,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:29.313242Z",
                    "last_modified_time": "2025-10-06T08:14:29.313254Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777326.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491014/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:35.593552Z",
            "last_modified_time": "2025-10-06T08:14:29.450779Z",
            "date_published": null,
            "start_time": "2025-10-22T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_",
                "en": "http://www.malmitalo.fi/en/events/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_"
            },
            "description": {
                "fi": "<p>Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan.</p><p>Gustav tarjoaa Noralle, teatterinäyttelijälle, roolin elokuvasta, jonka hän toivoo palauttavan hänen uransa kukoistukseen. Kun Nora kieltäytyy, hän saa tietää, että rooli on annettu nuorelle ja innokkaalle Hollywood-tähdelle. Pian sisarusten täytyy selvittää vaikeaa suhdettaan isäänsä ja tulla toimeen amerikkalaisen tähden kanssa, joka sotkeutuu heidän monimutkaisiin perhekuvioihinsa.</p><p>Cannes Grand Prix voittaja Sentimental value -elokuvan on ohjannut Joachim Trier. Pääsosissa Renate Reinsve, Inga Ibsdotter Lilleaas, Stellan Skarsgård ja Elle Fanning.</p><p>Ikäraja: 12<br>Kesto: 135 min<br>Ensi-ilta: 17.10.2025<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Sentimental value (12)",
                "sv": "Kino Helios: Sentimental value (12)",
                "en": "Kino Helios: Sentimental value (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67131",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491013,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:28.258064Z",
                    "last_modified_time": "2025-10-06T08:14:28.258077Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777288.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491013/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T08:14:28.165273Z",
            "last_modified_time": "2025-10-06T08:14:28.381583Z",
            "date_published": null,
            "start_time": "2025-10-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_",
                "en": "http://www.malmitalo.fi/en/events/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_"
            },
            "description": {
                "fi": "<p>Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja.</p><p>Puhelimessa on äärimmäisen arkaa sisältöä, joka julki tullessaan johtaisi poikien cäncelöintiin. Pahimmillaan se tuhoaisi heidän jättimäisen suosionsa ja uransa sekä vesittäisi ennennäkemättömän suuren yhteistyödiilin. Kilpajuoksu puhelimen löytämiseksi alkaa, eikä yllättäviltä käänteiltä vältytä. Puhelin on saatava takaisin hinnalla millä hyvänsä. Kriittisen tilanteen keskellä kolmikon on myös punnittava, kumpi on tärkeämpää, ystävyys vai suosio?</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 08.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Cancel (7) – Kino Helios",
                "sv": "Kino Helios: Cancel (7) – Kino Helios",
                "en": "Kino Helios: Cancel (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67131/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67121",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491012,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:27.228796Z",
                    "last_modified_time": "2025-10-06T08:14:27.228814Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777324.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491012/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:34.087225Z",
            "last_modified_time": "2025-10-06T08:14:27.346896Z",
            "date_published": null,
            "start_time": "2025-10-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_",
                "en": "http://www.malmitalo.fi/en/events/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_"
            },
            "description": {
                "fi": "<p>Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa.</p><p>Menestyselokuvan jatko-osassa isä ja äiti pakenevat jouluvalmisteluja Lappiin, mutta rauha on tipotiessään, kun lapset seuraavat perässä. Kun Jussin uusi tyttöystävä Viktoria paljastuu miljonäärin ainoaksi lapseksi, isä tekee kaikkensa, että perhe tekisi mahdollisimman hyvän vaikutuksen uuteen miniäehdokkaaseen. Kun yllätykset seuraavat toisiaan, isän on laitettava kaikki ”osaamisensa” peliin.</p><p>Ikäraja: S<br>Kesto: 85 min<br>Ensi-ilta: 15.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Kyllä isä osaa Lapissa (S)",
                "sv": "Kino Helios: Kyllä isä osaa Lapissa (S)",
                "en": "Kino Helios: Kyllä isä osaa Lapissa (S)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67121/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67124",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491011,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:26.747055Z",
                    "last_modified_time": "2025-10-06T08:14:26.747068Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777323.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491011/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T08:14:26.633105Z",
            "last_modified_time": "2025-10-06T08:14:26.889939Z",
            "date_published": null,
            "start_time": "2025-10-15T12:00:00Z",
            "end_time": "2025-10-15T13:25:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_",
                "en": "http://www.malmitalo.fi/en/events/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_"
            },
            "description": {
                "fi": "<p>Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja.</p><p>Puhelimessa on äärimmäisen arkaa sisältöä, joka julki tullessaan johtaisi poikien cäncelöintiin. Pahimmillaan se tuhoaisi heidän jättimäisen suosionsa ja uransa sekä vesittäisi ennennäkemättömän suuren yhteistyödiilin. Kilpajuoksu puhelimen löytämiseksi alkaa, eikä yllättäviltä käänteiltä vältytä. Puhelin on saatava takaisin hinnalla millä hyvänsä. Kriittisen tilanteen keskellä kolmikon on myös punnittava, kumpi on tärkeämpää, ystävyys vai suosio?</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 08.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Cancel (7) – Kino Helios",
                "sv": "Kino Helios: Cancel (7) – Kino Helios",
                "en": "Kino Helios: Cancel (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67124/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66067",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/",
                        "sv": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/",
                        "en": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€ / 15 €",
                        "sv": "20€ / 15 €",
                        "en": "20€ / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154483,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:13:45.364808Z",
                    "last_modified_time": "2025-07-01T08:13:45.364824Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771401.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154483/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T08:13:45.258066Z",
            "last_modified_time": "2025-10-06T08:14:24.677770Z",
            "date_published": null,
            "start_time": "2025-10-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Legendaarisen rumpali, säveltäjä & orkesterinjohtaja Edward Vesalan syntymästä tulee kuluneeksi 80 vuotta tänä vuonna.",
                "sv": "I år har det gått 80 år sedan den legendariske trummisen, kompositören och orkesterledaren Edward Vesala föddes.",
                "en": "This year marks the 80th anniversary of the legendary drummer, composer and conductor Edward Vesala's birth."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalan_80-vuotisjuhlakonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalas_80-arsjubileumskonsert",
                "en": "http://www.malmitalo.fi/en/events/event/14603469D9CA96FF262801B02452CC19/Edward_Vesala_s_80th_Anniversary_Concert"
            },
            "description": {
                "fi": "<p>Legendaarisen rumpali, säveltäjä & orkesterinjohtaja Edward Vesalan syntymästä tulee kuluneeksi 80 vuotta tänä vuonna.</p><p>Juhlapäivän kunniaksi Sound & Fury toteuttaa juhlakonserttikiertueen, jossa soi Vesalan musiikki. Tämä konsertti tarjoaa ainutlaatuisen tilaisuuden kokea Vesalan sävellykset ja musiikillinen jatkumo livenä alkuperäisten Sound & Fury -yhtyeen jäsenten (ml. Tapani Rinteen) sekä nuorempien muusikoiden esittämänä, jotka jatkavat hänen perintöään.</p><p>Vesalan musiikki, joka yhdistää ainutlaatuisella tavalla jazzia, rockia, klassista, kansanmusiikkia ja improvisaatiota. Se on edelleen yksi Suomen musiikkihistorian ja eurooppalaisen jazzin kulmakivistä, mutta valitettavasti hänen teoksiaan kuulee elävänä nykyisin harvoin – varsinkaan hänen tärkeimmän yhtyeensä Sound & Furyn esittämänä.</p><p><b>Konsertin rakenne ja esiintyjät:</b></p><p><b>1. Osa:</b><br>Tapani Rinne soolona<br>Sound & Fury -yhtyeen jäseniä pienkokoonpanoissa (Vesalan musiikkia)</p><p><b>Väliaika 20 min</b></p><p><b>2. osa:</b><br>Sound & Fury -yhtye kokonaisuudessaan (Vesalan musiikkia Iro Haarlan sovituksina).</p><p><b>Konsertissa esiintyvät muusikot: </b><br>Jorma Tapio (puupuhaltimet)<br>Pepa Päivinen (puupuhaltimet)<br>Tane Kannisto (puupuhaltimet)<br>Eero Savela (trumpetti)<br>Jukka Orma (kitara)<br>Eero Tikkanen (kontrabasso)<br>Ilmari Heikinheimo (rummut, lyömäsoittimet)<br>Tapani Rinne (soolo) feat. Aleksi Myllykoski (livesampling)</p><p>Kesto: 2 t, sis. 20 min väliajan</p>",
                "sv": "<p>I år har det gått 80 år sedan den legendariske trummisen, kompositören och orkesterledaren Edward Vesala föddes.</p><p>Till jubileets ära genomför Sound & Fury en festkonsertturné med musik av Vesala. Denna konsert ger en unik möjlighet att uppleva Vesalas kompositioner och musikaliska kontinuitet live med de ursprungliga bandmedlemmarna i Sound & Fury (inkl. Tapani Rinteen) och yngre musiker som för hans arv vidare.</p><p>Vesalas musik kombinerar jazz, rock, klassisk musik, folkmusik och improvisation på ett unikt sätt. Den är fortfarande en av hörnstenarna i Finlands musikhistoria och europeisk jazz, men tyvärr hörs hans verk sällan live nuförtiden – speciellt framförd av hans viktigaste band Sound & Fury.</p><p><b>Konsertens struktur och artister:</b></p><p><b>Del 1:</b><br>Tapani Rinne solo<br>Sound & Furys medlemmar i små sammansättningar (Vesalas musik)</p><p><b>Paus 20 minuter<b/></p><p><b>Del 2:</b><br>Sound & Fury i sin helhet (musik av Vesala arrangerad av Iro Haarla).</p><p><b>Musiker som uppträder i konserten:</b><br>Jorma Tapio (träblåsinstrument)<br>Pepa Päivinen (träblåsinstrument)<br>Tane Kannisto (träblåsinstrument)<br>Eero Savela (trumpet)<br>Jukka Orma (gitarr)<br>Eero Tikkanen (kontrabas)<br>Ilmari Heikinheimo (trummor, slagverk)<br>Tapani Rinne (solo) feat. Aleksi Myllykoski (livesampling)</p><p>Längd: 2 timmar, inklusive paus 20 minuter</p>",
                "en": "<p>This year marks the 80th anniversary of the legendary drummer, composer and conductor Edward Vesala's birth.</p><p>To honour the occasion, Sound & Fury is organising a celebratory concert tour featuring Vesala's music. This concert offers a unique opportunity to experience Vesala's compositions and musical continuum live, performed by original members of the Sound & Fury band (incl. Tapani Rinne) and younger musicians who carry on his legacy.</p><p>Vesala's music is a unique blend of jazz, rock, classical, folk and improvisation. It remains one of the cornerstones of Finnish music history and European jazz, although unfortunately his works are rarely heard live these days – especially performed by his main band, Sound & Fury.</p><p><b>Concert programme and performers:</b></p><p><b>Part 1:</b><br>Tapani Rinne performing solo<br>Members of Sound & Fury in smaller groups (music by Vesala)</p><p><b>Intermission 20 min<b/></p><p><b>Part 2:</b><br>The full Sound & Fury band (performing Vesala's music arranged by Iro Haarla).</p><p><b>Musicians performing at the concert:</b><br>Jorma Tapio: woodwinds<br>Pepa Päivinen: woodwinds<br>Tane Kannisto: woodwinds<br>Eero Savela: trumpet<br>Jukka Orma: guitar<br>Eero Tikkanen: double bass<br>Ilmari Heikinheimo: drums, percussion<br>Tapani Rinne: solo, feat. Aleksi Myllykoski (live sampling)</p><p>Duration: 2 hours, incl. a 20-min intermission</p>"
            },
            "name": {
                "fi": "Edward Vesalan 80-vuotisjuhlakonsertti – MalmiJazz",
                "sv": "Edward Vesalas 80-årsjubileumskonsert – MalmiJazz",
                "en": "Edward Vesala's 80th Anniversary Concert – MalmiJazz"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67119",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/",
                        "sv": "https://www.lippu.fi/event/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/",
                        "en": "https://www.lippu.fi/event/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491009,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T07:13:37.208317Z",
                    "last_modified_time": "2025-10-06T07:13:37.208329Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777362.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491009/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:37.116334Z",
            "last_modified_time": "2025-10-06T07:13:37.311852Z",
            "date_published": null,
            "start_time": "2025-10-25T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "DreamWorks Animationin rakastettuun sarjaan pohjautuva elokuvaseikkailu."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_",
                "en": "http://www.malmitalo.fi/en/events/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_"
            },
            "description": {
                "fi": "<p>DreamWorks Animationin rakastettuun sarjaan pohjautuva elokuvaseikkailu.</p><p>Vuodesta 2021 Netflixillä esitetty Gabbyn nukketalo päästää katsojan kurkistamaan sisälle Gabbyn nukketaloon ja sen suloisten kissahahmojen elämään.<br>Elokuvassa Gabby (sarjasta tuttu Laila Lockhart Kraner) lähtee mumminsa Gigin (nelinkertainen Grammy-voittaja Gloria Estefan) kanssa matkalle ihmeelliseen suurkaupunkiin. Mutta erikoinen kissanainen Vera (Oscar-ehdokas Kristen Wiig) saa käsiinsä Gabbyn kalleimman aarteen eli nukketalon! Gabbyn on saatava kattinsa takaisin ja pelastettava nukketalo, ennen kuin on liian myöhäistä.</p><p>Gabbyn nukketalo -elokuvan ohjaaja on Ryan Crego (sarjojen Vihdoin kotona – Tipin ja Ohon seikkailut ja I Heart Arlo vastaava tuottaja), joka sai lastenohjelmien Emmy-ehdokkuuden elokuvallaan Arlo, Alligaattoripoika. Elokuvan on tuottanut Steven Schweickart, joka on ollut tuottamassa DreamWorks Animationin isoimpia hittejä, kuten elokuvia Näin koulutat lohikäärmeesi, Croodit ja viimeisimpänä Kung Fu Panda 4.</p><p>Elokuvan vastaavia tuottajia ovat Jennifer Twormey ja Traci Paige Johnson, joiden luomaan sarjaan elokuva perustuu. Gabbyn nukketalo -sarja on ollut Netflixillä 63 maassa TV:n kymmenen katsotuimman joukossa, ja siitä on tullut esikouluikäisten ykkösbrändi ympäri maailman.</p><p>Ikäraja: S<br>Kesto: 98 min<br>Ensi-ilta: 10.10.2025<br>Puhuttu suomeksi</p>"
            },
            "name": {
                "fi": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios",
                "sv": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios",
                "en": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67119/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66697",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1211367,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-08T13:14:19.095151Z",
                    "last_modified_time": "2025-07-08T13:14:19.095167Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774075.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211367/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-08T13:14:19.011302Z",
            "last_modified_time": "2025-10-02T07:13:22.085723Z",
            "date_published": null,
            "start_time": "2025-10-16T07:00:00Z",
            "end_time": "2025-10-16T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pajassa pääset rakentamaan oman saaren, joka kertoo jotain persoonallisuudestasi.",
                "sv": "I verkstaden kan du bygga en egen ö som berättar något om din personlighet.",
                "en": "In the workshop, you will get to build your own island that says something about your personality."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AD9AC122F019E40DC4172B3E29CC0CE6/Syysloman_tyopaja_Persoonallisuussaaripaja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/AD9AC122F019E40DC4172B3E29CC0CE6/Verkstad_for_personlighetsoar_Hostlovsaktiviteter",
                "en": "http://www.malmitalo.fi/en/events/event/AD9AC122F019E40DC4172B3E29CC0CE6/Personality_Island_Workshop_Autumn_Break_Activities"
            },
            "description": {
                "fi": "<p>Pajassa pääset rakentamaan oman saaren, joka kertoo jotain persoonallisuudestasi.</p><p>Esitteleekö ehkäpä hassuttelusaari sinun luonnettasi, kuvastaako kitarasaari harrastustasi vaiko koirasaari mielenkiinnonkohdettasi?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!</p><p>Paikka: Malmitalon parvi</p>",
                "sv": "<p>I verkstaden kan du bygga en egen ö som berättar något om din personlighet.</p><p>Speglar kanske en rolig ö din personlighet, en gitarrö din hobby eller en hundö ditt intresse?</p><p>Under höstlovet ordnas avgiftsfria verkstäder i Malms kulturhus. Pyssel och andra roliga aktiviteter utlovas för barn och familjer. Varje verkstad har sitt eget tema, inspirerat av den aktuella dagens höstlovsfilm. <br>Fritt inträde!<br>Plats: Loftet i Malms kulturhus</p>",
                "en": "<p>In the workshop, you will get to build your own island that says something about your personality.</p><p>Perhaps a goofy island reflects your personality, a guitar island your hobby or a dog island your passion?</p><p>During the autumn break, free workshops will be held at Malmitalo. There will be crafts and other fun activities for children and families. Each workshop has its own theme, inspired by the autumn break film of the day. <br>Free entry!<br>Location: Malmitalo gallery</p>"
            },
            "name": {
                "fi": "Syysloman työpaja: Persoonallisuussaaripaja",
                "sv": "Verkstad för personlighetsöar Höstlovsaktiviteter",
                "en": "Personality Island Workshop Autumn Break Activities"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66697/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66698",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1211366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-08T13:14:18.726665Z",
                    "last_modified_time": "2025-07-08T13:14:18.726681Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774074.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-08T13:14:18.636525Z",
            "last_modified_time": "2025-10-02T07:13:21.657777Z",
            "date_published": null,
            "start_time": "2025-10-15T12:00:00Z",
            "end_time": "2025-10-15T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Syyslomatekemistä Tule rakentamaan kierrätysmateriaaleista oma villiin luontoon joutunut robottisi! Miten sinun robottisi sopeutuu luonnon olosuhteisiin?",
                "sv": "Kom och bygg din egen robot av återvunnet material. Roboten har hamnat i den vilda naturen! Hur anpassar sig din robot till förhållandena i naturen?",
                "en": "Come build your own robot, stranded in the wild, using recycled materials! How will your robot adapt to the natural environment?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/914630066A19896A817ED612691B1C32/Robottipaja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/914630066A19896A817ED612691B1C32/Robotsmedja",
                "en": "http://www.malmitalo.fi/en/events/event/914630066A19896A817ED612691B1C32/Robot_Workshop"
            },
            "description": {
                "fi": "<p>Syyslomatekemistä Tule rakentamaan kierrätysmateriaaleista oma villiin luontoon joutunut robottisi! Miten sinun robottisi sopeutuu luonnon olosuhteisiin?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!</p><p>Paikka: Malmitalon parvi</p>",
                "sv": "<p>Kom och bygg din egen robot av återvunnet material. Roboten har hamnat i den vilda naturen! Hur anpassar sig din robot till förhållandena i naturen?</p><p>Under höstlovet ordnas avgiftsfria verkstäder i Malms kulturhus. Pyssel och andra roliga aktiviteter utlovas för barn och familjer. Varje verkstad har sitt eget tema, inspirerat av den aktuella dagens höstlovsfilm.</p><p>Fritt inträde!<br>Plats: Loftet i Malms kulturhus</p>",
                "en": "<p>Come build your own robot, stranded in the wild, using recycled materials! How will your robot adapt to the natural environment?</p><p>During the autumn break, free workshops will be held at Malmitalo. There will be crafts and other fun activities for children and families. Each workshop has its own theme, inspired by the autumn break film of the day.</p><p>Free entry!<br>Location: Malmitalo gallery</p>"
            },
            "name": {
                "fi": "Robottipaja – Syysloman työpaja",
                "sv": "Robotsmedja – Höstlovsaktiviteter",
                "en": "Robot Workshop – Autumn Break Activities"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66698/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67078",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490944,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-29T12:13:25.739268Z",
                    "last_modified_time": "2025-09-29T12:13:25.739279Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777786.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490944/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-29T12:13:25.574165Z",
            "last_modified_time": "2025-09-29T12:13:25.920556Z",
            "date_published": null,
            "start_time": "2025-10-09",
            "end_time": "2025-11-01",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Yhteisnäyttely In Dialogue tuo yhteen kuva/äänitaiteilija ja esiintyjä Moe Mustafan sekä kuvataiteilija Tii Napalmin teokset.",
                "sv": "Den gemensamma utställningen In Dialogue sammanför verk av bild- och ljudkonstnären samt performern Moe Mustafa och bildkonstnären Tii Napalm.",
                "en": "The joint exhibition In Dialogue brings together the work of visual/sound artist and performer Moe Mustafa and visual artist Tii Napalm."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/748A813DBB4170A677DC7E3C0DD31A58/Tiina_Palm_Moe_Mustafa_In_Dialogue",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/748A813DBB4170A677DC7E3C0DD31A58/Tiina_Palm_Moe_Mustafa_In_Dialogue",
                "en": "http://www.malmitalo.fi/en/events/event/748A813DBB4170A677DC7E3C0DD31A58/Tiina_Palm_Moe_Mustafa_In_Dialogue"
            },
            "description": {
                "fi": "<p>Yhteisnäyttely In Dialogue tuo yhteen kuva/äänitaiteilija ja esiintyjä Moe Mustafan sekä kuvataiteilija Tii Napalmin teokset.</p><p>Mustafa esittelee teossarjansa The Body Rests In Color, maalauksia, jotka tutkivat väriharmonian merkitystä sekä turvapaikkana että identiteetin ilmaisuna. Napalm esittelee valokuvasarjansa I am everywhere, I am nowhere, jossa tarkastellaan kuinka tekstiilit kantavat muistoja ja läsnäoloa, kietoutuen ympäröivän maailman jälkiin ja tiloihin; punoen yhteen kehon, materiaalin ja identiteetin.<br>Yhdessä heidän työskentelynsä käy vuoropuhelua maalaustaiteen ja valokuvan välillä.</p><p>In Dialogue tutkii muuttuvien identiteettien ja maisemien risteyskohtia sekä sitä, miten nämä kohtaamiset muovaavat tapaamme nähdä ja asuttaa maailmaa.</p><p>Avajaiset keskiviikkona 8.10. klo 17–19</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Den gemensamma utställningen In Dialogue sammanför verk av bild- och ljudkonstnären samt performern Moe Mustafa och bildkonstnären Tii Napalm.</p><p>Mustafa presenterar verket The Body Rests In Color, en serie målningar som utforskar färgkompositionen både som en fristad och som ett uttryck för identitet. Napalm introducerar fotoserien I am everywhere, I am nowhere, en undersökning av hur textilier blir bärare av minnen och närvaro, sammanflätade med spåren och rummen i vår omgivning, för att väva ihop kropp, material och identitet.</p><p>Tillsammans för de sina praktiker i samtal över medierna, måleri och fotografi.<br>In Dialogue undersöker skärningspunkterna mellan föränderlig identitet och landskap, och hur dessa möten formar vårt sätt att se på och bebo världen.</p><p>Vernissage onsdagen den 8.10.2025 kl. 17–19.</p><p>Fri entre.</p>",
                "en": "<p>The joint exhibition In Dialogue brings together the work of visual/sound artist and performer Moe Mustafa and visual artist Tii Napalm.</p><p>Mustafa presents The Body Rests In Color, a series of paintings exploring color composition as both refuge and expression of identity. Napalm introduces the photographic series I am everywhere, I am nowhere, an examination of how textiles become carriers of memory and presence, entwining with the traces and spaces of our surroundings to interlace body, material, and identity.</p><p>Together, their work engages in a dialogue between painting and photography. In dialogue explores the intersections of changing identities and landscapes, and how these encounters shape the ways we see and inhabit the world.</p><p>Free admission!</p>"
            },
            "name": {
                "fi": "Tiina Palm & Moe Mustafa – In Dialogue",
                "sv": "Tiina Palm & Moe Mustafa – In Dialogue",
                "en": "Tiina Palm & Moe Mustafa – In Dialogue"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67078/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66091",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1170715,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T09:12:38.272379Z",
                    "last_modified_time": "2025-07-03T09:12:38.272392Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771462.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170715/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T09:12:38.195214Z",
            "last_modified_time": "2025-09-26T14:13:24.821956Z",
            "date_published": null,
            "start_time": "2025-10-09T06:00:00Z",
            "end_time": "2025-10-09T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule tutustumaan alueen moninaisiin senioriystävällisiin liikuntamahdollisuuksiin, kohtaamaan ja tekemään!",
                "sv": "Det kostnadsfria servicetorget erbjuder möten, meningsfulla aktiviteter och information om fritidsmöjligheter i Malmområdet. Föreningar och aktörer i området presenterar sina tjänster och du kan ställa frågor och pröva på. Kom och ta med en vän!",
                "en": "The free-of-charge Palvelutori senior service event offers encounters, meaningful activities and information about recreational opportunities in the Malmi area. Local associations and operators will be showcasing their services, and you can ask questions and try things out. Come along to the event and bring your friends, too!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FF1BEDC5A3BB2866294A2F22E1E6FD24/Seniorien_palvelutori_loyda_oma_tapasi_liikkua",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FF1BEDC5A3BB2866294A2F22E1E6FD24/Seniorernas_servicetorg_Hitta_ditt_satt_att_rora_pa_dig_",
                "en": "http://www.malmitalo.fi/en/events/event/FF1BEDC5A3BB2866294A2F22E1E6FD24/Palvelutori_senior_service_event_at_Cultural_Centre_Malmitalo_on_9_October_find_your_way_to_move_"
            },
            "description": {
                "fi": "<p>Tule tutustumaan alueen moninaisiin senioriystävällisiin liikuntamahdollisuuksiin, kohtaamaan ja tekemään!</p><p>Viime vuonna suursuosion saavuttanut Seniorien palvelutori järjestetään taas Malmitalossa torstaina 9.10. klo 9–14.</p><p>Tänä vuonna tapahtumassa on puhumassa ikiliikkuja <b>Pirkko Mannola!</b></p><p>Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista Malmin alueella. <br>Alueen yhdistykset ja toimijat esittelevät palveluitaan, pääset kysymään ja kokeilemaan. Tule mukaan ja tuo kaverisikin!</p><p><b>Inspiroivaa ohjelmaa mm.:</b> <br>•\tPirkko Mannolan puheenvuoro (kuulemaan mahtuu 200 henkilöä) <br>•\tDJ Börjen SenioriDisco <br>•\tSenioriKarate <br>•\tLuento: Aivoterveys ja tasapaino <br>•\tLiikuntahetkiä ja lajikokeiluja <br>•\tFlower Rescue -kukkatyöpaja <br>•\tVinkkejä liikkumiseen ja tekemistä Malmin alueella <br>•\tIdeoita arkeen, juttuseuraa ja kavereita <br>•\tKahvitarjoilu 300 ensimmäiselle  <br>•\tEsittelypisteitä – pääset kysymään ja kokeilemaan! <br> <br><b>Aikataulu</b> <br>Malmitalon parvella 400 ensimmäiselle kävijälle kahvitarjoilu.</p><p><b>Malmisali</b><br>9.15–10.00 Luento: Aivoterveys ja tasapaino (Matti Vartiainen)<br>10.00–10.40 DJ Börjen SenioriDisco<br>10.40–10.50 Hyvinvoiva Helsinki – sivuston esittely<br>10.50–11.20 Tietoisku: Lisää voimaa vuosiin (Ikäinstituutti)<br>12.00–13.00 Pirkko Mannolan puheenvuoro (kuulemaan mahtuu 200 henkilöä)<br>13.00–14.00 DJ Börjen SenioriDisco</p><p><b>Tanssisali</b><br>9.00–9.30 Tanssiopetusta (Kaija Räty​)<br>9.30–10 Asahi (Tapanilan erä ry​​)<br>10–10.15 Kehonhuolto (Alueliikunta​)<br>10.15–11.30 Tasapainojumppa (HNMKY​)<br>11.30–11.45 Tanssiopetusta (Kaija Räty​)<br>11.45–12.00 Seniorikarate (Tapanilan EräKarate​)<br>12.15–13.30​ Kokeillaan uusia liikkeitä (Ikäinstituutti​)<br>13.30–13.45 Seniorikarate (Tapanilan EräKarate)</p><p><b>Työväenopiston tilat</b><br>9.00–14.00 Märkätila: Heijastintyöpaja <br>12.00–14.00 Maalausluokka: Flower Rescue -kukkatyöpaja (niin kauan kuin materiaaleja riittää)<br>13.00–13.45 Puhelimen käytön niksit /Työväen digiopastus<br> <br>Yhteistyössä Helsingin kaupungin liikuntapalvelut, Helsingin Vapaaehtoistoiminta, Syystien palvelukeskus, Seniori-info, Yhteisötalo Malmi, Digituki, Urheiluhallit oy, Malmin uimahalli, Jade-yhteisö, Vanhustyön keskusliitto, Koillis-Helsingin lähimmäistyö, Milja Ry, Senioreiden salaisuudet-hanke, Etsivä vanhustyö, Suvanto Ry, Työväenopisto, Käpyrinne, Tapanilan EräKarate, Helsingin NMKY, Ikäinstituutti, Helsinki Missio, Sydänliitto, Malmin Varustamo, Vanhusten turva, Pääkaupunkiseudun omaishoitajat ja Suomen Monikulttuurinen Liikuntaliitto ry .</p><p>Vapaa pääsy!</p><p>Tapahtuma on osittain rahoitettu Euroopan unionin kertaluonteisesta elpymisvälineestä (NextGenerationEU).</p>",
                "sv": "<p>Det kostnadsfria servicetorget erbjuder möten, meningsfulla aktiviteter och information om fritidsmöjligheter i Malmområdet. Föreningar och aktörer i området presenterar sina tjänster och du kan ställa frågor och pröva på. Kom och ta med en vän!</p><p>Seniorernas servicetorg torsdagen den 9 oktober kl. 10–14 <br>Malms kulturhus, Nedre Malms torg 1<br>Fritt inträde!<br>Inspirerande program:<br>•\tTal av Pirkko Mannola<br>(plats för 200 personer)<br>•\tDJ Börjes SeniorDisco<br>•\tSeniorKarate<br>•\tFöreläsning: Hjärnhälsa och balans<br>•\tMotionsstunder och grenförsök<br>•\tBlomsterverkstad Flower Rescue<br>•\tTips för motion och aktiviteter i Malmområdet<br>•\tIdéer för vardagen, någon att prata med och kompisar<br>•\tKaffeservering för de första 300 <br>•\tPresentationspunkter – du kan ställa frågor och pröva på!</p><p><b>Tidtabell</b><br>På Malmitalos balkong serveras kaffe för de 400 första besökarna.</p><p><b>Malmsalen</b><br>9.15–10.00 Föreläsning: Hjärnhälsa och balans (Matti Vartiainen)<br>10.00–10.40 DJ Börjes SeniorDisco<br>10.40–10.50 Presentation av webbplatsen ”Välmående Helsingfors”<br>10.50–11.20 Informationsinslag: Mer styrka för de kommande åren (Äldreinstitutet)<br>12.00–13.00 Tal av Pirkko Mannola (plats för 200 personer)<br>13.00–14.00 DJ Börjes SeniorDisco</p><p><b>Danssal</b><br>9.00–9.30 Dansundervisning (Kaija Räty)<br>9.30–10.00 Asahi (Tapanilan Erä förening)<br>10.00–10.15 Kroppsvård (Områdesmotion)<br>10.15–11.30 Balansgympa (Helsingfors KFUM)<br>11.30–11.45 Dansundervisning (Kaija Räty)<br>11.45–12.00 SeniorKarate (Tapanilan Erä Karate)<br>12.15–13.30 Vi prövar på nya rörelser (Äldreinstitutet)<br>13.30–13.45 SeniorKarate (Tapanilan Erä Karate)</p><p><b>Arbetarinstitutets lokaler</b><br>9.00–14.00 Handarbetsklass: Reflexverkstad (Våtrum)<br>12.00–14.00 Målningsklass: Blomsterverkstad Flower Rescue (så länge material finns)<br>13.00–13.45 Tips för användning av mobiltelefonen (Digital handledning, Arbetarinstitutet)</p><p>I samarbete Helsingfors stads idrottstjänster, Helsingfors frivilligverksamhet, Höstvägens servicecentral, Seniorinfo, Gemenskapshuset Malm, Digitalt stöd, Urheiluhallit Oy, Malms simhall, Jade yhteisö ry, Centralförbundet för De Gamlas Väl, Koillis-Helsingin lähimmäistyö Milja Ry, Projektet Senioreiden salaisuudet, Uppsökande äldrearbete Suvanto ry, Arbetarinstitutet, digitalt stöd, Käpyrinne ry, Tapanilan Erän Karate, Helsingin NMKY, Äldreinstitutet, Helsingfors Mission, Hjärtförbundet, Varustamo-livsrummet i Malm, Vanhusten Turva sr,Pääkaupunkiseudun omaishoitajat ry och Suomen Monikulttuurinen Liikuntaliitto ry.</p><p>Evenemanget är delvis finansierat genom Europeiska unionens engångsinstrument för återhämtning (NextGenerationEU).</p>",
                "en": "<p>The free-of-charge Palvelutori senior service event offers encounters, meaningful activities and information about recreational opportunities in the Malmi area. Local associations and operators will be showcasing their services, and you can ask questions and try things out. Come along to the event and bring your friends, too!</p><p>Palvelutori senior service event on Thursday 9 October from 10:00 to 14:00 <br>Cultural Centre Malmitalo, Ala-Malmin tori 1<br>Free entry!<br>An inspiring programme:<br>•\tSpeech by Pirkko Mannola<br>(capacity 200 people)<br>•\tDJ Börje’s SeniorDisco<br>•\tSeniorKarate<br>•\tLecture: Brain health and balance<br>•\tExercise sessions and introductions to different sports<br>•\tFlower Rescue flower workshop<br>•\tTips for physical activities and other things to do in the Malmi area<br>•\tIdeas for everyday life, people to talk to and friends to make<br>•\tCoffee service for the first 300 participants <br>•\tPresentation stands – ask questions and try things out!</p><p><b>Timetable</b><br>On the balcony, coffee is available for max. 400 people in total.</p><p><b>Malmi Hall</b><br>9:15–10:00 Lecture: Brain health and balance (Matti Vartiainen)<br>10:00–10:40 DJ Börje’s SeniorDisco<br>10:40–10:50 Presentation of the “Wellbeing Helsinki” website<br>10:50–11:20 Presentation: More strength for the years ahead (Age Institute)<br>12:00–13:00 Speech by Pirkko Mannola (capacity 200 people)<br>13:00–14:00 DJ Börje’s SeniorDisco</p><p><b>Dance Hall</b><br>9:00–9:30 Dance class (Kaija Räty)<br>9:30–10:00 Asahi (Tapanilan Erä Association)<br>10:00–10:15 Body care (Regional sports services)<br>10:15–11:30 Balance exercises (Helsinki YMCA)<br>11:30–11:45 Dance class (Kaija Räty)<br>11:45–12:00 Senior karate (Tapanilan EräKarate)<br>12:15–13:30 Trying out new exercises (Age Institute)<br>13:30–13:45 Senior karate (Tapanilan EräKarate)</p><p><b>Adult Education Centre Facilities</b><br>9:00–14:00 Wet room: Reflector workshop <br>12:00–14:00 Painting classroom: Flower Rescue flower workshop (while materials last)<br>13:00–13:45 Tips for using your phone (Digital guidance, Adult Education Centre)</p><p>In cooperation with City of Helsinki Sports and Recreation services, Volunteer Helsinki, Syystie Service Centre, Senior Info, Community house Malmi, Digital support, Urheiluhallit oy, Malmi Swimming Hall, Jade community, The Finnish Association for the Welfare of Older People, Koillis-Helsingin lähimmäistyö Milja Ry, Senioreiden salaisuudet project, Outreach work for the elderly Suvanto Ry, Adult education centre, digital support, Käpyrinne, Tapanilan EräKarate, Helsinki YMCA, Age Institute, HelsinkiMissio, Finnish Heart Association, Malmi Varustamo, Vanhusten turva, The Association of Carers in Helsinki and Vantaa and Finnish Multicultural Sports Federation.</p><p>The event is partly funded by the European Union’s one-off recovery instrument (NextGenerationEU).</p>"
            },
            "name": {
                "fi": "Seniorien palvelutori – löydä oma tapasi liikkua – Puhujana Pirkko Mannola",
                "sv": "Seniorernas servicetorg – Hitta ditt sätt att röra på dig! – Talare: Pirkko Mannola",
                "en": "Palvelutori senior service event at Cultural Centre Malmitalo on 9 October – find your way to move! – Speaker: Pirkko Mannola"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66091/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66990",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-elaemae-on-juhla-malmitalo-20681437/",
                        "sv": "https://www.lippu.fi/event/kino-helios-elaemae-on-juhla-malmitalo-20681437/",
                        "en": "https://www.lippu.fi/event/kino-helios-elaemae-on-juhla-malmitalo-20681437/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490911,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-26T08:13:45.623045Z",
                    "last_modified_time": "2025-09-26T08:13:45.623056Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775249.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490911/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-26T08:13:45.543019Z",
            "last_modified_time": "2025-09-26T09:13:28.479259Z",
            "date_published": null,
            "start_time": "2025-10-23T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset saapuvat tänä syksynä Malmitaloon ja Vuotaloon!",
                "sv": "HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!",
                "en": "HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/95F5791B790DC972B35E295C2147606C/Elama_on_juhla_tekijavieras_Ulla_Heikkila",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/95F5791B790DC972B35E295C2147606C/Elama_on_juhla_filmskapargast_Ulla_Heikkila",
                "en": "http://www.malmitalo.fi/en/events/event/95F5791B790DC972B35E295C2147606C/And_the_Party_Goes_On_Guest_Ulla_Heikkila"
            },
            "description": {
                "fi": "<p>Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset saapuvat tänä syksynä Malmitaloon ja Vuotaloon!</p><p>Elämä on juhla on juhannuselokuva Eerolan perheen keskikesän juhlasta Nauvossa. Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Saaristojuhannuksen jälkeen ei kenenkään elämä ole entisensä.</p><p>Elokuvan pääosissa nähdään Pirjo Lonka ja Aamu Milonoff, jotka näyttelevät äitiä ja tytärtä. Kyseessä on parhaan naissivuosan Jussi-ehdokkaana elokuvista Tuntematon mestari (2020) ja Häiriötekijä (2016) olleen Pirjo Longan ensimmäinen elokuvapäärooli. Aamu Milonoff muistetaan muun muassa Jussi-ehdokkuuden tuoneesta pääroolistaan elokuvassa Tytöt, tytöt, tytöt (2022).</p><p>Elämä on juhla -elokuvan ohjaaja ja käsikirjoittaja on Ulla Heikkilä. Sukupolvensa nouseviin ohjaaja-käsikirjoittajiin lukeutuvan Heikkilän ensimmäinen pitkä elokuva Eden (2020) sai tunnustusta kansainvälisillä elokuvajuhlilla, usean hänen ohjaamansa lyhytelokuvan tapaan. Lisäksi taiteen maisteriksi Aalto-yliopistosta valmistunut Heikkiä on ohjannut muun muassa sarjat Eroja ja sovintoja (Elisa, 2023) sekä Luuserit (2. tuotantokausi, YLE, 2022).</p><p>Elokuvan tuottaja on Marja Pihlaja. Niin ikään Aalto-yliopistosta taiteen maisteriksi valmistunut Pihlaja on tuottanut useita kansainvälisesti menestyneitä lyhytelokuvia sekä esimerkiksi linjatuottanut elokuvat Huonot naiset (2022) ja Eden (2020). Elämä on juhla on pitkän elokuvan tuottajana Pihlajan esikoistuotanto.</p><p>Tekijävieraana elokuvan ohjaaja Ulla Heikkilä. Haastattelijana elokuvakasvattaja Kaisa Kukkola.</p><p>Kesto 1 tunti 40 min + keskustelu n. 30 min</p>",
                "sv": "<p>HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!</p><p>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden. Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som berättar om processen för att göra filmen efter föreställningen och erbjuder nytt att tänka på för att fördjupa filmvisningen.</p><p>Elämä on juhla (Livet är en fest) är en midsommarfilm om familjen Eerolas midsommarfest i Nagu. I det humoristiska relationsdramat blir man förälskad, besviken och firar den nattlösa natten. Efter midsommaren i skärgården är ingens liv som förr.</p><p>I huvudrollerna ser vi Pirjo Lonka och Aamu Milonoff, som spelar mor och dotter. Detta är den första huvudrollen för Pirjo Lonka, som nominerades för bästa kvinnliga biroll i filmerna Okänd mästare (2020) och Häiriötekijä (2016). Vi kommer ihåg Aamu Milonoff bland annat för sin huvudroll i den Jussi-nominerade filmen Flickor flickor flickor (2022).</p><p>Ulla Heikkilä är regissör och manusförfattare till filmen Elämä on juhla. Heikkilä hör till de lovande regissörerna och manusförfattarna i sin generation, och hennes första långfilm Eden (2020) fick erkännande vid internationella filmfestivaler, precis som flera av hennes kortfilmer. Heikkiä, som har magisterexamen i konst från Aalto-universitetet, har också regisserat bland annat serierna Eroja ja sovintoja (Elisa, 2023) och Luuserit (2:a säsongen, YLE, 2022).</p><p>Filmen är producerad av Marja Pihlaja. Pihlaja, som också har magisterexamen i konst från Aalto-universitetet, har producerat flera internationellt framgångsrika kortfilmer och är bland annat linjeproducent av Huonot naiset (2022) och Eden (2020). Elämä on juhla är Pihlajas debut som producent av långfilm.</p><p>Gästfilmskapare är Ulla Heikkilä, filmens regissör.<br>Längd 1 timme 40 minuter + diskussion ca 30 minuter</p>",
                "en": "<p>HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!</p><p>Designed for seniors, HopeaCine's programme features new Finnish films once a month. Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film.</p><p>And the Party Goes On is a film about the Eerola family's midsummer celebration in Nagu. A humour-tinged relationship drama about falling in love, experiencing disappointment and celebrating the midnight sun. After a midsummer in the archipelago, no one's life is the same as before.</p><p>The film stars Pirjo Lonka and Aamu Milonoff as mother and daughter. This is Pirjo Lonka's first lead role in a movie. She was previously nominated for a Jussi Award for Best Supporting Actress for the films One Last Deal (2020) and Distraction (2016). Aamu Milonoff is remembered, among other things, for her leading role in the film Girl Picture (2022), which earned her a Jussi Award nomination.</p><p>And the Party Goes On was written and directed by Ulla Heikkilä. One of the rising director-screenwriters of her generation, Heikkilä received recognition for her first feature film Eden (2020) at international film festivals, as well as for several short films she has directed. Additionally, Heikkilä, who holds a master of arts degree from Aalto University, has directed series such as Eroja ja sovintoja (Elisa, 2023) and Luuserit (Season 2, YLE, 2022).</p><p>The film was produced by Marja Pihlaja. Also a master of arts graduate from Aalto University, Pihlaja has produced several internationally successful short films and, for example, served as line producer for the films Bad Women (2022) and Eden (2020). And the Party Goes On is Pihlaja's debut production as a feature film producer.</p><p>Guest Ulla Heikkilä, the film's director.<br>Duration 1 hour 40 min + about 30 min of discussion</p>"
            },
            "name": {
                "fi": "Elämä on juhla+tekijävieras Ulla Heikkilä – HopeaCine",
                "sv": "Elämä on juhla + filmskapargäst Ulla Heikkilä – HopeaCine",
                "en": "And the Party Goes On + Guest Ulla Heikkilä – HopeaCine"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66990/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67059",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/kolme-bluesmiestae-ja-battle-3989345/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/kolme-bluesmiestae-ja-battle-3989345/",
                        "en": "https://www.lippu.fi/artist/malmitalo/kolme-bluesmiestae-ja-battle-3989345/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,80 €",
                        "sv": "22,80 €",
                        "en": "22,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490910,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-26T08:13:41.388574Z",
                    "last_modified_time": "2025-09-26T08:13:41.388586Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777712.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490910/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-26T08:13:41.253078Z",
            "last_modified_time": "2025-09-26T08:13:41.538293Z",
            "date_published": null,
            "start_time": "2025-11-22T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Maailman ehdotonta huippua edustavat yhden miehen bluesyhtyeet kohtaavat toisensa Malmitalolla!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/98F5F242FADFEADB9A03361408920483/Kolme_bluesmiesta_ja_battle",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/98F5F242FADFEADB9A03361408920483/Kolme_bluesmiesta_ja_battle",
                "en": "http://www.malmitalo.fi/en/events/event/98F5F242FADFEADB9A03361408920483/Kolme_bluesmiesta_ja_battle"
            },
            "description": {
                "fi": "<p>Maailman ehdotonta huippua edustavat yhden miehen bluesyhtyeet kohtaavat toisensa Malmitalolla!</p><p>Kolme itsenäistä artistia - kolme erilaista mutta sitäkin vaikuttavampaa lähestymistapaa sinisävelten esittämiseen soolona. Tule kokemaan ainutkertainen \"battle of the one man blues bands\", jossa leikkimielisessä kamppailussa toisistaan mittaa ottavat kalifornialainen Nathan James, Lontoossa huomattavan osan arjestaan nykyisin viettävä Jussi \"Jo' Buddy\" Raulamo sekä helsinkiläinen Jantso Jokelin. <br> <br>International Blues Challenge -kilpailun soolo/duo -sarjan Yhdysvaltain Memphisissä vuonna 2007 yhdessä Ben Hernandezin kanssa voittanut Nathan James tunnetaan virtuoosimaisena kielisoitinten taitajana sekä omaa musiikkiaan 2000-luvun alusta lähtien levyttäneenä lahjakkaana laulaja-lauluntekijänä. Kotikulmillaan Kalifornian Oceansidessa myös Sacred Cat -studiotaan pyörittävän moniosaajan yhteistyökumppaneiksi ovat vuosien saatossa valikoituneet mm. Buddy Guy, James Harman ja Kim Wilson. Suomessa Nathan James on esiintynyt edellisen kerran vuonna 2013. <br> <br>Suomen kansainvälisimpiin sekä samalla karismaattisimpiin juurimusiikin sanansaattajiin lukeutuvalle Jussi Raulamolle on kertynyt aktiivisen bänditoiminnan ohella myös globaalia soolokeikka- ja katusoittokokemusta lähes 40 vuoden jaksolta. Lisäksi artisti on julkaissut vuonna 2023 albumillisen luomu-tuotantoista soolomateriaalia nimikkeen Jo' Buddy's One Man Stomptet takaa. <br> <br>Bluesmuusikon roolinsa lisäksi myös toimittajana ja kirjailijana ansioitunut Jantso Jokelin palkittiin Kroatian Splitissä huhtikuussa 2025 käydyssä European Blues Challengessa kisan parhaat tuomaristoäänet saavuttaneena soolo/duoesiintyjänä. Huuliharppua ja kitaroita pääinstrumentteinaan soittavan valovoimaisen laulaja-lauluntekijän esikoisalbumi \"Spark Of Luck\" on kerännyt kauttaaltaan ylistäviä kriitikkoarvioita aina Yhdysvaltoja myöten.<br>Kesto: 2h 10 min, sis. väliajan 20 min <br>Liput: 22,80 €</p>"
            },
            "name": {
                "fi": "Kolme bluesmiestä ja battle – Nathan James (USA), Jo' Buddy (FIN), Jantso Jokelin (FIN)",
                "sv": "Kolme bluesmiestä ja battle – Nathan James (USA), Jo' Buddy (FIN), Jantso Jokelin (FIN)",
                "en": "Kolme bluesmiestä ja battle – Nathan James (USA), Jo' Buddy (FIN), Jantso Jokelin (FIN)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67059/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67058",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490883,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-24T08:13:26.901600Z",
                    "last_modified_time": "2025-09-24T08:13:26.901617Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777705.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490883/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-24T08:13:26.322255Z",
            "last_modified_time": "2025-09-24T08:13:27.465933Z",
            "date_published": null,
            "start_time": "2025-09-27T09:00:00Z",
            "end_time": "2025-09-27T11:10:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Celebrated short films from Cannes-awarded, internationally renowned filmmaker Apichatpong Weerasethakul.",
                "sv": "Celebrated short films from Cannes-awarded, internationally renowned filmmaker Apichatpong Weerasethakul.",
                "en": "Celebrated short films from Cannes-awarded, internationally renowned filmmaker Apichatpong Weerasethakul."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/08928BBAB5B8C2FA914FC035C62445C9/Apichatpong_Weerasethakul_s_Short_Film_Screening",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/08928BBAB5B8C2FA914FC035C62445C9/Apichatpong_Weerasethakul_s_Short_Film_Screening",
                "en": "http://www.malmitalo.fi/en/events/event/08928BBAB5B8C2FA914FC035C62445C9/Apichatpong_Weerasethakul_s_Short_Film_Screening"
            },
            "description": {
                "fi": "<p>Celebrated short films from Cannes-awarded, internationally renowned filmmaker Apichatpong Weerasethakul.</p><p><b>Short Films screened:</b><br>Vampire, 2008, 19min<br>Ablaze, 2016, 5min<br>On Blue, 2022, 16min<br>A Letter to Uncle Boonmee (Primitive project), 2009, 18min<br>Worldly Desires, 2005, 43min<br>Vapour, 2015, 21min</p><p>All films have English subtitles, or contain no dialogue.</p><p><b>Apichatpong</b> began making films and video shorts in 1994 and completed his first feature in 2000. He has also mounted exhibitions and installations in many countries since 1998. Apichatpong is recognized as a major interna@filmmaker and visual artist. His works are characterized by their use of non-linear storytelling, often dealing with themes of memory, loss, identity, desire, and history.</p><p>His works have won him widespread international recognition and numerous awards, including the Cannes Jury Prize in 2021 for Memoria, his first film shot outside of Thailand featuring Tilda Swinton. He also won the Cannes Palme d’Or in 2010 with Uncle Boonmee, Who Can Recall His Past Lives. His Tropical Malady won the Cannes Competition Jury Prize in 2004 and Blissfully Yours won the Cannes Un Certain Regard Award in 2002. Syndromes and a Century(2006) was recognised as one of the best films of the last decade in several 2010 polls. His art prizes include the Sharjah Biennial Prize (2013), the Fukuoka Prize (2013), the Yanghyun Art Prize (2014) and the Artes Mundi Award (2019). His installations have been shown at the Haus der Kunst in Munich, The New Museum in New York, MAIIAM Contemporary in Chiang Mai, Documenta in Kassel, and the Taipei Fine Arts Museum in Taipei, among others.</p><p>His artworks include the multi-screen project Primitive(2009), Fireworks (Archives)(2014), and Invisibility(2016). They have been acquired by major institutions such as Tate Modern, Fondation Louis Vuitton, Centre Georges Pompidou, Museum of Contemporary Art Tokyo, M+, Museu d'Art Contemporani de Barcelona, and SFMOMA. His recent installations include Fiction(2018), SleepCinemaHotel(2018), Minor History(2021, 2022), A Conversation with the Sun VR(2022), Solarium(2023), and Ring of Fire(2024), in collaboration with Haegue Yang. The piece is on view at Benesse Art Site, Naoshima island. A retrospective of his work was recently shown in Paris' Centre Pompidou in 2024. Apichatpong lives and works in Chiang Mai, Thailand.</p><p>Free entrance, welcome!</p>",
                "sv": "<p>Celebrated short films from Cannes-awarded, internationally renowned filmmaker Apichatpong Weerasethakul.</p><p><b>Short Films screened:</b><br>Vampire, 2008, 19min<br>Ablaze, 2016, 5min<br>On Blue, 2022, 16min<br>A Letter to Uncle Boonmee (Primitive project), 2009, 18min<br>Worldly Desires, 2005, 43min<br>Vapour, 2015, 21min</p><p>All films have English subtitles, or contain no dialogue.</p><p><b>Apichatpong</b> began making films and video shorts in 1994 and completed his first feature in 2000. He has also mounted exhibitions and installations in many countries since 1998. Apichatpong is recognized as a major interna@filmmaker and visual artist. His works are characterized by their use of non-linear storytelling, often dealing with themes of memory, loss, identity, desire, and history.</p><p>His works have won him widespread international recognition and numerous awards, including the Cannes Jury Prize in 2021 for Memoria, his first film shot outside of Thailand featuring Tilda Swinton. He also won the Cannes Palme d’Or in 2010 with Uncle Boonmee, Who Can Recall His Past Lives. His Tropical Malady won the Cannes Competition Jury Prize in 2004 and Blissfully Yours won the Cannes Un Certain Regard Award in 2002. Syndromes and a Century(2006) was recognised as one of the best films of the last decade in several 2010 polls. His art prizes include the Sharjah Biennial Prize (2013), the Fukuoka Prize (2013), the Yanghyun Art Prize (2014) and the Artes Mundi Award (2019). His installations have been shown at the Haus der Kunst in Munich, The New Museum in New York, MAIIAM Contemporary in Chiang Mai, Documenta in Kassel, and the Taipei Fine Arts Museum in Taipei, among others.</p><p>His artworks include the multi-screen project Primitive(2009), Fireworks (Archives)(2014), and Invisibility(2016). They have been acquired by major institutions such as Tate Modern, Fondation Louis Vuitton, Centre Georges Pompidou, Museum of Contemporary Art Tokyo, M+, Museu d'Art Contemporani de Barcelona, and SFMOMA. His recent installations include Fiction(2018), SleepCinemaHotel(2018), Minor History(2021, 2022), A Conversation with the Sun VR(2022), Solarium(2023), and Ring of Fire(2024), in collaboration with Haegue Yang. The piece is on view at Benesse Art Site, Naoshima island. A retrospective of his work was recently shown in Paris' Centre Pompidou in 2024. Apichatpong lives and works in Chiang Mai, Thailand.</p><p>Free entrance, welcome!</p>",
                "en": "<p>Celebrated short films from Cannes-awarded, internationally renowned filmmaker Apichatpong Weerasethakul.</p><p><b>Short Films screened:</b><br>Vampire, 2008, 19min<br>Ablaze, 2016, 5min<br>On Blue, 2022, 16min<br>A Letter to Uncle Boonmee (Primitive project), 2009, 18min<br>Worldly Desires, 2005, 43min<br>Vapour, 2015, 21min</p><p>All films have English subtitles, or contain no dialogue.</p><p><b>Apichatpong</b> began making films and video shorts in 1994 and completed his first feature in 2000. He has also mounted exhibitions and installations in many countries since 1998. Apichatpong is recognized as a major interna@filmmaker and visual artist. His works are characterized by their use of non-linear storytelling, often dealing with themes of memory, loss, identity, desire, and history.</p><p>His works have won him widespread international recognition and numerous awards, including the Cannes Jury Prize in 2021 for Memoria, his first film shot outside of Thailand featuring Tilda Swinton. He also won the Cannes Palme d’Or in 2010 with Uncle Boonmee, Who Can Recall His Past Lives. His Tropical Malady won the Cannes Competition Jury Prize in 2004 and Blissfully Yours won the Cannes Un Certain Regard Award in 2002. Syndromes and a Century(2006) was recognised as one of the best films of the last decade in several 2010 polls. His art prizes include the Sharjah Biennial Prize (2013), the Fukuoka Prize (2013), the Yanghyun Art Prize (2014) and the Artes Mundi Award (2019). His installations have been shown at the Haus der Kunst in Munich, The New Museum in New York, MAIIAM Contemporary in Chiang Mai, Documenta in Kassel, and the Taipei Fine Arts Museum in Taipei, among others.</p><p>His artworks include the multi-screen project Primitive(2009), Fireworks (Archives)(2014), and Invisibility(2016). They have been acquired by major institutions such as Tate Modern, Fondation Louis Vuitton, Centre Georges Pompidou, Museum of Contemporary Art Tokyo, M+, Museu d'Art Contemporani de Barcelona, and SFMOMA. His recent installations include Fiction(2018), SleepCinemaHotel(2018), Minor History(2021, 2022), A Conversation with the Sun VR(2022), Solarium(2023), and Ring of Fire(2024), in collaboration with Haegue Yang. The piece is on view at Benesse Art Site, Naoshima island. A retrospective of his work was recently shown in Paris' Centre Pompidou in 2024. Apichatpong lives and works in Chiang Mai, Thailand.</p><p>Free entrance, welcome!</p>"
            },
            "name": {
                "fi": "Apichatpong Weerasethakul’s Short Film Screening – Drifts festival",
                "sv": "Apichatpong Weerasethakul’s Short Film Screening – Drifts festival",
                "en": "Apichatpong Weerasethakul’s Short Film Screening – Drifts festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67058/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65977",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117673/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117673/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117673/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154815,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T09:12:25.345029Z",
                    "last_modified_time": "2025-07-01T09:12:25.345044Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769576.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154815/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T09:12:25.283069Z",
            "last_modified_time": "2025-09-23T06:13:19.673842Z",
            "date_published": null,
            "start_time": "2025-09-24T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Syyskuun roots-keikalla nähdään rockabillyä, countrya, westernswingiä ja rock’n’rollia yhdistelevä The Munsons!",
                "sv": "På roots-spelningen i september ser vi The Munsons, som kombinerar rockabilly, country, westernswing och rock'n'roll!",
                "en": "At September's roots gig, The Munsons will take the stage with their blend of rockabilly, country, westernswing and rock'n'roll!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0CCCB5E5E90F7736BAFA5327A7C1D823/LOPPUUNMYYTY_The_Munsons",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0CCCB5E5E90F7736BAFA5327A7C1D823/SLUTSALD_The_Munsons",
                "en": "http://www.malmitalo.fi/en/events/event/0CCCB5E5E90F7736BAFA5327A7C1D823/SOLD_OUT_The_Munsons"
            },
            "description": {
                "fi": "<p>Syyskuun roots-keikalla nähdään rockabillyä, countrya, westernswingiä ja rock’n’rollia yhdistelevä The Munsons!</p><p>Malmitalon suosittu Roots-musiikin evoluutio -sarja jatkuu taas!<br> <br>The Munsons on Tommi Vikstenin ja Melrosen Tokelan muodostama duo, jossa kaverukset pääsevät soittamaan ja laulamaan rakastamaansa musiikkia. Ohjelmistoon kuuluu mm: Countrya, Rock-a-Billya, Westernswingiä, Rhythm ’n’ Bluesia, Hillbillya, Rock’n’Rollia, 50 luvun poppia sekä myös ”erilaisempaa” materiaalia esim: ZZ Toppia tai Queens of the Stone Agea.</p><p>Valtaosa kappaleista esitetään kaksiäänisesti stemmoissa laulaen ja säestys tapahtuu kahden kitaran (yleensä akustinen ja sähkis) voimin. Yhtye on ollut kasassa vuodesta 2005 lähtien ja keikkoja on tehty ympäri Suomea.</p><p>Kesto: 1 t 10 min, sis. 20 min väliajan</p>",
                "sv": "<p>På roots-spelningen i september ser vi The Munsons, som kombinerar rockabilly, country, westernswing och rock'n'roll!</p><p>Den populära serien Roots-musiikin evoluutio i Malms kulturhus fortsätter igen!<br> <br>The Munsons är en duo, bestående av Tommi Viksten och Melrosen Tokela, där vännerna får spela och sjunga den musik de älskar. Programmet innehåller bland annat: Country, Rock-a-Billy, Westernswing, Rhythm 'n' Blues, Hillbilly, Rock'n'Roll, 50-talspop och mer ”annorlunda” material såsom: ZZ Top eller Queens of the Stone Age.</p><p>Merparten av låtarna framförs med tvåstämmig sång och ackompanjemanget sker med två gitarrer (vanligen en akustisk gitarr och en elgitarr). Bandet har funnits sedan 2005 och har spelat över hela Finland.</p><p>Längd: 1 timme 10 minuter, inklusive paus 20 minuter</p>",
                "en": "<p>At September's roots gig, The Munsons will take the stage with their blend of rockabilly, country, westernswing and rock'n'roll!</p><p>Malmitalo's popular Roots Music Evolution series continues!<br> <br>The Munsons is a duo formed by Tommi Viksten and Tokela from Melrose, who come together to play and sing the music they love. The set includes: Country, Rockabilly, Westernswing, Rhythm'n'blues, Hillbilly, Rock'n'roll, 50s pop and some \"unexpected\" material, such as: ZZ Top or Queens of the Stone Age.</p><p>Most of the songs are performed in two-part harmony, with both members singing and accompanying themselves on two guitars (usually one acoustic and one electric). The duo have been playing together since 2005 and have performed gigs all around Finland.</p><p>Duration: 1 hour 10 min, incl. a 20-min intermission</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY The Munsons – Roots-musiikin evoluutio vol. 11",
                "sv": "SLUTSÅLD The Munsons – Roots-musiikin evoluutio vol. 11",
                "en": "SOLD OUT The Munsons – Roots-musiikin evoluutio vol. 11"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65977/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66948",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490854,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-22T13:12:58.713472Z",
                    "last_modified_time": "2025-09-22T13:12:58.713489Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776505.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490854/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-22T13:12:58.562004Z",
            "last_modified_time": "2025-09-22T13:12:58.871629Z",
            "date_published": null,
            "start_time": "2025-09-24T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/019860C2590BCE2C43C6C34B15250B95/The_Last_Viking_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/019860C2590BCE2C43C6C34B15250B95/The_Last_Viking_16_",
                "en": "http://www.malmitalo.fi/en/events/event/019860C2590BCE2C43C6C34B15250B95/_The_Last_Viking_16_"
            },
            "description": {
                "fi": "<p>Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa.</p><p>Ennen sitä hänen on kuitenkin saatava käsiinsä ryöstösaalis, jonka vuoksi hän joutui vankilaan – rahat, jotka hänen kaksoisveljensä Manfred on piilottanut. Valitettavasti Manfred on vetäytynyt traumaattisten kokemusten vuoksi uuteen alter egoonsa, Beatlesien keulahahmoon John Lennoniin. Ja tämä \"John\" ei tiedä mitään kadonneista rahoista.</p><p>Ankerin vanha rikoskumppani Nice Flemming sen sijaan muistaa rahat hyvin ja vaatii nyt omaa osuuttaan. Veljekset palaavat kotiseudulleen etsimään rahoja, mutta löytävät kätköistä paljon enemmän kuin osasivat odottaa…</p><p>Ikäraja: 16<br>Kesto: 116 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "The Last Viking (16) – Kino Helios",
                "sv": "The Last Viking (16) – Kino Helios",
                "en": "The Last Viking (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66948/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66183",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 892919,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-30T07:12:48.337714Z",
                    "last_modified_time": "2025-05-30T07:12:48.337728Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772445.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/892919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-30T07:12:48.284097Z",
            "last_modified_time": "2025-09-19T11:12:47.025359Z",
            "date_published": null,
            "start_time": "2025-09-25T13:00:00Z",
            "end_time": "2025-09-25T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!",
                "sv": "Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!",
                "en": "Cultural Centre Malmitalo welcomes the recently arrived international residents to Helsinki!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo",
                "en": "http://www.malmitalo.fi/en/events/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo"
            },
            "description": {
                "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Day tarjoaa hyödyllisen tiedon lisäksi hauskaa, inspiroivaa ja yhteisöllistä ohjelmaa kaikenikäisille. Ohjelma huipentuu Suistamon Sähkö -yhtyeen vauhdikkaaseen konserttiin.</p><p>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton, mutta vaatii ennakkoilmoittautumisen. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Ilmoittaudu mukaan!</a></u></p><p>Tapahtumassa osallistujat pääsevät nauttimaan myös pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p><p><b>Welcome Dayn aikataulu</b></p><p>klo 16–18.45 Palvelujen ja harrastustoiminnan esittely Malmitalon aulassa <br>klo 16.30–18.30 Työpajoja ja osallistavaa toimintaa <br>klo 18.30–19.30 Ohjelmaa Malmisalissa</p><p><b>klo 16–18.45 Palvelujen ja harrastustoiminnan esittely Malmitalon aulassa</b> <br>Aulaan saapuu 20 kaupungin palvelujen ja yhdistystoiminnan edustajaa esittelemään toimintaansa.</p><p><b>klo 16.30–18.30 Työpajoja ja osallistavaa toimintaa</b></p><p>Stories about integration art workshop, AFAES ry <br>Keskustelua ja kohtaamisia sisältävä taidepaja, jossa paalataan T-paitoja.  <br>Paikka: Kirjaston monitoimitila</p><p>Seikkailutaidekoulun luonnonmaalipalettipaja <br>Maalausta luonnonmateriaalitekniikoilla ohjaajien opastuksessa. <br>Sijainti: Kirjasto, lasten osaston ja varaushyllyjen välinen tila</p><p>Nuorisopalvelujen korutyöpaja lapsille <br>Tehdään yhdessä koruja nuorisopalvelujen opastuksella! <br>Sijainti: Kirjasto, Lasten osaston satunurkkaus</p><p>Sirkus Magentan temppuilupaja lapsille<br>Tule mukaan kokeilemaan sirkusta!</p><p>Speed Friending -työpaja klo 17–18.30<br>Sijainti: Kokoushuone 2</p><p><b>klo 18.30–19.30 Ohjelmaa Malmisalissa</b> <br>Juontajan puhe: Yasin Omer Nur kertoo kokemuksistaan Helsingissä asumisesta/työskentelystä (MakeSomeNoise-verkosto) klo 18.30.</p><p><b>Suistamon sähkön musiikkiesitys 18.40-19.30</b></p><p><b>Suistamon Sähkö</b><br>Suistamon Sähkö on riehakasta reivimeininkiä, syntetisaattorin surinaa, räppijulistusta ja neuvostovalmisteista paljepeliä suosiva genrehybridi. Yhtyeen primitiivisen alkuvoimainen rytmimaailma liikkuu ennakkoluulottomasti etnoteknon ja hiphopin maailmoissa tuottaen yleisölleen vallatonta ja kokeellista tanssimusiikkia.</p>",
                "sv": "<p>Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!</p><p>Under evenemanget får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Welcome Day erbjuder förutom nyttig information även ett roligt, inspirerande och gemenskapligt program för personer i alla åldrar. Programmet kulminerar i en fartfylld konsert med Suistamon Sähkö.</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning enligt behov. Evenemanget är avgiftsfritt men förutsätter förhandsanmälan. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Anmäl dig!</a></u></p><p>Under evenemanget får deltagarna även njuta av kaffe och bulle enligt finländsk tradition.</p><p>Suistamon Sähkö<br>Suistamon Sähkö är en genrehybrid med högljutt reverb, synthesizersurr, rapmanifest och bälgspel tillverkat i Sovjetunionen. Bandets rytmvärld med primitiv kraft rör sig fördomsfritt i etnoteknos och hiphopens världar och producerar vild och experimentell dansmusik för sin publik.</p><p>Fritt inträde!</p><p>Längd: 4 timmar</p>",
                "en": "<p>Cultural Centre Malmitalo welcomes the recently arrived international residents to Helsinki!</p><p>In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods.</p><p>In addition to providing useful information, the Welcome Day program includes fun, inspiring and communal activities for people of all ages. The program culminates in a high-energy concert by Suistamo Sähkö.</p><p>We speak English at Welcome Day. Additionally, interpreters will be present at the event. The event is free to attend, but sign-ups are required. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Sign up!</a></u></p><p>Traditional Finnish “pulla” (pastries) and coffee will also be served.</p><p><b>The program for Welcome Day Malmitalo</b><br> <br><b>16.00</b>: The services of the City of Helsinki, local art schools and NGOs present their activities in the lobby of Malmitalo. This part of the program will end at 18.45.<br> <br><b>16.30–18.30: Fun activities for people of all ages</b></p><p><b>Speed Friending (Meeting Room 2, 2nd floor)</b><br>17.00-18.30<br>Meet new people by taking part in the speedy process!<br>Organizer: Tyypit tyypit kollektiivi</p><p><b>Circus for kids! (Small Auditorium / Pieni sali)</b><br>Organizer: Sirkus Magenta</p><p><b>Stories about integration art workshop (Library)</b><br>Organizer: Africans and African European Association</p><p><b>Nature Palette (Library)</b><br>Painting with natural colors!<br>Organizer: Seikkailutaidekoulu</p><p><b>Make your own Jewelry! (Library)</b><br>Organizer: Youth Services</p><p><b>Lego Building: My Dream Helsinki (Library)</b><br>Organizer: Stadiluotsi Kirsti Kallansalo</p><p><b>18.30: The host of the evening, Yasin Omer Nur, will share his experiences on living/working in Helsinki.</b> (Malmisali)</p><p><b>18:40–19:30 Suistamon Sähkö will perform</b> (Malmisali)<br>Suistamon Sähkö gains momentum gig by gig and cheerfully moves through ethno techno and smoke shack sounds to the world of hip hop like the genre hybrid they are. The group favours a boisterous rave atmosphere, synthesizer buzz, rap declarations and a Soviet-made accordion and makes the audience jiggle and the cottage floor shake. The Suistamon Sähkö rhythm universe is a rambunctious mix of primitive primordial force and experimental dance music.</p>"
            },
            "name": {
                "fi": "Welcome Day Malmitalo",
                "sv": "Welcome Day Malmitalo",
                "en": "Welcome Day Malmitalo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66183/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}