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=9
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=10",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=8"
    },
    "data": [
        {
            "id": "kulke:67346",
            "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": [],
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223606/",
                        "sv": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223606/",
                        "en": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223606/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494564,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T12:12:53.071758Z",
                    "last_modified_time": "2026-01-20T12:12:53.071774Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781006.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494564/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-20T12:12:52.936574Z",
            "last_modified_time": "2026-03-20T01:12:57.528717Z",
            "date_published": null,
            "start_time": "2026-02-06T16: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": "Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Hamnet (12) – Kino Helios",
                "sv": "Hamnet (12) – Kino Helios",
                "en": "Hamnet (12) – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/58FBB920C48225B0615D966CDAE9BF2A/Hamnet_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/58FBB920C48225B0615D966CDAE9BF2A/Hamnet_12_",
                "en": "http://www.malmitalo.fi/en/events/event/58FBB920C48225B0615D966CDAE9BF2A/Hamnet_12_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä.</p><p>Elokuva palkittiin kahdella Golden Globe -palkinnolla: paras elokuva ja paras naispääosa (Jessie Buckley).</p><p>Ikäraja: 12<br>Kesto: 126 min<br>Ensi-ilta: 30.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67346/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67345",
            "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": [],
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494553,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T15:12:53.842618Z",
                    "last_modified_time": "2026-01-19T15:12:53.842636Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781005.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494553/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T15:12:53.722845Z",
            "last_modified_time": "2026-03-20T01:12:57.408636Z",
            "date_published": null,
            "start_time": "2026-02-06T13: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": "Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "sv": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "en": "Marty Supreme – unelmoi isosti (12) – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6862313C6C45E2E77DE1124C05F1D8B1/Marty_Supreme_unelmoi_isosti_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6862313C6C45E2E77DE1124C05F1D8B1/Marty_Supreme_unelmoi_isosti_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6862313C6C45E2E77DE1124C05F1D8B1/Marty_Supreme_unelmoi_isosti_12_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi.</p><p>Josh Safdien ohjaama MARTY SUPREME – UNELMOI ISOSTI elokuvateattereissa 23.1.2026. Pääosissa Timothée Chalamet, Gwyneth Paltrow, Kevin O'Leary, Odessa A’Zion, Abel Ferrara ja Tyler Okonma.</p><p>Ikäraja: 12<br>Kesto: 149 min<br>Ensi-ilta: 23.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67345/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67474",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "29,90 € / 26,90 € / 23,80 €",
                        "sv": "29,90 € / 26,90 € / 23,80 €",
                        "en": "29,90 € / 26,90 € / 23,80 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/guto-konrad-bra-timo-haikarainen-blues-band-4030034/#calendar-start=2026-02",
                        "sv": "https://www.lippu.fi/artist/malmitalo/guto-konrad-bra-timo-haikarainen-blues-band-4030034/#calendar-start=2026-02",
                        "en": "https://www.lippu.fi/artist/malmitalo/guto-konrad-bra-timo-haikarainen-blues-band-4030034/#calendar-start=2026-02"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493882,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-24T14:13:19.963839Z",
                    "last_modified_time": "2025-11-24T14:13:19.963854Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781446.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493882/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-24T14:13:19.809886Z",
            "last_modified_time": "2026-03-20T01:12:56.998462Z",
            "date_published": null,
            "start_time": "2026-02-05T17: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": "Somessa ilmiöksi noussut ja Suomen syksyllä sekaisin saanut nuori blueskitara-virtuoosi tekee paluun!",
                "sv": "Den unga bluesgitarrvirtuosen som blivit ett fenomen i de sociala medierna och som i höstas förbluffat Finland gör come back!",
                "en": "The young blues guitar virtuoso who became a social media phenomenon and sent the whole of Finland crazy last autumn is back!"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Guto Konrad (BRA) & Timo Haikarainen Blues Band",
                "sv": "Guto Konrad (BRA) & Timo Haikarainen Blues Band",
                "en": "Guto Konrad (BRA) & Timo Haikarainen Blues Band"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/272E89CC4D991F7A0C3E95B5A9B59C0F/Guto_Konrad_BRA_Timo_Haikarainen_Blues_Band",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/272E89CC4D991F7A0C3E95B5A9B59C0F/Guto_Konrad_BRA_Timo_Haikarainen_Blues_Band",
                "en": "http://www.malmitalo.fi/en/events/event/272E89CC4D991F7A0C3E95B5A9B59C0F/Guto_Konrad_BRA_Timo_Haikarainen_Blues_Band"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Somessa ilmiöksi noussut ja Suomen syksyllä sekaisin saanut nuori blueskitara-virtuoosi tekee paluun!</p><p>Tämän nuoren herran tekemisiä Joe Bonamassan ja Kirk Fletcherin kaltaiset maailmantähdetkin seuraavat!</p><p>Oletko valmis kitarabluesin ja blues-rockin ilotulitukseen, jota et unohda? Yleisöt hurmioon saanut ja keikkapaikkojen yleisöennätyksiä lokakuun kiertueellaan murskannut 22-vuotias Guto Konrad saapuu uudelleen Suomeen Suomi-bluesin kärkikahinoihin nopeasti nousseen Timo Haikarainen Blues Bandin säestämänä.</p><p>Ensimmäisellä Euroopan kiertueellaan lokakuussa Suomessa aikaisemmin täysin tuntematon Guto aiheutti huimia reaktioita yleisössä. Sanoja ”tyrmäys” ja ”shokki” käytettiin kuvaamaan hänen vaikutustaan yleisöön. Jo ensimmäinen esiintyminen räjäytti somen ja sai aikaan huhumyllyn, joka täytti keikkapaikan toisensa jälkeen. Osa ensimmäisen keikan nähneistä jopa seurasi Gutoa ja THBB:tä ympäri Suomen keikalta toiselle! Nyt tätä herkkua saadaan lisää, sillä Guto palaa suuren kysynnän saattelemana Suomeen THBB säestäjänään.</p><p>Guto on jo kotimaassaan ja sosiaalisessa mediassa blues- ja kitarafanit hämmästyttänyt nouseva tähti. Hänen jopa hämmentävän virtuoosimaisessa soitossa yhdistyvät Jimi Hendrixin ja Stevie Ray Vaughanin energia ja BB Kingin hienostuneet nuottivalinnat yksilöllisellä tavalla. Hän tarjoilee energiaa ja vauhtia sekä fiilistelyä ja malttia kutkuttavana sekoituksen. Lisäksi nuorukainen laulaa upeasti, ja hänen ”look” sekä vauhdikas tapa esiintyä säteilevät luontaista rock-tähti- ja kitarasankari -auraa. Myös sanaa ”sex-appeal” viljeltiin tiiviisti ensimmäisen kiertueen yhteydessä.</p><p>Timo Haikarainen tutustui Gutoon sosiaalisen median kautta ja he alkoivat suunnitella kiertuetta alkukesästä 2025 ja se toteutettiin lokakuussa 2025. Nyt on toivotun uusinnan aika! Guto kertoo odottavansa innolla paluuta Suomen: ”En malta odottaa, että takaisin Suomeen! Vastaanotto oli viimeksi uskomattoman lämmin. Toivon, että näen ja tapaan taas paljon uusia ihmisiä, joille pääsen soittamaan musiikkiani!”</p><p>Ei liene liioittelua ennustaa, että Guto kuuluu bluesin ja bluesrockin seuraaviin potentiaalisiin supertähtiin. Tämän veikkauksen toistivat myös kaikki Suomen musiikkiauktoriteetit Guton ensimmäisen kiertueen yhteydessä. Tule siis paikalle todistamaan tämän nuorukaisin vauhtia ja talenttia. Voi olla, että 5–10 vuoden päästä hämmästytät musiikkikeskustelussa kertomalla nähneesi Guto Konradin klubikiertueella Suomessa!</p><p>Guto Konrad, kitara ja laulu<br>Timo Haikarainen, kitara<br>Markku Vainio-Pekka, basso<br>Iikka Korhonen, rummut</p>",
                "sv": "<p>Den unga bluesgitarrvirtuosen som blivit ett fenomen i de sociala medierna och som i höstas förbluffat Finland gör come back!</p><p>Världsberömda stjärnor som Joe Bonamassa och Kirk Fletcher följer vad denna unga herre gör!</p><p>Är du redo för ett oförglömligt fyrverkeri av gitarrblues och bluesrock? Den 22-åriga Guto Konrad, som hänfört publiken och krossat publikrekorden på spelningsplatserna under sin turné i oktober, anländer på nytt till Finland under ackompanjemang av Timo Haikarainen Blues Band, som snabbt klivit upp i den finska bluestoppen.</p><p>Under sin första turné i Europa i oktober orsakade Guto, som tidigare var helt okänd i Finland, kraftiga reaktioner bland publiken. Orden ”knockout” och ”chock” användes för att beskriva hans inverkan på publiken. Redan det första uppträdandet sprängde sociala medierna och gav upphov till en ryktesflora som fyllde en spelningsplats efter en annan. En del av dem som såg den första spelningen följde till och med Guto och THBB från en spelning till en annan runt om i Finland! Nu får vi mer av det goda, eftersom Guto på grund av stor efterfrågan återvänder till Finland med THBB som sin ackompanjatör.</p><p>Guto är redan en stigande stjärna i sitt hemland och i de sociala medierna, där han förvånar blues- och gitarrfansen. Jimi Hendrix och Stevie Ray Vaugans energi samt BB Kings fina notval kombineras på ett individuellt sätt i hans till och med förvånande virtuosliknande spelande. Han bjuder på energi och fart samt stämningsfullhet och behärskning i en spännande blandning. Dessutom sjunger den unga mannen underbart, och hans ”look” samt det snabba sättet att uppträda utstrålar en naturlig aura för rockstjärnor och gitarrhjältar. Ordet \"sex-appeal\" användes också flitigt under den första turnén.</p><p>Timo Haikarainen bekantade sig med Guto via de sociala medierna och de började planera en turné under början av sommaren 2025. Turnén genomfördes i oktober 2025. Nu är det dags för den efterlängtade reprisen! Guto berättar att han ser fram emot att återvända till Finland:” Jag väntar verkligen på att få komma tillbaka till Finland! Mottagandet var senast så otroligt varmt. Jag hoppas att jag igen ser och träffar många nya människor som jag får spela min musik för!”</p><p>Det är inte en överdrift att förutspå att Guto är nästa potentiella superstjärna inom blues och bluesrock. Denna förutsägelse upprepades också av alla Finlands musikauktoriteter under Gutos första turné. Kom och bevittna denna ungas fart och talang. Kan hända att du om 5–10 år förvånar någon i en musikdiskussion genom att berätta att du såg Guto Konrad på klubbturnén i Finland!</p><p>Guto Konrad, gitarr och sång<br>Timo Haikarainen, gitarr<br>Markku Vainio-Pekka, bas<br>Iikka Korhonen, trummor</p>",
                "en": "<p>The young blues guitar virtuoso who became a social media phenomenon and sent the whole of Finland crazy last autumn is back!</p><p>The work of this young gentleman is closely followed by world stars such as Joe Bonamassa and Kirk Fletcher!</p><p>Are you ready for a firework show of guitar blues and blues-rock that you won't forget in a hurry? The 22-year-old Guto Konrad, who wowed audiences and smashed attendance records of venues on his October tour, will return to Finland accompanied by the Timo Haikarainen Blues Band, who have quickly risen to the top of the Finnish blues scene.</p><p>On his first European tour in October, Guto, previously unknown to the Finnish public, elicited ecstatic reactions from audiences. The words ‘stunning’ and ‘shocking’ were used to describe his impact on the audience. Even just the first performance blew up social media and created a buzz that filled venue after venue. Some of those who saw the first show even followed Guto and THBB around Finland from one show to the next! Now there's more of this treat to come, as Guto returns to Finland by popular demand, accompanied by THBB.</p><p>Guto is already a rising star in his home country and on social media among blues and guitar fans. His confounding, virtuosic playing uniquely combines the energy of Jimi Hendrix and Stevie Ray Vaughan with the refined note choices of BB King. He serves up a tantalising mix of energy and momentum, as well as great vibes and composure. This young man also sings beautifully and his ‘look’ and his energetic performance style radiate natural rockstar and guitar virtuoso charisma. The term ‘sex appeal’ also often popped up in the context of his first tour.</p><p>Timo Haikarainen got to know Guto through social media and they started planning the tour in early summer 2025. The tour took place in October 2025. Now it's time for a much-awaited new tour! Guto says he is looking forward to returning to Finland: “I can't wait to get back to Finland! Last time, the reception was incredibly welcoming. I hope to see and meet a lot of new people again and to play my music for them!”</p><p>It is no exaggeration to predict that Guto could be one of the next potential superstars of blues and blues rock. This prediction was also echoed by all the Finnish music authorities in connection with Guto's first tour. Come and witness the speed and talent of this young promising artist. In 5 or 10 years, you may amaze your music fan friends by telling them that you saw Guto Konrad on a club tour in Finland!</p><p>Guto Konrad, guitar and vocals<br>Timo Haikarainen, guitar<br>Markku Vainio-Pekka, bass<br>Iikka Korhonen, drums</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67474/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67428",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494007,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:05.946335Z",
                    "last_modified_time": "2025-12-03T08:13:05.946353Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781197.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:05.856973Z",
            "last_modified_time": "2026-03-20T01:12:56.885401Z",
            "date_published": null,
            "start_time": "2026-02-05T16: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 nostaa katsojat hevosten selkään, matkalle argentiinalaiseen gaucho-kulttuuriin.",
                "sv": "Filmen lyfter upp tittarna på hästrygg, på en resa till argentinska gaucho-kulturen",
                "en": "The film takes viewers on a journey on horseback through the Argentinian Gaucho culture."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Doc Helios: Gaucho Gaucho (S)",
                "sv": "Doc Helios: Gaucho Gaucho (S)",
                "en": "Doc Helios: Gaucho Gaucho (S)"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_",
                "en": "http://www.malmitalo.fi/en/events/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Elokuva nostaa katsojat hevosten selkään, matkalle argentiinalaiseen gaucho-kulttuuriin.</p><p>Pitkään odotettu Piemonten tryffelinmetsästäjät – ohjaajien uutuus Gaucho Gaucho sijoittuu täysin erilaiselle, mutta yhtä osuvasti ainutlaatuiselle seudulle. Argentiinan pampalla eletään hevosten kanssa ja hevosten ehdoilla. Päähenkilöksi nousee miesten maailmassa omaa tilaansa vaativa nuori Gauda, joka harjoittelee hevosten kesytystä ajan karhentamien konkareiden kanssa. Kylän koulun opettaja vaatii Gaudaa pitämään koulupukua huonolla menestyksellä. Ratsastajan asuun, nahkasäärystimiin ja reilun kokoiseen baskeriin pukeutunut Gauda vastaa: ”Olen gaucha, ja tämä on minun asuni!”.</p><p>Ansel Adamsin kamera hyväilee karua maisemaa samettisesti. Ohjaajat Michael Dweck ja Gregory Kershaw asuivat pampalla yli kaksi vuotta päästäkseen sisälle gauchojen ajattomaan elämäntapaan, joka on vaarassa kadota. Argentiinalaisen Los Gatos –bändin La Balsa –hitin helisevät kitarat ja Georges Bizet´n Helmenkalastajat soivat ääniraidalla hevosten rytmissä. Gaucho Gaucho sai Sundance festivaaleilla kunniamaininnan upeasta ääniraidastaan.</p><p>Kesto: 85 min<br>Ikäraja: S<br>Vapaa pääsy!</p>",
                "sv": "<p>Filmen lyfter upp tittarna på hästrygg, på en resa till argentinska gaucho-kulturen</p><p>Den länge förväntade Gaucho Gaucho, filmnyheten av regissörerna till Tryffeljägarna från Piemonte , är förlagd på en helt annan men lika unik bygd. På den argentinska pampasen lever man livet med hästar och på deras villkor. Huvudpersonen är den unga Gauda som kräver eget utrymme i männens värld. Han övar på att tämja hästar tillsammans med ruggiga veteraner. Byskoleläraren kräver att Gauda ska bära skoluniform, men med dålig framgång. Gauda, klädd i ryttardräkt, benvärmare av läder och en stor basker svarar: ”Jag är gaucha, och detta är min dräkt!”</p><p>Ansel Adams kamera smeker sammetslent det karga landskapet. Regissörerna Michael Dweck och Gregory Kershaw bodde på pampasen i mer än två år för att få en inblick i gauchornas tidlösa livsstil, som riskerar att försvinna. Det argentinska bandet Los Gatos hitlåt La Balsa med dess klingande gitarrer och Georges Bizets Pärlfiskarna spelar i takt med hästarna på ljudspåret. Gaucho Gaucho fick ett hedersomnämnande på Sundance-festivalen för sitt fantastiska ljudspår.</p><p>Längd: 85 min.<br>Åldersgräns: S<br>Fritt inträde!</p>",
                "en": "<p>The film takes viewers on a journey on horseback through the Argentinian Gaucho culture.</p><p>Gaucho Gaucho, the long-awaited new work by the directors of The Truffle Hunters, is set in a very different, but just as aptly unique region. On the Argentinian Pampas, life is lived together with horses and on their terms. The protagonist is the young Guada, who is trying to claim her own space in a man's world and practices horse taming with the time-weathered experts. The teacher at the village school tries to tell Guada to wear her school dress, with little success. Dressed in a rider's outfit, leather leggings and a large beret, Guada replies, \"I am a Gaucha, and this is my outfit!”</p><p>Ansel Adams’s camera work caresses the barren landscape with velvety grace. The directors, Michael Dweck and Gregory Kershaw, lived on the Pampas for more than two years to gain access to the timeless gaucho way of life, which is in danger of disappearing. The soundtrack features both the bright guitars of the hit song La Balsa by the Argentinian band Los Gatos and the sounds of the opera Les pêcheurs de perles by Georges Bizet, set to the rhythm of horses. Gaucho Gaucho received an honourable mention at the Sundance Festival for its stunning soundtrack.</p><p>Duration: 85 min<br>Age rating: G<br>Free entry!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67428/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68015",
            "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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494617,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-23T15:12:39.159881Z",
                    "last_modified_time": "2026-01-23T15:12:39.159897Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784326.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-23T15:12:39.028759Z",
            "last_modified_time": "2026-03-20T01:12:56.427975Z",
            "date_published": null,
            "start_time": "2026-02-05T15:30: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": "Ideoidaan ja toteutetaan tapahtumia Malmilla! Tule mukaan asukasosallisuusiltaan suunnittelemaan ohjelmaa taiteen, yhteisöllisyyden ja kulttuurien ympärille.",
                "en": "Let’s create events for Malmi together! Join us in planning events dedicated to art, togetherness, and culture!"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Asukasosallisuusilta – Ideoidaan yhdessä ohjelmaa Malmitalolle",
                "sv": "Asukasosallisuusilta",
                "en": "Community participation meeting"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4C0E0BE7527CDADFD4A8A1780F36509B/Asukasosallisuusilta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4C0E0BE7527CDADFD4A8A1780F36509B/Asukasosallisuusilta",
                "en": "http://www.malmitalo.fi/en/events/event/4C0E0BE7527CDADFD4A8A1780F36509B/Community_participation_meeting"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Ideoidaan ja toteutetaan tapahtumia Malmilla! Tule mukaan asukasosallisuusiltaan suunnittelemaan ohjelmaa taiteen, yhteisöllisyyden ja kulttuurien ympärille.</p><p>Tykkäätkö järjestää ohjelmaa? Oletko musikaalinen? Osaatko opettaa jotakin? Onko sinulla tanssiesitys tai runoja pöytälaatikossa? Tai jokin muu idea tai ajatus Malmitalossa järjestettäväksi ohjelmaksi?</p><p>Tule tekemään kanssamme, ja suunnittelemaan ohjelmaa lapsille, aikuisille, perheille, yksinäisille ja porukoille Malmitalossa. Haluamme toteuttaa tapahtumiamme myös yhdessä asukkaiden kanssa.</p><p>Toivotamme lämpimästi mukaan kaikenikäiset ja -taustaiset ihmiset. Paikan päällä pienimuotoinen kahvitarjoilu.</p><p>Tapahtuman järjestää Malmitalo yhteistyössä Malmin nuorisotyöyksikön kanssa.</p><p>Kesto: 2 t</p><p>Vapaa pääsy!</p>",
                "en": "<p>Let’s create events for Malmi together! Join us in planning events dedicated to art, togetherness, and culture!</p><p>Do you enjoy organizing events? Are you musical? Can you teach something? Do you have a dance performance or poems tucked away in a drawer? Or perhaps another idea for Malmitalo’s program?</p><p>Come help us ideate and organize events for children, adults, families, seniors, and other groups alike.</p><p>We wish to create events together with the residents and communities. We welcome people of all ages, languages, and backgrounds. If you’re interested, don’t hesitate to come, join in, and share your ideas for the program!</p><p>The resident event is organized by Malmitalo in cooperation with the Malmi Youth Work Unit.</p><p>Duration: 2 hours<br>Location: Malmitalo, Meeting room 2</p><p>Free entry!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68015/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67976",
            "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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-sydaentalvi-4074271/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-sydaentalvi-4074271/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-sydaentalvi-4074271/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494571,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T13:14:06.011497Z",
                    "last_modified_time": "2026-01-20T13:14:06.011522Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784112.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494571/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-20T13:14:05.846069Z",
            "last_modified_time": "2026-03-20T01:12:56.291237Z",
            "date_published": null,
            "start_time": "2026-02-05T11: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": "Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.",
                "sv": "I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.",
                "en": "Designed for seniors, HopeaCine’s programme features new Finnish films once a month."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "HopeaCine: Sydäntalvi + tekijävieras lavastaja Sattva-Hanna Toiviainen",
                "sv": "HopeaCine: Sydäntalvi+ gästande filmskapare",
                "en": "HopeaCine: Dead of Winter + guest"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF97C3A1BCD3DAFA10775118C67E3FBA/HopeaCine_Sydantalvi_tekijavieras_lavastaja_Sattva-Hanna_Toiviainen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF97C3A1BCD3DAFA10775118C67E3FBA/HopeaCine_Sydantalvi_gastande_filmskapare",
                "en": "http://www.malmitalo.fi/en/events/event/EF97C3A1BCD3DAFA10775118C67E3FBA/HopeaCine_Dead_of_Winter_guest"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.</p><p>Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. HopeaCine näytökset löydät myös Cinema Orionista ja Vuotalolta.</p><p>Elokuvan jälkeen keskustelemassa elokuvan lavastaja Sattva-Hanna Toiviainen.</p><p><b>Sydäntalvi</b><br>Suomen Kolilla kuvattu Sydäntalvi on toimintatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson. 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>Kesto: 1 t, 36 min + keskustelu n. 30 min<br>Ikäraja: K16</p>",
                "sv": "<p>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.</p><p>Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som berättar om processen för att göra filmen efter föreställningen och erbjuder nytt att tänka på för att fördjupa filmvisningen. HopeaCine-föreställningarna finns även på Cinema Orion och Nordhuset.</p><p>Sydäntalvi<br>Sydäntalvi, som filmats i Koli i Finland, är en actionthriller där man ser den dubbla Oscar-vinnaren Emma Thompson i huvudrollen. Hon spelar rollen som änkling till en fiskare som hittar en kidnappad tonårsflicka i en avlägsen stuga i skogen. Det är flera timmars resa till närmaste stad och telefonlinjen ligger nere – hon inser att hon är flickans enda hopp. Men när snöstormen tilltar och ett farligt par närmar sig, börjar en obarmhärtig kamp om att överleva.</p><p>Thrillern är regisserad av Brian Kirk, känd för avsnitt av Game of Thrones och filmen 21 Bridges. I andra roller: Marc Menchaca, Judy Greer och Gaia Wise, som också är känd som Emma Thompsons dotter.</p><p>Längd: 1 h 36 min.<br>Åldersgräns: K16</p>",
                "en": "<p>Designed for seniors, HopeaCine’s programme features new Finnish films once a month.</p><p>Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film. HopeaCine screenings are also shown at Cinema Orion and Vuotalo.</p><p>Dead of Winter<br>Filmed in Koli in Finland, Dead of Winter is an action thriller starring two-time Oscar winner Emma Thompson. She plays a widowed fisherwoman who finds a kidnapped teenage girl at a remote cabin in the woods. It's hours to the nearest town and the phone line is down – she realises that she is the girl’s only hope. But as the blizzard grows stronger and with the dangerous couple closing in, a relentless battle for survival begins.</p><p>The thriller is directed by Brian Kirk, known for works such as episodes of Game of Thrones and the film 21 Bridges. Other roles feature Marc Menchaca, Judy Greer and Gaia Wise, also known as Emma Thompson's daughter.</p><p>Duration: 1 hour 36 min<br>Age rating: 16</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67976/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68051",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494704,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-03T09:13:37.867604Z",
                    "last_modified_time": "2026-02-03T09:13:37.867621Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785236.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494704/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-03T09:13:37.563796Z",
            "last_modified_time": "2026-03-20T01:12:56.034237Z",
            "date_published": null,
            "start_time": "2026-02-05",
            "end_time": "2026-02-28",
            "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": "Näyttely koostuu kahdesta kokonaisuudesta. Suurikokoiset työt ovat osa sarjaa Mieskuvia, pienemmät työt osa sarjaa Pieniä painajaisia.",
                "sv": "Utställningen av Juha Okko (f. 1963) består av två delar. De stora verken är serien Manliga porträtt, skapad 2020–23, och de mindre verken är Små mardrömmar, målade 2025–24.",
                "en": "The exhibition by Juha Okko (b. 1963) consists of two entities. The large works are the series Male Portraits, created in 2020–23, and the smaller works are the Little Nightmares, painted in 2025–24."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Mieskuvia ja pieniä painajaisia – Juha Okko",
                "sv": "Manliga porträtt och lilla mardrömma – Juha Okko",
                "en": "Male Portraits and Little Nightmares – Juha Okko"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B48698341CAE7B0483419102F619668B/Mieskuvia_ja_pienia_painajaisia",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B48698341CAE7B0483419102F619668B/Manliga_portratt_och_lilla_mardromma",
                "en": "http://www.malmitalo.fi/en/events/event/B48698341CAE7B0483419102F619668B/Male_Portraits_and_Little_Nightmares"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Näyttely koostuu kahdesta kokonaisuudesta. Suurikokoiset työt ovat osa sarjaa Mieskuvia, pienemmät työt osa sarjaa Pieniä painajaisia.</p><p>Mieskuvien kohdalla katsoja voi kysyä, miksi Okko on maalannut sarjan muotokuvia keski-ikäisistä, kulahtaneen jäykistä valkoisista miehistä. Eikö tätä lajia ole jo nähty tarpeeksi? Tekijän lähtökohtana oli pandemian aikainen sosiaalisen elämän suppeus. Kun Covid-2019 viruksen etenemistä estäviä rajoituksia helpotettiin kesällä 2020, Okko kutsui oman ikäluokkansa ystäviä, työtovereita ja naapureita 60 minuutin sessioihin työhuoneelleen, yksi kerrallaan. Tunnin kuluessa puhuttiin, päivitettiin omat ja maailman asiat ja samalla syntyi yksivärinen luonnos suureen kasvokuvaan. Mallista otetut kännykkäkuvat toimivat jatkotyöskentelyn lisämateriaalina, mutta osa alkuperäisistä virheistä löytyy yhä. Työt eivät ensisijaisesti ole muotokuvia, enemmän esitys moninaisuudesta samankaltaisuudessa. Lopputulos on sarja julistemaisia ja pelkistettyjä naamakuvia, lähes tyhjiä merkkejä.  <br> <br>Teossarja sai jatkoa kesästä 2021 alkaen. Pääosin samat miehet vierailivat ateljeessa, nyt 90 minuuttia kerrallaan. Okko luonnosteli kokovartalokuvan sekä ateljeehen tapaamista varten viriteltyjä kankaita, kukkia ja juomia. Teoksien jatkamista varten taaskin otettiin useampia kännykkäkuvia. Kasvokuvien melko yhtenäinen käsittelytapa sai väistyä eklektisen ja vaihtelevamman esittämistavan tieltä. Maalauksista voi löytää ekspressiivisen abstrakteja maalauseleitä, väripintoja, tarkkaa piirustusta sekä muotoa rakentavaa maalausta. Osa yksityiskohdista viittaa muotokuvataiteen historiaan, mutta ei suoraan kopioiden. Maalausprosessin aikana miljöö on muuttuva ja aktiivinen, henkilö paikallaan oleva ja passiivinen. Henkilöiden ilmeet ovat keskittyneitä, koska poseeraaminen on vakava asia. Tässä ei naureta. Ympäristöön putkahtelee roskapusseja, lisää kukkia ym. Maailman muuttuminen on kestettävä.</p><p>Okko on pitkään pohtinut, miten tulee tai voisi olla mies sosiaalisena sukupuolena. Millainen on hyvä mies ja miksi osalla miehistä on vahva taipumus väkivaltaan ja valtapeleihin. Miten tästä seuraava kilpailu määrittää kaikkia (miehiä). Mutta entäpä vanheneminen, kuolema ja luopuminen. Ns. hegemoninen maskuliinisuus, ymmärrettynä yhtenä miehisyyden mallina on aikaa sitten murtunut – ja hyvä niin. Yksilölliset valinnat ovat se, mitä jää. Ja hämmennys: ”Eikö tästä tämän selkeämpää tullut?”. <br> <br>Pienten painajaisten lähtökohtana on digitaalinen, mustavalkoinen valokuvakollaasi. Materiaalina kollaaseille on käytetty taiteilijan itse ottamia valokuvia, skannattuja lehtikuvia ja internetistä kopioituja kuvia. Maalaukset ovat eräänlaisia tarjouskimppuja, sekalaisesta materiaalista koottuja kasaumia.  Kuvat voi nähdä kommenttina aikaan. Maalauksissa on hyödynnetty erilaisia esittämisen tapoja ja niiden rinnastaminen yhdessä työssä synnyttää melua ja eriaikaisuutta. Osa elementeistä on, osa on tulossa, osa jo mennyt.  Niin kuin eletty todellisuus.</p><p>Lämpimästi tervetuloa näyttelyn avajaisiin keskiviikkona 4.2. klo 17 alkaen. Tarjolla pientä purtavaa ja virvoketta.</p>",
                "sv": "<p>Utställningen av Juha Okko (f. 1963) består av två delar. De stora verken är serien Manliga porträtt, skapad 2020–23, och de mindre verken är Små mardrömmar, målade 2025–24.</p><p>När det gäller Manliga porträtt kan betraktaren fråga sig varför Okko har målat en serie porträtt av medelålders, stela och slitna vita män. Har inte denna genre setts tillräckligt ofta? Konstnärens utgångspunkt var det begränsade sociala livet under pandemin. När restriktionerna som förhindrade spridningen av Covid-2019-viruset lättades sommaren 2020, bjöd Okko in vänner, kollegor och grannar i sin egen åldersgrupp till 60-minuterssessioner i sin studio, en i taget. Under timmen pratade dom, uppdaterade ens egna och världsliga angelägenheter och skapade samtidigt en monokrom skiss för ett stort ansiktsporträtt. Mobiltelefonfotona som tagits av modellen fungerar som ytterligare material för vidare arbete, men några av de ursprungliga misstagen kan fortfarande hittas. Verken är inte primärt porträtt, utan mer en representation av mångfald i likhet. Slutresultatet är en serie affischliknande och förenklade ansiktsporträtt, nästan tomma emblem.</p><p>Serien fortsatte från sommaren 2021. Huvudsakligen samma män besökte ateljén, nu 90 minuter åt gången. Okko skissade ett helkroppsporträtt och tyger, blommor och drycker arrangerades för mötet i ateljén. Flera mobiltelefonfoton togs igen för att fortsätta verken. Det ganska enhetliga sättet att hantera ansiktsbilder gav vika för ett eklektiskt och mer varierat presentationssätt. Målningarna har expressiva abstrakta målerigester, färgytor, precis teckning och formbyggande måleri. Vissa detaljer hänvisar till porträttkonstens historia, men kopierar dem inte direkt. Under målningsprocessen förändras miljön och är aktiv, personen är stillastående och passiv. Människornas ansiktsuttryck är fokuserade, eftersom posering är en allvarlig sak. Det finns inget att skratta åt här. Sopsäckar kastas i miljön, fler blommor, etc. Världen måste uthärdas medan den förändras. <br> <br>Okko har länge funderat över hur en man blir eller kan vara som ett socialt kön. Hur är en god man och varför vissa män har en stark tendens till våld och maktspel. Hur definierar den konkurrens som följer alla (män). Men hur är det med åldrande, död och övergivande? Så kallad hegemonisk maskulinitet, förstådd som en enda modell för manlighet, har sedan länge brutit samman – och det är okej. Individuella val är det som återstår. Och förvirringen: \"Blev inte detta tydligare än så här?\" <br> <br>Utgångspunkten för Lilla mardrömmar är ett digitalt, svartvitt fotokollage. Kollagen består av fotografier tagna av konstnären, skannade tidningsbilder och bilder kopierade från internet. Målningarna är ett slags reabuketter, samlingar av diverse material. Bilderna kan ses som en kommentar till tiden. Målningarna använder olika sätt att representera och att ställa dem mot varandra i ett verk skapar brus och en annan temporalitet. Vissa element finns där, vissa kommer, vissa har redan passerat. Precis som den levda verkligheten.</p>",
                "en": "<p>The exhibition by Juha Okko (b. 1963) consists of two entities. The large works are the series Male Portraits, created in 2020–23, and the smaller works are the Little Nightmares, painted in 2025–24.</p><p>In the case of Male Portraits, the viewer may ask why Okko has painted a series of portraits of middle-aged, stiff, and worn-out white men. Hasn't this genre been seen enough? The artist's starting point was the narrowness of social life during the pandemic. When restrictions preventing the spread of the Covid-2019 virus were eased in the summer of 2020, Okko invited <br> <br>friends, colleagues, and neighbors of his own age group to 60-minute sessions in his studio, one at a time. During the hour, they talked, updated each other’s own and worldly affairs, and at the same time Okko created a monochrome sketch for a large face portrait. The cell phone photos taken of the model serve as additional material for further work, but some of the original mistakes can still be found. The works are not primarily portraits, more like a representation of diversity in similarity. The result is a series of poster-like and simplified face portraits, almost empty signs. <br> <br>The series continued from summer 2021. Mainly the same men visited the studio, now for 90 minutes at a time. Okko sketched a full-body portrait and fabrics, flowers and drinks arranged for the meeting in the studio. Several photos were taken again to continue the work. The rather uniform way of handling facial images gave way to an eclectic and more varied way of presentation. The paintings feature expressive abstract painting gestures, color surfaces, precise drawing and form building painting. Some of the details refer to the history of portrait art, but not directly. During the painting process, the environment is changing and active; the person is stationary and passive. The expressions of the people are focused, because posing is a serious matter. There is no laughing matter here. Garbage bags are thrown into the environment, more flowers, etc. The world must be endured as it changes. <br> <br>Okko has long pondered how a man becomes or could be as a social gender. What is a good man like and why some men have a strong tendency towards violence and power games. How does the competition that follows define all (men). But what about aging, death and renunciation? So-called hegemonic masculinity, understood as a single model of manhood, has long since broken down – and that's okay. Individual choices are what remains. And the confusion: \"Didn't this get clearer than this?\" <br> <br>The starting point for Little Nightmares is a digital, black-and-white photo collage. The collages are made up of photographs taken by the artist, scanned newspaper images, and images copied from the internet. The paintings are a kind of offer bouquets, accumulations of miscellaneous material. The images can be seen as a comment on time. The paintings utilize different ways of presentation and juxtaposing them in one work creates noise and a different temporality. Some of the elements are, some are coming, some have already passed. Just like a lived reality.</p><p>We warmly welcome you to the exhibition’s opening at Malmitalo’s gallery on Wednesday, 4th of February, starting from 17.</p><p>Free entry!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68051/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67473",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80€/19,80€",
                        "sv": "24,80€/19,80€",
                        "en": "24,80€/19,80€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/maibell-the-misfires-women-are-rockin-4042103/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/maibell-the-misfires-women-are-rockin-4042103/",
                        "en": "https://www.lippu.fi/artist/malmitalo/maibell-the-misfires-women-are-rockin-4042103/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494043,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T09:12:51.186654Z",
                    "last_modified_time": "2025-12-04T09:12:51.186674Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781444.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494043/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T09:12:51.086974Z",
            "last_modified_time": "2026-03-20T01:12:55.760373Z",
            "date_published": null,
            "start_time": "2026-02-04T17: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": "Maibell & The Misfires on Maija Survosen liidaama kotimainen rockabilly-bändi joka on toiminut jo vuodesta 2009.",
                "sv": "Maibell & The Misfires är ett inhemskt rockabilly-band som Maija Survonen leder och som varit aktivt sedan 2009.",
                "en": "Maibell & The Misfires is a Finnish rockabilly band that has been active since 2009 and is fronted by Maija Survonen."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Maibell & The Misfires: Women are rockin’!",
                "sv": "Maibell & The Misfires: Women are rockin’!",
                "en": "Maibell & The Misfires: Women are rockin’!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AD2CAAE55AC9C9DFCD94D16A6F077654/Maibell_The_Misfires_Women_are_rockin_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/AD2CAAE55AC9C9DFCD94D16A6F077654/Maibell_The_Misfires_Women_are_rockin_",
                "en": "http://www.malmitalo.fi/en/events/event/AD2CAAE55AC9C9DFCD94D16A6F077654/Maibell_The_Misfires_Women_are_rockin_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Maibell & The Misfires on Maija Survosen liidaama kotimainen rockabilly-bändi joka on toiminut jo vuodesta 2009.</p><p>Bändi on julkaissut espanjalaisella El Toro Recordsilla albumeja ja singlejä tasaiseen tahtiin jo vuodesta 2010. Malmitalon konsertissa yhtyeen vieraina ovat Saara Mustonen ja Maria Tyyster, jotka molemmat ovat tunnettuja solisteja omissa genreissään. Saara on levyttänyt Saralee yhtyeen kanssa roots-musiikkia kansainväliselle Rhythm Bomb levymerkille ja Maria Tyyster on laajemmin tunnettu v. 2014 tangokuningattarena.</p><p>Illan ohjelmassa on Maibell & The Misfires omaa tuotantoa sekä vierailijoiden kanssa tehdyt erikoisnumerot, joissa yhdistävänä tekijänä on naissolistien esittämä rockabilly, rock’n’roll ja roots-musiikki kautta aikojen painottuen 50-luvulle.</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>",
                "sv": "<p>Maibell & The Misfires är ett inhemskt rockabilly-band som Maija Survonen leder och som varit aktivt sedan 2009.</p><p>Bandet har redan sedan 2010 gett ut album och singlar i jämn takt på spanska El Toro Records. I konserten på Malms kulturhus gästas bandet av Saara Mustonen och Maria Tyyster, som båda är kända solister i sina egna genrer. Saara har spelat in roots-musik på skiva med Saralee bandet för det internationella Rhythm Bomb-skivbolaget och Maria Tyyster är bättre känd som tangodrottning 2014.</p><p>I kvällens program ingår Maibell & The Misfires egen produktion samt specialnummer som gjorts tillsammans med gästerna. Den förenande faktorn är rockabilly-, rock'n'roll- och roots-musiken genom tiderna med betoning på 50-talet som de kvinnliga solisterna framför.</p><p>Längd: 1 h 45 min., inklusive en paus på 20 min.</p>",
                "en": "<p>Maibell & The Misfires is a Finnish rockabilly band that has been active since 2009 and is fronted by Maija Survonen.</p><p>The band has been releasing albums and singles under the Spanish label El Toro Records at a steady pace since 2010. The guest stars at the Malmitalo concert will be Saara Mustonen and Maria Tyyster, both well-known soloists in their own genres. Saara has recorded roots music with the band Saralee for the international label Rhythm Bomb and Maria Tyyster is known to the general public as the 2014 Tango Queen.</p><p>The evening will feature original productions of Maibell & The Misfires, as well as special guest appearances, all of which will feature rockabilly, rock'n'roll and roots music performed by female soloists throughout the ages, with a focus on the 1950s era.</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67473/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67344",
            "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": [],
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494552,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T15:12:52.962140Z",
                    "last_modified_time": "2026-01-19T15:12:52.962152Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781002.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494552/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T15:12:52.814965Z",
            "last_modified_time": "2026-03-20T01:12:55.638948Z",
            "date_published": null,
            "start_time": "2026-02-04T16: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": "Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "sv": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "en": "Marty Supreme – unelmoi isosti (12) – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0CCB7A0299BD51D7F9F5B63C976ED396/Marty_Supreme_unelmoi_isosti_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0CCB7A0299BD51D7F9F5B63C976ED396/Marty_Supreme_unelmoi_isosti_12_",
                "en": "http://www.malmitalo.fi/en/events/event/0CCB7A0299BD51D7F9F5B63C976ED396/Marty_Supreme_unelmoi_isosti_12_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi.</p><p>Josh Safdien ohjaama MARTY SUPREME – UNELMOI ISOSTI elokuvateattereissa 23.1.2026. Pääosissa Timothée Chalamet, Gwyneth Paltrow, Kevin O'Leary, Odessa A’Zion, Abel Ferrara ja Tyler Okonma.</p><p>Ikäraja: 12<br>Kesto: 149 min<br>Ensi-ilta: 23.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67344/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67343",
            "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": [],
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494541,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T13:14:43.297855Z",
                    "last_modified_time": "2026-01-19T13:14:43.297873Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781001.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494541/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T13:14:43.167969Z",
            "last_modified_time": "2026-03-20T01:12:55.177841Z",
            "date_published": null,
            "start_time": "2026-02-04T13: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": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.",
                "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.",
                "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios",
                "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios",
                "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D9C9BC0FE72029F556E0E1CEE2BEAE60/Terasleidit_7_kuin_viimeista_paivaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D9C9BC0FE72029F556E0E1CEE2BEAE60/Terasleidit_7_kuin_viimeista_paivaa",
                "en": "http://www.malmitalo.fi/en/events/event/D9C9BC0FE72029F556E0E1CEE2BEAE60/Terasleidit_7_kuin_viimeista_paivaa"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>",
                "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>",
                "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67343/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67466",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494006,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:05.493425Z",
                    "last_modified_time": "2025-12-03T08:13:05.493440Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781430.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494006/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:05.386455Z",
            "last_modified_time": "2026-03-20T01:12:54.251519Z",
            "date_published": null,
            "start_time": "2026-02-03T15: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!"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Allsång",
                "en": "Singalongs"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A5CF351D35F61480B2A667F264F2CF71/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A5CF351D35F61480B2A667F264F2CF71/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/A5CF351D35F61480B2A667F264F2CF71/Singalongs"
            },
            "location_extra_info": null,
            "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>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67466/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67342",
            "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": [],
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kalevala-kullervon-tarina-4056859/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kalevala-kullervon-tarina-4056859/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kalevala-kullervon-tarina-4056859/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494549,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T14:12:55.762714Z",
                    "last_modified_time": "2026-01-19T14:12:55.762729Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780998.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494549/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T14:12:55.639059Z",
            "last_modified_time": "2026-03-20T01:12:53.157266Z",
            "date_published": null,
            "start_time": "2026-01-31T16: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": "Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kalevala: Kullervon tarina (16) – Kino Helios",
                "sv": "Kalevala: Kullervon tarina (16) – Kino Helios",
                "en": "Kalevala: Kullervon tarina (16) – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/31EBAE8C35B6E7818350C28AB40CC16F/Kalevala_Kullervon_tarina_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/31EBAE8C35B6E7818350C28AB40CC16F/Kalevala_Kullervon_tarina_16_",
                "en": "http://www.malmitalo.fi/en/events/event/31EBAE8C35B6E7818350C28AB40CC16F/Kalevala_Kullervon_tarina_16_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn.</p><p>Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.</p><p>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.</p><p>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa. Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67342/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67341",
            "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": [],
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222275/",
                        "sv": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222275/",
                        "en": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222275/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494556,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T08:12:45.619394Z",
                    "last_modified_time": "2026-01-20T08:12:45.619409Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780997.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494556/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-20T08:12:45.478905Z",
            "last_modified_time": "2026-03-20T01:12:52.858434Z",
            "date_published": null,
            "start_time": "2026-01-31T13: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": "Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kanakani ja murmelin salaisuus (7) – Kino Helios",
                "sv": "Kanakani ja murmelin salaisuus (7) – Kino Helios",
                "en": "Kanakani ja murmelin salaisuus (7) – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B377CE2FD74B30BEDBBA3A77702E421A/Kanakani_ja_murmelin_salaisuus_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B377CE2FD74B30BEDBBA3A77702E421A/Kanakani_ja_murmelin_salaisuus_7_",
                "en": "http://www.malmitalo.fi/en/events/event/B377CE2FD74B30BEDBBA3A77702E421A/Kanakani_ja_murmelin_salaisuus_7_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika.</p><p>Kanakani ja hänen ystävänsä, Meri ja Hugo, ovat keränneet mainetta kuuluisina seikkailijoina. Uusi seikkailu odottaa heitä, kun Rollo palaa kuvioihin mukanaan mystinen esine. Kanakanin ottoisä, kuningas Kaarle, huomaa esineeseen kaiverretun symbolin, joka liittyy tarunomaiseen murmeliin.</p><p>Kuningas kertoo tarinan murmelista, jolla on taaksepäin katsovat kasvot ja kannustaa ryhmää etsintäretkelle – murmeli on löydettävä ennen kuin joku ehtii käyttää sen maagista voimaa. Seikkailu saa yllättävän käänteen, kun Kanakani ystävineen huomaa, etteivät he ole ainoita, jotka etsivät tätä muinaista voimaesinettä.</p><p>Matkansa varrella he kohtaavat toinen toistaan erikoisempia esteitä ja uusia, värikkäitä hahmoja. Kuka löytää murmelin ensimmäisenä ja saa käyttöönsä sen valtavan voiman – ja mitä siitä seuraa?</p><p>Ikäraja: 7<br>Kesto: 89 min<br>Ensi-ilta: 23.01.2026<br>Elokuva on puhuttu suomeksi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67341/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67472",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494005,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:04.915899Z",
                    "last_modified_time": "2025-12-03T08:13:04.915914Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781442.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494005/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:04.814280Z",
            "last_modified_time": "2026-03-20T01:12:51.094159Z",
            "date_published": null,
            "start_time": "2026-01-30T16: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": "Tervetuloa Sointi Jazz Orchestran järjestämiin big band -jameihin Malmitaloon!",
                "sv": "Välkommen till Sointi Jazz Orchestras big band-jam på Malms kulturhus!",
                "en": "Join us for big band jam sessions organised by Sointi Jazz Orchestra at Malmitalo!"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Big Band -jamit",
                "sv": "Big Band -jam",
                "en": "Big band jam sessions"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7DA670C93EED264E30805E4CB05B58F0/Big_Band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7DA670C93EED264E30805E4CB05B58F0/Big_Band_-jam",
                "en": "http://www.malmitalo.fi/en/events/event/7DA670C93EED264E30805E4CB05B58F0/Big_band_jam_sessions"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Tervetuloa Sointi Jazz Orchestran järjestämiin big band -jameihin Malmitaloon!</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.</p><p>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!</p><p>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com</p><p>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.</p><p><b>House bandit:</b><br>Ebeli Big Band<br>Sibelius-lukion Big Band</p><p>Kesto: 2 t<br>Vapaa pääsy!</p>",
                "sv": "<p>Välkommen till Sointi Jazz Orchestras big band-jam på Malms kulturhus!</p><p>Efter korta framträdanden av husbanden är alla saxofonister, trumpetare, trombonister, ackompanjerare och sångare välkomna att delta i musiken! På plats finns trumset, piano, bas- och gitarrförstärkare, notställ och noter. Ta gärna med de instrument och trumpinnar du behöver.</p><p>Till jammen har vi valt ut material som är bekvämt och passar olika nivåer av musiker – vi väljer ut de låtar som spelas med tanke på de musiker som kommer för att jamma!</p><p>Det är också möjligt få se noterna till låtarna på förhand på begäran. Vänligen skicka begäran till: info@sointijazzorchestra.com</p><p>Kom ensam eller med en vän för att skapa musik tillsammans! Du kan också bara komma och lyssna och njuta av big band-musiken.</p><p>Husbanden:<br>Ebeli Big Band<br>Sibelius-lukios Big Band</p><p>Längd: 2 h<br>Fritt inträde!</p>",
                "en": "<p>Join us for big band jam sessions organised by Sointi Jazz Orchestra at Malmitalo!</p><p>After short performances by the house bands, all saxophonists, trumpetists, trombonists, band players and singers are welcome to join in with the music! On site you will find a drum kit, a piano, bass and guitar amplifiers, music stands and sheet music. Please bring any other instruments and drumsticks that you need.</p><p>For the jams, we have selected material that is comfortable and suitable for different levels of musicianship – the tunes to be played will be chosen at the jams in accordance with the musicians who show up!</p><p>You can also request to see the sheet music of the songs in advance. Please send your request to: info@sointijazzorchestra.com</p><p>Come and bring a friend to make music together! You can also just come to listen and enjoy some big band music.</p><p>House bands:<br>Ebeli Big Band<br>Sibelius-lukio Upper Secondary School Big Band</p><p>Duration: 2 h<br>Free entry!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67472/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67340",
            "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": [],
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494548,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T14:12:54.794009Z",
                    "last_modified_time": "2026-01-19T14:12:54.794022Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780995.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494548/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T14:12:54.665086Z",
            "last_modified_time": "2026-03-20T01:12:50.776078Z",
            "date_published": null,
            "start_time": "2026-01-30T16: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": "Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "sv": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "en": "Marty Supreme – unelmoi isosti (12) – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0AD3CCC663E430C85C64CC3DCF3C7B0B/Marty_Supreme_unelmoi_isosti_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0AD3CCC663E430C85C64CC3DCF3C7B0B/Marty_Supreme_unelmoi_isosti_12_",
                "en": "http://www.malmitalo.fi/en/events/event/0AD3CCC663E430C85C64CC3DCF3C7B0B/Marty_Supreme_unelmoi_isosti_12_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi.</p><p>Josh Safdien ohjaama MARTY SUPREME – UNELMOI ISOSTI elokuvateattereissa 23.1.2026. Pääosissa Timothée Chalamet, Gwyneth Paltrow, Kevin O'Leary, Odessa A’Zion, Abel Ferrara ja Tyler Okonma.</p><p>Ikäraja: 12<br>Kesto: 149 min<br>Ensi-ilta: 23.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67340/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67339",
            "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": [],
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494540,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T13:14:41.846969Z",
                    "last_modified_time": "2026-01-19T13:14:41.847077Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780993.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494540/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T13:14:41.680078Z",
            "last_modified_time": "2026-03-20T01:12:50.647211Z",
            "date_published": null,
            "start_time": "2026-01-30T13: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": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.",
                "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.",
                "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios",
                "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios",
                "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/272C541CA30895CA4F77675BC49FA98B/Terasleidit_7_kuin_viimeista_paivaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/272C541CA30895CA4F77675BC49FA98B/Terasleidit_7_kuin_viimeista_paivaa",
                "en": "http://www.malmitalo.fi/en/events/event/272C541CA30895CA4F77675BC49FA98B/Terasleidit_7_kuin_viimeista_paivaa"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>",
                "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>",
                "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67339/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67470",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 / 15 €",
                        "sv": "20 / 15 €",
                        "en": "20 / 15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4028232",
                        "sv": "https://www.lippu.fi/eventseries/name-4028232",
                        "en": "https://www.lippu.fi/eventseries/name-4028232"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493873,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-24T12:12:35.766593Z",
                    "last_modified_time": "2025-11-24T12:12:35.766606Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781440.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493873/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-24T12:12:35.687585Z",
            "last_modified_time": "2026-03-20T01:12:49.858392Z",
            "date_published": null,
            "start_time": "2026-01-29T17: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": "Kevään 2026 MalmiJazzin avaa norjalainen saksofonisti-säveltäjä Trygve Seim yhdessä muiden pohjoismaisten huippusoittajien kanssa.",
                "sv": "Den norske saxofonisten och kompositören Trygve Seim öppnar MalmiJazz Spring 2026 tillsammans med andra nordiska toppmusiker.",
                "en": "Norwegian saxophonist and composer Trygve Seim will open MalmiJazz in spring 2026 with other top Nordic musicians."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Trygve Seim Helsinki Songs – MalmiJazz",
                "sv": "Trygve Seim Helsinki Songs – MalmiJazz",
                "en": "Trygve Seim Helsinki Songs – MalmiJazz"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/638FDC7B6B439196105429E52AB77D2C/Trygve_Seim_Helsinki_Songs",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/638FDC7B6B439196105429E52AB77D2C/Trygve_Seim_Helsinki_Songs",
                "en": "http://www.malmitalo.fi/en/events/event/638FDC7B6B439196105429E52AB77D2C/Trygve_Seim_Helsinki_Songs"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kevään 2026 MalmiJazzin avaa norjalainen saksofonisti-säveltäjä Trygve Seim yhdessä muiden pohjoismaisten huippusoittajien kanssa.</p><p>Syyskuussa 2018 arvostettu saksalainen levy-yhtiö ECM Records julkaisi Trygve Seimin instrumentaalikvartetin levyn Trygve Seim Helsinki Songs, joka sisältää Seimin sävellyksiä. Suurimman osan levyn kappaleista Seim sävelsi Suomen Säveltäjät ry:n residenssiasunnossa Helsingissä, ajatellen erityisesti tätä pohjoismaista (suomalais-virolais-norjalaista) kokoonpanoa.</p><p>Trygve Seim on saksofonisti ja säveltäjä Oslosta, Norjasta. Hän on tehnyt tiivistä yhteistyötä legendaarisen tuottajan Manfred Eicherin kanssa ja julkaissut ECM Recordsilla kymmenen omaa levyä. Lisäksi hän on mukana sivumuusikkona neljällätoista ECM Records -julkaisulla.</p><p>Trygve Seim (Norja) – saksofonit / sävellykset<br>Kristjan Randalu (Viro) – piano<br>Mats Eilertsen (Norja) – kontrabasso<br>Markku Ounaskari (Suomi) – rummut</p><p>Kesto: 2 t, sis. 20 min väliajan</p>",
                "sv": "<p>Den norske saxofonisten och kompositören Trygve Seim öppnar MalmiJazz Spring 2026 tillsammans med andra nordiska toppmusiker.</p><p>I september 2018 släppte det uppskattade tyska skivbolaget ECM Records Trygve Seims instrumentala kvartettalbum Trygve Seim Helsinki Songs med Seims kompositioner. Seim komponerade de flesta av låtarna på albumet på Finlands tonsättare rf:s residens i Helsingfors, med denna nordiska (finsk-estnisk-norska) sammansättning i åtanke.</p><p>Trygve Seim är en saxofonist och kompositör från Oslo i Norge. Han har samarbetat tätt med den legendariske producenten Manfred Eicher och gett ut tio egna album på ECM Records. Han medverkar också som musiker på fjorton album som ECM Records gett ut.</p><p>Trygve Seim (Norge) - saxofoner / komposition<br>Kristjan Randalu (Estland) – piano<br>Mats Eilertsen (Norge) – kontrabas<br>Markku Ounaskari (Finland) - trummor<br>Längd: 2 timmar, inklusive paus 20 minuter</p>",
                "en": "<p>Norwegian saxophonist and composer Trygve Seim will open MalmiJazz in spring 2026 with other top Nordic musicians.</p><p>In September 2018, the acclaimed German label ECM Records released the album Trygve Seim Helsinki Songs by Trygve Seim’s instrumental quartet, featuring Seim’s compositions. Most of the songs on the album were composed by Seim at the Society of Finnish Composers’ residence in Helsinki with this particular Nordic (Finnish-Estonian-Norwegian) ensemble in mind.</p><p>Trygve Seim is a saxophonist and composer from Oslo, Norway. He has worked closely with legendary producer Manfred Eicher and has released ten albums on ECM Records. He is also a featured musician on fourteen ECM Records releases.</p><p>Trygve Seim (Norway) – saxophones / compositions<br>Kristjan Randalu (Estonia) – piano<br>Mats Eilertsen (Norway) – double bass<br>Markku Ounaskari (Finland) – drums</p><p>Duration: 2 h, incl. a 20-min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67470/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67338",
            "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": [],
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119964/",
                        "sv": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119964/",
                        "en": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119964/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494348,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-02T09:13:52.625565Z",
                    "last_modified_time": "2026-01-02T09:13:52.625579Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780990.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-02T09:13:52.466708Z",
            "last_modified_time": "2026-03-20T01:12:48.936539Z",
            "date_published": null,
            "start_time": "2026-01-28T16: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": "Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kalevala: Kullervon tarina (16) – Kino Helios",
                "sv": "Kalevala: Kullervon tarina (16) – Kino Helios",
                "en": "Kalevala: Kullervon tarina (16) – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/02FC75AF5CF11BE27B37EF12DC5057ED/Kalevala_Kullervon_tarina_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/02FC75AF5CF11BE27B37EF12DC5057ED/Kalevala_Kullervon_tarina_16_",
                "en": "http://www.malmitalo.fi/en/events/event/02FC75AF5CF11BE27B37EF12DC5057ED/Kalevala_Kullervon_tarina_16_"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn.</p><p>Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.</p><p>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.</p><p>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa. Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67338/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67337",
            "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": [],
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-sydantalvi-malmitalo-21221904/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-sydantalvi-malmitalo-21221904/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-sydantalvi-malmitalo-21221904/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494547,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T14:12:53.690512Z",
                    "last_modified_time": "2026-01-19T14:12:53.690525Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780989.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494547/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T14:12:53.587132Z",
            "last_modified_time": "2026-03-20T01:12:48.622087Z",
            "date_published": null,
            "start_time": "2026-01-28T13: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."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/16B763E804F0B63346F8EA636DA982E1/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/16B763E804F0B63346F8EA636DA982E1/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/16B763E804F0B63346F8EA636DA982E1/Sydantalvi_16_"
            },
            "location_extra_info": null,
            "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>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67337/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67825",
            "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:32/?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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,80€/24,80€",
                        "sv": "17,80€/24,80€",
                        "en": "17,80€/24,80€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kirjo-karhu-kansantanssikonsertti-malmitalo-21094587/",
                        "sv": "https://www.lippu.fi/event/kirjo-karhu-kansantanssikonsertti-malmitalo-21094587/",
                        "en": "https://www.lippu.fi/event/kirjo-karhu-kansantanssikonsertti-malmitalo-21094587/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494229,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-17T11:13:36.786490Z",
                    "last_modified_time": "2025-12-17T11:13:36.786506Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782941.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494229/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-17T11:13:36.621917Z",
            "last_modified_time": "2026-03-20T01:12:47.813582Z",
            "date_published": null,
            "start_time": "2026-01-24T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kansantanssia, joka koskettaa ja yllättää.",
                "sv": "Folkdans som berör och överraskar.",
                "en": "Folk dance that touches the heart and surprises the mind."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kirjo / Karhu – kansantanssikonsertti",
                "sv": "Kirjo/Karhu – folkdanskonsert",
                "en": "Kirjo / Karhu – folk dance concert"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A53F3E4AC8FD7718E666D31722064CA6/Kirjo_Karhu_kansantanssikonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A53F3E4AC8FD7718E666D31722064CA6/Kirjo_Karhu_folkdanskonsert",
                "en": "http://www.malmitalo.fi/en/events/event/A53F3E4AC8FD7718E666D31722064CA6/Kirjo_Karhu_folk_dance_concert"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kansantanssia, joka koskettaa ja yllättää.</p><p>Pääkaupungin Karjalaiset Nuoret PKN juhlistaa 60-vuotista taivaltaan vuonna 2026 monin tavoin – vuoden avaa näyttävä kansantanssikonsertti Kirjo / Karhu, jossa perinne ja nykyhetki tanssivat rinnakkain sekä omien että kylään kutsuttujen ryhmien voimin.</p><p>Konsertin ensimmäisellä puoliajalla lavalle nousevat helsinkiläiset tanssiryhmät. Illan aloittaa Susirekka esityksellään Kaikkein polska ja Oispa masurkkaa virittäen yleisön liikkeen ja rytmin maailmaan. Tämän jälkeen PKN:n omat ryhmät – Roigu, Riesku ja Poppasitko – esittävät laajennetun version teoksesta Tyttö ja tanssiva karhu, joka pohjautuu samannimiseen runoon ja lauluun. Teos tuo lavalle myyttisen ja tarinallisen maailman, jossa tanssi ja laulu kertoo rajattomasta ystävyydestä, vapaudesta ja luopumisesta.</p><p>Toisella puoliajalla nähdään illan pääteos, Nuorisoseura Harmonikan kiitetty tanssiteos Kirjo. Teos kuvaa neuroepätyypillisen ihmisen tunteita ja kokemuksia erilaisuuden maailmassa modernin kansantanssin ja nykytanssin keinoin – herkästi, oivaltavasti ja koskettavasti.<br>Neuroepätyypillisyyden muotoja on yhtä paljon kuin kokijoita; tämä on meidän tapamme pohtia ja lisätä ymmärrystä moninaisuudesta.</p><p>Kirjo / Karhu on juhlakonsertti, jossa monipuolinen ja tarinallinen nykykansantanssi saa näyttämön – liike kertoo, mitä sanat eivät aina tavoita.</p><p>PKN on helsinkiläinen kansantanssiseura, jossa toimii 9 eri-ikäisten ryhmää. Tässä konsertissa mukana Ella Rautamiehen johtamat Roigu ja Riesku sekä Rami Melingin PoppaSitko.</p><p>Susirekka on vuonna 2008 perustettu helsinkiläinen tanssiryhmä, joka treenaa tanssinopettaja Jari Haaviston johdolla haastavaa suomalaista kansantanssia.</p><p>Nuorisseura Harmonikka Lappeenrannan Korvenkylässä toimiva seura, joka tarjoaa kansantanssiharrastuksen niin lapsille kuin aikuisillekin. Lavalla nähdäänkin monenikäistä tanssijaa.</p><p>Kesto: 2 t, sis. 20 min väliajan</p>",
                "sv": "<p>Folkdans som berör och överraskar.</p><p>Pääkaupungin Karjalaiset Nuoret PKN firar sitt 60-årsjubileum 2026 på många sätt. Året inleds med den spektakulär folkdans-konserten Kirjo/Karhu, där tradition och nutid kommer att dansa sida vid sida, både med egna grupper och med inbjudna gästande grupper.</p><p>Under den första halvan av konserten kommer dansgrupper från Helsingfors att inta scenen. Kvällen inleds med Susirekkas framförande av Kaikkein polska och Oispa masurkkaa, där publiken leds in i en värld av rörelse och rytm. PKN:s egna grupper - Roigu, Riesku och Poppasitko - kommer sedan att framföra en förlängd version av Tyttö ja tanssiva karhu, baserad på dikten och sången med samma namn. Verket förvandlar scenen till en mytisk och sagolik värld av dans och sång om gränslös vänskap, frihet och att släppa ifrån sig.</p><p>Under andra halvan bjuds vi på kvällens huvudverk, Nuorisoseura Harmonikas hyllade dansverk Kirjo. Verket skildrar en neurodivergent persons känslor och upplevelser i en värld av olikhet genom modern folkdans och modern dans – känsligt, insiktsfullt och berörande.<br>Det finns lika många former av neurodivergens som det finns personer med upplevelser; detta är vårt sätt att återspegla och öka förståelsen för mångfald.</p><p>Kirjo/Karhu är en festkonsert där mångsidig och historisk samtida dans står i centrum – rörelsen berättar det som ord inte alltid kan beskriva.</p><p>PKN är ett Helsingfors-baserat folkdanslag med 9 grupper för dansare i olika åldrar. I denna konsert medverkar Roigu och Riesku, under ledning av Ella Rautamäki, och PoppaSitko som leds av Rami Meling.</p><p>Susirekka är en Helsingfors-baserad dansgrupp som grundades 2008 och som tränar utmanande finsk folkdans under ledning av dansläraren Jari Haavisto.</p><p>Nuorisseura Harmonikka är en förening från Korvenkylä, Villmanstrand, som erbjuder folkdansaktiviteter för både barn och vuxna. På scenen kommer vi att få se dansare i många åldrar.</p><p>Längd: 2 timmar, inklusive paus 20 minuter</p>",
                "en": "<p>Folk dance that touches the heart and surprises the mind.</p><p>Pääkaupungin Karjalaiset Nuoret PKN will celebrate its 60th anniversary in 2026 in many ways – the year will kick off with a spectacular folk dance concert entitled Kirjo / Karhu, where tradition and the present day will dance side by side, both with their own groups and with groups invited for a visit.</p><p>During the first half of the concert, dance groups from Helsinki will take to the stage. The evening will start with Susirekka’s performance of Kaikkein polska and Oispa masurkkaa, tuning the audience for a journey into a world of movement and rhythm. Next, PKN’s own groups – Roigu, Riesku and PoppaSitko – will perform an expanded version of Tyttö ja tanssiva karhu (‘The Girl and the Dancing Bear’), based on the poem and song of the same name. The work brings to the stage a mythical and storied world of dance and song about boundless friendship, freedom and letting go.</p><p>The second half will feature the evening’s main work, Nuorisoseura Harmonikka’s acclaimed dance piece Kirjo (‘Spectrum’). The work depicts the feelings and experiences of a neurodivergent person in a world of dissimilarity through modern folk dance and contemporary dance – sensitively, insightfully and touchingly.<br>There are as many forms of neurodivergence as there are people experiencing it; this is our way of reflecting on and increasing understanding of diversity.</p><p>Kirjo / Karhu is a celebratory concert in which diverse and storied contemporary dance takes centre stage – movement says what words cannot always capture.</p><p>PKN is a Helsinki-based folk dance society with nine groups for people of different ages. This concert will feature Roigu and Riesku, led by Ella Rautamäki, as well as Rami Meling’s group PoppaSitko.</p><p>Founded in 2008, Susirekka is a Helsinki-based dance group that practices challenging Finnish folk dance under the direction of dance teacher Jari Haavisto.</p><p>Nuorisseura Harmonikka is an association based in Korvenkylä, Lappeenranta, that offers folk dance activities for both children and adults. Accordingly, the stage will be taken over by dancers of a wide range of ages.</p><p>Duration: 2 h, incl. a 20-min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67825/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}