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

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 ordering is descending order by -last_modified_time. 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/?format=api&page=16&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 4968,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=17&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=15&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:66098",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1255101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T07:14:26.183131Z",
                    "last_modified_time": "2025-07-14T07:14:26.183147Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771486.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255101/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T07:14:26.071859Z",
            "last_modified_time": "2025-09-04T14:14:22.335360Z",
            "date_published": null,
            "start_time": "2025-12-06T13:00:00Z",
            "end_time": "2025-12-06T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!</p><p>Ohjelmassa on salitapahtumaa ja kahvitarjoilu sekä kaunis Maamme-laulun esitys.</p><p>Lisätietoa ohjelmasta tulossa loppuvuodesta 2025.</p><p>Kesto: 1 tunti<br>Vapaa pääsy!</p>",
                "sv": "<p>Välkommen att fira Finlands självständighet på den traditionella självständighetsdagsfesten i Malms kulturhus!</p><p>Välkommen att fira Finlands självständighet på den traditionella självständighetsdagsfesten i Malms kulturhus!</p><p>I programmet ingår evenemang i salen och kaffeservering samt ett vackert sånguppträdande av Vårt land.</p><p>Mer information om programmet kommer i slutet av 2025.</p><p>Längd: 1 timme<br>Fritt inträde!</p>",
                "en": "<p>Come and celebrate independent Finland at the traditional Malmitalo Independence Day celebration!</p><p>The programme includes events in the hall, coffee and a beautiful performance of the Finnish national anthem, Maamme.</p><p>More information on the programme will be made available in late 2025.</p><p>Duration: 1 hour<br>Free entry!</p>"
            },
            "short_description": {
                "fi": "Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!",
                "sv": "Välkommen att fira Finlands självständighet på den traditionella självständighetsdagsfesten i Malms kulturhus!",
                "en": "Come and celebrate independent Finland at the traditional Malmitalo Independence Day celebration!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D47937E17671141BE0754F25B0DB9136/Firande_av_sjalvstandighetsdagen",
                "en": "http://www.malmitalo.fi/en/events/event/D47937E17671141BE0754F25B0DB9136/Independence_Day_Celebration"
            },
            "name": {
                "fi": "Itsenäisyyspäivän juhla",
                "sv": "Firande av självständighetsdagen",
                "en": "Independence Day Celebration"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66098/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66411",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-malmitalo-20285519/",
                        "sv": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-malmitalo-20285519/",
                        "en": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-malmitalo-20285519/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1170380,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T08:13:55.407346Z",
                    "last_modified_time": "2025-07-03T08:13:55.407363Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774120.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-03T08:13:55.248897Z",
            "last_modified_time": "2025-09-04T12:14:30.796871Z",
            "date_published": null,
            "start_time": "2025-11-29T08: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Mimmien koko perheen Puhuri-joulukonsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.</p><p>Konsertissa kuullaan ihan uusia talvi- ja jouluaiheisia sekä kaikille tuttuja lauluja.</p><p>Tutut joululaulut ovat saaneet jännittävät sovitukset, mukana ovat mm. Kulkuset, Porsaita äidin oomme kaikki ja Soihdut sammuu.  Puhuri- konsertit saivat 2023–24 kiertueilla hurjan suosion ja kuulijoita oli ympäri Suomea yli 15 000. Tunnelma konserteissa oli ikimuistoinen, niin lapset kuin aikuiset lauloivat innokkaasti mukana. Puhurista tulee taatusti perheiden jouluperinne!</p><p>Puhuri -konsertissa yhdistyvät mukaansatempaava musiikki, vauhdikkaat tanssit, värikkäät tausta-animaatiot, pöytäteatteri ja hauska tarina. Laulujen avulla lavalle rakentuu kaunis talvinen ja jouluinen maisema. Mimmipussista löytyy yllätyksiä. Pussi avautuu laulun ja leikin avulla, jos avautuu, riippuu millä tuulella Mimmipussi on…</p><p>Konsertti on vuorovaikutteinen: lapset ja aikuiset pääsevät mukaan leikkimään, tanssimaan ja laulamaan!</p><p>Puhurin tarina ilmestyi myös kuunnelmana joulukuussa 2024.</p><p>Mimmit on yksi Suomen tunnetuimmista lastenmusiikkiyhtyeistä. Mimmit ovat tehneet yli 1000 konserttia Suomessa ja ulkomailla ja julkaisseet kahdeksan levyä suomeksi ja kaksi ruotsiksi. Mimmit valittiin Vuoden yhtyeeksi 2024, ”Ystävyys” -levy valittiin vuoden lastenlevyksi 2017 ja Mimmien Pauski vuoden lastenmusiikin tekijäksi 2022. Mimmit-musiikkivideoita on katsottu Youtubessa jo yli 17 miljoonaa kertaa ja striimattu Spotifyssä yli 8 miljoonaa kertaa!</p><p><b>Mimmit:</b><br>Pauliina Lerche - laulu, harmonikka, kantele <br>Hannamari Vallila - laulu, viulu, melodika <br>Anssi Salminen/Mikko Malmivaara - kitara, taustalaulu <br>Juha Kujanpää – piano <br>Luis Herrero - basso, taustalaulu</p><p>Kesto: 50 min<br>Liput: 8 euroa</p>",
                "sv": "<p>Mimmits julkonsert Puhuri för hela familjen ger lyssnarna julstämning tar dem med till vita snödrivor.</p><p>På konserten får vi höra helt nya sånger med vinter- och jultema samt mer bekanta sånger.</p><p>De bekanta julsångerna, såsom Bjällerklang, Morsgrisar och Tomtarnas julnatt, har fått spännande arrangemang. Puhuri-konserterna vann stor popularitet på turnéerna 2023–2024 och hade över 15 000 åhörare i hela Finland. Stämningen på konserterna var oförglömlig – både barn och vuxna sjöng ivrigt med. Puhuri blir garanterat en jultradition för hela familjen!</p><p>Puhuri-konserten kombinerar medryckande musik, fartfylld dans, färgglada bakgrundsanimationer, bordsteater och en rolig berättelse. Med hjälp av sångerna skapas ett vackert vinter- och jullandskap på scenen. Det finns överraskningar i Mimmipåsen. Påsen öppnas med sång och lek, det beror på Mimmipåsens humör om den öppnas...</p><p>Konserten är interaktiv: Barn och vuxna får vara med och leka, dansa och sjunga!</p><p>Berättelsen om Puhuri gavs också ut som ljudbok i december 2024.</p><p>Mimmit är en av Finlands mest kända barnmusikgrupper. Mimmit har haft över 1 000 konserter i Finland och utomlands och gett ut åtta album på finska och två på svenska. Mimmit utsågs till Årets band 2024, skivan Ystävyys utsågs till Årets barnalbum 2017 och Mimmits Pauski till Årets barnmusikskapare 2022. Mimmits musikvideor har visats över 17 miljoner gånger på YouTube och strömmats över åtta miljoner gånger på Spotify!</p><p><b>Mimmit:</b><br>Pauliina Lerche – sång, dragspel, kantele <br>Hannamari Vallila – sång, violin, melodika <br>Anssi Salminen/Mikko Malmivaara – gitarr, bakgrundssång <br>Juha Kujanpää – piano <br>Luis Herrero – bas, bakgrundssång<br>*<br>Joulun Sävel<br>Julkonsert med Koilliskuoro<br>På konserten uppträder Malms kulturhus egen kör Koilliskuoro. <br>Kören leds av Maija Laurinsilta.</p><p>Längd: cirka 1 timme</p>",
                "en": "<p>The Puhuri Christmas concert by Mimmit, suitable for all ages, leads the listeners into the Christmas spirit in the midst of white snow.</p><p>The concert features completely new winter- and Christmas-themed songs as well as old, familiar tunes.</p><p>The well-known Christmas songs have received exciting new arrangements, including Jingle Bells, Porsaita äidin oomme kaikki and Soihdut sammuu. The Puhuri concerts gained huge popularity on the 2023–2024 tours, with over 15,000 audience members across Finland. The atmosphere at the concerts was unforgettable, with both children and adults singing along enthusiastically. Puhuri is sure to become a Christmas tradition for families!</p><p>The Puhuri concert combines engaging music, lively dances, colourful background animations, table theatre and a fun story. A beautiful wintery and Christmas-themed scene is created on stage through the songs. There are surprises in the Mimmi Bag. The bag opens through song and play – if it opens at all, which depends on the mood of the Mimmi Bag...</p><p>The concert is interactive: children and adults get to join in playing, dancing and singing!</p><p>The story of Puhuri was also released as a radio play in December 2024.</p><p>Mimmit are one of Finland's best-known children's music groups. They have performed over 1,000 concerts in Finland and abroad, and have released eight albums in Finnish and two in Swedish. Mimmit were chosen as Band of the Year 2024, their album Ystävyys as Children's Album of the Year 2017 and Mimmit's Pauski as Children's Music Creator of the Year 2022. Mimmit's music videos have been viewed over 17 million times on YouTube and streamed over 8 million times on Spotify.</p><p><b>Mimmit:</b><br>Pauliina Lerche: vocals, accordion, kantele <br>Hannamari Vallila: vocals, violin, melodica <br>Anssi Salminen/Mikko Malmivaara: guitar, background vocals <br>Juha Kujanpää: piano <br>Luis Herrero: bass, background vocals<br>*<br>The Sound of Christmas<br>Koilliskuoro Choir's Christmas Concert<br>The concert features Malmitalo's own Koilliskuoro choir. <br>The choir is conducted by Maija Laurinsilta.</p><p>Duration: about 1 hour</p>"
            },
            "short_description": {
                "fi": "Mimmien koko perheen Puhuri-joulukonsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.",
                "sv": "Mimmits julkonsert Puhuri för hela familjen ger lyssnarna julstämning tar dem med till vita snödrivor.",
                "en": "The Puhuri Christmas concert by Mimmit, suitable for all ages, leads the listeners into the Christmas spirit in the midst of white snow."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5B7A6D84A7BF487751A4362E74B516D0/Mimmit_Puhuri_koko_perheen_joulukonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5B7A6D84A7BF487751A4362E74B516D0/Mimmit_Puhuri_en_julkonsert_for_hela_familjen",
                "en": "http://www.malmitalo.fi/en/events/event/5B7A6D84A7BF487751A4362E74B516D0/Mimmit_Puhuri_a_Christmas_Concert_for_the_Whole_Family"
            },
            "name": {
                "fi": "Mimmit: Puhuri – koko perheen joulukonsertti",
                "sv": "Mimmit: Puhuri – en julkonsert för hela familjen",
                "en": "Mimmit: Puhuri – a Christmas Concert for the Whole Family"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66411/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66413",
            "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: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:p16919/?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,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1170381,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T08:13:55.819406Z",
                    "last_modified_time": "2025-07-03T08:13:55.819429Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774122.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170381/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T08:13:55.726144Z",
            "last_modified_time": "2025-09-04T12:14:30.637175Z",
            "date_published": null,
            "start_time": "2025-11-29T08:00:00Z",
            "end_time": "2025-11-29T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Jo perinteeksi muodostuneessa Malmitalon joulun perhepäivässä on luvassa paljon maksutonta ohjelmaa perheille: työpajoja, leffoja ja joulupukki!</p><p>On aika ottaa kevyt varaslähtö kohti joulun perherientoja ihastuttavan ja touhua täynnä olevan päivän myötä. Työpajoissa askarrellaan ja ilmaisissa elokuvanäytöksissä pääsee uppoutumaan Astrid Lindgrenin joulusatuja-elokuvan maailmaan. Lisätietoa työpajoista ja päivän aikatauluista tulee lähempänä joulua.</p><p>Vapaa pääsy!</p>",
                "sv": "<p>På julens familjedag i Malms kulturhus som redan blivit en tradition, utlovas många avgiftsfria program för familjer: verkstäder, filmer och jultomten!</p><p>Det är dags att göra en liten tjuvstart i julbestyren med den härliga dagen full av aktiviteter! I verkstäderna och gratis filmvisningar kan man fördjupa sig i Astrid Lindgrens film Jul med Astrid Lindgren. Mer information om verkstäderna och tidtabellerna för dagen kommer närmare julen.</p><p>Fritt inträde!</p>",
                "en": "<p>The Malmitalo Christmas Family Day, which has already become a tradition, offers lots of free activities for families: workshops, films and Father Christmas!</p><p>Enjoy an early start to Christmas family fun with this delightful day full of activities. In the workshops, participants get to do crafts, while the free film screenings will immerse the audience in the world of the film Astrid Lindgren's Christmas. More information about the workshops and the day's schedule will be provided closer to Christmas.</p><p>Free entry!</p>"
            },
            "short_description": {
                "fi": "Jo perinteeksi muodostuneessa Malmitalon joulun perhepäivässä on luvassa paljon maksutonta ohjelmaa perheille: työpajoja, leffoja ja joulupukki!",
                "sv": "På julens familjedag i Malms kulturhus som redan blivit en tradition, utlovas många avgiftsfria program för familjer: verkstäder, filmer och jultomten!",
                "en": "The Malmitalo Christmas Family Day, which has already become a tradition, offers lots of free activities for families: workshops, films and Father Christmas!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5C45B4E6E31080EA273DCD1ACD964DBA/Joulun_perhepaiva",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5C45B4E6E31080EA273DCD1ACD964DBA/Joulun_perhepaiva",
                "en": "http://www.malmitalo.fi/en/events/event/5C45B4E6E31080EA273DCD1ACD964DBA/Joulun_perhepaiva"
            },
            "name": {
                "fi": "Joulun perhepäivä",
                "sv": "Joulun perhepäivä",
                "en": "Joulun perhepäivä"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66413/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmnttwti",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttgxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmntthxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttivu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttjwu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttkxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttlvi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttmum/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttnt4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttore/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttppy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttqqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttrse/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttsru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmntttqi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttuta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttvve/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:22.562347Z",
            "last_modified_time": "2025-09-04T11:32:11.458158Z",
            "date_published": null,
            "start_time": "2025-09-02T09:00:00Z",
            "end_time": "2025-12-16T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66410",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "sv": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "en": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.296490Z",
                    "last_modified_time": "2025-07-10T14:13:03.296502Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774102.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227260/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-10T14:13:03.245419Z",
            "last_modified_time": "2025-09-04T11:14:23.485582Z",
            "date_published": null,
            "start_time": "2025-11-22T08: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!</p><p>Hennan ja Supersankareiden musiikki innostaa kaikenikäiset kuulijat lauluun, tanssiin, leikkiin ja nauruun! Konserteissa on voimassa voimakas Hyväntuulen varoitus!</p><p>Riemukkaassa Malmitalon lastenkonsertissa matkustetaan Ystävyyden saarelle, jossa juhlitaan ystävyyttä sekä ihanaa luontoa.</p><p>Yhtyeen kappaleita pääsee joraamaan mm. Spotifystä sekä Henna ja Supersankareiden Youtube-kanavalta, joka on kerännyt lyhyessä ajassa yli 100 000 katselukertaa!  <br>Henna ja Supersankareiden lauluja on voinut kuulla Pikku Kakkosen televisioiduissa lastenkonserteissa sekä Yle Areenasta löytyvistä musiikkipodcasteista!</p><p>Yhtye on ollut ehdolla Lastenmusiikin Jellonagaalassa useissa kategorioissa: Vuoden Tulokas, Vuoden Yhtye, Vuoden Lastenmusiikkialbumi, Vuoden Lastenlaulu ja Vuoden Lastenmusiikintekijä!</p><p><b>Malmitalolla lavalle nousevat:</b><br>Henna-Maija Kuki, laulu ja harmonikka <br>Susanna Lukkarinen, taustalaulu ja piano  <br>Alina Kivivuori, taustalaulu ja viulu <br>Teemu Keränen, basso <br>Teemu Eronen, rummut</p><p>Kesto: n. 35 min</p>",
                "sv": "<p>Den omåttligt populära barnmusikgruppen Henna och superhjältarna framför ny rytmbaserad barnmusik!</p><p>Henna och superhjältarnas musik inspirerar lyssnare i alla åldrar till sång, dans, lek och skratt! Konserterna har en stark varning för gott humör!</p><p>På den glada barnkonserten i Malms kulturhus reser vi till Vänskapsön, där vi hyllar vänskap och naturens skönhet.</p><p>Du kan lyssna på bandets låtar på Spotify och Henna och superhjältarnas Youtube-kanal, som på kort tid har haft över 100 000 visningar!  <br>Henna och superhjältarnas sånger har kunnat höras i barnkonserterna som sänts i Pikku Kakkonen och i musikpodcasterna som finns på Yle Arenan.</p><p>Bandet har nominerats i flera kategorier i barnmusik på Jellonagalan: Årets nykomling, Årets band, Årets barnmusikalbum, Årets barnlåt och Årets barnmusikskapare!</p><p><b>På scenen i Malms kulturhus uppträder:</b><br>Henna-Maija Kuki, sång och dragspel <br>Susanna Lukkarinen, bakgrundssång och piano  <br>Alina Kivivuori, bakgrundssång och violin <br>Teemu Keränen, kontrabas <br>Teemu Eronen, trummor</p>",
                "en": "<p>The hugely popular children's music group Henna ja Supersankarit perform new rhythm-based children's music.</p><p>Henna and Supersankarit's music inspires listeners of all ages to sing, dance, play and laugh. A strong Good Mood Warning is in effect at the concerts!</p><p>In the joyful children's concert at Malmitalo, the audience will travel to the Island of Friendship, where friendships and wonderful nature are celebrated.</p><p>The band's songs can be danced to on Spotify and on Henna ja Supersankarit's YouTube channel, which has gathered over 100,000 views in a short time!  <br>Henna ja Supersankarit's songs have also been heard in televised children's concerts on Pikku Kakkonen and music podcasts available on Yle Areena.</p><p>The band have been nominated in several categories at the Jellona gala for children's music: Newcomer of the Year, Band of the Year, Children's Music Album of the Year, Children's Song of the Year and Children's Music Creator of the Year!</p><p><b>On stage at Malmitalo:</b><br>Henna-Maija Kuki: vocals and accordion <br>Susanna Lukkarinen: background vocals and piano  <br>Alina Kivivuori: background vocals and violin <br>Teemu Keränen: bass <br>Teemu Eronen: drums</p>"
            },
            "short_description": {
                "fi": "Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!",
                "sv": "Den omåttligt populära barnmusikgruppen Henna och superhjältarna framför ny rytmbaserad barnmusik!",
                "en": "The hugely popular children's music group Henna ja Supersankarit perform new rhythm-based children's music."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CBE8877B5B813BD9810E44D22848B06F/Henna_och_superhjaltarna",
                "en": "http://www.malmitalo.fi/en/events/event/CBE8877B5B813BD9810E44D22848B06F/Henna_and_Superheroes_"
            },
            "name": {
                "fi": "Henna ja Supersankarit",
                "sv": "Henna och superhjältarna",
                "en": "Henna and Superheroes"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66410/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66073",
            "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": "29,90 € / 24,80 €",
                        "sv": "29,90 € / 24,80 €",
                        "en": "29,90 € / 24,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "sv": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "en": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227259,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.082209Z",
                    "last_modified_time": "2025-07-10T14:13:03.082221Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771408.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227259/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T14:13:03.009351Z",
            "last_modified_time": "2025-09-04T11:14:23.294476Z",
            "date_published": null,
            "start_time": "2025-11-21T17: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä.</p><p>Tarina saa jatkoa viiden vuoden takaisesta Kipinöitä-konseptista, jossa taiteilijat esittivät yhdessä toistensa kappaleita duettomuodossa.</p><p>Tulevilla keikoilla kuullaan taiteilijoiden omaa tuotantoa – uutta ja vanhaa – yksin ja yhdessä: illan aikana on luvassa niin uudet soolokattaukset kuin myöskin duettomuotoinen yhteissetti, jossa lauluntekijät esittävät vanhojen suosikkien lisäksi ennen kuulemattomia lauluja tulevilta albumeiltaan.</p><p>”Ylva Haru on paitsi lempilauluntekijäni myös rakas ystäväni. Muutama vuosi sitten aloitimme yhteiskiertueen, jonka pandemia harmillisesti katkaisi. Tuolloin löysimme nopeasti yhteisen sävelen, ja on ihanaa viimein jatkaa siitä mihin jäimme”, kertoo Topi Saha.</p><p>”On suuri ilo saada jälleen soida rakkaan ja lahjakkaan ystäväni kanssa! Topi on kuin sielunveli, niin ihmisenä kuin myös soitannollisesti ja laulullisesti. Tuntuu antoisalta ja luontevalta jatkaa kappaleiden versioimista yhdessä”, kommentoi Ylva Haru.</p><p>Topi Sahan musiikkia on kuvailtu haikeaksi, kaihoisaksi ja surumieliseksi. Omasta mielestään hän on väärinymmärretty humoristi. Sahan odotettu viides sooloalbumi <i>Öitä</i> ilmestyi tammikuussa 2025.</p><p>Vahvoista melodioista ja pohtivista, runomaisista teksteistä kiitelty Ylva Haru työstää parhaillaan uutta albumia. Intiimeillä keikoilla on mahdollisuus päästä syvemmälle herkän ytimen ääreen, kun laulut soivat kaikkein riisutuimmassa muodossa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>De hyllade låtskrivarna Topi Saha och Ylva Haru återförenas i den intima och unika gemensamma turnén Kipinöitä II.</p><p>Berättelserna i konceptet Kipinöitä fem år sedan, där konstnärerna tillsammans framförde varandras låtar i duettformfrån, får en fortsättning.</p><p>På de kommande spelningarna får vi höra konstnärernas egen produktion – nytt och gammalt – ensamma och tillsammans. Under kvällen utlovas både nya solon och ett gemensamt duettset där låtskrivarna förutom gamla favoriter framför ohörda låtar från sina kommande album.</p><p>”Ylva Haru är inte bara min favoritlåtskrivare utan också en kär vän. För några år sedan inledde vi en gemensam turné, som tyvärr avbröts av pandemin. Vi hittade snabbt en gemensam melodi då, och det är fantastiskt att äntligen få fortsätta där vi slutade”, säger Topi Saha.</p><p>”Det är ett stort nöje att få spela med min kära och begåvade vän igen! Topi är som en själsfrände, både som människa och när det gäller hans musik och sång. Det känns givande och naturligt att fortsätta att arbeta med versioner av låtarna tillsammans”, säger Ylva Haru.</p><p>Topi Sahas musik har beskrivits som längtansfull, vemodig och sorglig. Enligt min uppfattning är han en missförstådd humorist. Sahas efterlängtade femte soloalbum <i>Öitä</i> släpptes i januari 2025.</p><p>Ylva Haru, som hyllas för sina starka melodier och reflekterande, poetiska texter, arbetar för närvarande på ett nytt album. De intima spelningarna är en chans att komma djupare in i den känsliga kärnan, när sångerna hörs i sin mest avskalade form.</p><p>Längd: 2 timmar inklusive paus 20 minuter</p>",
                "en": "<p>Renowned songwriters Topi Saha and Ylva Haru are joining forces again for the intimate and unique Kipinöitä II co-tour.</p><p>The story continues from the Kipinöitä concept five years ago, where the artists performed each other's songs as duets.</p><p>At the upcoming shows, audiences will hear the artists' own work – both new and old – performed solo and together: the evening will feature new solo sets as well as a duet set, where the songwriters perform both old favourites as well as previously unheard songs from their upcoming albums.</p><p>\"Ylva Haru is not only my favourite songwriter but also a dear friend. A few years ago, we started a joint tour, which was unfortunately interrupted by the pandemic. At that time, we quickly found common ground, and it is wonderful to finally continue from where we left off,\" says Topi Saha.</p><p>\"It is a great pleasure to play again with my dear and talented friend! Topi is like a soulmate, both as a person and musically and vocally. It feels rewarding and natural to continue interpreting songs together,\" says Ylva Haru.</p><p>Topi Saha's music has been described as wistful and melancholic. In his own view, he is a misunderstood humourist. Saha's highly anticipated fifth solo album Öitä was released in January 2025.</p><p>Praised for her strong melodies and reflective, poetic lyrics, Ylva Haru is currently working on a new album. The intimate concerts provide an opportunity to get closer to the sensitive core, as the songs are performed in their most stripped-down form.</p><p>Duration: 2 hours, incl. a 20-min intermission</p>"
            },
            "short_description": {
                "fi": "Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä.",
                "sv": "De hyllade låtskrivarna Topi Saha och Ylva Haru återförenas i den intima och unika gemensamma turnén Kipinöitä II.",
                "en": "Renowned songwriters Topi Saha and Ylva Haru are joining forces again for the intimate and unique Kipinöitä II co-tour."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_och_Ylva_Haru_Kipinoita_II_",
                "en": "http://www.malmitalo.fi/en/events/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_"
            },
            "name": {
                "fi": "Topi Saha & Ylva Haru: Kipinöitä II",
                "sv": "Topi Saha och Ylva Haru: Kipinöitä II",
                "en": "Topi Saha & Ylva Haru: Kipinöitä II"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66073/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66668",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?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:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/",
                        "sv": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/",
                        "en": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1148243,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T13:12:57.781085Z",
                    "last_modified_time": "2025-06-30T13:12:57.781102Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771194.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1148243/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-30T13:12:57.673701Z",
            "last_modified_time": "2025-09-04T11:14:06.796363Z",
            "date_published": null,
            "start_time": "2025-09-13T12: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>“Me tehdään musaa maailman parhaimmista tyypeistä eli lapsista!”</p><p>Sukkalukko on keväällä 2023 perustettu lastenmusiikkiyhtye. Yhtyeen muodostavat Susanna Volanto ja Tomi Rajala. Tomi tunnetaan parhaiten The Bätmäns -yhtyeestä ja Susanna on monille tuttu television lastenohjelmista. Musiikkitaustaa molemmilta löytyy monista eri yhteyksistä sekä kokemusta lastenkulttuurin parissa työskentelystä monessa eri muodossa. Sukkalukon bändikeikoilla on lisäksi mukana rumpuja paukuttelemassa Janne Mathlin sekä basson varressa Kalle Ylitalo.</p><p>Sukkalukko on julkaissut viisi singleä ja kesäkuussa ilmestyi yhtyeen debyyttialbumi 10/10. Sukkalukon useampi biisi on jo sujahtanut Spotifyn viralliselle 'Parasta lastenmusiikkia' -soittolistalle. Sukkalukko oli myös ehdolla vuoden 2024 Jellonagaalassa Vuoden tulokkaaksi.</p><p>Musiikillisesti Sukkalukon kappaleet ovat vauhdikasta pop-musiikkia. Sanoituksiin on löytynyt inspiraatio lapsiperheiden päivittäisestä elämästä; pihaleikeistä, ystävistä, nuhapöpöistä ja vaikkapa sukista! Kappaleet pursuavat iloa sekä riemua ja ovat sokerisen tarttuvia. Vanhemmille kappaleet tarjoavat vertaistukea hektisen perhe-elämän keskellä. Sukkalukon keikalla ei tarvitse istuskella, vaan jokainen saa hyppiä, laulaa ja hassutella mukana. Sukkalukot tiukalle - se on menoa nyt!</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!  <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/sukkalukko-helsingin-kaupunki-nuorisolippu-vuotalo-20470580/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>”Vi gör musik om världens bästa typer, alltså barn!”</p><p>Sukkalukko är en barnmusikorkester som grundades våren 2023. Orkestern består av Susanna Volanto och Tomi Rajala. Tomi är känd från gruppen The Bätmäns och Susanna från barnprogram på tv. Båda har en musikalisk bakgrund från många olika sammanhang och erfarenhet av att arbeta med barnkultur i olika former.</p><p>Sukkalukko har gett ut fyra singlar, och tre av dem har tagit sig in på Spotifys officiella spellista för den bästa barnmusiken. Sukkalukko var också nominerad som årets nykomling på Jellonagalan 2024. Och i juni utlovas feststämning när Sukkalukko ger ut sitt första album!</p><p>Musikaliskt representerar Sukkalukkos låtar en fartfylld popmusik. Texterna är inspirerade av barnfamiljens vardag: lekar på gården, vänner, snuva och kanske strumpor! Låtarna sprudlar av glädje och är väldigt medryckande. För föräldrarna kan låtarna vara ett stöd i det hektiska familjelivet. På Sukkalukkos spelningar behöver man inte sitta stilla, utan alla får hoppa, sjunga och busa till musiken. Sukkalukko är här – nu kör vi!</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/sukkalukko-helsingin-kaupunki-nuorisolippu-vuotalo-20470580/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>“We make music about the best people on earth – children!”</p><p>Sukkalukko is a children’s music group founded in spring 2023. The band consists of Susanna Volanto and Tomi Rajala. Tom is best known for The Bätmäns and Susanna is known for her appearances on children's programmes on television. Both have diverse musical backgrounds and experience in working with children’s culture.</p><p>Sukkalukko have released four singles, and three of them have shot to the official 'Parasta lastenmusiikkia' (best children’s music) playlist on Spotify. Sukkalukko was also nominated in the 2024 Jellonagaala as newcomer of the year (Vuoden tulokas). June spells celebration for the group, as they release their debut album!</p><p>Musically, Sukkalukko’s songs are energetic pop. The lyrics have been inspired by daily life in families with children: playing outside, friends, runny noses and socks, why not! The songs brim with joy and delight and are sweet and catchy. Parents will find peer support in the songs in the middle of hectic family life. You are not supposed to sit down during a Sukkalukko performance; instead, you are encouraged to jump, sing and play along. Hold on to your socks – here we go!</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/sukkalukko-helsingin-kaupunki-nuorisolippu-vuotalo-20470580/?affiliate=FSF\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "“Me tehdään musaa maailman parhaimmista tyypeistä eli lapsista!”",
                "sv": "”Vi gör musik om världens bästa typer, alltså barn!”",
                "en": "“We make music about the best people on earth – children!”"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko",
                "en": "http://www.vuotalo.fi/en/events/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko"
            },
            "name": {
                "fi": "Sukkalukko",
                "sv": "Sukkalukko",
                "en": "Sukkalukko"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66668/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66066",
            "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/kulke:758/?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 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/a-la-malmi-rebekka-holi-figaro-malmitalo-20186306/",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-rebekka-holi-figaro-malmitalo-20186306/",
                        "en": "https://www.lippu.fi/event/a-la-malmi-rebekka-holi-figaro-malmitalo-20186306/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1162101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T07:13:46.026943Z",
                    "last_modified_time": "2025-07-02T07:13:46.026961Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771354.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162101/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-02T07:13:45.893238Z",
            "last_modified_time": "2025-09-04T10:14:15.027998Z",
            "date_published": null,
            "start_time": "2025-11-14T17: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Marraskuun A la Malmi -illassa on luvassa kaksi tuoretta musiikkia esittävää bändiä, kun lavalle astuvat Rebekka Holi ja Figaro!</p><p><b>Rebekka Holi</b> on omaehtoinen artisti ja lauluntekijä, jonka musiikki on oivaltava sekoitus rokkia ja indiepoppia. Musiikkia läpi elämänsä säveltänyt artisti on suorasukainen sanoittaja, joka kertoo kappaleissaan oman elämänsä kokemuksista ja koukeroista.</p><p>Artisti julkaisi vuonna 2024 Kukkaan-albumin, jonka aiempaa suoraviivaisempi rock- ja pop-musiikki on täynnä koukuttavia melodioita ja rehellisiä sekä persoonallisia tekstejä. Rebekka Holi valmistelee parhaillaan musiikkia uudelle albumilleen, joka julkaistaan vuoden 2025 aikana.</p><p><b>Figaro</b> on kunnianhimoinen suomalaisen psykedeelisen popin sanansaattaja, jonka uusi albumi Taivaankappaleet ilmestyi helmikuussa 2025. Artistin itse tuottama albumi astuu samaan kaanoniin muun muassa Pariisin Kevään, Saimaan, MGMT:n, Gorillazin ja Tame Impalan kanssa. Albumin focus track ‘Kun mä tapasin sut’ nousi myös MTV:n Levyraati-ohjelman voittoon.<br>Figaron tekstillinen ja soinnillinen maailma avaa tajuntaa ja pyrkii tarjoamaan hetkellisen piilopaikan arkielämän murheilta. Figaro-yhtyeen sointiin ja stemmalauluihin on helppo uppoutua myös keikoilla.</p><p>Kesto 2 h, sis. 20 min väliajan</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/rebekka-holi-figaro-helsingin-kaupunki-nuorisolippu-malmitalo-20303242/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>På A la Malm-kvällen i november utlovas två band som framför ny musik, när Rebecka Holi och Figaro stiger upp på scenen!</p><p><b>Rebekka Holi</b> är en självständig artist och låtskrivare med musik som är en insiktsfull blandning av rock och indiepop. Artisten har komponerat musik i hela sitt liv och är en rättfram textförfattare som i sina låtar berättar om erfarenheter och krångligheter i sitt eget liv.</p><p>År 2024 släppte artisten albumet Kukkaan, ett album med mer okomplicerad rock- och popmusik full av medryckande melodier och ärliga, personliga texter. Rebekka Holi arbetar för närvarande med musiken till sitt nya album, som kommer att släppas under 2025.</p><p><b>Figaro</b> är en ambitiös budbärare av finländsk psykedelisk pop, vars nya album Taivaankappaleet släpptes i februari 2025. Albumet, som producerats av artisten själv, sällar sig till kanon av bland andra Pariisin Keväät, Saimaa, MGMT, Gorillaz och Tame Impala. Albumets fokusspår Kun mä tapasin sut vann också i MTV:s program Levyrati.<br>Figaros värld av texter och toner öppnar upp medvetandet och strävar efter att ge en tillfällig tillflykt från vardagens bekymmer. Det är lätt att bli uppslukad av Figaros sound och stämsånger även på spelningarna.</p><p>Längd 2 timmar, inklusive paus 20 minuter<br><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025! <br>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/rebekka-holi-figaro-helsingin-kaupunki-nuorisolippu-malmitalo-20303242/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>At November's A la Malmi evening, two fresh music acts will take the stage as Rebekka Holi and Figaro perform live!</p><p><b>Rebekka Holi</b> is an independent artist and songwriter whose music is a clever blend of rock and indie pop. A lifelong composer, the artist is an outspoken lyricist, sharing the experiences and intricacies of her life in her songs.<br>In 2024, she released the album Kukkaan, whose more direct rock and pop sound is full of catchy melodies and honest, distinctive lyrics. Rebekka Holi is currently working on making music for her new album, which will be released in 2025.</p><p><b>Figaro</b> is an ambitious messenger of Finnish psychedelic pop, whose new album Taivaankappaleet was released in February 2025. The album, produced by the artist himself, joins the canon of Pariisin Kevät, Saimaa, MGMT, Gorillaz and Tame Impala, among others. The album's focus track Kun mä tapasin sut was also the winner of the Finnish MTV's programme Levyraati.<br>Figaro's textural and tonal world opens up the consciousness and seeks to provide a momentary refuge from the troubles of everyday life. It is easy to get immersed in Figaro's sound and vocal harmonies during live performances as well.</p><p>Duration: 2 hours, incl. a 20-min intermission</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025! <br>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/rebekka-holi-figaro-helsingin-kaupunki-nuorisolippu-malmitalo-20303242/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "Marraskuun A la Malmi -illassa on luvassa kaksi tuoretta musiikkia esittävää bändiä, kun lavalle astuvat Rebekka Holi ja Figaro!",
                "sv": "På A la Malm-kvällen i november utlovas två band som framför ny musik, när Rebecka Holi och Figaro stiger upp på scenen!",
                "en": "At November's A la Malmi evening, two fresh music acts will take the stage as Rebekka Holi and Figaro perform live!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9892CD79A39D9295AADEC5025DC1757A/Rebekka_Holi_Figaro",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9892CD79A39D9295AADEC5025DC1757A/Rebekka_Holi_Figaro",
                "en": "http://www.malmitalo.fi/en/events/event/9892CD79A39D9295AADEC5025DC1757A/Rebekka_Holi_Figaro"
            },
            "name": {
                "fi": "Rebekka Holi & Figaro – A la Malmi",
                "sv": "Rebekka Holi & Figaro – A la Malmi",
                "en": "Rebekka Holi & Figaro – A la Malmi"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66066/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65965",
            "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": "15 € / 20 €",
                        "sv": "15 € / 20 €",
                        "en": "15 € / 20 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/a-la-malmi-raejaeyttaejaet-malmitalo-20139421",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-raejaeyttaejaet-malmitalo-20139421",
                        "en": "https://www.lippu.fi/event/a-la-malmi-raejaeyttaejaet-malmitalo-20139421"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T12:13:59.299717Z",
                    "last_modified_time": "2025-07-01T12:13:59.299733Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769560.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T12:13:59.172659Z",
            "last_modified_time": "2025-09-04T10:14:10.849461Z",
            "date_published": null,
            "start_time": "2025-10-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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Räjäyttäjät saapuvat uuden levyn saattelemana Malmitalolle!</p><p>Vuonna 2011 Jyväskylässä perustettu kolmihenkinen Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan. Yli kymmenvuotisella urallaan yhtye on ansaitusti vakiinnuttanut paikkansa aikamme kotimaisen indieskenen kaanonissa. Räjä ’n’ rollia soittava yhtyeen ilmaisussa on juuri sopiva ripaus hölmöä tee-se-itse -tykittelyä, kunnon meininkiä sekä tarkkanäköisen rehellistä rokkia.</p><p>Jyväskylässä 2011 perustettu Räjäyttäjät julkaisi uuden pitkäsoiton 18.4.2025. Kyseessä on tupla-LP, jolla on kaikkien yhtyeen jäsenten eli Alex Reedin (rummut ja laulu), Mikko Siltasen (basso ja laulu) ja Jukka Nousiaisen (kitara ja laulu) tekemiä ja laulamia kappaleita. Skaala ulottuu psykedeelisestä folkista keskiaikaisen progen kautta mielipuolisen meluamiseen ja rokkaukseen.</p><p>Rock on ikuinen, uusi vesimiehen aika koittaa, kaikki kukat kukkivat, värit pärisevät!</p><p>Kesto: 1 t 20 min</p>",
                "sv": "<p>Räjäyttäjät anländer till Malms kulturhus med en ny skiva!</p><p>Trion Räjäyttäjät, som grundades i Jyväskylä 2011, har blivit kända för sina fartfyllda liveframträdanden och dånande rock på finska. Under sin över tio år långa karriär har bandet med rätta etablerat sig på vår tids inhemska indiescen. I bandets Räjä ’n’ roll finns precis en lagom touch av fånig gör-det-själv-bombardering, en ordentlig stämning och klarsynt ärlig rock.</p><p>Räjäyttäjät, som grundades i Jyväskylä 2011, släppte en ny lp-skiva den 18 april 2025. Det är en dubbel-LP med låtar som är skrivna och sjungs av samtliga bandmedlemmar: Alex Reed (trummor och sång), Mikko Siltanen (basgitarr och sång) och Jukka Nousiainen (gitarr och sång). Skalan sträcker sig från psykedelisk folk via medeltida proge till vanvettigt oväsen och rock.</p><p>Rocken är evig, den nya vattumannens tid är inne, alla blommor blommar, färgerna sprakar!</p><p>Längd: 1 timme 20 minuter</p>",
                "en": "<p>Räjäyttäjät arrive at Malmitalo with a new album in tow!</p><p>Formed in 2011 in Jyväskylä, this three-member band has become known for their high-energy live performances and Finnish-language hard rock. Over their decade-long career, they have rightfully cemented their place in the canon of contemporary Finnish indie. Playing what they call räjä'n'roll, the band's sound is a perfectly measured mix of goofy DIY firepower, solid attitude and sharp, honest rock.</p><p>Formed in Jyväskylä in 2011, Räjäyttäjät released a new full-length album on 18 April 2025. The double LP features songs written and sung by all three band members, i.e. Alex Reed (drums and vocals), Mikko Siltanen (bass and vocals) and Jukka Nousiainen (guitar and vocals). The musical range spans from psychedelic folk through medieval prog to insane noise and rock.</p><p>Rock is eternal, the new age of Aquarius is dawning, all flowers bloom and the colours are buzzing!</p><p>Duration: 1 hour 20 min</p>"
            },
            "short_description": {
                "fi": "Räjäyttäjät saapuvat uuden levyn saattelemana Malmitalolle!",
                "sv": "Räjäyttäjät anländer till Malms kulturhus med en ny skiva!",
                "en": "Räjäyttäjät arrive at Malmitalo with a new album in tow!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3527D353934FADD0C974E367A04F5448/Rajayttajat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3527D353934FADD0C974E367A04F5448/Rajayttajat",
                "en": "http://www.malmitalo.fi/en/events/event/3527D353934FADD0C974E367A04F5448/Rajayttajat"
            },
            "name": {
                "fi": "Räjäyttäjät – A la Malmi",
                "sv": "Räjäyttäjät – A la Malmi",
                "en": "Räjäyttäjät – A la Malmi"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65965/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z52jm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5suy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5tda/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5tsi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5t74/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5unq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5u3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5vjm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5vy4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5wj4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5wza/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5xhq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5xwq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5yem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5yr4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5y64/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5zmq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5z3e/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490594,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-02T07:07:33.222812Z",
                    "last_modified_time": "2025-09-02T07:07:33.222827Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc068f0e-4e85-43a8-812c-a6ffca0f60a1.png",
                    "cropping": "300,0,900,600",
                    "photographer_name": "",
                    "alt_text": "Jooga ohjaaja Markku Sosimäki ja jooga asentoja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490594/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-19T09:32:23.178009Z",
            "last_modified_time": "2025-09-04T09:55:29.801203Z",
            "date_published": null,
            "start_time": "2025-08-18T15:00:00Z",
            "end_time": "2025-12-15T17:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Joka maanantai klo 18.00 - 19.15</p><p>Jooga edustaa kokonaisvaltaista käsitystä ihmisen hyvinvoinnista ja tarjoaa helppoja harjoituksia terveyden ja tasapainon kehittämiseen ja ylläpitämiseen.</p><p>Tuntia ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut joogaopettajana useissa maissa jo 40 v ajan.</p><p>Tarvitset vain tavalliset, mukavat vaatteet ja alustan lattialla olemista varten, esimerkiksi joogamaton.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Jooga kokoontuu vapaaehtoisvoimin</strong></p>",
                "sv": "<p>Varje måndag kl. 18.00–19.15</p><p>Yoga är en holistisk metod för att främja människors välbefinnande och erbjuder enkla övningar för att utveckla och upprätthålla hälsa och balans.</p><p><br></p><p>Klassen leds av den erfarne Markku Sosimäki, även känd som Dada Rasatmakananda. Han har varit yogalärare i flera länder i 40 år.</p><p><br></p><p>Allt du behöver är bekväma kläder och något att sitta på golvet med, till exempel en yogamatta.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga träffas på frivillig basis</strong></p>",
                "en": "<p>Every Monday from 6:00 p.m. to 7:15 p.m.</p><p>Yoga represents a holistic approach to human well-being and offers easy exercises for developing and maintaining health and balance.</p><p>The class is led by the experienced Markku Sosimäki, also known as Dada Rasatmakananda. He has been a yoga teacher in several countries for 40 years.</p><p>All you need is comfortable clothing and something to sit on the floor, such as a yoga mat.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga meets on a voluntary basis</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "short_description": {
                "fi": "Piipahda haluamaasi aikaan ja niin pitkäksi aikaa kuin haluat.",
                "sv": "Kom när du vill och så länge du vill.",
                "en": "Feel free to join at any time "
            },
            "info_url": null,
            "name": {
                "fi": "Jooga tunti ",
                "sv": "Yoga",
                "en": " Yoga"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z52jm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmrhvtp5q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmrhvtnre/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmrhvtoku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmrhvto3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmrhvtpma/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490631,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-04T08:17:14.496852Z",
                    "last_modified_time": "2025-09-04T08:17:14.496868Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/4db7432a-3cc3-4096-b556-7fb5dcdcdfac.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Neljä henkilö selin katsoo auringon nousua",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490631/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-04T08:17:22.498871Z",
            "last_modified_time": "2025-09-04T08:17:22.498888Z",
            "date_published": null,
            "start_time": "2025-09-16T13:30:00Z",
            "end_time": "2025-12-09T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Läsnäolon piiri on turvallinen ja lämminhenkinen tapaaminen, jossa jokainen voi tulla kuulluksi omana itsenään. Se on kokoontuminen, jossa jaamme ajatuksia, tunteita ja kokemuksia luottamuksellisessa ilmapiirissä. Piirin tarkoituksena on yksinkertaisesti olla läsnä ja todistaa toisen tarinaa kunnioittavasti. Parhaimmillaan piirissä jakaminen vapauttaa kapasiteettia uusille ideoille ja luovuudelle, jotta voimme kukoistaa oma itsenämme. </p><p><br></p><p><br></p><p><br></p><p>Miksi tulla mukaan?</p><p>Turvallinen tila olla oma itsesi: Monesti arjessa meidän on kannettava erilaisia rooleja. Läsnäolon piiri tarjoaa paikan, jossa voit laskea kaikki naamiot ja olla aidosti oma itsesi ilman pelkoa tuomituksi tulemisesta.</p><p>Mahdollisuus kasvuun: Kun jaamme omia tarinoitamme ja kuuntelemme toisten kokemuksia, voimme kyseenalaistaa itseämme rajoittavia ajatusmalleja. Parhaimmillaan jakaminen vapauttaa tilaa uusille ideoille, unelmille ja luovuudelle. </p><p>Yhteenkuuluvuuden tunne: Ihmisinä meillä on syvä tarve kuulua johonkin. Piirissä olet osa yhteisöä, jossa koet tulevasi kuulluksi ja hyväksytyksi. </p><p>Kuuntelemisen taito: Piirissä harjoittelet aktiivista kuuntelua ja läsnäoloa. Nämä taidot ovat arvokkaita kaikissa elämäsi suhteissa, niin perheen, ystävien kuin työtovereidenkin kanssa.</p><p>Läsnäolon piirissä luomme yhdessä tilaa avoimuudelle ja hyväksynnälle. Se on kutsu pysähtyä, ja kokea syvää yhteyttä muihin ihmisiin. Piirin perusta on luottamuksellisuus ja kunnioitus. Puhumme vain omasta puolestamme ja kuuntelemme toisiamme myötätuntoisesti, ilman ongelmien ratkaisua, neuvomista tai tuomitsemista.</p><p>Olet lämpimästi tervetullut mukaan! </p><p>Kenelle: Piiri on tarkoitettu kaikille yli 18-vuotiaille.</p><p>Missä: Kokoustila Mauri (2 krs Sellon kirjasto)</p><p><br></p><p>Milloin: </p><p>Tiistai 16.9. klo 16:30-17:30</p><p> Tiistai 14.10. klo 16:30-17:30 </p><p> Tiistai 11.11. klo 16:30-17:30</p><p> Tiistai 9.12. klo 16:30-17:30</p><p><br></p><p> Piirin vetäjä toimii viisi henkisen perheen äiti ja toimitusjohtaja, jolla yli 20 vuotta kokemusta opetusalalta ja yhteistyöstä erilaisten ihmisten kanssa yli 30 maasta.</p>",
                "sv": "<p>Cirkel av närvaro – blomstra som ditt sanna jag! Diskussionen kommer att hållas på finska.</p>",
                "en": "<p>Circle of Presence - blossom as your true self! The discussion will be held in Finnish.</p>"
            },
            "short_description": {
                "fi": "Läsnäolon piiri on turvallinen ja lämminhenkinen tapaaminen, jossa jokainen voi tulla kuulluksi omana itsenään. ",
                "sv": "Cirkel av närvaro – blomstra som ditt sanna jag! Diskussionen kommer att hållas på finska.",
                "en": "Circle of Presence - blossom as your true self! The discussion will be held in Finnish."
            },
            "info_url": null,
            "name": {
                "fi": "Läsnäolon piiri - kukoista omana itsenäsi!",
                "sv": "Cirkel av närvaro – blomstra som ditt sanna jag! Diskussionen kommer att hållas på finska.",
                "en": "Circle of Presence - blossom as your true self! The discussion will be held in Finnish."
            },
            "location_extra_info": {
                "fi": "Mauri",
                "sv": "Mauri",
                "en": "Mauri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmrhvtp5q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66352",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1146595,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T08:12:42.687062Z",
                    "last_modified_time": "2025-06-30T08:12:42.687080Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773509.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T08:12:42.530172Z",
            "last_modified_time": "2025-09-04T07:14:22.654024Z",
            "date_published": null,
            "start_time": "2025-09-12",
            "end_time": "2025-10-30",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Legendaarisen valokuvaajan Risto Vuorimiehen näyttely Kanneltalon galleriassa esittelee ikonisia musiikkikuvia Suomesta.</p><p>Risto Vuorimies aloitti Love Records -levy-yhtiön kannentekijänä keväällä 1973. Aluksi suunniteltiin Hurriganesin ensimmäinen levynkansi Rock'n'Roll All Night Long. Samaan aikaan Vuorimies valokuvasi Rauli Badding Somerjoen Muotokuva 1 -levynkannen kuvan, jossa mies nojailee baaripöytään pienessä Hämeentien kahvilassa. Tästä eteenpäin Vuorimies teki kolmen vuoden ajan muutamia, myöhemmin varsin merkittäviksi muodostuneita levyjen kansia, mm. Hurriganesin Roadrunnerin.</p><p>Isokynä, Kojo, Badding, Maijanen, Tolonen ja monet muut 1970-luvulla esiintymisensä aloittaneet suomalaisen nuorisomusiikin edustajat ovat saavuttaneet jo seitsemänkympin iän. Siis ne, jotka elävät. Näiden kuvien kuvausaikoina sekä valokuvaaja että muusikot olivat noin kaksikymppisiä. Vuorimiehen mukaan on ollut mielenkiintoista selailla vanhoja filminegatiiveja, jotka ovat erittäin hyvässä kunnossa ja järjestyksessä hänen mapeissaan. Niistä Vuorimies on saanut nykytekniikalla valmistettua tämän LOVE-kuvia valokuvanäyttelyn. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo ja muut tuon ajan Love-artistit näyttävät tyylikkäiltä ja jopa historiallisilta seinälle ripustettuina.</p><p>Kamera on merkittävä dokumentoinnin väline. Ilman 1970-luvun kuvamuistoja moni tuskin muistaisi näiden taiteilijoiden ilmeitä ja olemuksia, vaikka ne ääninä eri medioissa keskuuteemme tänä päivänä tunkeutuvatkin. Mustavalkoinen valokuva kertoo elämän sävyistä ja sävelmistä.</p><p>Tuoreimpana aineistona valokuvaaja esittelee vuosien 1973–76 Hurriganes-aiheisen kokoelman, joka perustuu uuteen kirjaan Hurriganes – Pyörremyrsky. Sen lisäksi näyttelyyn on lisätty joukko kuvia Wigwamista sekä Dave Lindholmista.</p><p>Näyttelyä ovat tukeneet Taiteen edistämiskeskus, Vapriikki-museo sekä Kuusankoskitalo.</p><p><b>Kaikki ovat tervetulleita gallerianäyttelyn avajaisiin to 11.9. klo 17–19.30 ja 16th Avenue -bändin esitykseen klo 18–19 kahvilan stagella.</b></p><p>Risto Vuorimies on valokuvaaja, muusikko ja musiikkitoimittaja.<br>1970-luvun alussa Vuorimies opiskeli valokuvausta Tukholmassa. Opiskelutoverinsa Ben Kailan kanssa Vuorimies kuvasi tuolloin ruotsinsuomalaisia maahanmuuttajia. Itsenäisyyspäivänä 1972 kuvista koottiin Vanhalle ylioppilastalolle näyttely ja parikymmentä vuotta myöhemmin tehtiin valokuvateos Siirtosuomalainen (Musta Taide, 1994), joka toi tekijöille valokuvataiteen valtionpalkinnon.<br>Vuorimies on suuri kuubalaisen musiikin ystävä, ja hän on laulanut ja soittanut Septeto Son -yhtyeessä sekä tehnyt radio-ohjelmia nimellä Papá Montero.</p>",
                "sv": "<p>Den legendariska fotografen Risto Vuorimies utställning i Gamlasgårdens galleri förevisar ikoniska musikbilder från Finland.</p><p>Risto Vuorimies började som pärmbildsdesigner på skivbolaget Love Records våren 1973. Först designades skivomslaget till Hurriganes första skiva, Rock’n’Roll All Night Long. Samtidigt fotograferade Vuorimies omslagsbilden till Rauli ”Badding” Somerjokis album Muotokuva 1, där han lutar sig mot ett bord i ett litet café på Tavastvägen. Efteråt under tre års tid designade Vuorimies några skivomslag som senare blev synnerligen betydande, bl.a. Hurriganes Roadrunner.</p><p>Isokynä, Kojo, Badding, Maijanen, Tolonen och många andra representanter för den finländska ungdomsmusiken som inledde sina karriärer på 1970-talet har redan uppnått sjuttio års ålder. Alltså de som lever. När fotografierna togs var både fotografen och musikerna tjugo-någonting. Enligt Vuorimies har det varit intressant att bläddra bland gamla filmnegativ som är i mycket gott skick och i bra ordning i hans mappar. Av dessa har Vuorimies med dagens teknik tillverkat den här fotoutställningen LOVE-bilder. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo och många andra av den tidens Love-artister ser stiliga och rent av historiska ut uppe på väggen.</p><p>Kameran är ett viktigt redskap för dokumentering. Utan fotografiska minnen från 1970-talet skulle få komma ihåg dessa artisters ansiktsuttryck och väsen, även om de som ljud fortfarande finns bland oss även idag. Ett svartvitt fotografi berättar om livets nyanser och melodier.</p><p>Som nyaste material presenterar fotografen 1973–76 års Hurriganes-samling som baserar sig på den nya boken Hurriganes – Pyörremyrsky. Utställningen har dessutom utökats med bilder på Wigwam och Dave Lindholm.</p><p>Utställningen har understötts av Centret för konstfrämjande, Vapriikki-museet och Kuusankoskitalo.</p><p>Alla är välkomna till invigningen av galleriutställningen to 11.9 kl. 17–19.30 och till konserten med 16th Avenue kl. 18–19 på kaféets scen.</p><p>Risto Vuorimies är fotograf, musiker och musikredaktör.</p><p>I början av 1970-talet studerade Vuorimies fotografering i Stockholm. Med sin studiekamrat Ben Kaila fotograferade Vuorimies då svenskfinländska invandrare. På självständighetsdagen 1972 sammanställdes en utställning på Gamla studenthuset och cirka tjugo år senare skapades fotografiverket Siirtosuomalainen (Musta Taide, 1994), som gav upphovsmännen statspriset i fotokonst.</p><p>Vuorimies är en stor vän av kubansk musik och har sjungit och spelat i Septeto Son-bandet och gjort radioprogram under namnet Papá Montero.</p>",
                "en": "<p>The exhibition by legendary photographer Risto Vuorimies at Kanneltalo's gallery showcases iconic music photographs from Finland.</p><p>Risto Vuorimies began working as a cover designer for the record label Love Records in spring 1973. One of his first projects was designing the album cover for Hurriganes' debut Rock'n'Roll All Night Long. At the same time, Vuorimies photographed the cover image for Rauli Badding Somerjoki's album Muotokuva 1, in which the artist is leaning against a bar table in a small café on Hämeentie. From that point on, Vuorimies spent three years creating a number of covers for albums that would later become highly influential, including Hurriganes' Roadrunner.</p><p>Artists like Isokynä, Kojo, Badding, Maijanen, Tolonen and many others who began performing in the 1970s as part of Finland's youth music scene have now reached their seventies. That is, those who are still alive. At the time these photos were taken, both the photographer and the musicians were in their twenties. According to Vuorimies, it has been fascinating to browse through the old film negatives, which are in excellent condition and neatly organised in his binders. Using modern technology, Vuorimies has produced this LOVE Images+ photo exhibition from those negatives. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo and other Love artists from that era appear stylish, even historic, when displayed on the gallery walls.</p><p>The camera is an essential tool for documentation. Without the photographic memories of the 1970s, many would hardly remember the faces and presence of these artists, even though their voices still reach us through various media today. A black-and-white photo tells the story of the tones and melodies of life.</p><p>As his most recent material, the photographer presents a Hurriganes-themed collection from 1973–1976, based on the new book Hurriganes – Pyörremyrsky (\"Hurriganes – Whirlwind\"). In addition, the exhibition includes a selection of photographs of Wigwam and Dave Lindholm.</p><p>The exhibition has been supported by the Arts Promotion Centre Finland, the Vapriikki Museum Centre and Kuusankoskitalo.</p><p>Everyone is welcome to the gallery exhibition opening on Thursday, 11 September, at 17:00–19:30, and to 16th Avenue's performance on the café stage at 18:00–19:00.</p><p>Risto Vuorimies is a photographer, musician and music journalist.</p><p>In the early 1970s, he studied photography in Stockholm. Together with his fellow student Ben Kaila, Vuorimies photographed Finnish immigrants living in Sweden. On Finnish Independence Day in 1972, these photographs were exhibited at the Old Student House in Helsinki, and about twenty years later they were published in the photo book Siirtosuomalainen (Musta Taide, 1994), which earned the authors the State Prize for Photographic Art.</p><p>Vuorimies is a great admirer of Cuban music; he has sung and played in the band Septeto Son and produced radio programmes under the name Papá Montero.</p>"
            },
            "short_description": {
                "fi": "Legendaarisen valokuvaajan Risto Vuorimiehen näyttely Kanneltalon galleriassa esittelee ikonisia musiikkikuvia Suomesta.",
                "sv": "Den legendariska fotografen Risto Vuorimies utställning i Gamlasgårdens galleri förevisar ikoniska musikbilder från Finland.",
                "en": "The exhibition by legendary photographer Risto Vuorimies at Kanneltalo's gallery showcases iconic music photographs from Finland."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE-kuvia_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE-bilder_",
                "en": "http://www.kanneltalo.fi/en/events/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE_Images_"
            },
            "name": {
                "fi": "Risto Vuorimies: LOVE-kuvia+",
                "sv": "Risto Vuorimies: LOVE-bilder+",
                "en": "Risto Vuorimies: LOVE Images+"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66352/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66808",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?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:758/?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€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-peela-3927424/",
                        "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-peela-3927424/",
                        "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-peela-3927424/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1410590,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-04T10:12:50.776763Z",
                    "last_modified_time": "2025-08-04T10:12:50.776776Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774949.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1410590/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-04T10:12:50.689187Z",
            "last_modified_time": "2025-09-03T13:14:18.995848Z",
            "date_published": null,
            "start_time": "2025-11-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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Johannes Granrothin luotsaama superyhtye PEELA esittää oman näkemyksensä nykypäivän musiikista ja fuusiojazzista.</p><p>Peelan musiikissa afroamerikkalaisen musiikkiperinteen tyylit yhdistyvät eheäksi kokonaisuudeksi, jossa leikkisä improvisaatio, vahvat melodiat, mehevä harmonia sekä mukaansatempaavat rytmit ovat keskeisessä roolissa. Heidän musiikkinsa on instrumentaalipainotteista, mutta koristautuu toisinaan Maja Mannilan virtuoosimaisen laulun myötä.<br> <br>PEELA on julkaissut jo kolme albumia, josta uusin nimeltään “Notbad” julkaistiin maaliskuussa 2024 Eclipse Musicin kautta.</p><p>Sähkökitara- Johannes Granroth<br>Koskettimet & Laulu - Maja Mannila<br>Rummut - Severi Sorjonen<br>Saksofoni - Jimi Ahlroos<br>Basso - Oliver Karttunen<br>Lyömäsoittimet & Koskettimet - Mikko Antila<br> <br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30. <br>Kesto: n. 120 min. sis. väliaika.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465866/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p><p>“Peela jätti konsertillaan vahvan, mahdollisesti jopa lähtemättömän muistijäljen. Keikasta jäi niin hyvä mieli, etten millään malttaisi odottaa heidän tulevia tekemisiään. Soiton taso oli huikea, paikoin pitelemättömän virtuoottinen. Elähtäneen fuusiojazzin päivittäminen tähän päivään tuntui sujuvan tältä porukalta kuin leikiten. Bravo!”<br>-Jyri Ojala, Karjalainen.fi 6.4.2022<br> <br>Oli alusta asti selvää, että nämä henkilöt ovat huipputaitavia instrumenttiensa kanssa ja lisäksi kokeneita, rentoja esiintyjiä. Minua ilahdutti suuresti paitsi se hieno soitanta, myös se dynamiikka mikä lavalla soittajien välillä vallitsi. Heillä näytti olevan hauskaa ja hyvin pian havaitsin, että niin oli minullakin, vaikka en muka ollut mikään jazz-ihminen.<br>-Heli Kuula, Kulttuurimedia.fi 14.3.2024</p>",
                "sv": "<p>PEELA, en supergrupp ledd av Johannes Granroth, presenterar sin vision av samtida musik och fusionsjazz.</p><p>Peelas musik kombinerar stilar från den afroamerikanska musiktraditionen till en sammanhållen helhet, där lekfull improvisation, starka melodier, frodiga harmonier och medryckande rytmer spelar en central roll. Deras musik är instrumental, men förskönas ibland av Maja Mannilas virtuosa sång.<br> <br>PEELA har redan släppt tre album, varav det senaste, \"Notbad\", gavs ut i mars 2024 via Eclipse Music.</p><p>Elgitarr - Johannes Granroth<br>Keyboards & Sång - Maja Mannila<br>Trummor - Severi Sorjonen<br>Saxofon - Jimi Ahlroos<br>Bas - Oliver Karttunen<br>Slagverk & Keyboards - Mikko Antila</p><p>Klubbkväll, A-rättigheter, Café Pokkari står för serveringen, dörrarna öppnas kl. 17.30. <br>Längd: ca 120 min. inkl. paus.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år.  Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465866/?affiliate=FSF#tab=\">HÄR</a></u></p><p>\"Peelas konsert lämnade ett starkt, kanske till och med outplånligt, intryck. Konserten fick mig att må så bra att jag inte kunde vänta på att få se vad de gör härnäst. Nivån på spelet var häpnadsväckande, stundtals ohejdbart virtuost. Att uppdatera den gamla fusionsjazzen till nutid verkade vara en barnlek för den här gruppen. Bravo!\"<br>-Jyri Ojala, Karjalainen.fi 6.4.2022<br> <br>Det stod klart redan från början att dessa människor inte bara var mycket skickliga på sina instrument, utan också erfarna och avslappnade artister. Jag gladdes inte bara åt hur fint instrumenten spelades, utan också åt dynamiken spelarna emellan på scenen. De verkade ha roligt och jag upptäckte snart att jag också hade det, trots att jag trodde att jag inte är någon jazzmänniska.<br>-Heli Kuula, Kulttuurimedia.fi 14.3.2024</p>",
                "en": "<p>Musical powerhouse PEELA led by guitarist/composer Johannes Granroth present their own take on today's social music.</p><p>Infusing jazz, funk, rock, and neo soul, they deliver a performance marked by playful improvisation, catchy melodies, lush harmonies, and groovy rhythms.</p><p>With a mix of instrumentals and Maja Mannila's soulful vocals, their music is a feast for the ears and heart.<br> <br>Throughout 2023, PEELA released several singles which culminated in their long awaited third album, “Notbad” in March, 2024.<br> <br>Guitar - Johannes Granroth<br>Keys/Vocals - Maja Mannila<br>Drums - Severi Sorjonen<br>Saxophone - Jimi Ahlroos<br>Bass - Oliver Karttunen<br>Percussion/Keys - Mikko Antila<br> <br>Club night, A-rights, refreshments provided by Café Pokkari, the doors will open at 17.30. Duration: apx. 120 min. with intermission.</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465866/?affiliate=FSF#tab=\">HERE</a></u><br> <br>“These people are highly skilled with their instruments as well as being experienced and relaxed performers. Beyond the fine playing I was also delighted by the dynamic between the musicians. They seemed to be having fun, and very soon I did as well, even though I don’t consider myself a jazz-person.”<br>-Heli Kuula, Kulttuurimedia.fi 14.3.2024<br> <br>“The performance left such a good feeling that I can hardly wait for their future endeavors. The level of playing was astounding, at times impeccably virtuosic. Updating jazz-fusion to this day and age seemed easy as child’s play for them. Bravo!”<br>-Jyri Ojala, Karjalainen.fi 6 April 2022</p>"
            },
            "short_description": {
                "fi": "Johannes Granrothin luotsaama superyhtye PEELA esittää oman näkemyksensä nykypäivän musiikista ja fuusiojazzista.",
                "sv": "PEELA, en supergrupp ledd av Johannes Granroth, presenterar sin vision av samtida musik och fusionsjazz.",
                "en": "Musical powerhouse PEELA led by guitarist/composer Johannes Granroth present their own take on today's social music."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B7A26D21109116B4A913444B377C0A7A/Peela",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/B7A26D21109116B4A913444B377C0A7A/Peela",
                "en": "http://www.vuotalo.fi/en/events/event/B7A26D21109116B4A913444B377C0A7A/Peela"
            },
            "name": {
                "fi": "Peela – Klubb Ankdamm",
                "sv": "Peela – Klubb Ankdamm",
                "en": "Peela – Klubb Ankdamm"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66808/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66783",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p6529/?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,90€ / 20€",
                        "sv": "24,90€ / 20€",
                        "en": "24,90€ / 20€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/minttu-sekae-ville-vuotalo-20353014/",
                        "sv": "https://www.lippu.fi/event/minttu-sekae-ville-vuotalo-20353014/",
                        "en": "https://www.lippu.fi/event/minttu-sekae-ville-vuotalo-20353014/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1433779,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T14:13:17.830374Z",
                    "last_modified_time": "2025-08-07T14:13:17.830391Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774938.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1433779/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2025-07-17T07:14:18.093691Z",
            "last_modified_time": "2025-09-03T13:14:16.452868Z",
            "date_published": null,
            "start_time": "2025-11-15T16: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Elokuvista ja tv:stä tutut, Jussi- sekä Venla-palkitut näyttelijät Minttu Mustakallio ja Ville Virtanen tuovat improvisaatioduettonsa yleisön iloksi Vuotaloon!</p><p>Koko illan improvisoidussa ilottelussa näyttelijät keksivät yleisön antamista aiheista erilaisia sketsejä, tarinoita, runoja, laulunumeroita, puheita ja näytelmäkohtauksia. Minttu sekä Ville näyttelevät illan kaikki hahmot ja biisit itseään säästämättä, ennalta suunnittelematta, käyttäen eri improvisaatiotekniikoita. Käsikirjoitusta ei siis ole ja Minttu sekä Ville toimivat tiiviissä vuorovaikutuksessa yleisöön. Aiheet tehtäviin kysytään katsojilta, mutta aktiivista osallistumista ei vaadita.</p><p>Lavalla Mintun sekä Villen seurana säestämässä toimii huippumuusikko Samuli Laiho, jonka avulla illan aikana kuullaan myös esityshetkellä sävellettyjä lauluja eri tyylilajeissa, sekä musiikkia eri puolilta maailmaa, eri kielillä ja sävellajeissa.<br>Ilta on kevyt, ja naurulta voi tuskin katsomossa välttyä kukaan!<br> <br>Kesto: n. 1 t 50 min, sis. väliajan</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/minttu-sekae-ville-helsingin-kaupunki-nuorisolippu-vuotalo-20470583/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>De Jussi- och Venla-belönade skådespelarna Minttu Mustakallio och Ville Virtanen, bekanta från film och tv, förtjuser nu Nordhusets publik med sina improvisationsduett.</p><p>Under en kväll med improviserad glädje hittar skådespelarna på en mängd olika sketcher, berättelser, dikter, sångnummer, tal och scener utifrån publikens förslag. Minttu och Ville kommer spelar alla kvällens karaktärer och låtar utan att skona sig, utan förhandsplanering, med hjälp av olika improvisationstekniker. Det finns inget manus och Minttu och Ville har ett nära samspel med publiken. Publiken får föreslå teman för uppgifterna, men aktivt deltagande är inte nödvändigt.</p><p>Tillsammans med Mintu och Ville på scenen ser vi toppmusikern Samuli Laiho som hjälper publiken att få höra låtar i olika genrer som komponerats just då och nu i stunden, samt även musik från hela världen, på olika språk och i olika genrer.</p><p>Det är en lättsam kväll som torde locka fram ett skratt hos alla!<br>Längd: ca 1 h 50 min, inklusive paus</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/minttu-sekae-ville-helsingin-kaupunki-nuorisolippu-vuotalo-20470583/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>The Jussi and Venla award-winning actors Minttu Mustakallio and Ville Virtanen, known from films and TV, will bring their improvisational duets to Vuotalo to the delight of the audience!</p><p>In an evening of improvised merriment, the actors will came up with a variety of sketches, stories, poems, song numbers, speeches and scenes based on topics suggested by the audience. Minttu and Ville will play all the characters and songs of the evening without sparing themselves, without planning, using different improvisation techniques. Hence there is no script, and Minttu and Ville interact closely with the audience. Viewers will be asked to choose the topics, but active participation is not required.</p><p>Minttu and Ville will be accompanied on stage by top-class musician Samuli Laiho, who will be playing songs in different genres composed at the time of the performance, as well as music from all over the world, in different languages and genres.</p><p>This light-hearted evening will spare few from laughter!<br>Duration: approx. 1 h 50 min, incl. intermission</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/minttu-sekae-ville-helsingin-kaupunki-nuorisolippu-vuotalo-20470583/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "Elokuvista ja tv:stä tutut, Jussi- sekä Venla-palkitut näyttelijät Minttu Mustakallio ja Ville Virtanen tuovat improvisaatioduettonsa yleisön iloksi Vuotaloon!",
                "sv": "De Jussi- och Venla-belönade skådespelarna Minttu Mustakallio och Ville Virtanen, bekanta från film och tv, förtjuser nu Nordhusets publik med sina improvisationsduett.",
                "en": "The Jussi and Venla award-winning actors Minttu Mustakallio and Ville Virtanen, known from films and TV, will bring their improvisational duets to Vuotalo to the delight of the audience!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BB5121846AD420B96F9C1FB0198C60C2/Minttu_seka_Ville",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BB5121846AD420B96F9C1FB0198C60C2/Minttu_seka_Ville",
                "en": "http://www.vuotalo.fi/en/events/event/BB5121846AD420B96F9C1FB0198C60C2/Minttu_seka_Ville"
            },
            "name": {
                "fi": "Minttu sekä Ville",
                "sv": "Minttu sekä Ville",
                "en": "Minttu sekä Ville"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66783/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66115",
            "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/kulke:758/?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 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/a-la-malmi-punomo-malmitalo-20243036/",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-punomo-malmitalo-20243036/",
                        "en": "https://www.lippu.fi/event/a-la-malmi-punomo-malmitalo-20243036/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1161770,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T06:13:40.891099Z",
                    "last_modified_time": "2025-07-02T06:13:40.891113Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772192.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1161770/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-02T06:13:40.776017Z",
            "last_modified_time": "2025-09-03T13:14:14.816892Z",
            "date_published": null,
            "start_time": "2025-11-07T17: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Omintakeinen kahdeksanhenkinen soul-yhtye saapuu Malmille!</p><p>Punomon omintakeisessa vintagesoundissa soul- ja funk-musiikin perinteisiin vahvasti nojaava estetiikka on punottu ennenkuulumattoman luontevalla ja puhuttelevalla tavalla yhteen suomenkielisten lyriikoiden kanssa.</p><p>Tämä yhdistelmä tuntuu ilahduttavan tuoreelta - on kuin bändi olisi tupsahtanut aikakoneella jostakin tuntemattomasta suomalaisesta soul-menneisyydestä tähän päivään.</p><p>Punomon musiikillinen maailma huokuu ajattomuutta, musiikin parantavaa voimaa ja toiveikkuutta. Livenä yhtyeen vaikuttava kahdeksan muusikon kokoonpano on ihastuttanut veikeällä, elämänmyönteisellä energiallaan yleisöä laajasti iästä ja genrerajoista riippumatta.</p><p>Punomon musiikin takana ovat yhtyeen rumpali Lauri Levanto ja laulaja Johanna Rauma. Yhtyeen alkuvuodesta 2022 julkaistu debyyttialbumi Punomo (2022) keräsi suitsutusta ja erinomaisia arvioita niin kotimaassa kuin ulkomaillakin. Debyytti sai odotettua jatkoa helmikuussa 2025 Punomon julkaistessa toisen albuminsa Kahdeksan kertaa.</p><p>Punomo on:<br>Johanna Rauma – laulu<br>Lauri Levanto – rummut<br>Ami Kajan – basso<br>Lauri Laine – kitara<br>Ilmari Aitoaho – koskettimet<br>Victor Regalado – perkussiot<br>Ilkka Arola – trumpetti<br>Aku Painilainen – tenorisaksofoni</p><p>Kesto: 1 h 15 min</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20303241/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Ett originellt soulband med åtta medlemmar anländer till Malm!</p><p>I Punomos originella vintagesound har estetiken, som starkt stöder sig på soul- och funkmusikens traditioner, flätats samman på ett naturligt och talande sätt med lyrik på finska, på ett sätt utan motstycke.</p><p>Den här kombinationen känns glädjande fräsch – det är som om bandet har kommit med en tidsmaskin från något okänt finskt soul-förflutet till idag. <br> <br>Punomos musikaliska värld andas tidlöshet, musikens helande kraft och hoppfullhet. Live har bandets imponerande sammansättning av åtta musiker med sin livsbejakande energi förtjusat publiken på bred front oberoende av ålder och genregränser. <br>  <br>Bakom Punomos musik står bandets trumslagare Lauri Levanto och sångaren Johanna Rauma. Gruppens debutalbum Punomo (2022) som släpptes i början av 2022 höjdes till skyarna och fick utmärkta recensioner både i Finland och utomlands. Debuten följdes upp i februari 2025 med utgivningen av Punomos andra album, Kahdeksan kertaa. <br>  <br>Punomo består av:<br>Johanna Rauma – sång<br>Lauri Levanto – trummor<br>Ami Kajan – basgitarr<br>Lauri Laine – gitarr<br>Ilmari Aitoaho – keyboard<br>Victor Regalado – perkussion<br>Ilkka Arola – trumpet<br>Aku Painilainen – tenorsaxofon</p><p>Längd: 1 timme 15 minuter</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20303241/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>A distinctive eight-member soul band is coming to Malmi!</p><p>In Punomo's unique vintage sound, an aesthetic that draws heavily on the traditions of soul and funk is woven together with Finnish-language lyrics in an unprecedentedly evocative and natural way.</p><p>This combination feels delightfully fresh, as if the band has arrived by time machine from some unknown Finnish soul past into the present day.</p><p>Punomo's musical world exudes timelessness, the healing power of music and hopefulness. Live, the band's impressive eight-musician line-up has delighted audiences widely, regardless of age or genre boundaries, with its playful and life-affirming energy.</p><p>Punomo's music is created by the band's drummer, Lauri Levanto, and singer, Johanna Rauma. The band's debut album Punomo (2022), released in early 2022, received high praise and excellent reviews both in Finland and abroad. The debut was followed up in February 2025 with the release of Punomo's second album, Kahdeksan kertaa.</p><p>Punomo is:<br>Johanna Rauma: vocals<br>Lauri Levanto: drums<br>Ami Kajan: bass<br>Lauri Laine: guitar<br>Ilmari Aitoaho: keyboard<br>Victor Regalado: percussion<br>Ilkka Arola: trumpet<br>Aku Painilainen: tenor saxophone</p><p>Duration: 1 hour 15 min</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20303241/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "Omintakeinen kahdeksanhenkinen soul-yhtye saapuu Malmille!",
                "sv": "Ett originellt soulband med åtta medlemmar anländer till Malm!",
                "en": "A distinctive eight-member soul band is coming to Malmi!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6183E5C5765C7D3C82F2A7F7B3D671A1/A_la_Malmi_Punomo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6183E5C5765C7D3C82F2A7F7B3D671A1/A_la_Malmi_Punomo",
                "en": "http://www.malmitalo.fi/en/events/event/6183E5C5765C7D3C82F2A7F7B3D671A1/A_la_Malmi_Punomo"
            },
            "name": {
                "fi": "A la Malmi: Punomo",
                "sv": "A la Malmi: Punomo",
                "en": "A la Malmi: Punomo"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66115/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66756",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "14€",
                        "sv": "14€",
                        "en": "14€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1256360,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T11:14:15.528483Z",
                    "last_modified_time": "2025-07-14T11:14:15.528522Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774908.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T11:14:15.429944Z",
            "last_modified_time": "2025-09-03T13:14:02.290276Z",
            "date_published": null,
            "start_time": "2025-09-20T15: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Walls – Akinni Inuk (K12)</p><p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Vanki ja elokuvantekijä solmivat siteen Grönlannin naisten vankilassa. Tämä intiimi dokumenttielokuva tutkii trauman, toivon ja uusien alkujen mahdollisuutta.</p><p>Liput: 14 eur <br>Kesto: 1h15 <br>Kieli: grönlannin kieli <br>Tekstitykset: Englanti <br>Ohjaajat: Nina Paninnguaq Skydsbjerg, Sofie Rørdam</p><p>**</p><p>Festivaaliohjelmistossa nähdään vuoden kauneimmat, hurjimmat ja tuoreimmat elokuvahelmet. <br>  <br>Rakkautta & Anarkiaa -elokuvafestivaali järjestetään 18.–28.9.2025 Helsingin elokuvateattereissa ja Vuotalossa. <br> hiff.fi</p>",
                "sv": "<p>R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!</p><p>Festivalprogrammet innehåller årets vackraste, vildaste och mest fräscha filmpärlor.</p><p>Programmet publiceras tisdagen den 2 september och biljetterna släpps till försäljning torsdagen den 4 september på festivalens webbplats på adressen hiff.fi</p><p>Filmfestivalen Rakkautta & Anarkiaa äger rum 18–28 september 2025 på Helsingfors biografer och Nordhuset.</p>",
                "en": "<p>This year, L&A festival film screenings will also be held at Vuotalo!</p><p>The festival programme features the most beautiful, wildest and freshest film gems of the year.</p><p>The programme will be announced on Tuesday 2 September and tickets will go on sale on Thursday 4 September on the festival website at hiff.fi</p><p>The Love & Anarchy Film Festival will take place from 18 to 28 September 2025 at the cinemas of Helsinki and Vuotalo.</p>"
            },
            "short_description": {
                "fi": "R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!",
                "sv": "R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!",
                "en": "This year, L&A festival film screenings will also be held at Vuotalo!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CA5E0AC294ABA09FCAC546FC02270DCF/Walls_Akinni_Inuk_K12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CA5E0AC294ABA09FCAC546FC02270DCF/Rakkautta_ja_Anarkiaa_x_Vuotalo_",
                "en": "http://www.vuotalo.fi/en/events/event/CA5E0AC294ABA09FCAC546FC02270DCF/Love_Anarchy_x_Vuotalo_"
            },
            "name": {
                "fi": "Walls – Akinni Inuk (K12) – Rakkautta ja Anarkiaa x Vuotalo!",
                "sv": "Rakkautta ja Anarkiaa x Vuotalo! – Rakkautta ja Anarkiaa x Vuotalo!",
                "en": "Love & Anarchy x Vuotalo! – Rakkautta ja Anarkiaa x Vuotalo!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66756/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66770",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-skidit-esittaeae-hattivattidisko-vuotalo-20369500/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-skidit-esittaeae-hattivattidisko-vuotalo-20369500/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-skidit-esittaeae-hattivattidisko-vuotalo-20369500/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1270153,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T07:12:45.606491Z",
                    "last_modified_time": "2025-07-16T07:12:45.606504Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774773.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1270153/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-16T07:12:45.541730Z",
            "last_modified_time": "2025-09-03T12:14:01.208405Z",
            "date_published": null,
            "start_time": "2025-10-11T12: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,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Skidit Hattivattidiskossa lähdetään musamatkalle hattivattien mystiseen mielenmaisemaan.</p><p>Kyseessä on visuaalinen tarina, jossa elektroninen DJ-musiikki ja tanssinohjaaja kuljettavat bileisiin keskelle autiota saarta. Luvassa on surinaa ja pörinää Hattivattien mielenmaisemissa!</p><p>Muututaan ihanan sähköisiksi DJ-setin ja tanssiohjaajan kanssa. Tampataan yhdessä autiolla saarella ja koetaan iloinen sadetanssi ukkostaivaan alla. Säristään ja ollaan elossa kaikin voimin!<br>Hattivattidiskossa lähdetään musamatkalle hattivattien mystiseen mielenmaisemaan. Kyseessä on visuaalinen tarina, jossa elektroninen DJ-musiikki ja tanssinohjaaja kuljettavat bileisiin keskelle autiota saarta.</p><p>Diskon aikana koetaan äkillinen myrsky, Hattivattien säpinäsormet-koreografia, auringon esiintulo, sekä yhteinen hypnoottinen tanssi. Elektroninen musiikki luo latauksen, joka purkautuu hattivattien tyyliin sähköisenä tanssina ja biittinä, joka vie mukanaan.<br>“Mutta kun ne tulivat sähköisiksi, ne elivät, vihdoin, kaikin voimin ja suurin, kiihkein tuntein.”</p><p>Hattivattidiskon on ideoinut Skidit-kollektiivi, joka liputtaa leikkisän elämän puolesta. Kollektiivi toteuttaa supersuosittuja tapahtumia, kuten Skidit festarit, -risteilyt ja -diskot. Hattivattidiskon ensiesitys tehtiin yhteistyössä Helsingin kaupunginmuseo HAM:n kanssa.</p><p>Kesto: 40 min<br>Kohdeyleisö: Koko perheelle</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-20470582/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Skidit Hattivattidisko tar oss med på en musikalisk resa in i hattifnattarnas mystiska tankevärld.</p><p>Det är en visuell berättelse där elektronisk DJ-musik och en dansinstruktör för oss till en fest mitt på en öde ö. Det kommer att bli surr och snurr i hattifnattarnas sinnen!</p><p>Låt oss bli härligt elektriska med elektroniska DJ-set och dansinstruktören. Vi stampar tillsammans på den öde ön och upplever en glädjefylld regndans under ett åskväder. Vi surrar och lever till fulla sinnen!</p><p>Hattifnattarnas disko tar oss med på en musikalisk resa in i hattifnattarnas mystiska tankevärld. Det är en visuell berättelse där elektronisk DJ-musik och en dansinstruktör för oss till en fest mitt på en öde ö.</p><p>Under diskot får du uppleva en plötslig storm, hattifnattarnas sprakande fingerkoreografi, se hur solen kommer fram och delta i en kollektiv hypnotisk dans. Den elektroniska musiken skapar en laddning som laddas ur i hattifnattarnas stil som elektronisk dans och en beat som förtrollar.</p><p>\"Men när de blev elektriska levde de, äntligen, av alla krafter och med stora häftiga känslor.\"</p><p>Hattivattidisko är skapat av kollektivet Skidit, som förespråkar en lekfull livsstil. Kollektivet arrangerar superpopulära evenemang som Skidit-festivaler, -kryssningar och -diskon. Hattivattidiskos första uppträdande gjordes i samarbete med Helsingfors stadsmuseum HAM.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år.  Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-20470582/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Skidit Hattifatteners Disco will take dancers on a musical journey into the mysterious mindscape of the strange Moomin characters, Hattifatteners.</p><p>In this visual story, electronic music played by a DJ and a dance instructor transport you to a party in the middle of a deserted island. You’ll get to enjoy the hustle and bustle of Hattifatteners’ mindscape!</p><p>Let's get electrical with DJ set and a dance instructor. We waddle together on a deserted island and experience a jubilant rain dance under a thundering sky. Let's buzz and be alive with all our might!<br>In Hattifatteners’ Disco, you will embark on a musical journey into the mystical mindscape of the Hattifatteners. In this visual story, electronic music played by a DJ and a dance instructor transport you to a party in the middle of a deserted island.</p><p>During the disco, you will experience a sudden storm, the Hattifattener choreography of sparkling fingers, the re-emergence of the sun, and a collective hypnotic dance. The electronic music creates an electric charge. Like Hattifatteners, it finally discharges as an electronic dance and a beat that draws you in.</p><p>\"But when they became electric, they lived, at last, with all their might and with their greatest, most intense feelings.\"</p><p>The Hattifatteners’ Disco is the brainchild of the Skidit collective, which promotes playful life. The collective organises super-popular events such as Skidit festivals, cruises and discos. The first performance of the Hattifatteners Disco was created in collaboration with the Helsinki City Museum HAM.</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-20470582/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "Skidit Hattivattidiskossa lähdetään musamatkalle hattivattien mystiseen mielenmaisemaan.",
                "sv": "Skidit Hattivattidisko tar oss med på en musikalisk resa in i hattifnattarnas mystiska tankevärld.",
                "en": "Skidit Hattifatteners Disco will take dancers on a musical journey into the mysterious mindscape of the strange Moomin characters, Hattifatteners."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/306F47536C160B66019C9049C46A9A32/Skidit_Hattivattidisko",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/306F47536C160B66019C9049C46A9A32/Skidit_Hattivattidisko",
                "en": "http://www.vuotalo.fi/en/events/event/306F47536C160B66019C9049C46A9A32/Children_s_Saturday_Skidit_Hattivattidisko_Hattifatteners_Disco"
            },
            "name": {
                "fi": "Skidit Hattivattidisko",
                "sv": "Skidit Hattivattidisko",
                "en": "Children’s Saturday: Skidit Hattivattidisko️ – Hattifatteners Disco"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66770/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66976",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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:55/?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": "13/14 €",
                        "en": "13/14 €"
                    },
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo",
                        "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490622,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-03T12:13:58.299379Z",
                    "last_modified_time": "2025-09-03T12:13:58.299396Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776940.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490622/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-03T12:13:58.189118Z",
            "last_modified_time": "2025-09-03T12:13:58.434801Z",
            "date_published": null,
            "start_time": "2025-09-27T17:45: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,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry",
                "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "description": {
                "fi": "<p>Rakkauden ja anarkian ryydittämä thaimaalaiselokuva on kuin imuri, joka on niellyt genren toisensa perään yskiäkseen ulos kostonhimoisen kauhukomedian ja kiimaisen kummitusromanssin mutaation.</p><p>On vaikea kuvitella elokuvaa, joka sykkisi thaimaalaista A Useful Ghostia intensiivisemmin R&A:n henkeä.</p><p>Imuritehtaan omistajaperheen ympärille alkaa rakentua työntekijän kuoleman seurauksena monikerroksinen saaga täynnä erilaisia laitteita asuttavia haamuja, jotka ovat palanneet elävien pariin palavan rakkauden tai kytevän koston ajamina. Keskiöön kohoaa perheen pojan Marchin ja hänen imuria asuttavan kummitusvaimonsa Natin hellyttävä rakkaustarina. Perheen ja ympäröivän yhteiskunnan jäykät käsitykset rakkaudesta ovat kovilla Marchin löytyessä milloin mistäkin imurin kanssa muhinoimasta.</p><p>Buddhalaisen henkimaailman ja riistokapitalismin yhteentörmäyksestä rauhallisesti hupsuna kauhukomediana liikkeelle lähtevä kertomus kasvaa vähitellen kiimaiseksi kummitusromanssiksi, joka saavuttaa lopulta kiihkeän kostoelokuvan sykkeen.</p><p>Audiovisuaalisen hykerryttävyyden ja kerronnallisten sävyjen kirjon taustalla lymyää kuitenkin syviä pohdintoja rakkaudesta ja himosta, katkeruudesta ja kuolemasta sekä niiden typistävää hyötyajattelua vastustavasta vallankumouksellisesta voimasta.</p><p>Tämä rakkauden ja anarkian ryydittämä genrerunsaudensarvi on kuin tehty nautittavaksi intohimoisen R&A-yleisön ympäröimänä!</p><p>Pöly Julkunen</p><p>Ohjaus Ratchapoom Boonbunchachoke<br>Näyttelijät Davika Hoorne, Witsarut Himmarat, Apasiri Nitibhon, Wanlop Rungkumjad, Wisarut Homhuan<br>Maa Thaimaa, Singapore, Saksa, Ranska<br>Kielet thai<br>Tekstitykset englanti<br>Ikäraja K12<br>Kesto 130 min<br>Teema Asian Cuts<br>Avainsanat Outoa, Huumori, Jännitys, Kauhu, Rakkaus, Fantasia</p>",
                "en": "<p>Fueled by love and anarchy, this Thai film is like a vacuum cleaner that’s swallowed genre after genre – only to cough up a vengeful horror comedy and a lustful ghost romance hybrid.</p><p>Few films capture the spirit of Love & Anarchy more vividly than the Thai film A Useful Ghost.</p><p>Following the death of a factory worker, a multi-layered saga begins to unfold around the family that owns a vacuum cleaner factory. The story is filled with ghosts who inhabit machines, returning to the living fueled by passionate love or smoldering revenge. The plot revolves around the tender love story between the family’s son March and Nat, his ghostly wife who inhabits a vacuum cleaner. The rigid views on love held by the family and the surrounding society are put to the test when March is found romancing the vacuum cleaner in various places.</p><p>Starting as a silly horror comedy about the clash between the Buddhist spiritual world and exploitative capitalism, the story gradually develops into a passionate ghost romance, eventually reaching the intensity of a revenge film. Behind the audiovisual whimsy and narrative tones lie profound reflections on love and lust, bitterness and death, and the revolutionary force opposing a narrow, profit-driven mindset.</p><p>Brimming with love and anarchy, this cornucopia of genres seems made to be savoured among the passionate R&A audience!</p><p>Pöly Julkunen (translated by Pauliina Jännes)</p><p>Director Ratchapoom Boonbunchachoke<br>Starring Davika Hoorne, Witsarut Himmarat, Apasiri Nitibhon, Wanlop Rungkumjad, Wisarut Homhuan<br>Country Thailand, Singapore, Germany, France<br>Languages Thai<br>Subtitles English<br>Age limit K12<br>Duration 130 min<br>Theme Asian Cuts<br>Keywords Weird, Humour, Thriller, Horror, Love, Fantasy</p>"
            },
            "short_description": {
                "fi": "Rakkauden ja anarkian ryydittämä thaimaalaiselokuva on kuin imuri, joka on niellyt genren toisensa perään yskiäkseen ulos kostonhimoisen kauhukomedian ja kiimaisen kummitusromanssin mutaation.",
                "en": "Fueled by love and anarchy, this Thai film is like a vacuum cleaner that’s swallowed genre after genre – only to cough up a vengeful horror comedy and a lustful ghost romance hybrid."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/773EEFA597CEBA00F7588EABEA5531CC/A_Useful_Ghost",
                "en": "http://www.savoyteatteri.fi/en/events/event/773EEFA597CEBA00F7588EABEA5531CC/A_Useful_Ghost"
            },
            "name": {
                "fi": "A Useful Ghost – Rakkautta & Anarkiaa 18.–28.9.2025",
                "en": "A Useful Ghost – Love & Anarchy 18.–28.9.2025"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66976/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66975",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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:55/?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": "13/14 €",
                        "en": "13/14 €"
                    },
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo",
                        "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490621,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-03T12:13:57.768974Z",
                    "last_modified_time": "2025-09-03T12:13:57.768992Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776939.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490621/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-03T12:13:57.649319Z",
            "last_modified_time": "2025-09-03T12:13:57.909996Z",
            "date_published": null,
            "start_time": "2025-09-27T14: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,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry",
                "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "description": {
                "fi": "<p>Visuaalisesti hengästyttävässä fantasmagoriassa ihmiset eivät enää näe unia, mutta yksi olento jatkaa uneksimista. Nainen astuu olennon uniin ja alkaa selvittää totuutta.</p><p>Ihmiskunta on tajunnut unelmoinnin lopettamisen johtavan kuolemattomuuteen: sytyttämättömät kynttilät kestävät ikuisesti. Jotkut haluavat silti polttaa itsensä loppuun, eläen lyhyen mutta säihkyvän elämän. Erään uneksivan olennon kuvitelmat horjuttavat todellisuuden rakennetta, kunnes illuusioiden läpi näkevä hahmo astuu niiden sisään etsimään totuutta.</p><p>Kiinalainen kokeellisen elokuvan ihmelapsi Bi Gan (Long Day’s Journey into Night, 2018) kuvasi elokuvaansa vielä kuukausi ennen ja palautti valmiin leikkauksen vasta päiviä ennen kuin se voitti Cannesissa tuomariston Prix Spécial -erikoispalkinnon. Yli kaksituntinen spektaakkeli kulkee läpi ihmisen viiden aistin jokaisen osion rakentuessa erilaisen elokuvallisen kielen ympärille. Hypnoottisista taustasävelistä vastaa ranskalainen elektroninen duo M83.</p><p>Elokuvateoreetikot huomasivat jo aikaa sitten, että unien näkeminen muistuttaa kovin paljon elokuvankatselua. Tuskin koskaan on elokuva kuitenkaan päässyt näin lähelle kahden yhdistämistä: Resurrection seuraa kuumeunen logiikkaa tuntuen samanaikaisesti järjettömältä sekä johdonmukaiselta. Elokuvahistorian uumenista nousevat motiivit katoavat yhtä nopeasti kuin ilmestyvätkin. Harvassa elokuvassa saksalaisen ekspressionismin varjot kohtaavat kiinalaisen symboliikan tai tarkovskylaisen runollisuuden.</p><p>Resurrection on oodi seitsemännelle taiteelle, mutta tekee myös selväksi, ettei paluuta vanhaan ole. Zeitgeistin tavoin se kurottaa nykyhetkestä Lumièreen muistuttaen, ettei elokuvaa ole tehty selitettäväksi, vaan koettavaksi. Sekä itkettävän kaunis avausjakso että ohjaajan bravuureihin kuuluva liki 40 minuuttinen yhden oton loppukohtaus nousevat viime vuosien vaikuttavimpien joukkoon.</p><p>Elias Jurvanen</p><p>Ohjaus Bi Gan<br>Näyttelijät Jackson Yee, Shu Qi, Mark Chao, Gengxi Li, Jue Huang<br>Maa Kiina, Ranska, Yhdysvallat<br>Kielet mandariinikiina<br>Tekstitykset englanti<br>Ikäraja K16<br>Kesto 160 min<br>Teema Avainelokuvat<br>Avainsanat Festarihitti, Outoa, Kokeellinen, Fantasia, Sci-fi</p>",
                "en": "<p>This visually breathtaking, phantasmagoric tale depicts a humanity that has abandoned dreams—but one creature dares to dream on. A woman enters its dreams to uncover the truth.</p><p>Humanity has realised that giving up dreaming leads to immortality: unlit candles last forever. Some still want to burn themselves out, living short but dazzling lives. The delusions of one such creature shake the foundations of reality, until a character who sees through the illusion steps inside to uncover the truth.</p><p>Chinese experimental film prodigy Bi Gan (Long Day’s Journey into Night, 2018) was still shooting his film a month before and returned the finished cut only days before it won the Prix Spécial at Cannes. The more than two-hour spectacle takes the viewer through the five human senses, with each section told in a different cinematic language. The French electronic duo M83 provides a hypnotic soundtrack.</p><p>Film theorists noted the similarities between dreaming and watching movies a long time ago. Hardly ever has a film come this close to combining the two: Resurrection follows the logic of a fever dream, feeling both absurd and coherent at the same time. Motifs rising from the depths of film history disappear as quickly as they appear; German expressionism meets Chinese symbolism and Tarkovsky-esque poetry.</p><p>Resurrection is an ode to the seventh art, but also makes it clear there is no going back. Like the Zeitgeist, it reaches from the present all the way to Lumière, reminding us that cinema is not meant to be explained but experienced. Both the touchingly beautiful opening sequence and the director’s bravura nearly 40 minute single-take finale are among the most impressive of recent years.</p><p>Elias Jurvanen</p><p>Director Bi Gan<br>Starring Jackson Yee, Shu Qi, Mark Chao, Gengxi Li, Jue Huang<br>Country China, France, United States<br>Languages Mandarin Chinese<br>Subtitles English<br>Age limit K16<br>Duration 160 min<br>Theme Spotlight Selection<br>Keywords Festival hit, Weird, Experimental, Fantasy, Sci-fi</p>"
            },
            "short_description": {
                "fi": "Visuaalisesti hengästyttävässä fantasmagoriassa ihmiset eivät enää näe unia, mutta yksi olento jatkaa uneksimista. Nainen astuu olennon uniin ja alkaa selvittää totuutta.",
                "en": "This visually breathtaking, phantasmagoric tale depicts a humanity that has abandoned dreams—but one creature dares to dream on. A woman enters its dreams to uncover the truth."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1074415AAE952E928B41C640BC6D7BEE/Resurrection",
                "en": "http://www.savoyteatteri.fi/en/events/event/1074415AAE952E928B41C640BC6D7BEE/Resurrection"
            },
            "name": {
                "fi": "Resurrection – Rakkautta & Anarkiaa 18.–28.9.2025",
                "en": "Resurrection – Love & Anarchy 18.–28.9.2025"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66975/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66974",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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:55/?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": "13/14 €",
                        "en": "13/14 €"
                    },
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo",
                        "en": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490620,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-03T12:13:57.386980Z",
                    "last_modified_time": "2025-09-03T12:13:57.386997Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776938.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490620/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-03T12:13:57.275582Z",
            "last_modified_time": "2025-09-03T12:13:57.527841Z",
            "date_published": null,
            "start_time": "2025-09-27T12:10: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,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry",
                "en": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "description": {
                "fi": "<p>R&A-suosikki Kelly Reichardtin 70-luvulle sijoittuvassa, ironisesti nimetyssä rötöskomediassa Josh O'Connor hurmaa maailman huonoimpana taidevarkaana.</p><p>R&A-yleisö on vuosien varrella lumoutunut amerikkalaisen indien suurmestarin Kelly Reichardtin lämpimistä, leppoisista ja liikuttavista elokuvista: muun muassa kuvataiteen maailmaan sukeltava Showing Up, historiallinen kaverikertomus First Cow ja naiskuvakokoelma Certain Women ovat löytäneet festivaalilla intohimoiset faninsa. Reichardtin ystäviä hemmotellaan tällä kertaa taidemaailman laitamille vievällä, Cannesin pääsarjassa ensi-iltansa saaneella uutuudella The Mastermind, jonka pääosassa huimassa nosteessa oleva Josh O’Connor (Challengers, La Chimera – sielujen aarteet) nähdään maailman kehnoimman taidevarkaan roolissa.</p><p>The Mastermind on takuuvarmasti vuoden rennoin rikoselokuva: O’Connorin tulkitsema JB on joutilas kaveri, joka vaimoltaan Terriltä (Alana Haim) ja lapsiltaan salassa suunnittelee ei-niin-merkittävän taidekokoelman ryöstöä paikallisesta taidemuseosta. Apunaan hänellä on sekalainen joukko keikalle värväämiään alamaailman edustajia. Kun ryöstö yllättäen ei suju suunnitelmien mukaan, poliisit ovat pian kotitalon ovella – onneksi JB:n isä on korkeassa asemassa oleva syyttäjä.</p><p>Reichardt tekee lempeällä otteellaan pilkkaa etuoikeutetun valkoisen miehen toikkaroinnista ja ottaa kaiken ilon irti pieleen menevän ryöstön kuvauksesta. 70-luvun Massachusettsiin vievä tarina saa taustalleen jazzahtavan soundtrackin.</p><p>Inari Ylinen</p><p>Ohjaus Kelly Reichardt<br>Näyttelijät Josh O'Connor, Alana Haim, John Magaro, Hope Davis, Bill Camp<br>Maa Yhdysvallat<br>Kielet englanti<br>Ikäraja K7<br>Kesto 110 min<br>Teema Avainelokuvat<br>Avainsanat Taide, Rikos, Huumori, Feelgood, Matka, Festarihitt</p>",
                "en": "<p>R&A favourite Kelly Reichardt’s ironically titled crime comedy set in the 1970s stars Josh O’Connor as the world’s worst art thief.</p><p>Over the years, the R&A audience has been enchanted by the warm, laid-back, and moving films of American indie master Kelly Reichardt. Works like Showing Up, which dives into the world of visual arts, the historical buddy tale First Cow, and the female portrait collection Certain Women have all found passionate fans at the festival. This time, Reichardt’s admirers are treated to The Mastermind, a new film set on the fringes of the art world that premiered in the main competition at Cannes. In the lead role is the rapidly rising star Josh O’Connor (Challengers, La Chimera), playing the world’s worst art thief.</p><p>The Mastermind is undoubtedly the most easygoing crime film of the year: O’Connor’s character JB is an idle guy who, unbeknownst to his wife Terri (Alana Haim) and kids, is planning the theft of a not-so-important art collection from the local art museum. Helping him is a motley crew of underworld figures he’s recruited for the job. But when the heist doesn’t go as planned, the police are soon knocking at his door—luckily, JB’s father is a high-ranking prosecutor.</p><p>With her trademark gentle touch, Reichardt pokes fun at the bumbling of a privileged white man and fully embraces the comedy of a failed heist. The story, set in 1970s Massachusetts, is accompanied by a jazzy soundtrack.</p><p>Inari Ylinen</p><p>Director Kelly Reichardt<br>Starring Josh O'Connor, Alana Haim, John Magaro, Hope Davis, Bill Camp<br>Country United States<br>Languages English<br>Age limit K7<br>Duration 110 min<br>Theme Spotlight Selection<br>Keywords Art, Crime, Humour, Feelgood, Journey, Festival hit</p>"
            },
            "short_description": {
                "fi": "R&A-suosikki Kelly Reichardtin 70-luvulle sijoittuvassa, ironisesti nimetyssä rötöskomediassa Josh O'Connor hurmaa maailman huonoimpana taidevarkaana.",
                "en": "R&A favourite Kelly Reichardt’s ironically titled crime comedy set in the 1970s stars Josh O’Connor as the world’s worst art thief."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D3FDD1C37CD3CB5E66054B51872F9CF6/The_Mastermind",
                "en": "http://www.savoyteatteri.fi/en/events/event/D3FDD1C37CD3CB5E66054B51872F9CF6/The_Mastermind"
            },
            "name": {
                "fi": "The Mastermind – Rakkautta & Anarkiaa 18.–28.9.2025",
                "en": "The Mastermind – Love & Anarchy 18.–28.9.2025"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66974/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}