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

{
    "meta": {
        "count": 32767,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=48&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=46&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "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:68018",
            "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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api"
            },
            "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": 1494623,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T10:12:52.738248Z",
                    "last_modified_time": "2026-01-26T10:12:52.738261Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777681.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494623/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T10:12:52.624218Z",
            "last_modified_time": "2026-03-20T01:13:43.710158Z",
            "date_published": null,
            "start_time": "2026-03-23T14:00:00Z",
            "end_time": "2026-03-23T16: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": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.",
                "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.",
                "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/38C2A2DD1AFD03C4B8BBBD2C7D8FCB4D/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/38C2A2DD1AFD03C4B8BBBD2C7D8FCB4D/Eftermiddagar_planerade_av_unga",
                "en": "http://www.vuotalo.fi/en/events/event/38C2A2DD1AFD03C4B8BBBD2C7D8FCB4D/Afternoons_planned_by_young_people"
            },
            "description": {
                "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>",
                "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>",
                "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>"
            },
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi",
                "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi",
                "en": "Afternoons planned by young people – Operation Pulse!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68018/?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"
        },
        {
            "id": "kulke:67958",
            "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-21098312/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098312/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098312/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T14:13:01.677370Z",
                    "last_modified_time": "2026-01-09T14:13:01.677382Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779145.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494437/?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.587942Z",
            "last_modified_time": "2026-03-20T01:13:42.322357Z",
            "date_published": null,
            "start_time": "2026-03-21T13: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ä!",
                "sv": "Ett interaktivt dansverk om vattnets budskap!",
                "en": "Interactive dance performance about the world of water!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Veden_kuiskaus_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Vattnet_viskar_",
                "en": "http://www.vuotalo.fi/en/events/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Waters_Whisper"
            },
            "description": {
                "fi": "<p>Interaktiivinen tanssiteos veden viesteistä!</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: suomi / ruotsi / englanti</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!</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!</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. 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.</p><p>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: Finnish / Swedish / English<br>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "name": {
                "fi": "Ama Kyei: Veden kuiskaus – Bravo!-festivaali",
                "sv": "Ama Kyei: Vattnet viskar – Bravo!-festivalen",
                "en": "Ama Kyei: Waters Whisper – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67958/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67383",
            "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-operaatio-majava-malmitalo-21375690/",
                        "sv": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375690/",
                        "en": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375690/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1509284,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T12:13:12.292191Z",
                    "last_modified_time": "2026-03-03T12:13:12.292204Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781067.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509284/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T12:13:12.170470Z",
            "last_modified_time": "2026-03-20T01:13:42.197679Z",
            "date_published": null,
            "start_time": "2026-03-21T13: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": "Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B4841722811ED0FE31593135BE7D7BE2/Operaatio_Majava_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B4841722811ED0FE31593135BE7D7BE2/Operaatio_Majava_7_",
                "en": "http://www.malmitalo.fi/en/events/event/B4841722811ED0FE31593135BE7D7BE2/Operaatio_Majava_7_"
            },
            "description": {
                "fi": "<p>Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa.</p><p>Mullistavan teknologian avulla Mabel saa selville eläinmaailman arvoituksia, joita ei olisi voinut kuvitellakaan.</p><p>Majavalan pormestarinvaaleissa uudelleenvalintaa tavoitteleva poliitikko Jerryn moitteettomasti muotoillun kuontalon alla on yhtä sliipatulla julkikuvalla varustettu persoona, jolta palaa hermo, kun vastaan asettuu ainoa asia, joka ei ole hänen hallittavissaan: Mabel.</p><p>Elokuvan on ohjannut Daniel Chong (We Bare Bears), tuottanut Nicole Paradis Grindle (Ihmeperhe 2) ja musiikista vastaa elokuvasäveltäjä Mark Mothersbaugh (Thor: Ragnarök).</p><p>Ikäraja: 7<br>Kesto: 104 min<br>Ensi-ilta: 6.3.2026<br>Elokuva on puhuttu suomeksi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Operaatio Majava (7) – Kino Helios",
                "sv": "Operaatio Majava (7) – Kino Helios",
                "en": "Operaatio Majava (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67383/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68132",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:51/?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:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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": 1494902,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-19T10:12:55.229224Z",
                    "last_modified_time": "2026-02-19T10:12:55.229244Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785627.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494902/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-19T10:12:55.142521Z",
            "last_modified_time": "2026-03-20T01:13:42.078728Z",
            "date_published": null,
            "start_time": "2026-03-21T11:00:00Z",
            "end_time": "2026-03-21T13: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": "Satu ja Maima Tanin merellinen installaatio jossa yleisö pääsee tutustumaan mm. “varvaskieltä” puhuvaan Merivuokkoon."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/382055E6CC0F1515B8D4370BF0ADF422/Taiteilijaresidenssi_Bravo_Festivaalilla",
                "sv": "http://www.caisa.fi/sv/evenemang/event/382055E6CC0F1515B8D4370BF0ADF422/Taiteilijaresidenssi_Bravo_Festivaalilla",
                "en": "http://www.caisa.fi/en/events/event/382055E6CC0F1515B8D4370BF0ADF422/Taiteilijaresidenssi_Bravo_Festivaalilla"
            },
            "description": {
                "fi": "<p>Satu ja Maima Tanin merellinen installaatio jossa yleisö pääsee tutustumaan mm. “varvaskieltä” puhuvaan Merivuokkoon.</p><p>Bravo!-festivaali järjestetään pääkaupunkiseudulla. Festivaali keskittyy pohjoismais-baltialaiseen esittävään taiteeseen lapsille ja nuorille.</p><p>Residenssissä työskentelevät taiteilijat Satu Tani ja Maima Tani. Residenssissä he kehittävät lapsille ja nuorille suunnatun esittävän taiteen muotoja omassa työssään. Yleisöllä on mahdollisuus kurkistaa residenssiin kahdessa  Avoimet ovet tuokiossa.</p><p>Satu ja Maima Tani ovat sisaruksia ja taiteilijatyöpari. Satu työskentelee eri rooleissa tuetun taiteen kentällä ja hänellä on kuvataiteen ylempi AMK-tutkinto. Maima on Invalidiopistolta valmistunut kulta-alan artesaani ja tehnyt kuvataidetta lapsesta saakka. Kun Maima ei ole virkkaamassa jättiläismeduusoja tai piirtämässä äärimmäisen tarkkoja teoksiaan, hän tekee Satun kanssa muun muassa performanssitaidetta ja lyhytelokuvia. Yhdessä Tanit tutkivat taidetta, kommunikaatiota ja erilaisia maailmassa olemisen moodeja. Molemmat kuuluvat neurovähemmistöön ja työskentelevät Helsingissä. <br> <br>Residenssi toteutetaan osana kansainvälistä Shifting the Stage -hanketta<br> <br>Suomen Assitejn tuottama Bravo!-festivaali, Ruotsin Assitejn ja Teatercentrumin omistama bibu-festivaali, Imaginate Edinburgh International Theatre Festival sekä norjalainen Showbox-festivaali ovat käynnistäneet yhteisen hankkeen, jossa festivaalit sitoutuvat tarjoamaan esiintymismahdollisuuksia ja tukemaan vammaisten ja vähemmistössä olevien taiteilijoiden taiteellista työskentelyä.</p><p>Hankkeessa tarjotaan rahallista tukea, residenssitiloja, ammatillista ohjausta sekä verkostoitumismahdollisuuksia hankkeessa mukana oleville taiteilijoille.</p><p>Sopii kaiken ikäisille</p><p>Vapaa pääsy!</p><p>Lue lisää Taneista:<br>https://satutani.pb.gallery/tanitani<br> <br>Lue lisää Shifting the Stage -hankkeesta:<br>https://www.imaginate.org.uk/artists/projects/shifting-the-stage/<br> <br>Lue lisää Shifting the Stage -hankkeen laboratoriosta Skotlannissa:<br>https://www.imaginate.org.uk/artists/projects/shifting-the-stage-lab/</p>"
            },
            "name": {
                "fi": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet",
                "sv": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet",
                "en": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68132/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67969",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@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": 1494460,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T08:13:37.437194Z",
                    "last_modified_time": "2026-01-13T08:13:37.437211Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779147.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494460/?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-13T08:13:37.342953Z",
            "last_modified_time": "2026-03-20T01:13:41.975664Z",
            "date_published": null,
            "start_time": "2026-03-21T10:00:00Z",
            "end_time": "2026-03-21T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule leikkimään kevät esiin!",
                "sv": "Kom och lek fram våren!",
                "en": "Come play with us to bring out the spring!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/ED6D4F88DA6510326FAF837F10EB58A8/Ilmiomaiset_kevatkarkelot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/ED6D4F88DA6510326FAF837F10EB58A8/Fenomenala_varlekar",
                "en": "http://www.vuotalo.fi/en/events/event/ED6D4F88DA6510326FAF837F10EB58A8/Phenomenal_Spring_Fest"
            },
            "description": {
                "fi": "<p>Tule leikkimään kevät esiin!</p><p>Kevät puhkeaa kukkaan! Ilmiömäiset kevätkarkelot kutsuvat koko perheen viettämään päivää täynnä iloa, luovuutta ja yhteistä tekemistä.</p><p>Ohjelmassa on mm.<br>•\tTeatterileikkejä ja improvisaatiota: heittäydy mukaan ja päästä mielikuvitus valloilleen. <br>•\tKevättansseja ja pieniä esityksiä: nauti rytmistä, musiikista sekä Teatterikoulu ILMI Ö:n oppilaiden teatteriesityksistä.<br>•\tYhteisötaideteos \"Kevään kudelma\": luodaan yhdessä taideteos väreistä ja kevätmuistoista. <br>•\tKevääseen ja pääsiäiseen sopivaa askartelua koko perheelle!<br>Luvassa iloa, raikkaita yllätyksiä ja mukavia keväthetkiä. Tule sellaisena kuin olet ja tehdään tästä kevään hauskin päivä!</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Kom och lek fram våren!</p><p>Våren slår ut i blom! Fenomenala vårlekar bjuder in hela familjen till en dag fylld av glädje, kreativitet och gemensamma aktiviteter.</p><p>I programmet ingår bland annat<br>•\tTeaterlekar och improvisation: kasta dig in i leken och låt fantasin flöda. <br>•\tVårdans och små föreställningar: njut av rytm, musik och teaterföreställningar av Teatterikoulu ILMI Ö:s elever.<br>•\tSamhällskonstverket ”Kevään kudelma” (vårens väv): vi skapar tillsammans ett konstverk av färger och vårminnen. <br>•\tVår- och påskpyssel för hela familjen!</p><p>Här utlovas glädje, fräscha överraskningar och trevliga vårstunder. Kom som du är, vi gör dagen till vårens roligaste dag!</p><p>Fritt inträde</p>",
                "en": "<p>Come play with us to bring out the spring!</p><p>Spring is blooming! Phenomenal Spring Fest invites the whole family to spend a day full of fun, creativity and shared activities.</p><p>The programme includes activities such as:<br>•\tTheatre games and improvisation: immerse yourself in the games and let your imagination run wild. <br>•\tSpring dances and small performances: enjoy rhythm, music and theatre performances by students of Theatre School ILMI Ö.<br>•\tCommunity artwork Kevään kudelma (‘Spring Tapestry’): we will create an artwork together, featuring colours and memories of spring. <br>•\tSpring and Easter-themed arts and crafts for the whole family!</p><p>We will have fun, fresh surprises and pleasant spring moments. Come as you are, and let us make this the most fun day of the spring!</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Ilmiömäiset kevätkarkelot",
                "sv": "Fenomenala vårlekar",
                "en": "Phenomenal Spring Fest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67969/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67499",
            "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:30/?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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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": 1494174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-10T12:13:27.641592Z",
                    "last_modified_time": "2025-12-10T12:13:27.641607Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781606.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494174/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-10T12:13:27.550583Z",
            "last_modified_time": "2026-03-20T01:13:41.870256Z",
            "date_published": null,
            "start_time": "2026-03-21T09:00:00Z",
            "end_time": "2026-03-21T12: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": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0A69CF3E4C62E3C642C84F140B53111B/Annantalon_taidelauantai_Fragmentit_framille",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0A69CF3E4C62E3C642C84F140B53111B/Annegardens_konstlordagar_Fram_med_fragmenten",
                "en": "http://www.annantalo.fi/en/events/event/0A69CF3E4C62E3C642C84F140B53111B/Annantalo_Art_Saturdays_Fragments_to_the_front"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b><br>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?<br>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Fragmentit framille",
                "sv": "Annegårdens konstlördagar: Fram med fragmenten",
                "en": "Annantalo Art Saturdays: Fragments to the front"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67499/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68109",
            "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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 1494854,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-12T13:13:58.901953Z",
                    "last_modified_time": "2026-02-12T13:13:58.901969Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785293.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494854/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-12T13:13:58.766298Z",
            "last_modified_time": "2026-03-20T01:13:41.761442Z",
            "date_published": null,
            "start_time": "2026-03-21",
            "end_time": "2026-04-11",
            "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/C83A9980DD6DCEFCFF7FC051EE121BC1/Kevaan_korvilla",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C83A9980DD6DCEFCFF7FC051EE121BC1/Kevaan_korvilla",
                "en": "http://www.vuotalo.fi/en/events/event/C83A9980DD6DCEFCFF7FC051EE121BC1/Kevaan_korvilla"
            },
            "description": {
                "fi": "<p>Tule kokemaan Helsingin työväenopiston kuvataideryhmien värikäs kevätnäyttely Vuotalon toisessa kerroksessa 21.3.–11.4.2026. Esillä laaja kattaus opiskelijatöitä keramiikka-, piirustus-, maalaus-, ja sarjakuvakursseilta. Näyttely löytyy 2. kerroksen vitriineistä.</p><p>Lämpimästi tervetuloa!</p><p>Tutustu Työväenopistoon ja monipuoliseen kurssitarjontaan osoitteessa tyovaenopisto.hel.fi!</p>"
            },
            "name": {
                "fi": "Kevään korvilla – Kuvataiteen kevätnäyttely",
                "sv": "Kevään korvilla",
                "en": "Kevään korvilla"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68109/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}