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=11
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1627,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=12",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=10"
    },
    "data": [
        {
            "id": "kulke:67321",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118882/",
                        "sv": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118882/",
                        "en": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118882/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494261,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-19T09:13:32.168637Z",
                    "last_modified_time": "2025-12-19T09:13:32.168651Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780958.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494261/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-19T09:13:32.004269Z",
            "last_modified_time": "2025-12-19T09:13:32.376282Z",
            "date_published": null,
            "start_time": "2026-01-09T13: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": "Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ED11C6C65567BC8CD6B0E9DB25AA1254/Terapia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/ED11C6C65567BC8CD6B0E9DB25AA1254/Terapia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/ED11C6C65567BC8CD6B0E9DB25AA1254/Terapia_12_"
            },
            "description": {
                "fi": "<p>Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan.</p><p>Leirillä he päätyvät törmäyskurssille itsensä ja parisuhteidensa kanssa. Samaan aikaan terapeutit kamppailevat oman avioliittonsa ja murenevien unelmiensa keskellä. Draamakomedian on ohjannut ja käsikirjoittanut Paavo Westerberg.</p><p>Elokuvassa näyttelevät maamme kirkkaimpiin tähtiin lukeutuvat Pihla Viitala, Tommi Korpela, Alma Pöysti, Matleena Kuusniemi, Antti Luusuaniemi, Jarkko Niemi, Mikko Kauppila ja Jakob Öhrman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Terapia (12) – Kino Helios",
                "sv": "Terapia (12) – Kino Helios",
                "en": "Terapia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67321/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67465",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494004,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:03.897440Z",
                    "last_modified_time": "2025-12-03T08:13:03.897454Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781428.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494004/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:03.696571Z",
            "last_modified_time": "2025-12-18T11:13:35.696514Z",
            "date_published": null,
            "start_time": "2026-01-13T15: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": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!",
                "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!",
                "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/796C4DA906F3B404A4F91693E84D2EC1/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/796C4DA906F3B404A4F91693E84D2EC1/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/796C4DA906F3B404A4F91693E84D2EC1/Singalongs"
            },
            "description": {
                "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>",
                "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Allsång",
                "en": "Singalongs"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67465/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67302",
            "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:596/?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": 1494041,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T09:12:46.997307Z",
                    "last_modified_time": "2025-12-04T09:12:46.997321Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780901.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494041/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T09:12:46.867315Z",
            "last_modified_time": "2025-12-12T14:13:17.807407Z",
            "date_published": null,
            "start_time": "2025-12-09",
            "end_time": "2025-12-31",
            "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": "Hannele Kallio on kirjoittanut runoja koko aikuisikänsä. Malmitalon aulassa voi syventyä Kallion runoihin runonäyttelyssä, joka on esillä 9.-31.12.2025."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/590EDCC0404F7B1F376D1CBB141F885E/Runonayttely_Kaikella_kunnioituksella",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/590EDCC0404F7B1F376D1CBB141F885E/Runonayttely_Kaikella_kunnioituksella",
                "en": "http://www.malmitalo.fi/en/events/event/590EDCC0404F7B1F376D1CBB141F885E/Runonayttely_Kaikella_kunnioituksella"
            },
            "description": {
                "fi": "<p>Hannele Kallio on kirjoittanut runoja koko aikuisikänsä. Malmitalon aulassa voi syventyä Kallion runoihin runonäyttelyssä, joka on esillä 9.-31.12.2025.</p><p>”Kirjoittaminen on sydämeni valo ja iso osa minuuttani. Tapani kirjoittaa on puhutteleva. Sanat soittavat sieluni kaikkia sävelmiä, sitä, miten tätä maailmaa ymmärrän ja katselen. Haluaisin avata ihmisille runouden maailmaa, joka on kaunis, hauras ja ihmeellinen.\"</p><p>Hannele Kallion runonlausuntatilaisuus Malmitalon galleriassa maanantaina 15.12.2025 klo 17-18.</p><p>Tervetuloa!</p>"
            },
            "name": {
                "fi": "Runonäyttely Kaikella kunnioituksella – Hannele Kallio",
                "sv": "Runonäyttely Kaikella kunnioituksella – Hannele Kallio",
                "en": "Runonäyttely Kaikella kunnioituksella – Hannele Kallio"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67302/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67762",
            "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": 1494168,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-10T10:13:15.507080Z",
                    "last_modified_time": "2025-12-10T10:13:15.507094Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782721.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-10T10:13:15.363308Z",
            "last_modified_time": "2025-12-10T10:13:15.713965Z",
            "date_published": null,
            "start_time": "2025-12-17",
            "end_time": "2026-01-16",
            "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": "Taito käsityö- ja muotoilukoulu Etelä-Suomen taiteen perusopetuksen aikuisten syventävien opintojen lopputyönäyttely."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0EBAFE708C32848D37E6E7AD64F605E7/Kasitellen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0EBAFE708C32848D37E6E7AD64F605E7/Kasitellen",
                "en": "http://www.malmitalo.fi/en/events/event/0EBAFE708C32848D37E6E7AD64F605E7/Kasitellen"
            },
            "description": {
                "fi": "<p>Taito käsityö- ja muotoilukoulu Etelä-Suomen taiteen perusopetuksen aikuisten syventävien opintojen lopputyönäyttely.</p><p>Esillä Malmitalon parvella 17.12. – 16.1. Avoinna Malmitalon aukioloaikoina.</p><p>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Käsitellen",
                "sv": "Käsitellen",
                "en": "Käsitellen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67762/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67323",
            "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-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494135,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:55.195196Z",
                    "last_modified_time": "2025-12-08T13:13:55.195211Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780961.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494135/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:55.081261Z",
            "last_modified_time": "2025-12-08T13:13:55.333633Z",
            "date_published": null,
            "start_time": "2026-01-10T13: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": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_",
                "en": "http://www.malmitalo.fi/en/events/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus (S) – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus (S) – Kino Helios",
                "en": "Supermarsu ja suuri huijaus (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67323/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67317",
            "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-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494134,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:54.424744Z",
                    "last_modified_time": "2025-12-08T13:13:54.424765Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780952.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494134/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:54.319108Z",
            "last_modified_time": "2025-12-08T13:13:54.558632Z",
            "date_published": null,
            "start_time": "2026-01-03T13: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": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus",
                "en": "http://www.malmitalo.fi/en/events/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus – Kino Helios",
                "en": "Supermarsu ja suuri huijaus – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67317/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67310",
            "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-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494133,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:54.029400Z",
                    "last_modified_time": "2025-12-08T13:13:54.029413Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780921.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494133/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:53.877908Z",
            "last_modified_time": "2025-12-08T13:13:54.190422Z",
            "date_published": null,
            "start_time": "2026-01-02T16: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": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus",
                "en": "http://www.malmitalo.fi/en/events/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus – Kino Helios",
                "en": "Supermarsu ja suuri huijaus – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67310/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67320",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494127,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T11:13:53.838943Z",
                    "last_modified_time": "2025-12-08T11:13:53.838963Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780956.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494127/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T11:13:53.718687Z",
            "last_modified_time": "2025-12-08T11:13:53.986242Z",
            "date_published": null,
            "start_time": "2026-01-07T16: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": "Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/852F29AF767348A1058536C323ABE814/Roofman_Kattokeikkailija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/852F29AF767348A1058536C323ABE814/Roofman_Kattokeikkailija_12_",
                "en": "http://www.malmitalo.fi/en/events/event/852F29AF767348A1058536C323ABE814/Roofman_Kattokeikkailija_12_"
            },
            "description": {
                "fi": "<p>Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan.</p><p>Vankilasta paennut entinen sotilas ja ammattivaras Jeffrey löytää piilopaikan lelukaupan sisältä ja onnistuu elämään siellä kuukausien ajan kenenkään huomaamatta – samalla tehden murtokeikkoja kattojen kautta.</p><p>Huolellisesti rakennettu kaksoiselämä alkaa kuitenkin rakoilla, kun hän rakastuu Leighin (Kirsten Dunst). Alkaa jännittävä takaa-ajo ja menneisyyden tapahtumat saavat Jeffreyn kiinni. Elokuvan on ohjannut Derek Cianfrance (Blue Valentine, The Place Beyond The Pines, Sound of Metal).</p><p>Ikäraja: 12<br>Kesto: 125 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "sv": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "en": "Roofman – Kattokeikkailija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67320/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67748",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494125,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T10:13:06.753589Z",
                    "last_modified_time": "2025-12-08T10:13:06.753603Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777315.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T10:13:06.673192Z",
            "last_modified_time": "2025-12-08T10:13:06.864893Z",
            "date_published": null,
            "start_time": "2025-12-19T16: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": "Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_",
                "en": "http://www.malmitalo.fi/en/events/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_"
            },
            "description": {
                "fi": "<p>Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan.</p><p>Vankilasta paennut entinen sotilas ja ammattivaras Jeffrey löytää piilopaikan lelukaupan sisältä ja onnistuu elämään siellä kuukausien ajan kenenkään huomaamatta – samalla tehden murtokeikkoja kattojen kautta.</p><p>Huolellisesti rakennettu kaksoiselämä alkaa kuitenkin rakoilla, kun hän rakastuu Leighin (Kirsten Dunst). Alkaa jännittävä takaa-ajo ja menneisyyden tapahtumat saavat Jeffreyn kiinni. Elokuvan on ohjannut Derek Cianfrance (Blue Valentine, The Place Beyond The Pines, Sound of Metal).</p><p>Ikäraja: 12<br>Kesto: 125 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "sv": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "en": "Roofman – Kattokeikkailija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67748/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67747",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494124,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T10:13:06.204622Z",
                    "last_modified_time": "2025-12-08T10:13:06.204638Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777351.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494124/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T10:13:06.071893Z",
            "last_modified_time": "2025-12-08T10:13:06.352181Z",
            "date_published": null,
            "start_time": "2025-12-17T16: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": "Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_",
                "en": "http://www.malmitalo.fi/en/events/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_"
            },
            "description": {
                "fi": "<p>Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan.</p><p>Vankilasta paennut entinen sotilas ja ammattivaras Jeffrey löytää piilopaikan lelukaupan sisältä ja onnistuu elämään siellä kuukausien ajan kenenkään huomaamatta – samalla tehden murtokeikkoja kattojen kautta.</p><p>Huolellisesti rakennettu kaksoiselämä alkaa kuitenkin rakoilla, kun hän rakastuu Leighin (Kirsten Dunst). Alkaa jännittävä takaa-ajo ja menneisyyden tapahtumat saavat Jeffreyn kiinni. Elokuvan on ohjannut Derek Cianfrance (Blue Valentine, The Place Beyond The Pines, Sound of Metal).</p><p>Ikäraja: 12<br>Kesto: 125 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "sv": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "en": "Roofman – Kattokeikkailija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67747/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67746",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494122,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:46.708524Z",
                    "last_modified_time": "2025-12-08T09:13:46.708540Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777387.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494122/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:46.588107Z",
            "last_modified_time": "2025-12-08T09:13:46.862092Z",
            "date_published": null,
            "start_time": "2025-12-27T16: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": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67746/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67745",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494121,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:46.087771Z",
                    "last_modified_time": "2025-12-08T09:13:46.087787Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777384.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:45.975471Z",
            "last_modified_time": "2025-12-08T09:13:46.241181Z",
            "date_published": null,
            "start_time": "2025-12-20T16: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": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67745/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67743",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494120,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:45.519673Z",
                    "last_modified_time": "2025-12-08T09:13:45.519688Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777314.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494120/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:45.394229Z",
            "last_modified_time": "2025-12-08T09:13:45.687282Z",
            "date_published": null,
            "start_time": "2025-12-19T13: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": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_",
                "en": "http://www.malmitalo.fi/en/events/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Bruce Springsteenin vuoden 1982 Nebraska-albumin tekemisestä aikana, jolloin Springsteen oli vielä menestyspaineiden ja menneisyyden haamujen kanssa painiskeleva nuori muusikko, joka sinnitteli maailmanlaajuisen supertähteyden kynnyksellä.</p><p>Springsteenin asunnon makuuhuoneessa New Jerseyssä neliraitanauhurilla äänitetty albumi merkitsi käännekohtaa hänen elämässään, ja sitä pidetään edelleen yhtenä Springsteenin ajattomimmista teoksista — se on karu ja tunnelmaltaan aavemainen akustinen levy, jolla kadonneet sielut etsivät syytä uskoa tulevaan.</p><p>Ikäraja: 12<br>Kesto: 120 min<br>Ensi-ilta: 31.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios",
                "sv": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios",
                "en": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67743/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67744",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494119,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:44.497961Z",
                    "last_modified_time": "2025-12-08T09:13:44.497979Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777350.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494119/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:44.351520Z",
            "last_modified_time": "2025-12-08T09:13:44.670396Z",
            "date_published": null,
            "start_time": "2025-12-17T13: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": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67744/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67695",
            "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: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"
                },
                {
                    "@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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/",
                        "sv": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/",
                        "en": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T08:13:00.663134Z",
                    "last_modified_time": "2025-12-08T08:13:00.663164Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777386.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494116/?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-12-08T08:13:00.564607Z",
            "last_modified_time": "2025-12-08T08:13:00.821056Z",
            "date_published": null,
            "start_time": "2025-12-27T13: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": "Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_",
                "en": "http://www.malmitalo.fi/en/events/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_"
            },
            "description": {
                "fi": "<p>Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta.</p><p>Lumi ja Talvi ovat olleet erottamattomat koko elämänsä ajan, kunnes kohtalo yllättäen ajaa heidät erilleen. Lumi päätyy taianomaiseen tonttumaahan, jossa tontut valmistavat joululahjat kaikille maailman lapsille. Alkaa seikkailu, joka vaatii rohkeutta, luottamusta ja kekseliäisyyttä. Tontut ovat aluksi epäluuloisia tyhjästä tupsahtavaa ihmislasta kohtaan, mutta tonttulapsi Pyry ottaa Lumin mielenkiinnolla vastaan. Pyry on kiinnostunut uusista seikkailuista ja ystävyys Lumin kanssa näyttää mahdollisuudelta jännittävään matkaan. Talvinen retki tonttujen taianomaisessa maailmassa on täynnä yllätyksiä ja joulun ihmeitä.</p><p>Joonas Berghäll ja Hannes Vartiainen ovat ohjanneet Tonttu-elokuvan, jota on kuvattu Kemin Lumilinnassa, Levillä, Rovaniemellä ja Helsingissä. Elokuvan lapsirooleissa nähdään Soma Zimmatore, Thea Achillea ja Marco Stylianou. Muissa rooleissa nähdään huippuammattilaisia kuten Sara Melleri, Jarkko Niemi, Alma Pöysti, Eero Milonoff, Kati Outinen ja Vesa Vierikko. Mukana myös Tonttu-maailman vartijoina tubettaja, artisti Seksikäs-Suklaa ja artisti Musta Barbaari. Sivurooleissa nähdään myös vaikuttajat Viivi ja Venla.</p><p>Robin Packalen julkaisee suomalaisen Tonttu-elokuvan tunnuskappaleen Piece by Piece keskiviikkona 12.11. Se on yhteisjulkaisu ruotsalaisartisti Clara Maen kanssa. Kappale on tehty suomalaisvoimin – Packalenin mukana kappaletta ovat olleet tekemässä ILON, Camu Creutz sekä Elias Hjelm.</p><p>Ikäraja: 7<br>Kesto: 81 min<br>Ensi-ilta: 14.11.2025<br>Kieli: puhuttu suomeksi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Tonttu (7)",
                "sv": "Kino Helios: Tonttu (7)",
                "en": "Kino Helios: Tonttu (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67695/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67237",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493948,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T13:12:36.478654Z",
                    "last_modified_time": "2025-11-28T13:12:36.478671Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780055.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493948/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T13:12:36.373200Z",
            "last_modified_time": "2025-12-04T12:12:44.884230Z",
            "date_published": null,
            "start_time": "2025-12-16T15: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": "Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut",
                "en": "http://www.malmitalo.fi/en/events/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut"
            },
            "description": {
                "fi": "<p>Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.</p><p>Yhteiseen jouluperinteeseen ja kauneimpiin joululauluihin johdattamassa Heidi Visa, laulu, Sirja Puurtinen, viulu, sekä kanttori Mari Torri-Tuominen, muusikot Antti Vuori ja pastori Markku Arola Malmin seurakunnasta.</p><p>Vapaa pääsy!</p><p>Kesto 1 t</p>"
            },
            "name": {
                "fi": "Kauneimmat joululaulut",
                "sv": "Kauneimmat joululaulut",
                "en": "Kauneimmat joululaulut"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67237/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66098",
            "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:755/?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": 1255101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T07:14:26.183131Z",
                    "last_modified_time": "2025-07-14T07:14:26.183147Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771486.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255101/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T07:14:26.071859Z",
            "last_modified_time": "2025-12-04T07:12:45.435180Z",
            "date_published": null,
            "start_time": "2025-12-06T13:00:00Z",
            "end_time": "2025-12-06T14: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": "Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D47937E17671141BE0754F25B0DB9136/Firande_av_sjalvstandighetsdagen",
                "en": "http://www.malmitalo.fi/en/events/event/D47937E17671141BE0754F25B0DB9136/Independence_Day_Celebration"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!</p><p>Ennen Malmisalin juhlaohjelmaa Pienessä salissa näytetään klo 13 Muistoja Sortavalasta -dokumentti, johon on myös vapaa pääsy. Myös Sortavalan laulujuhlat 1935 -valokuvanäyttely on nähtävillä Malmitalon aulatilassa!</p><p>Malmisalin juhlaohjelmassa on luvassa Finlandia-palkinnon juuri saaneen Tomi Kontion juhlapuhe ja lausuntaa. Musiikillisesta annista vastaa pianisti Janne Oksanen ja duo Aili Järvelä. Oksanen soittaa konsertissaan Toivo Kuulan ja Armas Järnefeltin tuotantoa, kun taas paikallinen Järvelä duo soittaa omaa tuotantoaan.</p><p>Aikataulu klo 15–16</p><p>Tervetulosanat: Tiina Laukkanen, Malmitalon johtaja<br>Juhlapuhe: Tomi Kontio, kirjailija ja runoilija<br>Juhlakonsertti: Janne Oksanen, pianisti<br>Lausunta: Tomi Kontio<br>Konsertti: Aili Järvelä ja Sigurdur Rögnvaldsson<br>Loppusanat: Mirka Vainikka, Malmi-Seuran puheenjohtaja<br>Maamme-laulu</p><p>Ohjelman jälkeen kahvitarjoilu klo 16 alkaen Malmitalon aulassa.</p><p>Vapaa pääsy. Huomioithan, että paikkoja salissa on rajoitetusti.</p><p>Yhteistyössä Malmi-Seura ja Malmitalo</p><p>Kesto: 1 tunti</p>"
            },
            "name": {
                "fi": "Itsenäisyyspäivän juhla",
                "sv": "Firande av självständighetsdagen",
                "en": "Independence Day Celebration"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66098/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67665",
            "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": 1493983,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T14:12:32.686609Z",
                    "last_modified_time": "2025-12-01T14:12:32.686625Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782316.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493983/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T14:12:32.514329Z",
            "last_modified_time": "2025-12-01T14:12:32.838139Z",
            "date_published": null,
            "start_time": "2025-12-04",
            "end_time": "2025-12-27",
            "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": "Asetelma, stilleben, still life tarkoittaa hiljaisia maalauksia.",
                "sv": "Stilleben avser stillsamma målningar.",
                "en": "Still life, stilleben, means “silent paintings.”"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life",
                "en": "http://www.malmitalo.fi/en/events/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life"
            },
            "description": {
                "fi": "<p>Asetelma, stilleben, still life tarkoittaa hiljaisia maalauksia.</p><p>Perinteisessä asetelmassa on erilaisia esineitä aseteltu malliksi pöydälle tai johonkin muuhun tasoon. Esineet voivat olla astioita, hedelmiä, vihanneksia, riistalintuja roikkumassa tai melkein mitä tahansa. Ne ovat pysähtyneessä tilassa liikkumattomina, kuolleina. Nimensä mukaisesti maalauksen aihe on hiljaisuus ja esineet ovat vain objekteja idean toteuttamiseksi. <br> <br>Olen lisännyt muutamiin töihin myös eläviä olentoja. Kissa vahtaa lintua ikkunan takana, varis hämmästelee keltaista muoviankkaa. Mikään ei liiku. Aika on pysähtynyt. Maalaukset ovat realistisia. Olen yrittänyt tallentaa hetken maalauksen keinoin. Kamera olisi tietysti kätevämpi mutta kamera ei osaa maalata. Digikuva on vain sähköinen illuusio todellisuudesta. Maalarin paletti mahdollistaa leikkimisen väreillä, valolla ja tunnelmilla. Maalipinnat luovat elävän struktuurin.<br> <br>Stilleben on kannanotto kiireiselle, hektiselle elämällemme. Kannattaisi pysähtyä ja jäädä katsomaan onko jotain mennyt pieleen, kun elämä muuttuu koko ajan stressaavammaksi. Kuka meitä ohjaa, kuka käyttää hyväksi. Mihin tarvitsemme jatkuvaa kasvua, jos se tekee meistä onnettomia? Jos se johtaa luontokatoon ja ilmastokatastrofiin? Stilleben on passiivinen vastarinta.</p><p>Se on pysähtynyt aika.</p><p>Näyttelyn avajaiset järjestetään ke 3.12. klo 17 alkaen. Tervetuloa!</p><p><b>Taiteilijasta</b><br>Olen pohjoisessa, Posiolla v.1951 syntynyt kuvataiteilija. Lapsuuttani ympäröi metsät ja vaaramaisemat. Kotini oli köyhä pienviljelystila korven keskellä. Meillä ei ollut televisiota eikä viihde-elektroniikkaa, joten leikit ja harrastukset oli keksittävä itse. Luovuus kasvoi olosuhteiden pakosta.<br> <br>Pienestä asti olin innokas piirtämään. Koulukirjojen marginaalit ja kouluvihkojen tyhjät sivut täyttyivät piirroksistani. Myös kaupan valkoiset käärepaperit, tyhjät kenkälaatikot olivat hyvää materiaalia harrastukselleni. Piirustuslehtiöitä ei ollut. <br> <br>Nuorena karkasin maailmalle Helsinkiin. Kävin työväenopistolla piirtämässä elävää mallia mutta politikointi ja hippiaate veivät mukanaan, taiteilijuus jäi taka-alalle kunnes jo varttuneempana palasin takaisin pohjoiseen ja aloin maalaamaan. Osallistuin jo muutamiin näyttelyihinkin.</p><p>Opiskelin Oriveden Opiston kuvataidelinjalla puoli vuotta ja pyrin taideakatemiaankin mutta huonolla menestyksellä. Samaan aikaan sain töitä kaksi kertaa Nuorten näyttelyyn Helsingin Taidehalliin. Ajattelin että minähän olen jo valmis, mitä sitä turhaa opiskelemaan. Kävin kuitenkin piirtelemässä ja maalaamassa yliopiston piirustuslaitoksella ja työväenopistolla. Osallistuin taideleirille Kuusamossa ja Hailuodossa. Siellä oli hyvät opettajat.</p><p>Minusta ei tullut apurahataiteilijaa, joten oli keksittävä toimeentulo. Aloin tehdä koristemaalauksia ja kipsientisöintejä. Samaan aikaan osallistuin näyttelyihin ja veistoskilpailuihin.</p><p>Nuorena maalaukseni olivat poliittisia kannanottoja. Niissä oli pasifistinen ja yhteiskunnallinen sanoma. Myöhemmin työt muuttuivat abstrakteiksi, jopa minimalistisiksi. Nuoruuden turhautumat ajoivat kyynisyyteen kunnes iän kypsyttämänä palasin realismiin. Olin ymmärtänyt että taiteeni ei muuta maailmaa mutta voin vaikuttaa muutamiin ihmisiin yksi kerrallaan. Olin ymmärtänyt että jos en pysty pelastamaan ihmiskuntaa luontokatastrofilta niin yritän ainakin pelastaa taiteen maalaus kerrallaan. Ilman taidetta ihminen surkastuu robotiksi. Globaali markkinatalous haluaa riistää meiltä omaehtoisen ajattelun, luku-ja kirjoitustaidon. Meistä halutaan viihteen suurkuluttajia.</p><p>Maalaukseni ovat perinteisin menetelmin maalattuja asetelmia. Niiden sanoma on pysähtyminen.</p>",
                "sv": "<p>Stilleben avser stillsamma målningar.</p><p>I ett traditionellt stilleben är olika föremål arrangerade på ett bord eller någon annan yta. Föremålen kan vara tallrikar, frukt, grönsaker, fågel som hänger på en krok eller nästan vad som helst. De är orörliga, döda, i ett tillstånd av stillhet. Som namnet antyder är motivet i målningen tystnad, och föremålen är bara rekvisita för att förverkliga idén.</p><p>Jag har också lagt levande varelser till några av mina verk. En katt tittar på en fågel bakom ett fönster, en kråka förundras över en gul plastanka. Ingenting rör sig. Tiden har stannat. Målningarna är realistiska. Jag har försökt fånga ögonblicket genom måleriet. En kamera skulle förstås vara mer praktisk, men en kamera kan inte måla. En digital bild är bara en elektronisk illusion av verkligheten. En målares palett gör det möjligt att leka med färger, ljus och stämningar. De målade ytorna skapar en levande struktur.</p><p>Stilleben är ett uttalande om våra hektiska, stressiga liv. Det är värt att stanna upp och se om något har gått fel när livet blir alltmer stressigt. Vem styr oss, vem utnyttjar oss? Varför behöver vi ständig tillväxt om det gör oss olyckliga, om det leder till förstörelse av naturen och klimatkatastrof? Stilleben är passivt motstånd.</p><p>Det är tiden som står stilla.</p><p><b>Jag</b><br>Jag är en bildkonstnär född i Posio år 1951. Min barndom har jag varit omgiven av skogar och långsträktlanskapar. Mitt hem var en fattig småbrukare mitt i korgen. Vi hade ingen TV eller underhållningselektronik, så vi var tvungna att hitta på våra egna lekar och hobbyer. Detta inkluderade backhoppning och skidåkning på vintern, Indianlekar på sommaren och att bygga stugor. Kreativiteten växte fram ur nödvändighet.</p><p>Från barndomen var jag ivrig att rita. Skolböckernas marginaler och skolhäfternas tomma sidor fylldes av mina teckningar. Vita omslagspapper, en tom skokartong var bra material för en hobby. Det fanns inga ritblad. Jag vann några ritningstävlingar i skolan och det var då jag började vilja bli konstnär, men jag hade ingen aning om vad det innebar.</p><p>När jag var ung, flydde jag ut i världen till Helsingfors. Jag gick till Arbetarhögskolan för att rita efter en levande modell, men politiken och hippierörelsen tog mig bort. Min konstnärliga passion hamnade bakre tills jag blev äldre och jag återvände norrut och började måla. Jag deltog till och med i några utställningar. Jag studerade konst vid Orivesi institut  halvår och jag strävade också efter konstakademin.</p><p>Men med dålig framgång. Samtidigt jag fick mitt konsverk för ungdomsutställningar på Helsingfors konsthall. Jag trodde att jag redan var redo, vad var det för meningslösa studier? Jag började dock rita och måla på Helsingfors universitetets ritavdelning och på arbetarinstitutet. Jag deltog i konstläger i Kuusamo och Hailuoto. Det fanns bra lärare där.<br> <br>Jag blev inte konstnärsstipendiat, så det var nödvändigt att hitta en försörjning.   Jag började göra dekorationsmålningar och gipsrestaureringar.  Samtidigt deltog jag i skulpturtävlingar och utstälningar.<br> <br>När jag var ung var mina målningar politiska uttalanden. De hade ett pasifistisk och samhälleligt budskap. Senare blev konsverk abstrakta, till och med minimalistiska. Ungdomens frustration drev mig till cynism tills mogen av older återvände jag till realism. Jag har förstått att min konst inte förändrar världen men jag kan påverka några människor en i taget. Jag hade förstått att om jag inte kan rädda mänskligheten från naturkatastrofen så försöker jag åtminstone rädda min konst en målning i taget. Utan konst förtvinar människan till en robot. Den globala marknadsekonomin vill beröva oss vår självständika tanke och läs-och skrivförmåga. Vi ska vara  storkonsumenter under nöjesfesten.</p><p>Mina målningar är stilleben med traditionella metoder. Deras budskap är att stanna upp.</p>",
                "en": "<p>Still life, stilleben, means “silent paintings.”</p><p>In a traditional still life, various objects are arranged as a model on a table or some other surface. The objects might be dishes, fruits, vegetables, game birds hanging, or almost anything. They are in a motionless state, still, dead. As the name suggests, the subject of the painting is silence, and the objects are merely tools for realizing an idea.</p><p>I have added living creatures to some of my works as well. A cat watches a bird through the window; a crow marvels at a yellow rubber duck. Nothing moves. Time has stopped. The paintings are realistic. I have tried to capture a moment through the means of painting. Of course, a camera would be more convenient, but a camera cannot paint. A digital photo is only an electronic illusion of reality. The painter’s palette allows for play with colors, light, and moods. Layers of paint create a living texture.</p><p>Stilleben is a statement about our busy, hectic lives. It is worth stopping and looking — has something gone wrong as life becomes increasingly stressful? Who guides us, who takes advantage of us? Why do we need constant growth if it only makes us unhappy — if it leads to the loss of nature and a climate catastrophe? Stilleben is passive resistance.</p><p>It is time that has stopped.</p><p><b>About the artist</b><br>I am a visual artist, born in the Northern Finland in Posio 1951. My childhood was surrounded by forests and nothern hill landscapes. My home was a poor small farm in the middle of the wilderness. We had no television or consumer electronics, so we had to invent games and hobbies ourselves. Creativity grew out of necessity.<br>Ever since I was little, I have been eager to draw. The margins of school books and the empty pages of school notebooks were filled with my drawings. White wrapping paper from the store and empty shoe boxes were also good material for my hobby. There were no drawing pads. <br>When I as young, I ventured out into the world in Helsinki. I went to the workers institute to draw a living model, but the political activites and the pricipiles of hippies swept me away. The artistry remained on to the background until I returned to the north when I was older and started to paint. I already participated in a few exhibitions. <br>I studied at Orivesi institute in visual arts for half a year and I was still trying to get to the art academy, but with bad luck. At the same time two of my sculptures were accepted to the Youngs exhibition in Art Gallery of Helsinki, I thought I was ready as an artist. What's the point of studying? However, I went to study at the universitys drawing departmentland  and to the workers institute. I participated in art camps in Kuusamo and Hailuoto. There were good teachers.</p><p>I didn't become a grant artist, so I had to come up with a living income. I started painting decorative paintings and plastering. On the side, I took part in a sculpture competition and to a few art exhibitions.<br>When I was young, my paintings were political statements.  They had a pacifist and social message. My later works became abstract, even minimalistic. The frustration of youth led to cynicism until I matured and I returned to romance. I had realized that art doesn't change the world, but I could change people one at a time. I had realized that if I couldn't save the people from a natural disaster, I would at least try to save art one painting at a time. Without art, a human becomes a robot. Global market economy wants to deprive us of original thinking and literacy. They want us to become heavy consumers of entertainment, brainless consumers.</p><p>My paintings are still lifes painted using traditional methods. Their message is stopping.</p>"
            },
            "name": {
                "fi": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia",
                "sv": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia",
                "en": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67665/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67207",
            "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:755/?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": 1491205,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T14:13:51.278664Z",
                    "last_modified_time": "2025-10-27T14:13:51.278678Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777821.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-27T14:13:51.155440Z",
            "last_modified_time": "2025-11-28T16:12:49.911214Z",
            "date_published": null,
            "start_time": "2025-11-29T09:00:00Z",
            "end_time": "2025-11-29T13: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": "Ala-Malmin joulutori pidetään poikkeuksellisesti Malmitalon aulassa ja parvella. Voit tehdä joululahjalöytöjä, napata mukillisen glögiä tai lautasellisen puuroa ja nauttia tunnelmasta. Valotaideryhmä Belenoksen valoprinsessa Celestia ja muut upeat valohahmot kiertävät alueella klo 13.30 ja 14.30. Lisäksi Klovni Dattarataa Pukinmäen taidekouluista tuo iloa lapsille ja aikuisille päivän aikana. Vapaa pääsy!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori",
                "en": "http://www.malmitalo.fi/en/events/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori"
            },
            "description": {
                "fi": "<p>Ala-Malmin joulutori pidetään poikkeuksellisesti Malmitalon aulassa ja parvella. Voit tehdä joululahjalöytöjä, napata mukillisen glögiä tai lautasellisen puuroa ja nauttia tunnelmasta. Valotaideryhmä Belenoksen valoprinsessa Celestia ja muut upeat valohahmot kiertävät alueella klo 13.30 ja 14.30. Lisäksi Klovni Dattarataa Pukinmäen taidekouluista tuo iloa lapsille ja aikuisille päivän aikana. Vapaa pääsy!</p><p>Joulutori kokoaa yhteen paikallisia yrityksiä ja toimijoita.<br>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Ala-Malmin joulutori",
                "sv": "Ala-Malmin joulutori",
                "en": "Ala-Malmin joulutori"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67207/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67650",
            "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:596/?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": 1493946,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T12:13:04.358658Z",
                    "last_modified_time": "2025-11-28T12:13:04.358672Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782293.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T12:13:04.136654Z",
            "last_modified_time": "2025-11-28T12:13:04.659578Z",
            "date_published": null,
            "start_time": "2025-12-09",
            "end_time": "2026-06-30",
            "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": "Mun Malmi-valokuvanäyttely on kunnianosoitus Malmin moninaisuudelle. Tervetuloa avajaisiin 9.12. klo 17–19!",
                "sv": "Malm är inte detsamma för alla, utan mångsidigt, som en stad inom staden.",
                "en": "Malmi is not the same for everyone, it is diverse like a city within a city."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi-valokuvanayttely",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi_Mitt_Malmi_fotoutstallning",
                "en": "http://www.malmitalo.fi/en/events/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi_My_Malmi_photo_exhibition"
            },
            "description": {
                "fi": "<p>Mun Malmi-valokuvanäyttely on kunnianosoitus Malmin moninaisuudelle. Tervetuloa avajaisiin 9.12. klo 17–19!</p><p>Malmi ei ole yksi ja sama kaikille, se on monimuotoinen kuin kaupunki kaupungissa. Jatkuvasti laajeneva kaupunginosa on koti 26 000 ihmiselle, mutta myös työpaikka, läpikulkupaikka ja jopa lomakohde.</p><p>Tiistaina 9. joulukuuta 2025 klo 17–19 Malmitalon edustalla avautuu valokuvanäyttely nimeltä Mun Malmi. Kuvat on ottanut valokuvataiteilija Anna Autio, tekstit ovat toimittaja Kaisa Viitasen. ”Näyttely on kunnianosoitus Malmin moninaisuudelle. Jokaisella kuviin valitulla henkilöllä on Malmiin omanlaisensa suhde”, tekijät sanovat.</p><p>Veikko Halmetoja ja Jussi Perämäki muuttivat Malmille Itäkeskuksesta. ”Monella kaverillamme on ollut Malmista ennakkoluuloja, mutta kun heidät sai maaniteltua tänne, he hurmioituivat. Monelle on yllätys, että Malmilla on myös tällainen vehreä puutalokukkula”, taidegalleristi Halmetoja sanoo.</p><p>13-vuotias Jessika Ahonen on neljännen polven malmilainen, mutta vanhempiensa kanssa hän ei ole viime aikoina jaksanut keskustella. Luottoaikuisia hän on onneksi löytynyt Malmin nuorisotalolta.</p><p>Kaikille Malmi ei ole koti, mutta silti se voi olla erityinen ja rakas. Georgette Singbe vietti alkusyksystä 2025 Malmilla kuusi viikkoa. Hän asui ystävänsä vierashuoneessa ja kävi monta kertaa Malmin uimahallissa. ”Kaikenikäiset naiset uivat ilman kehohäpeää. <br>Kotimaassani Beninissä sellainen ei olisi mahdollista.”</p><p>Mirella Ablaoui kuuntelee malmilaisia työkseen, sillä hän on Helsingin kulttuurikeskusten ensimmäinen kohtaamiseen erikoistunut aulaemäntä. ”Näen Malmilla yksinäisyyttä. Monelle malmilaiselle olen ainoa ihminen, jonka kanssa he päivän aikana juttelevat.”</p><p>Valari Tynkkynen leikki 20 vuotta sitten grafiikkaohjelmalla ja loi Miami Vicen logosta kepeän Malmi-version. Joka vuosi kymmenet malmilaiset tatuoivat Tynkkysen tekemiä kuvituksia ihoonsa.</p><p>Mun Malmi -näyttely ripustetaan Malmitalon taakse rakennustyömaan aitaan. Kuvat ja tekstit ovat esillä puistoremontin ajan eli noin vuoden. Näyttely on Malmitalon ja Helsingin kaupunginkanslian aluerakentamisen yksikön yhteistuotanto.</p><p>Avajaisissa 9.12.2025 klo 17–19 on puuro- ja glögitarjoilu, tervetuloa!</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Malm är inte detsamma för alla, utan mångsidigt, som en stad inom staden.</p><p>Stadsdelen växer hela tiden och är hem för 26 000 personer, men också en arbetsplats, genomfartsplats och även ett semestermål.</p><p>Tisdagen den 9 december 2025 kl. 17-19 öppnar fotoutställningen Mitt Malm framför Malms kulturhus. Fotokonstnären Anna Autio har tagit fotografierna och journalisten Kaisa Viitanen skrivit texterna. ”Utställningen är en hyllning till mångfalden i Malm. Varje person som valts till fotografierna har sin egen unika relation till Malm”, säger upphovspersonerna.</p><p>Veikko Halmetoja och Jussi Perämäki flyttade till Malm från Östra centrum. ”Många av våra vänner har haft fördomar mot Malm men de har blivit förtjusta när vi lyckats locka dem hit. Det är en överraskning för många att det också finns en sådan här grönskande höjd med trähus i Malm”, berättar konstgalleristen Halmetoja.</p><p>Den 13-åriga Jessika Ahonen är en Malmbo i fjärde generationen men hon har inte orkat prata med sina föräldrar under den senaste tiden. Lyckligtvis har hon hittat pålitliga vuxna på Malms ungdomsgård. Malm är inte ett hem för alla, men det kan ändå vara speciellt och kärt. Georgette Singbe tillbringade sex veckor i Malm i början av hösten 2025. Hon bodde i ett gästrum hos sin vän och besökte Malms simhall flera gånger. ”Kvinnor i alla åldrar simmade utan skam för sin kropp. Det skulle inte vara möjligt i mitt hemland Benin.”</p><p>Mirella Ablaoui lyssnar på Malmbor i sitt arbete, eftersom hon är den första receptionisten i Helsingfors kulturcentraler som är specialiserad på möten. ”Jag ser ensamhet i Malm. För många Malmbor är jag den enda människan som de pratar med under dagen.”</p><p>För 20 år sedan lekte Valari Tynkkynen med ett grafikprogram och skapade en rolig Malmversion av Miami Vice-logotypen. Tiotals Malmbor tatuerar Tynkkynens illustrationer på sin hud varje år. Utställningen Mitt Malm hängs upp på byggarbetsplatsens stängsel bakom Malms kulturhus.</p><p>Fotografierna och texterna finns utställda under renoveringen av parken, det vill säga i cirka ett år. Utställningen är en samproduktion mellan Malms kulturhus och Helsingfors stad. Vid vernissagen 9.12. kl 17–19  serveras gröt och glögg.</p>",
                "en": "<p>Malmi is not the same for everyone, it is diverse like a city within a city.</p><p>The ever-expanding district is home to 26,000 people, but it is also a place of work, transit and even a holiday destination.</p><p>On Tuesday 9 December 2025 at 5-7pm, a photography exhibition called Mun Malmi (My Malmi) will open in front of Cultural Centre Malmitalo. The photos were taken by Photographer Anna Autio, and the texts were written by Journalist Kaisa Viitanen. “The exhibition is a tribute to the diversity of Malmi. Each person selected for the pictures has a different relationship with Malmi,” the artists say.</p><p>Veikko Halmetoja and Jussi Perämäki moved to Malmi from Itäkeskus. “A lot of our friends have had preconceptions about Malmi, but once we got them here, they were ecstatic. It’s a surprise to many people that Malmi also has such a lush hill fill of wooden houses,” says art gallery owner Halmetoja.</p><p>Jessika Ahonen, 13, is a fourth generation Malmi native, but she hasn’t been able to talk to her parents lately. Fortunately, she has found trustworthy adults at the Malmi Youth Centre. Not everyone calls Malmi home, but it can still be a special place for them.</p><p>Georgette Singbe spent six weeks in Malmi in early autumn 2025. She lived in a friend’s guest room and visited the Malmi swimming hall many times. “Women of all ages swam without body shame. In my home country of Benin that would not be possible.”</p><p>Mirella Ablaoui listens to the people of Malmi for a living, as she is the first receptionist specialising in encounters in Helsinki’s cultural centres. “I see loneliness in Malmi. For many people in Malmi, I am the only person they talk to during the day.”</p><p>Twenty years ago, Valari Tynkkynen played with graphics software to create a cheeky version of the Miami Vice logo. Every year, dozens of Malmi residents have Tynkkynen’s illustrations tattooed on their skin.</p><p>The ‘Mun Malmi’ exhibition will be hung on the construction site fence behind Cultural Centre Malmitalo. The photos and texts will be on display during the renovation of the park, i.e. for about a year. The exhibition is a co-production between Cultural Centre Malmitalo and the City of Helsinki.</p><p>Porridge and glogg will be served at the opening ceremony 9.12 at 17-19.</p>"
            },
            "name": {
                "fi": "Mun Malmi-valokuvanäyttely – Anna Autio & Kaisa Viitanen",
                "sv": "Mun Malmi (Mitt Malmi) fotoutställning – Anna Autio & Kaisa Viitanen",
                "en": "Mun Malmi (My Malmi) photo exhibition – Anna Autio & Kaisa Viitanen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67650/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}