Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 21742,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=21",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=19"
    },
    "data": [
        {
            "id": "kulke:67582",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4011648",
                        "sv": "https://www.lippu.fi/eventseries/name-4011648",
                        "en": "https://www.lippu.fi/eventseries/name-4011648"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80€",
                        "sv": "24,80€",
                        "en": "24,80€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494086,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:13:00.797524Z",
                    "last_modified_time": "2025-12-04T13:13:00.797540Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781966.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494086/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:13:00.725461Z",
            "last_modified_time": "2026-03-20T01:13:45.746760Z",
            "date_published": null,
            "start_time": "2026-03-25T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Konsertti tarjoaa kunnianosoituksen soulin kuningattarelle ja täyslaidallisen kotimaista Soul-energiaa.",
                "sv": "Konserten är en hyllning till souldrottningen och fullspäckad med inhemsk soul-energi.",
                "en": "The concert will pay tribute to the Queen of Soul with a full range of Finnish soul energy."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F1D6871E6A1F4658F2BB893B37430CC1/RESPECT_Aretha_Franklin_Tribute_Hi-Five_Quintet_Soul_Originals_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F1D6871E6A1F4658F2BB893B37430CC1/RESPECT_Aretha_Franklin_Tribute_Hi-Five_Quintet_Soul_Originals_",
                "en": "http://www.malmitalo.fi/en/events/event/F1D6871E6A1F4658F2BB893B37430CC1/RESPECT_Aretha_Franklin_Tribute_Hi-Five_Quintet_Soul_Originals_"
            },
            "description": {
                "fi": "<p>Konsertti tarjoaa kunnianosoituksen soulin kuningattarelle ja täyslaidallisen kotimaista Soul-energiaa.</p><p>Hi-Five Quintet vieraineen tulkitsee Arethan ikoniset kappaleet mm. “Respect”, “Think” ja “(You Make Me Feel Like) A Natural Woman” oman, svengaavan soundinsa läpi. Konsertissa kuullaan myös Hi-Five Quintetin omia, tarinallisia ja grooveen nojaavia kappleita. Luvassa on isoa tunnetta, vahvaa laulua ja tiukkaa bändisoittoa eli juhlailta soulin, bluesin ja hyvän fiiliksen ystäville.</p><p>Hi-Five Quintet:<br>Saara Koivisto (laulu), Olli Virkkunen (kitara), Kimmo Lehtola (basso ja taustalaulu), Juha Soini (koskettimet), Ari Hujanen (rummut)</p><p>Vieraat:<br>Linda Anttila (taustalaulu), Ilona Sola (taustalaulu), Sirpa Suomalainen (saksofoni)</p><p>Kesto: 2 t, sis. 25 min väliajan</p>",
                "sv": "<p>Konserten är en hyllning till souldrottningen och fullspäckad med inhemsk soul-energi.</p><p>Hi-Five Quintet och dess gäster tolkar Arethas ikoniska låtar, bland annat ”Respect”, ”Think” och ”(You Make Me Feel Like) A Natural Woman”, med sitt eget svängiga sound. Under konserten hör man också Hi-Five Quintets egna berättelselika låtar som hämtar inspiration hos groove-musiken. Det utlovas stora känslor, stark sång och en intensiv bandspelning, det vill säga en festkväll för soul- och blues-musikens vänner samt för alla som gillar en bra stämning.</p><p>Hi-Five Quintet: <br>Saara Koivisto (sång), Olli Virkkunen (gitarr), Kimmo Lehtola (bas och bakgrundssång), Juha Soini (keyboard), Ari Hujanen (trummor)</p><p>Gäster: <br>Linda Anttila (bakgrundssång), Ilona Sola (bakgrundssång), Sirpa Suomalainen (saxofon)</p><p>Längd: 2 h, inklusive en paus på 25 min.</p>",
                "en": "<p>The concert will pay tribute to the Queen of Soul with a full range of Finnish soul energy.</p><p>The Hi-Five Quintet and their guests interpret Aretha's iconic songs including ‘Respect’, ‘Think’ and ‘(You Make Me Feel Like) A Natural Woman’ with their own swinging sound. The concert will also feature Hi-Five Quintet's own story-driven, grooving songs. The evening will be a true celebration for all friends of blues and great vibes, promising big emotions, strong singing and tight band sounds.</p><p>Hi-Five Quintet: <br>Saara Koivisto (vocals), Olli Virkkunen (guitar), Kimmo Lehtola (bass and backing vocals), Juha Soini (keyboards), Ari Hujanen (drums)</p><p>Guests: <br>Linda Anttila (backing vocals), Ilona Sola (backing vocals), Sirpa Suomalainen (saxophone)</p><p>Duration: 2 h, incl. a 25-min intermission</p>"
            },
            "name": {
                "fi": "RESPECT! Aretha Franklin Tribute & Hi-Five Quintet Soul Originals",
                "sv": "RESPECT! Aretha Franklin Tribute & Hi-Five Quintet Soul Originals",
                "en": "RESPECT! Aretha Franklin Tribute & Hi-Five Quintet Soul Originals"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67582/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67386",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375683/",
                        "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375683/",
                        "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375683/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1507857,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T09:15:42.269367Z",
                    "last_modified_time": "2026-03-03T09:15:42.269385Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781071.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1507857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T09:15:42.148112Z",
            "last_modified_time": "2026-03-20T01:13:45.512814Z",
            "date_published": null,
            "start_time": "2026-03-25T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78BD8229119A4E591A319F983ED52974/Kaunis_rietas_onnellinen_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78BD8229119A4E591A319F983ED52974/Kaunis_rietas_onnellinen_12_",
                "en": "http://www.malmitalo.fi/en/events/event/78BD8229119A4E591A319F983ED52974/Kaunis_rietas_onnellinen_12_"
            },
            "description": {
                "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu.</p><p>Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kaunis rietas onnellinen (12) – Kino Helios",
                "sv": "Kaunis rietas onnellinen (12) – Kino Helios",
                "en": "Kaunis rietas onnellinen (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67386/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68140",
            "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: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: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: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": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494940,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-25T07:12:58.658587Z",
                    "last_modified_time": "2026-02-25T07:12:58.658600Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785415.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494940/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-25T07:12:58.513700Z",
            "last_modified_time": "2026-03-20T01:13:45.357433Z",
            "date_published": null,
            "start_time": "2026-03-25T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/293A8F6B5351F45B2939159295A23A1C/Filmen_om_SIW",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/293A8F6B5351F45B2939159295A23A1C/Filmen_om_SIW",
                "en": "http://www.vuotalo.fi/en/events/event/293A8F6B5351F45B2939159295A23A1C/Filmen_om_SIW"
            },
            "description": {
                "fi": "<p>Dokumentti FILMEN OM SIW antaa laulaja Siw Malmkvistille ohjat. Elokuva käy läpi paikkoja ja ihmisiä, jotka ovat olleet tärkeitä tähden 89-vuotiselle elämälle ja 70-vuotiselle uralle. Siitä muodostuu syvästi henkilökohtainen matka ajassa ja tilassa. Seuraamme Siwiä palaamassa kohokohtiin, jotka tekivät hänestä yhden Ruotsin kaikkien aikojen rakastetuimmista artisteista. Raotamme ovea hänen tarinansa osiin, joita ei ole koskaan ennen kerrottu. Kun Siw on puikoissa, mitä tahansa voi tapahtua!</p><p>Siw Malmkvist levytti urallaan myös suomeksi ja oli naimisissa laulaja-säveltäjä Lasse Mårtensonin kanssa asuen Helsingissä.<br>”Kun he sanoivat haluavansa tehdä elämäkertaelokuvan minusta, olin täysin järkyttynyt. Minusta?! Miksi? Kuka haluaa nähdä sen? Mutta nyt kun he ovat seuranneet minua lähes vuoden, se tuntuu itse asiassa aika kivalta! … vaikkakin vähän oudolta…”, kommentoi Siw elokuvan päähenkilönä olemista.</p><p>SIW oli juuri päättyneen vuoden toiseksi katsotuin kotimainen elokuva Ruotsissa ja kolmanneksi katsotuin ruotsalainen elokuva koko maailmassa.</p><p>Kesto: 2 h 5 min<br>Ruotsi 2025<br>Kuvaus: Stina Gardell</p>",
                "sv": "<p>FILMEN OM SIW sätter artisten Siw Malmkvist i förarsätet och besöker de platser och människor som haft betydelse för hennes 89-åriga liv och 70-åriga karriär. Det blir en nära och personlig resa genom tid och rum. Följ med Siw när hon återbesöker de höjdpunkter som gjort henne till en av Sveriges mest folkkära artister genom tiderna, och glänta på dörren till delar av hennes historia som aldrig tidigare berättats. Tag plats, för när det är Siw som styr kan allt hända!</p><p>Siw Malmkvist spelade in musik också på finska och var gift med sångaren och kompositören Lasse Mårtenson.<br>“När de sa att de ville göra en biofilm om mig blev jag helt chockad. Om mig ?! Varför det? Vem vill se den? Men nu när de följt mig snart ett år så känns det faktiskt rätt ball! … fast lite konstigt…”, kommenterar Siw själv om att bli huvudperson i en biofilm.</p><p>FILMEN OM SIW var den näst mest sedda inhemska filmen i Sverige och den tredje mest sedda svenska filmen i världen förra året. Den vann också Guldbagge som bästa film enligt publiken.</p><p>Längd: 2 t 5 min<br>Sverige 2025<br>Regi: Stina Gardell</p>",
                "en": "<p>In this documentary about Siw Malmkvist visiting places and people who have played important roles for the 88-year-old artist – who now has a 70-year career behind her. Malmkvist is known, among other things, for the song ‘Augustin’ with which she won the Melodifestivalen in 1959 and, in addition to her achievements in Sweden, has also reaped success in Germany and Italy in particular.</p><p>Duration: 2 h 5 min<br>Sweden 2025<br>Filming: Stina Gardell</p>"
            },
            "name": {
                "fi": "Filmen om SIW – Onsdagsbio",
                "sv": "Filmen om SIW – Onsdagsbio",
                "en": "Filmen om SIW – Onsdagsbio"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68140/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68156",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494958,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-26T12:12:54.239447Z",
                    "last_modified_time": "2026-02-26T12:12:54.239459Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785883.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494958/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-26T12:12:54.067233Z",
            "last_modified_time": "2026-03-20T01:13:45.193242Z",
            "date_published": null,
            "start_time": "2026-03-25T15:00:00Z",
            "end_time": "2026-04-17T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Helsingin Kaupunginteatterin yleisötyön Taidetta koteihin – valokuvanäyttely esityksistä olohuoneissa avautuu Malmitalolla keskiviikkona 25.3.2026.",
                "en": "The exhibition opens at Malmitalo on 25 March 2026 and is on display in the lobby until 17 April 2026, after which it will tour other public venues in Malmi and Helsinki."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B82037FD1BD81F8F981CF00543FD795E/Taidetta_koteihin_-_valokuvanayttely_esityksista_olohuoneissa",
                "en": "http://www.malmitalo.fi/en/events/event/B82037FD1BD81F8F981CF00543FD795E/Taidetta_koteihin_-_valokuvanayttely_esityksista_olohuoneissa"
            },
            "description": {
                "fi": "<p>Helsingin Kaupunginteatterin yleisötyön Taidetta koteihin – valokuvanäyttely esityksistä olohuoneissa avautuu Malmitalolla keskiviikkona 25.3.2026.</p><p>Näyttely on esillä Malmitalon aulassa 25.3.–17.4.2026, minkä jälkeen se lähtee kiertueelle muihin yleisölle avoimiin tiloihin Malmilla ja muualla Helsingissä.</p><p>Lämpimästi tervetuloa näyttelyn avajaisiin Malmitalolle keskiviikkona 25.3.2026 klo 17.30–19!<br>Valokuvanäyttely esittelee kaudella 2025–2026 toteutettujen Taidetta koteihin -tapahtumien tunnelmia, koteja ja niissä syntyneitä kohtaamisia. Näyttely tarjoaa mahdollisuuden kurkistaa kotiesityksiin myös heille, jotka eivät itse päässeet intiimeihin esityksiin paikan päälle.</p><p>Koteja, kohtaamisia ja yhteisöllisyyttä</p><p>Taidetta koteihin -tapahtumissa Malmin alueen tavalliset kodit ja kotiympäristöt muuntuivat taiteen näyttämöiksi, kun taiteilijat suunnittelivat esitykset vuoropuhelussa kodin asukkaan kanssa tämän kiinnostuksen kohteiden ja toiveiden pohjalta.</p><p>Tapahtumat olivat avoimia kaikille, ja niissä kohtasivat toisilleen ennestään tuntemattomat ihmiset. Tavoitteena oli tuoda taide osaksi arkea ja vahvistaa alueen yhteisöllisyyttä. Tähän mennessä Malmilla on toteutettu yhteensä kolmetoista kotiesitystä, joista näyttelyssä esitellään viisi.</p><p>Taidetta koteihin -tapahtumat toteutettiin osana Helsingin Kaupunginteatterin yleisötyön Pääroolissa Malmi -hanketta.</p><p>Valokuvat: Sonja Tolonen</p><p>Näyttelydramaturgia: Laura Ikonen, Janne Puustinen</p><p>Näyttelyn tuotanto: Eveliina Pöyhönen</p><p>Taidetta koteihin -konseptin taiteellinen suunnittelu: Laura Ikonen, Jenny Jumppanen, Aleksi Kinnunen, Janne Puustinen</p><p>Alueellisen Pääroolissa Malmi -taidehankkeen tarkoitus on tarjota asuinalueelle erilaisia teatterin ja taiteen osallistumismahdollisuuksia, sekä tukea alueen omaa kulttuuritoimintaa, luoden myös uusia kaupunkikulttuurin muotoja. Taidetta koteihin -kokonaisuus tuo taiteen konkreettisesti ihmisten luo ja luo uusia tapoja kohdata taidetta arjen keskellä. Pääroolissa Malmi on yksi Helsingin kaupungin rahoittamista Helsingin malli -hankkeista.</p>",
                "en": "<p>The exhibition opens at Malmitalo on 25 March 2026 and is on display in the lobby until 17 April 2026, after which it will tour other public venues in Malmi and Helsinki.</p><p>You are warmly welcome to the opening event on Wednesday 25 March at 17:30–19:00. The exhibition offers a glimpse into five home performances created during the 2025–2026 season, highlighting homes, encounters, and community. In these events, ordinary Malmi homes were transformed into artistic stages through collaboration between residents and artists. Art at Home is part of the Helsinki City Theatre’s audience engagement project Pääroolissa Malmi.</p><p>Photos: Sonja Tolonen</p><p>Exhibition dramaturgy: Laura Ikonen & Janne Puustinen</p><p>Production: Eveliina Pöyhönen</p><p>Artistic concept: Laura Ikonen, Jenny Jumppanen, Aleksi Kinnunen & Janne Puustinen</p>"
            },
            "name": {
                "fi": "Taidetta koteihin - valokuvanäyttely esityksistä olohuoneissa – Taidetta koteihin -valokuvanäyttely tuo kotiesitysten tunnelmat kaikkien koettavaksi",
                "en": "Taidetta koteihin - valokuvanäyttely esityksistä olohuoneissa – The Art at Home photo exhibition captures intimate performances created inside ordinary homes across Malmi."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68156/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67385",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375693/",
                        "sv": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375693/",
                        "en": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375693/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1509762,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T13:13:51.803988Z",
                    "last_modified_time": "2026-03-03T13:13:51.804005Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781070.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T13:13:51.670515Z",
            "last_modified_time": "2026-03-20T01:13:45.048605Z",
            "date_published": null,
            "start_time": "2026-03-25T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/763D9427758D7B158B46A054DF1FC566/The_Secret_Agent_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/763D9427758D7B158B46A054DF1FC566/The_Secret_Agent_16_",
                "en": "http://www.malmitalo.fi/en/events/event/763D9427758D7B158B46A054DF1FC566/The_Secret_Agent_16_"
            },
            "description": {
                "fi": "<p>Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri.</p><p>The Secret Agent palkittiin 2026 Golden Globes -gaalassa parhaan vieraskielisen elokuvan palkinnolla ja pääosanesittäjä Wagner Moura parhaan miesnäyttelijän palkinnolla.</p><p>Vuoden 2025 Cannesin elokuvajuhlilla parhaasta ohjauksesta (Kleber Mendonça Filho) ja miespääosasta (Wagner Moura) palkittu The Secret Agent on omaperäinen poliittinen trilleri. Eletään riehakasta karnevaaliviikkoa vuonna 1977 Brasiliassa.</p><p>Salaperäistä menneisyyttään pakeneva teknologia-asiantuntija Marcelo (Moura) palaa kotikaupunkiinsa etsimään rauhaa, samalla toivoen tapaavansa jälleen poikansa.</p><p>Hän löytää suojapaikan vastarintaliikkeen kommuunista, mutta huomaa pian, että kaupunki on yhtä eläväinen kuin väkivaltainenkin. Marcelo  ajautuu tahtomattaan keskelle poliittista kuohuntaa.</p><p>Oivaltavasti eri lajityyppejä yhdistelevä, auringon paahtama elokuva on ohjaaja Filhon kunnianosoitus elokuvataiteelle ja Brasilialle.  Elokuva on Brasilian virallinen ehdokas Oscar-kisaan.</p><p>Ikäraja: 16<br>Kesto: 161 min<br>Ensi-ilta: 20.2.2026<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>"
            },
            "name": {
                "fi": "The Secret Agent (16) – Kino Helios",
                "sv": "The Secret Agent (16) – Kino Helios",
                "en": "The Secret Agent (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67385/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67604",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "9€/1€",
                        "sv": "9€/1€",
                        "en": "9€/1€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494360,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:30.126844Z",
                    "last_modified_time": "2026-01-05T09:13:30.126859Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782016.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:29.964763Z",
            "last_modified_time": "2026-03-20T01:13:44.882472Z",
            "date_published": null,
            "start_time": "2026-03-25T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Keväinen suosikki MIAU! esittelee pääsiäiseen liittyviä kansanperinteitä ja uskomuksia vauhdikkaassa nukketeatterikavalkadissa.",
                "sv": "Vårens favorit MIAU! berättar om folkliga traditioner och trosuppfattningar kring påsken genom en fartfylld dockteaterkavalkad.",
                "en": "The spring favourite MIAU! presents Easter traditions and beliefs through a fast-paced puppet theatre cavalcade."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3A8A92014052540C9E80E4C850E2C85C/MIAU_paasiainen_nukketeatterissa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3A8A92014052540C9E80E4C850E2C85C/MIAU_paasiainen_nukketeatterissa_pask_pa_dockteatern_",
                "en": "http://www.kanneltalo.fi/en/events/event/3A8A92014052540C9E80E4C850E2C85C/MIAU_Easter_at_the_puppet_theatre_"
            },
            "description": {
                "fi": "<p>Keväinen suosikki MIAU! esittelee pääsiäiseen liittyviä kansanperinteitä ja uskomuksia vauhdikkaassa nukketeatterikavalkadissa.</p><p>Esityksessä on mukana loruja, runoja ja lauluja, monipuolista nukketeatteriosaamista ja huumoria monenikäisille.</p><p>Esityksen laulut kuultavissa Pieni pääsiäislevy –cd:ltä. Ne löytyvät myös Spotifysta!<br>Pääsiäislauluja voit kuunnella ja katsoa myös Yle Areenassa.</p><p>Käsikirjoitus, sovitus, nuket, lavastus, alkuperäinen ohjaus: Maija Barić<br>Uusintaohjaus: Iivo Barić<br>Musiikki: Maija Barić ja Bojan Barić<br>Musiikin sovitus: Esiintyvät muusikot<br>Esiintyjät: Susan Aho/Satu Lankinen, Iivo Barić, Antero Reinistö sekä Sanna Kaisa Sundström</p><p>Kesto 40 min.<br>Liput 9€. Ohjaajat 1€ ryhmien mukana.</p><p>Ennakkoliput \thttps://teatteri.sampofestival.fi/esityskalenteri/<br>Tiedustelut ja varaukset: toimisto@nukketeatterisampo.fi\tp. 020 735 2235</p>",
                "sv": "<p>Vårens favorit MIAU! berättar om folkliga traditioner och trosuppfattningar kring påsken genom en fartfylld dockteaterkavalkad.</p><p>I föreställningen ingår ramsor, dikter och sånger, mångsidig dockteater och humor för alla åldrar.</p><p>Sångerna från föreställningen finns på cd-skivan Pieni pääsiäislevy. Du kan också hitta dem på Spotify!<br>Du kan också lyssna och titta på påsksångerna på Yle Arenan.</p><p>Manus, arrangemang, dockor, scenografi, originalregi: Maija Barić<br>Förnyad regi: Iivo Baric<br>Musik: Maija Barić och Bojan Barić<br>Musikarrangemang: Musiker<br>På scenen: Susan Aho/Satu Lankinen, Iivo Barić, Antero Reinistö och Sanna Kaisa Sundström</p><p>Längd 40 min.<br>Biljetter 9 €. Handledare 1 € med grupperna.</p><p>Förköp av biljetter https://teatteri.sampofestival.fi/esityskalenteri/<br>Information och bokningar: toimisto@nukketeatterisampo.fi tfn 020 735 2235</p>",
                "en": "<p>The spring favourite MIAU! presents Easter traditions and beliefs through a fast-paced puppet theatre cavalcade.</p><p>The show includes rhymes, poems, songs, versatile puppet theatre skills, and humour for people of many ages.</p><p>The songs of the performance can be heard on the Pieni pääsiäislevy CD. You can also find them on Spotify!<br>What’s more, you can listen to and watch the Easter songs on Yle Areena.</p><p>Script, adaptation, puppets, set design, original direction: Maija Barić<br>Current direction: Iivo Barić<br>Music: Maija Barić and Bojan Barić<br>Music arrangement: Performing musicians<br>Performers: Susan Aho/Satu Lankinen, Iivo Barić, Antero Reinistö and Sanna Kaisa Sundström</p><p>Duration: 40 min<br>Tickets €9 Tickets for instructors with groups €1</p><p>Advance tickets  https://teatteri.sampofestival.fi/esityskalenteri/<br>Information and bookings: toimisto@nukketeatterisampo.fi <br>tel. +358 20 735 2235</p>"
            },
            "name": {
                "fi": "MIAU! pääsiäinen nukketeatterissa – Nukketeatteri Sampo",
                "sv": "MIAU! pääsiäinen nukketeatterissa (påsk på dockteatern) – Dockteater Sampo",
                "en": "MIAU! Easter at the puppet theatre – Puppet Theatre Sampo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67604/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67874",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:46/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494508,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T12:13:34.698774Z",
                    "last_modified_time": "2026-01-16T12:13:34.698792Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780528.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494508/?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": "2026-01-16T12:13:34.566073Z",
            "last_modified_time": "2026-03-20T01:13:44.704814Z",
            "date_published": null,
            "start_time": "2026-03-25T08:00:00Z",
            "end_time": "2026-03-25T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!",
                "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!",
                "en": "In these imaginatively modified play environments, play gets to run wild!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F2DE43E96676EC188C1CEB4FBA129186/Taideleikit_leikin_oma_tila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/F2DE43E96676EC188C1CEB4FBA129186/Konstlekar_en_egen_plats_for_lek",
                "en": "http://www.annantalo.fi/en/events/event/F2DE43E96676EC188C1CEB4FBA129186/Art_games_a_space_for_play"
            },
            "description": {
                "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin.</p><p>Aktiivisessa tilassa toimii lisäksi leikittäjä. Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen   <br>Aika: 10-12 (nonstop)  <br>Ikäryhmä: 0-3v<br>Kieli: suomi    <br>Maksuton    <br>Tila: kuvataide 1  ja Kahvila Napero</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>",
                "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen.  <br>Regi: Noora Puranen   <br>Tid: kl. 10–12 (non-stop)  <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>",
                "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor.</p><p>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen   <br>Time: 10.00–12.00 (non-stop)  <br>Age group: 0–3<br>Language: Finnish</p><p>Free of charge</p>"
            },
            "name": {
                "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa",
                "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen",
                "en": "Art games – a space for play – Children aged 0–3 with an adult"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67874/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68090",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494819,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-10T07:13:15.919812Z",
                    "last_modified_time": "2026-02-10T07:13:15.919825Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780053.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494819/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-10T07:13:15.801517Z",
            "last_modified_time": "2026-03-20T01:13:44.590431Z",
            "date_published": null,
            "start_time": "2026-03-25T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva kuvaa kauriinvasan elämän ensimmäisiä vuosia ja koettelemuksia, joita hänen täytyy kohdata metsässä.",
                "sv": "Filmen skildrar de första åren i ett rådjurskids liv och de prövningar han ställs inför i skogen.",
                "en": "The story of Bambi retraces the first years of a fawn's life, and the trials he must face in the woods."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A129DEF87482CD6C6F2BF2A57651FF93/Koulukino_Bambi_-_tarina_metsan_elamasta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A129DEF87482CD6C6F2BF2A57651FF93/Koulukino_Bambi_-_en_saga_om_livet_i_skogen",
                "en": "http://www.vuotalo.fi/en/events/event/A129DEF87482CD6C6F2BF2A57651FF93/Koulukino_Bambi_-_tarina_metsan_elamasta"
            },
            "description": {
                "fi": "<p>Elokuva kuvaa kauriinvasan elämän ensimmäisiä vuosia ja koettelemuksia, joita hänen täytyy kohdata metsässä.</p><p>Tämä luontoa ylistävä tarina opettaa meille, että toivoa ei pidä koskaan menettää.</p><p>Äitinsä rinnalla nuori kauriinvasa ihmettelee elämänsä ensimmäisinä päivinä kaikkea ympärillään. Äiti on täynnä hellyyttä ja rakkautta. Hän opettaa Bambille selviytymisen perustaitoja. Kasvaessaan Bambi saa monta ystävää metsän eläimistä ja tapaa Falinen, josta tulee hänen rakastettunsa. Mutta syksyn saapuessa Bambi jää orvoksi: metsästäjät ovat vieneet hänen äitinsä. Sitten hän huomaa, ettei ole yksin: hänen isänsä, Prinssi, valvoo häntä ja opettaa suojautumaan villin luonnon vaaroilta ja ennen kaikkea kasvamaan aikuiseksi.</p><p>Elokuva on saanut Euroopan unionin Luova Eurooppa -ohjelman tuen.</p><p>Ryhmille ilmoittautuminen Kultuksen kautta: kultus.hel.fi</p><p>KIELI: suomi <br>KESTO: 78 min</p>",
                "sv": "<p>Filmen skildrar de första åren i ett rådjurskids liv och de prövningar han ställs inför i skogen.</p><p>Denna berättelse, som är en hyllning till naturen, lär oss att aldrig förlora hoppet.</p><p>Det unga rådjurskidet förundras över allt runtomkring under livets första dagar, tillsammans med sin mor. Modern är full av tillgivenhet och kärlek. Hon lär Bambi grunderna i hur man överlever. När Bambi växer upp får han många vänner bland skogens djur och träffar Faline, som blir hans käresta. Men när hösten kommer blir Bambi föräldralös: jägare har tagit hans mor. Sedan märker han att han inte är ensam: hans pappa Prinsen vakar över honom och lär honom att skydda sig mot den vilda naturens faror och framför allt att bli vuxen.</p><p>Filmen har fått stöd från Europeiska unionens program Kreativa Europa.</p><p>KIELI: suomi <br>KESTO: 78 min</p>",
                "en": "<p>The story of Bambi retraces the first years of a fawn's life, and the trials he must face in the woods.</p><p>This initiatory tale, a hymn to nature, teaches us that we must always remain hopeful.</p><p>From the very first days of his life, a young fawn marvels at everything that surrounds him, alongside his mother, full of tenderness and love, who teaches him the basic things he needs to know to survive... As he grows, Bambi makes many friends among the forest animals and meets Faline, who becomes his lover. But with the arrival of autumn, Bambi is orphaned: hunters have stolen his mother.</p><p>Then he discovers that he's not alone: his father, The Prince, is watching over him, teaching him how to protect himself from the dangers of the wild, and above all... how to grow up.</p><p>KIELI: suomi <br>KESTO: 78 min</p>"
            },
            "name": {
                "fi": "Koulukino: Bambi - tarina metsän elämästä",
                "sv": "Koulukino Bambi - en saga om livet i skogen",
                "en": "Koulukino: Bambi - tarina metsän elämästä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68090/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67187",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109799/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109799/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109799/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494252,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-18T12:13:52.049973Z",
                    "last_modified_time": "2025-12-18T12:13:52.049988Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778524.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494252/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-18T12:13:51.907085Z",
            "last_modified_time": "2026-03-20T01:13:44.470181Z",
            "date_published": null,
            "start_time": "2026-03-24T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA",
                "sv": "Dokumentärserien March Through the Frame, som visas på Caisa, lyfter fram kvinnornas berättelser.",
                "en": "WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C46A7B2CC951F6D7D7F35C9DCF2F2DBF/8_STORIES_ABOUT_MY_HEARING_LOSS",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C46A7B2CC951F6D7D7F35C9DCF2F2DBF/8_STORIES_ABOUT_MY_HEARING_LOSS",
                "en": "http://www.caisa.fi/en/events/event/C46A7B2CC951F6D7D7F35C9DCF2F2DBF/8_STORIES_ABOUT_MY_HEARING_LOSS"
            },
            "description": {
                "fi": "<p>WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA</p><p>Emotional, weird, too sensitive, too much… Women who don’t follow normative scripts often pay a price for not conforming.</p><p>MARCH THROUGH THE FRAME is a four-week programme of documentaries where these women are centred as narrators in their own right. Drawing on personal and community archives, each Tuesday we celebrate the joy and strength in our collective refusals and journeys of self-discovery.</p><p>Diagnosed with bilateral sensorineural progressive hearing loss in the first grade, Charo Mato became fully deaf by the age of 23, and received cochlear implants against her parents’ wishes.</p><p>Structured with eight distinct stories and questions, 8 STORIES ABOUT MY HEARING LOSS flits between childhood stories and digressive memories, the scientific and medical explanations of hearing loss and implants, and poetic ruminations on the nature of life and language. Mato uses the film to process her own experience. A beautiful, highly personal film processing and celebrating the experiences of those with hearing loss.</p><p>English subtitles included. Duration 86 minutes.</p><p>Naiset, jotka eivät taivu yhteiskunnan normeihin, ajautuvat usein patriarkaatin, rasismin, ableismin ja heteronormatiivisuuden vuoksi yhteiskunnan marginaaleihin. March Through The Frame on neljän viikon mittainen dokumenttiohjelmisto, joka todistaa näitä tarinoita ja asettaa naiset keskiöön omien kertomustensa tekijöinä.</p><p>Olipa kyse punkin keinoin kapinoivista lesboista Isossa-Britanniassa, performanssitaiteilijan kiivaasta kritiikistä Japanin konservatiivista kulttuuria kohtaan, suorapuheisista naisista Jamaikan rastafari-liikkeen muovaajina tai argentiinalaisen elokuvantekijän voimakkaasta kuulonalenemaa käsittelevästä teoksesta, jokainen tarina todistaa feminististä ajatusta siitä, että henkilökohtainen on poliittista.</p><p>Suurinta osaa näistä dokumenteista ei ole aiemmin esitetty Suomessa. Kaikissa elokuvissa on englanninkieliset tekstitykset.</p><p>Ohjelmiston on kuratoinut kulttuurituottaja Adalmiina Erkkola, jota kiinnostaa elokuvan poliittinen potentiaali. Hän juontaa myös No Man’s Land -radio-ohjelmaa IDA Helsingissä.</p>",
                "sv": "<p>Dokumentärserien March Through the Frame, som visas på Caisa, lyfter fram kvinnornas berättelser.</p><p>Kvinnor som inte fogar sig efter samhällets normer drivs ofta ut i dess marginaler på grund av patriarkatet, rasism, funkofobi och heteronormativitet. March Through The Frame är fyra veckor av dokumentärer som vittnar om dessa berättelser och ställer kvinnorna i centrum för deras egna berättelser.</p><p>Oavsett om det handlar om lesbiska i Storbritannien som revolterar genom punken, en performancekonstnärs häftiga kritik mot den konservativa japanska kulturen, frispråkiga kvinnor som formar den jamaicanska rastafarirörelsen eller ett verk om en argentinsk filmskapares kraftiga hörselnedsättning, vittnar varje berättelse om den feministiska tanken att det personliga är politiskt.</p><p>De flesta av dessa dokumentärer har aldrig tidigare visats i Finland. Alla filmer har engelsk textning.</p><p>Kurator för programmet är kulturproducenten Adalmiina Erkkola, som är intresserad av filmens politiska potential. Hon leder också radioprogrammet No Man’s Land på IDA Helsinki.</p>",
                "en": "<p>WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA</p><p>Emotional, weird, too sensitive, too much… Women who don’t follow normative scripts often pay a price for not conforming.</p><p>MARCH THROUGH THE FRAME is a four-week programme of documentaries where these women are centred as narrators in their own right. Drawing on personal and community archives, each Tuesday we celebrate the joy and strength in our collective refusals and journeys of self-discovery.</p><p>Diagnosed with bilateral sensorineural progressive hearing loss in the first grade, Charo Mato became fully deaf by the age of 23, and received cochlear implants against her parents’ wishes.</p><p>Structured with eight distinct stories and questions, 8 STORIES ABOUT MY HEARING LOSS flits between childhood stories and digressive memories, the scientific and medical explanations of hearing loss and implants, and poetic ruminations on the nature of life and language. Mato uses the film to process her own experience. A beautiful, highly personal film processing and celebrating the experiences of those with hearing loss.</p><p>English subtitles included. Duration 86 minutes.</p><p>The programme is curated by Adalmiina Erkkola, a cultural producer interested in the political potential of film. They also host the No Man’s Land radio show at IDA Helsinki.</p>"
            },
            "name": {
                "fi": "8 STORIES ABOUT MY HEARING LOSS – Kino Caisa: March Through the Frame",
                "sv": "8 STORIES ABOUT MY HEARING LOSS – Kino Caisa: March Through the Frame",
                "en": "8 STORIES ABOUT MY HEARING LOSS – Kino Caisa: March Through the Frame"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67187/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67579",
            "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:33/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4032393",
                        "sv": "https://www.lippu.fi/eventseries/name-4032393",
                        "en": "https://www.lippu.fi/eventseries/name-4032393"
                    },
                    "description": null,
                    "price": {
                        "fi": "20,80€/22,80€",
                        "sv": "20,80€/22,80€",
                        "en": "20,80€/22,80€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494085,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:13:00.514264Z",
                    "last_modified_time": "2025-12-04T13:13:00.514280Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781964.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494085/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:13:00.440401Z",
            "last_modified_time": "2026-03-20T01:13:44.372492Z",
            "date_published": null,
            "start_time": "2026-03-24T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kahden ystäväpariskunnan lupaavasti alkava ilta saa uusia käänteitä kahden yllätysvieraan myötä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C8D1EC2AE6E167E5CEF0E4889960D1DF/Malmin_Tyovaennayttamo_Yllatysvieraita",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C8D1EC2AE6E167E5CEF0E4889960D1DF/Malmin_Tyovaennayttamo_Yllatysvieraita",
                "en": "http://www.malmitalo.fi/en/events/event/C8D1EC2AE6E167E5CEF0E4889960D1DF/Malmin_Tyovaennayttamo_Yllatysvieraita"
            },
            "description": {
                "fi": "<p>Kahden ystäväpariskunnan lupaavasti alkava ilta saa uusia käänteitä kahden yllätysvieraan myötä.</p><p>Mies on kutsunut nuoruudenaikaisen kaverinsa, jolla menee lujaa rapakon toisella puolella. Vaimo kutsunut parhaan työkaverinsa, Tatjanan, joka on osaava monella saralla.<br>Yllätysvieraat saa lisämausteen, kun paikalle ilmaantuu putkimies Turunen, joka taas katselee ja kuuntelee elämää ihan omanlaisellaan virityksellä.</p><p>Yllätysvieraat on komedia, jota värjäävät niin ennakkoluulot kuin väärinymmärryksetkin. Sen loppu ei liene kenenkään arvattavissa, joten kannattaa tulla katsomaan!</p><p>Kesto: 1 t 50 min, sis 20 min väliajan</p>"
            },
            "name": {
                "fi": "Malmin Työväennäyttämö: Yllätysvieraita",
                "sv": "Malmin Työväennäyttämö: Yllätysvieraita",
                "en": "Malmin Työväennäyttämö: Yllätysvieraita"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67579/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67917",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494359,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:29.732371Z",
                    "last_modified_time": "2026-01-05T09:13:29.732389Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783141.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494359/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:29.670951Z",
            "last_modified_time": "2026-03-20T01:13:44.275042Z",
            "date_published": null,
            "start_time": "2026-03-24T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/63940F5C81041ACCE77F4C1B2385E248/Paivatanssit_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/63940F5C81041ACCE77F4C1B2385E248/Paivatanssit_",
                "en": "http://www.stoa.fi/en/events/event/63940F5C81041ACCE77F4C1B2385E248/Paivatanssit_"
            },
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>"
            },
            "name": {
                "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Päivätanssit",
                "en": "Päivätanssit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67917/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67948",
            "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: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: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21049137/#tab=",
                        "sv": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21049137/#tab=",
                        "en": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21049137/#tab="
                    },
                    "description": null,
                    "price": {
                        "fi": "10 €",
                        "sv": "10 €",
                        "en": "10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494426,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T10:12:59.883195Z",
                    "last_modified_time": "2026-01-09T10:12:59.883207Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780436.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494426/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T10:12:59.781219Z",
            "last_modified_time": "2026-03-20T01:13:44.151973Z",
            "date_published": null,
            "start_time": "2026-03-24T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset jatkuvat tänä keväänä Malmitalossa ja Vuotalossa! Tekijävieraana näyttelijä Elias Salonen. Haastattelijana toimittaja Päivi Istala.",
                "sv": "HopeaCine-visningarna, som började på Cinema Orion, fortsätter under våren på Malms kulturhus och Nordhuset!",
                "en": "Originating from Cinema Orion, HopeaCiné film screenings will continue this spring in Malmitalo and Vuotalo!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8C3A3CD36FB8DBE2ACE9D84A015FECB8/HopeaCin_Kalevala_Kullervon_tarina",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8C3A3CD36FB8DBE2ACE9D84A015FECB8/HopeaCin_Kalevala_Kullervon_tarina",
                "en": "http://www.vuotalo.fi/en/events/event/8C3A3CD36FB8DBE2ACE9D84A015FECB8/HopeaCin_Kalevala_The_Story_of_Kullervo"
            },
            "description": {
                "fi": "<p>Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset jatkuvat tänä keväänä Malmitalossa ja Vuotalossa! Tekijävieraana näyttelijä Elias Salonen. Haastattelijana toimittaja Päivi Istala.</p><p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa. Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi.</p><p><b>Kullervon tarina</b></p><p>Tekijävieraana näyttelijä Elias Salonen.<br>Haastattelijana toimittaja Päivi Istala.</p><p>Suomi 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn. Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.<br> <br>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.<br> <br>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa. Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ohjaus: Antti J. Jokinen<br>Näyttelijät: Elias Salonen, Eero Aho, Ilkka Koivula, Olli Rahkonen, Krista Kosonen</p><p>Kesto: 143 min</p>",
                "sv": "<p>HopeaCine-visningarna, som började på Cinema Orion, fortsätter under våren på Malms kulturhus och Nordhuset!</p><p>I HopeaCines program som riktar sig till seniorer visas nya inhemska filmer en gång i månaden. Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som efter föreställningen berättar om processen för att göra filmen och erbjuder nytt att tänka på för att fördjupa filmvisningen.</p><p><b>Kullervon tarina</b><br>Finland på 1100-talet. Hatet mellan bröderna Kalervo och Untamo leder till en massaker på en hel by. Den enda överlevande är Kalervos son Kullervo, som Untamo bestämmer sig för att uppfostra som sin egen. När Kullervo växer upp blir han farlig på grund av sin råa kraft och sin upproriska natur, och byborna vill bli av med honom för gott.<br> <br>Under hela sitt liv söker Kullervo efter en mening med sin existens och sina förmågor. När han får veta vad som hänt i det förflutna är hans öde klart. Hämndens väg leder Kullervo att konfrontera Untamo och tvinga honom att stå till svars för sina synder.<br> <br>Kullervos öde är ett av de mest kända i Kalevala. I regi av Antti J. Jokinen får berättelsen om far och en son liv i de karga landskapen i Norra Karelen. I rollen som Kullervo ser vi Elias Salonen och som Untamo Jussi-belönade Eero Aho.</p><p>Regi: Antti J. Jokinen<br>Medverkande: Elias Salonen, Eero Aho, Ilkka Koivula, Olli Rahkonen, Krista Kosonen<br>Längd: 143 min.</p>",
                "en": "<p>Originating from Cinema Orion, HopeaCiné film screenings will continue this spring in Malmitalo and Vuotalo!</p><p>Designed for seniors, HopeaCiné’s programme features new Finnish films once a month. Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film.</p><p><b>The Story of Kullervo</b><br>Finland in the 12th century. Brotherly hatred between Kalervo and Untamo leads to the massacre of an entire village. The only survivor is Kalervo’s son Kullervo, whom Untamo decides to raise as his own. As he grows up, Kullervo’s raw power and rebellious nature make him dangerous, and the villagers want to get rid of him for good.<br> <br>Throughout his life, Kullervo searches for a purpose for his existence and skills. When the events of the past are revealed to him, his fate is clear. The path of revenge leads Kullervo to confront Untamo and force him to answer for his sins.<br> <br>The fate of Kullervo is one of the most famous in Kalevala. Directed by Antti J. Jokinen, the story of father and son comes to life in the majestic national landscapes of North Karelia. Elias Salonen plays Kullervo and Jussi award-winning Eero Aho plays Untamo.</p><p>Directed by: Antti J. Jokinen<br>Cast: Elias Salonen, Eero Aho, Ilkka Koivula, Olli Rahkonen, Krista Kosonen<br>Duration: 143 min</p>"
            },
            "name": {
                "fi": "HopeaCiné: Kalevala: Kullervon tarina – Näytös & tekijävierailu",
                "sv": "HopeaCiné: Kalevala: Kullervon tarina – Visning och filmskaparbesök",
                "en": "HopeaCiné: Kalevala: The Story of Kullervo – Film screening & author visit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67948/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67437",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494084,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:13:00.223898Z",
                    "last_modified_time": "2025-12-04T13:13:00.223918Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781258.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494084/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:13:00.125676Z",
            "last_modified_time": "2026-03-20T01:13:43.824963Z",
            "date_published": null,
            "start_time": "2026-03-23T16:00:00Z",
            "end_time": "2026-03-23T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Viimeinen yhteinen leikki (Otava 2024) on taiturimaisen kiehtova romaani lääketieteen vallasta, ystävyydestä ja ihmismielestä.",
                "sv": "Viimeinen yhteinen leikki (Otava 2024) är en suveränt fascinerande roman om läkarvetenskapens makt, vänskap och det mänskliga psyket.",
                "en": "Viimeinen yhteinen leikki (Otava 2024) is a skilful and intriguing novel about the power of medicine, friendship and the human mind."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B893C9761EE29ECBC99A68244175CACC/Kirjailijavieraana_Riikka_Pulkkinen_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B893C9761EE29ECBC99A68244175CACC/Forfattarbesok_Riikka_Pulkkinen_",
                "en": "http://www.kanneltalo.fi/en/events/event/B893C9761EE29ECBC99A68244175CACC/Guest_writer_Riikka_Pulkkinen_"
            },
            "description": {
                "fi": "<p>Viimeinen yhteinen leikki (Otava 2024) on taiturimaisen kiehtova romaani lääketieteen vallasta, ystävyydestä ja ihmismielestä.</p><p>Nuori perheenisä Eelis sanoo lähtevänsä päivystykseen huimauksen vuoksi, mutta katoaa jäljettömiin. Puoliso Mai ei voi käsittää mitä on tapahtunut, kunnes ovelle ilmaantuu nainen, joka kertoo tuntevansa Eeliksen. Nainen kantaa mukanaan Eeliksen tarinaa siitä, mitä heille ja heidän ystävilleen tapahtui, kun he olivat lapsia.</p><p>Alkaa kahden naisen roadtrip, joka johtaa huoltoasemille, lentokenttähotellin hääsviittiin ja sairaalaan, jonka kesäleireillä lapset kerran leikkivät rakkautta ja kuolemaa.</p><p>Viimeinen yhteinen leikki on upea romaani ihmisen toiveesta löytää parannuskeino paitsi sairauksiin myös elämään.</p><p>Riikka Pulkkinen on kirjallisuutemme kärkinimiä. Jo esikoisromaani Raja (2006) herätti laajaa huomiota. Kansainväliseen tietoisuuteen Pulkkinen nousi romaanillaan Totta. Riikka Pulkkinen sai Kaarlen-palkinnon 2007 ja Laila Hirvisaaren rahaston apurahan 2007. Otavan kirjasäätiön Veijo Meri -palkinto myönnettiin vuonna 2019. Totta-romaani oli Finlandia-palkintoehdokkaana 2010.</p><p>Riikka Pulkkista haastattelee FT, kirjallisuudentutkija Hanna Karhu.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Viimeinen yhteinen leikki (Otava 2024) är en suveränt fascinerande roman om läkarvetenskapens makt, vänskap och det mänskliga psyket.</p><p>Den unge familjefadern Eelis säger att han ska åka till jouren på grund av yrsel, men försvinner spårlöst. Hans fru Mai kan inte förstå vad som har hänt, men så plötsligt står en kvinna som säger sig känna Eelis i dörren. Kvinnan har med sig Eelis berättelse om vad som hände dem och deras vänner som barn.</p><p>De två kvinnorna åker på en roadtrip som tar dem till bensinstationer, flygplatshotellets bröllopssvit och ett sjukhus, där barn på sommarläger en gång lekte kärlek och död.<br>Viimeinen yhteinen leikki är en storslagen roman om människans önskan om att hitta ett botemedel, inte bara för sjukdomar utan också för livet.</p><p>Riikka Pulkkinen hör till de främsta inom vår litteratur. Redan hennes debutroman Gränsen (2006) väckte stor uppmärksamhet. Pulkkinen blev internationellt känd med sin roman Sanningen. Riikka Pulkkinen tilldelades Kaarle-priset 2007 och ett stipendium ur Laila Hirvisaaris fond år 2007. Hon fick också Otavas bokstiftelses Veijo Meri-pris år 2019. Romanen Sanningen nominerades till Finlandiapriset 2010.</p><p>Riikka Pulkkinen intervjuas av litteraturforskaren FD Hanna Karhu.</p><p>Fritt inträde</p>",
                "en": "<p>Viimeinen yhteinen leikki (Otava 2024) is a skilful and intriguing novel about the power of medicine, friendship and the human mind.</p><p>Eelis, a young father, says he is going to the emergency room because he feels dizzy, but disappears without a trace. His wife Mai cannot understand what has happened until a woman turns up at her door and tells her that she knows Eelis. She carries with her the story of what happened to them and their friends when they were children.</p><p>The two women embark on a road trip, leading to gas stations, an airport hotel honeymoon suite and a hospital where children once played love and death at summer camps.</p><p>Viimeinen yhteinen leikki is a magnificent novel about man's hope to find a cure not only for illness but also for life.</p><p>Riikka Pulkkinen is one of the top names in Finnish literature. She attracted widespread attention with her debut novel The Limit (2006). Pulkkinen rose to international prominence with her novel True. Riikka Pulkkinen was awarded the Kaarlen Prize in 2007 and a grant from the Laila Hirvisaari Foundation in 2007. She received the Otava Book Foundation's Veijo Meri Prize in 2019. True was nominated for the Finlandia Prize in 2010.</p><p>Riikka Pulkkinen will be interviewed by PhD Hanna Karhu, literary researcher.</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Riikka Pulkkinen – Maksuttomat maanantait",
                "sv": "Författarbesök: Riikka Pulkkinen – Avgiftsfria måndagar",
                "en": "Guest writer Riikka Pulkkinen – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67437/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67943",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/",
                        "sv": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/",
                        "en": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494521,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T14:13:34.244884Z",
                    "last_modified_time": "2026-01-16T14:13:34.244901Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783707.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494521/?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": "2026-01-16T14:13:34.152902Z",
            "last_modified_time": "2026-03-20T01:13:43.300345Z",
            "date_published": null,
            "start_time": "2026-03-22T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.annantalo.fi/en/events/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja"
            },
            "description": {
                "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p><p>Liput: 6 € per henkilö</p>",
                "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>",
                "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months.</p><p>It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance.</p><p>Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>"
            },
            "name": {
                "fi": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festivalen",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67943/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67942",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179256/",
                        "sv": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179256/",
                        "en": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179256/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494520,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T14:13:33.871344Z",
                    "last_modified_time": "2026-01-16T14:13:33.871370Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783706.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494520/?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": "2026-01-16T14:13:33.756058Z",
            "last_modified_time": "2026-03-20T01:13:43.164479Z",
            "date_published": null,
            "start_time": "2026-03-22T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/666C0E4AA8259E524219AF294AAA9157/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/666C0E4AA8259E524219AF294AAA9157/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.annantalo.fi/en/events/event/666C0E4AA8259E524219AF294AAA9157/Helena_Krinal_Shapeshifter_Kujumuutja"
            },
            "description": {
                "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p><p>Liput: 6 € per henkilö</p>",
                "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>",
                "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months.</p><p>It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance.</p><p>Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>"
            },
            "name": {
                "fi": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festivalen",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67942/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67491",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/ladies-first-big-band/ladies-first-big-band-elokuvissa-4016398/",
                        "sv": "https://www.lippu.fi/artist/ladies-first-big-band/ladies-first-big-band-elokuvissa-4016398/",
                        "en": "https://www.lippu.fi/artist/ladies-first-big-band/ladies-first-big-band-elokuvissa-4016398/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16,80€-31,90€",
                        "sv": "16,80€-31,90€",
                        "en": "16,80€-31,90€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494067,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:53.821069Z",
                    "last_modified_time": "2025-12-04T12:12:53.821084Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781550.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494067/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:53.753151Z",
            "last_modified_time": "2026-03-20T01:13:43.041940Z",
            "date_published": null,
            "start_time": "2026-03-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,
            "short_description": {
                "fi": "Ladies First Big Band johdattelee yleisön elokuvista tuttujen kappaleiden siivin tunnelmasta ja vuosikymmenestä toiseen.",
                "sv": "Ladies First Big Band leder publiken genom olika stämningar och årtionden med hjälp av bekanta låtar.",
                "en": "The Ladies First Big Band takes the audience on a journey through different atmospheres and decades with classic movie songs."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/231A04B286864EE2633A3C89F909DFF2/Ladies_First_Big_band_Elokuvissa_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/231A04B286864EE2633A3C89F909DFF2/Ladies_First_Big_band_Elokuvissa_",
                "en": "http://www.malmitalo.fi/en/events/event/231A04B286864EE2633A3C89F909DFF2/Ladies_First_Big_Band_Elokuvissa_In_the_movies_"
            },
            "description": {
                "fi": "<p>Ladies First Big Band johdattelee yleisön elokuvista tuttujen kappaleiden siivin tunnelmasta ja vuosikymmenestä toiseen.</p><p>Juonnetussa konsertissa kuullaan niin instrumentaaleja kuin laulusolistien tulkintoja elokuvamusiikin helmistä, tietenkin höystettynä glitterillä ja glamourilla.</p><p>Kesto: 2 t, sis. väliajan 30 min</p>",
                "sv": "<p>Ladies First Big Band leder publiken genom olika stämningar och årtionden med hjälp av bekanta låtar.</p><p>I den programledda konserten hör man både instrumentella och sångsolisternas tolkningar av filmmusikens pärlor, naturligtvis kryddade med glitter och glamour.</p><p>Längd: 2 h, inkl. en paus på 30 min.</p>",
                "en": "<p>The Ladies First Big Band takes the audience on a journey through different atmospheres and decades with classic movie songs.</p><p>The hosted concert will feature both instrumental and vocal soloists' interpretations of some of the shiniest gems of film music, seasoned with a touch of glitz and glamour, of course!</p><p>Duration: 2 hours, incl. 30 min intermission.</p>"
            },
            "name": {
                "fi": "Ladies First Big band: Elokuvissa!",
                "sv": "Ladies First Big band: Elokuvissa!",
                "en": "Ladies First Big Band: Elokuvissa! – In the movies!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67491/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67384",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375682/",
                        "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375682/",
                        "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375682/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1506904,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T07:14:29.479412Z",
                    "last_modified_time": "2026-03-03T07:14:29.479428Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781068.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1506904/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T07:14:29.390153Z",
            "last_modified_time": "2026-03-20T01:13:42.925418Z",
            "date_published": null,
            "start_time": "2026-03-21T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2D3C629E6BA71DA4DE41CB8CB1B59670/Kaunis_rietas_onnellinen_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2D3C629E6BA71DA4DE41CB8CB1B59670/Kaunis_rietas_onnellinen_12_",
                "en": "http://www.malmitalo.fi/en/events/event/2D3C629E6BA71DA4DE41CB8CB1B59670/Kaunis_rietas_onnellinen_12_"
            },
            "description": {
                "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu.</p><p>Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kaunis rietas onnellinen (12) – Kino Helios",
                "sv": "Kaunis rietas onnellinen (12) – Kino Helios",
                "en": "Kaunis rietas onnellinen (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67384/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67959",
            "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: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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098313/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098313/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098313/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T14:13:01.978729Z",
                    "last_modified_time": "2026-01-09T14:13:01.978742Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779146.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494438/?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": "2026-01-09T14:13:01.905516Z",
            "last_modified_time": "2026-03-20T01:13:42.788668Z",
            "date_published": null,
            "start_time": "2026-03-21T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Interaktiivinen tanssiteos veden viesteistä kaksikielisesti ruotsiksi ja suomeksi!",
                "sv": "Ett interaktivt dansverk om vattnets budskap tvåspråkigt på svenska och finska!",
                "en": "Interactive dance performance about the world of water bilangual in Swedish and Finnish!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/907FF8631FB0C8813460969B34E412DF/Ama_Kyei_Vattnet_viskar_suomi-ruotsi_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/907FF8631FB0C8813460969B34E412DF/Ama_Kyei_Vattnet_viskar_tvasprakigt_",
                "en": "http://www.vuotalo.fi/en/events/event/907FF8631FB0C8813460969B34E412DF/Ama_Kyei_Ama_Kyei_Waters_Whisper_bilangual_"
            },
            "description": {
                "fi": "<p>Interaktiivinen tanssiteos veden viesteistä kaksikielisesti ruotsiksi ja suomeksi!</p><p>Mytologiasta ammentava teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Veden kuiskaus on interaktiivinen tanssiteos 3–7-vuotiaille lapsille ja erityislapsille ala-asteikään asti. Teos on saanut inspiraationsa vesitutkija M. Emoton kirjasta ”The hidden messages of water”, jossa tutkija kertoo, kuinka hänen tutkimuksissaan vesi muodosti kauniita jääkristalleja, kun se kuuli kauniita ja rohkaisevia sanoja, rukouksia tai musiikkia. Teoksen inspiraatioina ovat myös Mami Wata ja Vellamo. Mami Wata on Länsi-Afrikan veden jumalatar, joka muistuttaa meitä veden pyhästä ja elämää antavasta voimasta. Vellamo on suomalaisessa mytologiassa veden jumalatar. Teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Teoksen koreografin ja esiintyjän Kyein tanssitausta on katutansseissa sekä perinteisissä länsiafrikkalaisissa tansseissa. Kyei on opiskellut tanssia Tukholman taideyliopistossa (Ruotsi), Åsan kansanopistossa (Ruotsi) sekä École des sables´ssa (Senegal). Tämän lisäksi Kyei on opiskellut tanssia sosiaalisissa tanssikonteksteissa Ghanassa, Beninissä ja Brasiliassa.</p><p>Teoksen tanssi pohjautuu Kyein liikekieleen. Lavastuksen on toteuttanut monialainen taiteilija Wanda Holopainen. Lavastukseen kuuluu tekstiiliteos, joka on saanut inspiraationsa vesikristalleista sekä Mami Watan ja Vellamon mytologiasta. Teoksen musiikin ovat säveltäneet Sophia Mitiku, Saban Ramadani ja Diva Cruz. Teoksen on rahoittanut Konstnärsnämnden (Ruotsi).</p><p>Kesto n. 30 min.<br>Ikäsuositus: 3-7-v<br>Esityskieli: ruotsi</p><p>Koreografi, esiintyjä: Ama Kyei<br>Lavastus: Wanda Holopainen<br>Musiikki: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>",
                "sv": "<p>Ett interaktivt dansverk om vattnets budskap tvåspråkigt på svenska och finska!</p><p>Verket är inspirerat av mytologi och bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Veden kuiskaus är ett interaktivt dansverk för barn i åldern 3–7 år och specialbarn upp till lågstadieåldern. Verket är inspirerat av boken ”The hidden messages of water” av vattenforskaren M. Emoto, där forskaren berättar hur vattnet i hans forskning bildade vackra iskristaller när det fick höra vackra och uppmuntrande ord, böner och musik. Verket är också inspirerat av Mami Wata och Vellamo. Mami Wata är en västafrikansk vattengudinna som påminner oss om vattnets heliga och livgivande kraft. Vellamo är vattengudinnan i den finska mytologin. Verket bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Koreografen och artisten Kyei har en bakgrund inom streetdance och traditionella västafrikanska danser. Kyei har studerat dans vid Stockholms konstnärliga högskola (Sverige), Åsa Folkhögskola (Sverige) och École des sables (Senegal). Dessutom har Kyei studerat dans i sociala danssammanhang i Ghana, Benin och Brasilien.</p><p>Dansen är baserad på Kyeis rörelsespråk. Scenografin är skapad av den mångsidiga konstnären Wanda Holopainen. I scenografin ingår ett textilverk som är inspirerat av vattenkristaller och av myterna om Mami Wata och Vellamo. Musiken är komponerad av Sophia Mitiku, Saban Ramadani och Diva Cruz. Arbetet har finansierats av Konstnärsnämnden (Sverige).</p><p>Längd ca 30 min.<br>Åldersrekommendation: 3–7 år<br>Föreställningens språk: finska/svenska/engelska</p><p>Koreograf, artist: Ama Kyei<br>Iscensättning: Wanda Holopainen<br>Musik: Sophia Mitiku, Saban Ramadani och Diva Cruz</p>",
                "en": "<p>Interactive dance performance about the world of water bilangual in Swedish and Finnish!</p><p>Inspired by mythologies, Waters Whisper carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common.</p><p>Waters Whisper is a dance performance for 3-7 years old children and children with special needs up to elementary school. The performance is inspired by water researcher Emoto's book called \"The hidden messages of water`, in which he observed that water formed beautiful icecrystals when it heard beautiful and encouraging words, prayers, or music.</p><p>Another source of inspiration for the work is Mami Wata, the water goddess with roots in West Africa, who reminds us of waters sacred and life giving power. The work carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common. In the performance, dancer Kyei seeks a channel of communication with water through various dances, in collaboration with the audience.</p><p>The choreography and perfoming of the piece is done by Ama Kyei. Kyeis background is in dance traditions stemming from the African continent (adwoa, kete & kpanlogo) and diaspora (house, hip hop, salsa). Kyei has done her official dance studies in Western contemporary dance ( Stockholm Uniarts) and in street styles (Åsa folkhögskola). The dance language in the piece will stem from these dance traditions and from the dances of the children.</p><p>Scenography is done by multidisciplinary artist Wanda Holopainen. The scenography involves textile works inspired by mythologies of Mami wata.<br>Music of the piece is done by Sophia Mitiku, Saban Ramadani and Diva Cruz. The music is a blend of electronic music with traces of latin american percussion and soundscapes inspired by water and afrodiasporic ancestry.</p><p>Duration approx. 30 min<br>Age recommendation: 3-7-years<br>Language: Swedish <br>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "name": {
                "fi": "Ama Kyei: Vattnet viskar (suomi-ruotsi) – Bravo!-festivaali",
                "sv": "Ama Kyei: Vattnet viskar (tvåspråkigt) – Bravo!-festivalen",
                "en": "Ama Kyei: Ama Kyei: Waters Whisper (bilangual) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67959/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67564",
            "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: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: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: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4035513",
                        "sv": "https://www.lippu.fi/eventseries/name-4035513",
                        "en": "https://www.lippu.fi/eventseries/name-4035513"
                    },
                    "description": null,
                    "price": {
                        "fi": "10-48 €",
                        "sv": "10-48 €",
                        "en": "10-48 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493920,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-26T12:13:29.435995Z",
                    "last_modified_time": "2025-11-26T12:13:29.436009Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781740.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493920/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-24T17:13:01.851015Z",
            "last_modified_time": "2026-03-20T01:13:42.652346Z",
            "date_published": null,
            "start_time": "2026-03-21T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Italialaisen oopperan kauneimmat sävelet kajahtavat Savoy-teatterissa, kun Suomen Beniamino Gigli -seura järjestää vuotuisen gaalakonserttinsa! Aarioita tulkitsevat niin kotimaiset kuin italialaiset taiteilijat.",
                "sv": "Vackra toner av italiensk opera ljuder på Savoy-teatern när Suomen Beniamino Gigli -seura ordnar sin årliga galakonsert! Ariorna tolkas av både nationella och italienska artister.",
                "en": "The most beautiful tunes of Italian opera will resound in the hall of the Savoy Theatre as the Finnish Beniamino Gigli Club holds its annual gala concert! Arias will be interpreted by both Finnish and Italian artists."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F66ECA9D0789D315EDBD2AF376898C23/Gigli-2026_-gaalakonsertti",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F66ECA9D0789D315EDBD2AF376898C23/Gigli-2026_galakonsert",
                "en": "http://www.savoyteatteri.fi/en/events/event/F66ECA9D0789D315EDBD2AF376898C23/Gigli-2026_gala_concert"
            },
            "description": {
                "fi": "<p>Italialaisen oopperan kauneimmat sävelet kajahtavat Savoy-teatterissa, kun Suomen Beniamino Gigli -seura järjestää vuotuisen gaalakonserttinsa! Aarioita tulkitsevat niin kotimaiset kuin italialaiset taiteilijat.</p><p>Flavio D’Ambra, tenori <br>David Esteban, tenori <br>Emma Kajander, sopraano <br>Sara Rossini, sopraano <br>Otso Sipilä, tenori <br>Jari Hiekkapelto, piano <br>Laura Pyrrö, juontaja, sopraano</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: S</p>",
                "sv": "<p>Vackra toner av italiensk opera ljuder på Savoy-teatern när Suomen Beniamino Gigli -seura ordnar sin årliga galakonsert! Ariorna tolkas av både nationella och italienska artister.</p><p>Flavio D'Ambra, tenor<br>David Esteban, tenor<br>Emma Kajander, sopran<br>Sara Rossini, sopran<br>Otso Sipilä, tenor<br>Jari Hiekkapelto, piano<br>Laura Pyrrö, konferencier, sopran</p><p>Längd ca 2 h, inklusive paus.</p><p>Åldersgräns: Tillåten för alla åldrar</p>",
                "en": "<p>The most beautiful tunes of Italian opera will resound in the hall of the Savoy Theatre as the Finnish Beniamino Gigli Club holds its annual gala concert! Arias will be interpreted by both Finnish and Italian artists.</p><p>Flavio D'Ambra, tenor<br>David Esteban, tenor<br>Emma Kajander, soprano<br>Sara Rossini, soprano<br>Otso Sipilä, tenor<br>Jari Hiekkapelto, piano<br>Laura Pyrrö, host, soprano</p><p>Duration: roughly 2 h, incl. intermission</p><p>Age rating: suitable for all ages</p>"
            },
            "name": {
                "fi": "Gigli-2026 -gaalakonsertti",
                "sv": "Gigli-2026 galakonsert",
                "en": "Gigli-2026 gala concert"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Suomen Beniamino Gigli -Seura SBGS ry",
                "sv": "Suomen Beniamino Gigli -Seura SBGS ry",
                "en": "Suomen Beniamino Gigli -Seura SBGS ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67564/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67577",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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:44/?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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494730,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T09:14:02.699370Z",
                    "last_modified_time": "2026-02-05T09:14:02.699386Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781900.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494730/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T09:14:02.568966Z",
            "last_modified_time": "2026-03-20T01:13:42.462785Z",
            "date_published": null,
            "start_time": "2026-03-21T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Eliökuntalaisten klubilla luvassa kipinöivää keskustelua, toislajisia näkökulmia sekä tieteen ja taiteen taitoskohtia!",
                "sv": "Eliökuntalaisten klubi bjuder in alla till Stoa för att diskutera teman kring en hållbar framtid.",
                "en": "Eliökuntalaisten klubi (Living organisms’ club) invites everyone to Stoa to discuss the themes of a sustainable future."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/2E650F698E89FF3AD3D18F556034EBE3/Eliokuntalaisten_klubi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/2E650F698E89FF3AD3D18F556034EBE3/Eliokuntalaisten_klubi",
                "en": "http://www.stoa.fi/en/events/event/2E650F698E89FF3AD3D18F556034EBE3/Eliokuntalaisten_klubi"
            },
            "description": {
                "fi": "<p>Eliökuntalaisten klubilla luvassa kipinöivää keskustelua, toislajisia näkökulmia sekä tieteen ja taiteen taitoskohtia!</p><p>Kirjailija Anni Kytömäen kirjoittaman Eliökuntalaisten manifestin inspiroimana mukana ohjelmassa ovat mm. Elonkirjon kaupunki, Eläinoikeusakatemia; Eliökollektiivi ja Uuden Jutun Kerma-Live.<br>Tapahtuman juontaa toimittaja ja kirjailija Suvi Auvinen.</p><p><b> 16:00 Ehdotuksia eliökuntalaisille</b><br>Eliökollektiivi kutsuu osallistujat havainnoimaan ympäristöä, muunlajisia eläimiä ja omaa kehoa uudella tavalla.</p><p>Itäkeskuksen kirjaston pop-up-pisteellä parhaat teemalliset poiminnat.</p><p><b> 16:30 Avaus ja manifestin esittely</b><br>Suvi Auvinen ja Anni Kytömäki</p><p><b> 16:45 Riittääkö ymmärryksen lisääminen, jos mikään ei muutu?</b><br>Tieto vs. toiminta. Miten siirrytään symposiumeista ja manifesteista käytäntöön? Mikä on kulttuurin rooli tässä siirtymässä, entä tieteen? Keskustelemassa Eläinoikeusakatemian toiminnanjohtaja Elisa Aaltola ja taiteilija, ympäristökasvattaja ja metsävaikuttaja Aino Johansson Metsäliikkeestä sekä ekologi, kasvatustieteilijä Sami Keto.</p><p><b> 17:15 Hyttysmeditaatio</b><br>Aino Juutilaisen ääniteos sellolle ja hyttysparvelle.</p><p><b> 17:30 Elonkirjon kaupunki: Luontoon mukautuva kaupunki</b><br>Tiedätkö kaupunkimetsän, jota uhkaa rakentaminen? Elonkirjon kaupunki -hanke etsii paikkoja, jotka tarvitsevat vaihtoehtokaavaa. Arkkitehti Heljä Niemisen esittelyssä Lehtivuoren vaihtoehtokaava sekä Kumpulan vaahterametsä.</p><p><b> 17:45 Miltä luonto kuulostaa?</b><br>Kirjailijat Suvi Auvinen, Anni Kytömäki ja Laura Gustafsson lukevat otteita teoksistaan.</p><p><b> 18:00–18:45 Uusi Juttu: Kerma-Live</b> <br>Onko taiteella väliä kun maailma palaa?<br>Keskustelemassa Hilla Körkkö, Oskari Onninen ja Sonja Saarikoski<br>Kerma on suuren suosion saavuttanut kulttuuriohjelma, jossa kulttuuritoimittajat ottavat toisistaan mittaa debatin muodossa. <br>Uusi Juttu on vuonna 2025 aloittanut tilauspohjainen ja riippumaton uutismedia, joka keskittyy syventäviin artikkeleihin ja kuunneltaviin sisältöihin. Uusi Juttu palkittiin Vuoden uudistajana Suuri Journalistipalkinto 2025 -gaalassa.</p><p><b> 19:00 Elsi Sloan</b></p><p>Lavalle nousee säkenöivä Elsi Sloan, jonka musiikki liikkuu elektronisen herkkyyden, kokeellisen folkin ja indiepopin välimaastossa tavalla, joka saa yleisön pidättämään hengitystään.</p><p>Elsi Sloan on artisti, jonka intensiivinen läsnäolo ja poeettinen rehellisyys pysäyttävät. Musiikin ja näyttelijäntyön lisäksi Sloan on tunnettu aktivismista. Hän on mukana Elokapinassa ja hän käsittelee musiikissaan myös ilmastonmuutoksen ja ilmastoahdistuksen teemoja.</p><p><b> Vapaa pääsy!</b></p><p>Tapahtuma liittyy kulttuuripalvelujen ympäristömanifestiin.<br>Helsingin kaupungin kulttuuripalvelukokonaisuus on Ekokompassi-sertifioitu toimija.</p><p>Lue Eliökuntalaisten manifesti:<br>https://tapahtumat.hel.fi/fi/articles/kulttuuri-ja-taide/eliokunta</p>",
                "sv": "<p>Eliökuntalaisten klubi bjuder in alla till Stoa för att diskutera teman kring en hållbar framtid.</p><p>Här utlovas olika arters perspektiv, brytpunkter mellan vetenskap och konst samt samtal om angelägna frågor. Med inspiration av Eliökuntalaisten manifesti av författaren Anni Kytömäki medverkar bland annat Elonkirjon kaupunki, Eliökollektiivi och Eläinoikeusakatemia.</p><p>På scenen ser vi den glittrande Elsi Sloan, vars musik rör sig i gränslandet mellan elektronisk känslighet, experimentell folk och indiepop på ett sätt som får publiken att hålla andan.</p><p>Elsi Sloan är en artist vars intensiva närvaro och poetiska ärlighet får en att stanna upp. Förutom musik och skådespeleri är Sloan känd för sin aktivism. Hon är med i Elokapina och tar också upp teman kring klimatförändringen och klimatångest i sin musik.</p><p>Eliökuntalaisten manifesti:<br>https://tapahtumat.hel.fi/fi/articles/kulttuuri-ja-taide/eliokunta</p>",
                "en": "<p>Eliökuntalaisten klubi (Living organisms’ club) invites everyone to Stoa to discuss the themes of a sustainable future.</p><p>The club will feature different perspectives, turning points in science and art and talks on pressing issues. The programme, inspired by the living organisms’ manifesto Eliökuntalaisten manifesti by Author Anni Kytömäki, includes Eliökollektiivi, Elonkirjon kaupunki and Eläinoikeusakatemia.</p><p>Taking to the stage is the brilliant Elsi Sloan, whose music straddles the line between electronic sensibility, experimental folk and indiepop in a way that leaves the audience breathless.</p><p>Elsi Sloan is an artist whose intense presence and poetic honesty are arresting. In addition to music and acting, Sloan is known for their activism. They are a member of Elokapina and their music also addresses the themes of climate change and climate anxiety.</p><p>Read Eliökuntalaisten manifesti:<br>https://tapahtumat.hel.fi/fi/articles/kulttuuri-ja-taide/eliokunta</p>"
            },
            "name": {
                "fi": "Eliökuntalaisten klubi",
                "sv": "Eliökuntalaisten klubi",
                "en": "Eliökuntalaisten klubi – Living organisms’ club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67577/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}