Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 21742,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=22",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=20"
    },
    "data": [
        {
            "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"
        },
        {
            "id": "kulke:67838",
            "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/event/name-21102602",
                        "sv": "https://www.lippu.fi/event/name-21102602",
                        "en": "https://www.lippu.fi/event/name-21102602"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,90 €",
                        "sv": "29,90 €",
                        "en": "29,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494251,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-18T12:13:51.487826Z",
                    "last_modified_time": "2025-12-18T12:13:51.487840Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783075.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494251/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-17T11:13:45.202294Z",
            "last_modified_time": "2026-03-20T01:13:41.614609Z",
            "date_published": null,
            "start_time": "2026-03-20T17: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": "Pop-lahjakkuus HUGO albumikiertueelle - mukana KAUKUA",
                "sv": "HUGO, en poptalang i den yngre generationen som välförtjänt Emma-nominerades som årets nykomling i år och som nu jobbar med sitt andra album, beger sig ut på en stor vårturné runt om i Finland. Turnén börjar i Helsingfors i mars och avslutas i Kouvola i slutet av april.",
                "en": "HUGO, the new-generation pop talent who earned a ‘Newcomer of the Year’ Emma nomination this year and is currently working on his second album, will embark on an extensive spring tour around Finland this spring. The tour will start in March in Helsinki and end in Kouvola at the end of April."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E9D382256710529546419356EF57F605/HUGO",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/E9D382256710529546419356EF57F605/HUGO",
                "en": "http://www.savoyteatteri.fi/en/events/event/E9D382256710529546419356EF57F605/HUGO"
            },
            "description": {
                "fi": "<p>Pop-lahjakkuus HUGO albumikiertueelle - mukana KAUKUA</p><p>Vuoden tulokas Emma-ehdokkuuden viime vuonna ansainnut ja maaliskuussa toisen albuminsa julkaiseva nuoren sukupolven pop-lahjakkuus HUGO lähtee keväällä laajalle albumikiertueelle ympäri Suomen. Kiertue alkaa maaliskuussa Helsingistä ja päättyy huhtikuun lopussa Kouvolaan. Kiertueen keikkojen avaajana nähdään tämän hetken kiinnostavimpiin pop-tulokkaisiin lukeutuva KAUKUA, jonka menestyshitti 10 000 tuntii oli yksi viime vuoden soitetuimmista radiokappaleista.  <br> <br>HUGOn live-esiintymiset ovat poikkeuksellisen energisiä ja viihdyttäviä. Artistin lavakarisma puree niin nuorempaan kuin vanhempaankin yleisöön ja keikoilla päästään heittäytymään sekä valtaisaan yhteislauluun että hiljentymään herkempienkin tulkintojen äärelle. Erityisen tulevasta kevätkiertueesta tekee se, että jokaisella keikalla on Meet & Greet -mahdollisuus artistin kanssa sekä myynnissä uusia merchandise-tuotteita. <br> <br>HUGOn vuonna 2024 julkaistu debyyttialbumi Kehykset on striimannut lähes triplaplatinaa ja artistin hittibiisejä, kuten viisinkertaista platinaa striimannut Taulut feat. Costi ja AHTIn kanssa julkaistu, yli triplaplatinaa striimannut yhteiskappale Väärään aikaan, on soitettu laajasti radioissa. Lisäksi HUGO valittiin YleX:n vuoden 2025 kesäkumiartistiksi kappaleellaan Väärään ihmiseen. Artisti on viimeisen vuoden aikana julkaissut myös useita biisejä muiden artistien kanssa, kuten Sekunnis feat. Sexmane ja Kellon suuntaa feat. JVG.  <br> <br>Ikärajaton konsertti <br>Kesto n. 90 min <br>Konsertin jälkeen Meet & Greet</p>",
                "sv": "<p>HUGO, en poptalang i den yngre generationen som välförtjänt Emma-nominerades som årets nykomling i år och som nu jobbar med sitt andra album, beger sig ut på en stor vårturné runt om i Finland. Turnén börjar i Helsingfors i mars och avslutas i Kouvola i slutet av april.</p><p>HUGOs liveframträdanden är exceptionellt energiska och underhållande. Artistens scenkarisma biter på både den yngre och den äldre publiken, och under spelningarna får man både ge sig hän åt allsång och stilla sig inför känsligare tolkningar. Det speciella med den kommande vårturnén är att varje konsert bjuder på möjlighet till Meet & Greet med artisten, och att nya merchandise-produkter finns till försäljning.</p><p>HUGOs debutalbum Kehykset släpptes i fjol och har strömmat nästan trippel platina, och hans hitlåtar, som Taulut feat. Costi, som strömmat femdubbel platina, och Väärään aikaan, som är ett samarbete med AHTI och har strömmat mer än trippel platina, har spelats mycket i radion. HUGO valdes också till YleX sommargummiartist 2025 med sin låt Väärään ihmiseen. Under det senaste året har han också släppt flera låtar tillsammans med andra artister, som Sekunnis feat. Sexmane och Kellon suuntaa feat. JVG. HUGOs senaste låt Jos ei oo meit släpptes i december och fick ett mycket fint mottagande. Den hamnade på Spotifys top 10-lista över mest lyssnade låtar.</p><p>Åldersgräns: Tillåten för alla åldrar<br>Längd: cirka 90 min.</p>",
                "en": "<p>HUGO, the new-generation pop talent who earned a ‘Newcomer of the Year’ Emma nomination this year and is currently working on his second album, will embark on an extensive spring tour around Finland this spring. The tour will start in March in Helsinki and end in Kouvola at the end of April.</p><p>HUGO’s live performances are exceptionally energetic and entertaining. The artist’s on-stage charisma charms both younger and older crowds, and his audiences get to indulge in huge group sing-alongs as well as more delicate interpretations. What makes the upcoming spring tour special is that every show will feature a ‘Meet & Greet’ event with the artist and new merchandise for sale.</p><p>HUGO’s debut album Kehykset, released last year, has gone almost triple platinum in streams, and the artist’s hit songs, such as the quintuple platinum Taulut feat. Costi and Väärään aikaan, released with AHTI, has been widely played on the radio and gone triple platinum in streams. HUGO was also chosen as YleX’s kesäkumi (‘Summer Rubber’ condom campaign) artist for 2025 with his song Väärään ihmiseen. The artist also released several songs with other artists last year, such as Sekunnis feat. Sexmane and Kellon suuntaa feat. JVG. HUGO’s latest release, Jos ei oo meit, was released in December to an excellent reception, becoming one of Spotify’s Top 10 most listened to songs after its release.</p><p>Age rating: suitable for all ages<br>Duration: roughly 90 min</p>"
            },
            "name": {
                "fi": "HUGO",
                "sv": "HUGO",
                "en": "HUGO"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Lada Productions Oy",
                "sv": "Lada Productions Oy",
                "en": "Lada Productions Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67838/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67490",
            "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/event/puhelinlangat-laulaa-musiikkinaeytelmae-malmitalo-20915292/",
                        "sv": "https://www.lippu.fi/event/puhelinlangat-laulaa-musiikkinaeytelmae-malmitalo-20915292/",
                        "en": "https://www.lippu.fi/event/puhelinlangat-laulaa-musiikkinaeytelmae-malmitalo-20915292/"
                    },
                    "description": null,
                    "price": {
                        "fi": "40,90€/38,90€",
                        "sv": "40,90€/38,90€",
                        "en": "40,90€/38,90€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494065,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:53.282659Z",
                    "last_modified_time": "2025-12-04T12:12:53.282678Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781548.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494065/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:53.212795Z",
            "last_modified_time": "2026-03-20T01:13:41.500133Z",
            "date_published": null,
            "start_time": "2026-03-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Eräänä päivänä itse Katri Helena on tulossa synnyinpitäjäänsä Tohmajärvelle.",
                "sv": "En dag är självaste Katri Helena på väg till sin födelseort Tohmajärvi.",
                "en": "One day, Katri Helena herself is on her way to her birthplace, Tohmajärvi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B4DA26127EE595CBAB6F539F55B42112/Puhelinlangat_laulaa_Musiikkinaytelma",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B4DA26127EE595CBAB6F539F55B42112/Puhelinlangat_laulaa-musikal",
                "en": "http://www.malmitalo.fi/en/events/event/B4DA26127EE595CBAB6F539F55B42112/Puhelinlangat_laulaa_Musical_play"
            },
            "description": {
                "fi": "<p>Eräänä päivänä itse Katri Helena on tulossa synnyinpitäjäänsä Tohmajärvelle.</p><p>Katri Helenalle on päätetty nimetä katu hänen elämäntyönsä kunniaksi. Matkalla Katri Helena poikkeaa pikaisesti paikallisessa Unionin huoltamossa. Alkaa tapahtumasarja, jossa Katri Helenan ikivihreät suosikkilaulut ja elämänsä koskettavimmat kohdat siivittävät juonenkäänteitä. Samaan aikaan paikallisen huoltamon tapahtumat hämmentävät soppaa niin, että syntyy nauruhermoja kutkuttava<br>ikimuistoinen nenäliinatkin esiin kutsuva farssikomediallinen tanssi, josta riittää muisteltavaa vielä pitkään!</p><p>Musiikkinäytelmässä saamme nauttia upeista Katri-Helenan levyttämistä lauluista muun muassa Kesän lapsi, Kai laulaa saan, Mun sydämeni tänne<br>jää, Katson autiota hiekkarantaa, Anna mulle tähtitaivas, Minne tuuli kuljettaa ym.</p><p>ROOLEISSA: Susanna Heikki, Teijo Lindström, Kalle Jussila, Katja Karisukki<br>MUSIIKISSA: Quattro-orkesteri<br>KÄSIKIRJOITUS: Katja Karisukki<br>OHJAUS: Tuomo Salmela<br>TUOTANTO: Viihdeohjelmat</p><p>Kesto: 2 t, sis. 30 min väliajan</p>",
                "sv": "<p>En dag är självaste Katri Helena på väg till sin födelseort Tohmajärvi.</p><p>Det har beslutats att en gata ska namnges efter Katri Helena för att hedra hennes livsverk. På vägen sticker sig Katri Helena snabbt in till  den lokala Union-servicestationen. En händelseserie börjar, där Katri Helenas evergreena favoritsånger och de mest berörande skedena i hennes liv sätter sprätt på intrigen. Samtidigt förvirrar händelserna på den lokala servicestationen det hela så att det uppstår en farskomisk dans som retar skrattnerverna och <br>som även kallar fram näsdukarna, och som man kommer ihåg ännu länge!</p><p>I musikalen får vi njuta av fantastiska sånger som Katri Helena spelat in  , bland annat Kesän lapsi, Kai laulaa saan, Mun sydämeni tänne <br>jää, Katson autiota hiekkarantaa, Anna mulle tähtitaivas, Minne tuuli kuljettaa etc.</p><p>I ROLLERNA: Susanna Heikki, Teijo Lindström, Kalle Jussila, Katja Karisukki <br>MUSIK: Orkestern Quattro <br>MANUS: Katja Karisukki <br>REGI: Tuomo Salmela <br>PRODUKTION: Viihdeohjelmat Oy</p><p>Längd: 2 h, inklusive en paus på 30 min.</p>",
                "en": "<p>One day, Katri Helena herself is on her way to her birthplace, Tohmajärvi.</p><p>The town has decided to name a street after Katri Helena in honour of her life's work. On her way, Katri Helena makes a quick stop at the local Union service station. This kickstarts a series of events where most popular evergreen hits by Katri Helena and the most touching moments of her life spice up the storylines. Meanwhile, the events at the local service station put their own interesting twist in the situation, leading to a hilarious <br>and unforgettable farcical comedy dance that will make you pull out your handkerchief  and will stay with you for a long time!</p><p>The musical play lets the audience enjoy some wonderful songs recorded by Katri-Helena,  including Kesän lapsi, Kai laulaa saan, Mun sydämeni tänne <br>jää, Katson autiota hiekkarantaa, Anna mulle tähtitaivas, Minne tuuli kuljettaa, and many more.</p><p>STARRING: Susanna Heikki, Teijo Lindström, Kalle Jussila, Katja Karisukki <br>MUSIC BY: Quattro orchestra <br>SCRIPT: Katja Karisukki <br>DIRECTED BY: Tuomo Salmela <br>PRODUCTION: Viihdeohjelmat</p><p>Duration: 2 h, incl. a 30-min intermission</p>"
            },
            "name": {
                "fi": "Puhelinlangat laulaa – Musiikkinäytelmä",
                "sv": "Puhelinlangat laulaa-musikal",
                "en": "Puhelinlangat laulaa – Musical play"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67490/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67603",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:734/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494083,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:59.794900Z",
                    "last_modified_time": "2025-12-04T13:12:59.794920Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782014.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494083/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-04T13:12:59.701404Z",
            "last_modified_time": "2026-03-20T01:13:41.311299Z",
            "date_published": null,
            "start_time": "2026-03-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.",
                "sv": "Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.",
                "en": "Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi",
                "en": "http://www.kanneltalo.fi/en/events/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi"
            },
            "description": {
                "fi": "<p>Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.</p><p>Mikko Hassinen Future Food Factory -yhtyeestä tutut muusikot, saksofonisti ja puupuhallinsoittaja Max Zenger sekä kontrabasisti Antti Ahoniemi, esittävät yhtyeen akustista ja hengittävää musiikkia. Sävellykset ovat Teosto-palkitun lyömäsoittajan Mikko Hassisen käsialaa ja kuvaavat hänen monimuotoista luontosuhdettaan. Tämän lisäksi kuullaan Zengerin ja Ahoniemen toisen yhtyeen, Jazzup!:in, niin ikään luonnon inspiroimia kappaleita.</p><p>Max Zenger on yksi maamme kysytyimmistä jazzmuusikoista. Omien yhtyeidensä lisäksi hän kuuluu UMO Helsinki Jazz Orchestran vakituiseen kokoonpanoon, toimii Porvoo Jazz Festivalin taiteellisena johtajana sekä pyörittää Flame Jazz Records -levy-yhtiötä. Antti Ahoniemi on puolestaan aktiivinen ja monipuolinen freelancemuusikko, joka on nuoresta iästään huolimatta ehtinyt esiintyä monien suomalaisen jazzin huippunimien, kuten Jukka Eskolan ja Timo Lassyn, kanssa sekä muun muassa Saimaa-yhtyeessä.</p><p>Tilaisuuden kesto on 45 min. Yhtye esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikoita ja soittimia.</p><p>Max Zenger – alttosaksofoni <br>Antti Ahoniemi – kontrabasso</p><p>Jazz for Kids on korkeatasoisten jazzkonserttien sarja, johon ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä äänenvoimakkuudella kulttuurikeskusten helposti saavutettavissa aulatiloissa.<br>Suomen Jazzliiton ja Helsingin kulttuurikeskusten Jazz for Kids -toimintamalli pohjautuu samannimiseen konserttisarjaan, jota on järjestetty Espoon kulttuurikeskuksessa vuodesta 2015 yhteistyössä Espoon musiikkiopiston pop/jazzlinja Ebelin kanssa. Konseptin kehittäjä on Espoon musiikkiopiston pop/jazzlinja Ebeli.</p><p>Vuonna 2026 tulee kuluneeksi 100 vuotta siitä, kun jazz symbolisesti rantautui Andania-laivan mukana Suomeen. Vuosi on siten historiallinen kotimaisen jazzin juhlavuosi: Jazz Suomi 100 -juhlavuosi. Juhlavuosi nostaa esiin kotimaista jazzia ja sen tekijöitä niin Suomessa kuin ulkomailla, ja juhlii jazzia osana suomalaista kulttuuriperintöä. Jazz Suomi 100 -kampanjaa koordinoi Suomen Jazzliitto.</p><p>Kesto 45 min<br>Vapaa pääsy<br>Paikka: Kahvilan stage</p>",
                "sv": "<p>Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.</p><p>Musiker kända från gruppen Mikko Hassinen Future Food Factory, saxofonisten och träblåsinstrumentmusikern Max Zenger samt kontrabasisten Antti Ahoniemi, framför bandets akustiska och levande musik. Tonsättningarna är av den Teosto-belönade slagverkaren Mikko Hassinen och beskriver hans mångsidiga relation till naturen. Dessutom får vi höra låtar av Zengers och Ahoniemis andra band, Jazzup!, som också är inspirerade av naturen.<br>Max Zenger är en av Finlands mest efterfrågade jazzmusiker. Utöver sina egna grupper hör han till UMO Helsinki Jazz Orchestras permanenta sammansättning, är konstnärlig ledare för Porvoo Jazz Festival och driver skivbolaget Flame Jazz Records. Antti Ahoniemi är en aktiv och mångsidig frilansmusiker som trots sin unga ålder har uppträtt med många av den finska jazzens toppnamn, som Jukka Eskola och Timo Lassy, och bland annat i gruppen Saimaa.<br>Evenemanget varar i 45 minuter. Bandet spelar i ca 35 minuter, varefter publiken kan hälsa på musikerna och instrumenten.<br>Max Zenger – altsaxofon <br>Antti Ahoniemi – kontrabas<br>Jazz for Kids är en serie jazzkonserter på hög nivå där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga lobbyutrymmen.</p><p>Suomen Jazzliittos och Helsingfors kulturcenters verksamhetsmodell Jazz for Kids baserar sig på en konsertserie med samma namn som har ordnats på kulturcentren i Esbo sedan 2015 i samarbete med pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto. Konceptet har utvecklats av pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto.</p><p>År 2026 blir det 100 år sedan jazzen symboliskt landsteg i Finland med fartyget Andania. Året är alltså ett historiskt jubileumsår för den inhemska jazzen: Jubileumsåret Jazz Finland 100. Under jubileumsåret lyfter vi fram den finländska jazzen och dess artister både i Finland och utomlands samt firar jazzen som en del av det finländska kulturarvet. Kampanjen Jazz Suomi 100 samordnas av Suomen Jazzliitto.</p><p>Längd 45 min.<br>Fritt inträde<br>Plats: Café Stage</p>",
                "en": "<p>Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby.</p><p>Musicians familiar from Mikko Hassinen Future Food Factory, saxophonist and woodwind player Max Zenger and double bassist Antti Ahoniemi, will perform the band's acoustic and breathy music. The compositions are by Teosto-award-winning percussionist Mikko Hassinen and reflect his diverse relationship with nature. In addition to this, there will be songs inspired by nature by Zenger and Ahoniemi's other band, Jazzup!.<br>Max Zenger is one of the most sought-after jazz musicians in the country. In addition to his own ensembles, he is a permanent member of the UMO Helsinki Jazz Orchestra, artistic director of the Porvoo Jazz Festival and runs the Flame Jazz Records label. Antti Ahoniemi is an active and versatile freelance musician who, despite his young age, has performed with many of the top names in Finnish jazz, such as Jukka Eskola and Timo Lassy, and in Saimaa, among others.<br>The duration of the event is 45 minutes. The band will perform for about 35 minutes, after which the audience can greet the musicians and see the instruments.<br>Max Zenger – alto saxophone <br>Antti Ahoniemi – double bass<br>Jazz for Kids is a series of high-quality jazz concerts for everyone from babies to grandchildren! Professional musicians perform their work at child-friendly volumes in easily accessible lobbies in cultural centres.</p><p>The Jazz for Kids operating model of the Finnish Jazz Federation and City of Helsinki Cultural Centres is based on the concert series of the same name, which has been organised at the Espoo Cultural Centre since 2015 in cooperation with Espoo Music Institute's pop/jazz line Ebeli. The concept was developed by Ebeli, the pop/jazz line at Espoo Music Institute.</p><p>In 2026, it will be 100 years since jazz symbolically landed in Finland on the Andania ship. The year is, thus, a historic celebration of Finnish jazz: Jazz in Finland 100 centenary. The centenary will highlight Finnish jazz and its artists both in Finland and abroad, and celebrate jazz as part of the Finnish cultural heritage. The Jazz in Finland 100 campaign is coordinated by the Finnish Jazz Federation.</p><p>Duration 45 min<br>Free entry<br>Location: Café stage</p>"
            },
            "name": {
                "fi": "Jazz for Kids: Max Zenger & Antti Ahoniemi",
                "sv": "Jazz for Kids: Max Zenger & Antti Ahoniemi",
                "en": "Jazz for Kids: Max Zenger & Antti Ahoniemi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67603/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67382",
            "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-marty-supreme-unelmoi-isosti-malmitalo-21375685/",
                        "sv": "https://www.lippu.fi/event/kino-helios-marty-supreme-unelmoi-isosti-malmitalo-21375685/",
                        "en": "https://www.lippu.fi/event/kino-helios-marty-supreme-unelmoi-isosti-malmitalo-21375685/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1507858,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T09:15:52.187300Z",
                    "last_modified_time": "2026-03-03T09:15:52.187318Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781065.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1507858/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T09:15:52.094950Z",
            "last_modified_time": "2026-03-20T01:13:41.169985Z",
            "date_published": null,
            "start_time": "2026-03-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/675189DC1F07AA53FFEBFF72926273BC/Marty_Supreme_unelmoi_isosti_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/675189DC1F07AA53FFEBFF72926273BC/Marty_Supreme_unelmoi_isosti_12_",
                "en": "http://www.malmitalo.fi/en/events/event/675189DC1F07AA53FFEBFF72926273BC/Marty_Supreme_unelmoi_isosti_12_"
            },
            "description": {
                "fi": "<p>Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi.</p><p>Josh Safdien ohjaama MARTY SUPREME – UNELMOI ISOSTI elokuvateattereissa 23.1.2026. Pääosissa Timothée Chalamet, Gwyneth Paltrow, Kevin O'Leary, Odessa A’Zion, Abel Ferrara ja Tyler Okonma.</p><p>Ikäraja: 12<br>Kesto: 149 min<br>Ensi-ilta: 23.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>"
            },
            "name": {
                "fi": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "sv": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "en": "Marty Supreme – unelmoi isosti (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67382/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68190",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p39924/?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": 1586925,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T10:13:00.166799Z",
                    "last_modified_time": "2026-03-10T10:13:00.166812Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786124.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586925/?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-03-10T10:13:00.036095Z",
            "last_modified_time": "2026-03-20T01:13:40.994705Z",
            "date_published": null,
            "start_time": "2026-03-20T14:00:00Z",
            "end_time": "2026-03-20T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan kevään saapumista ja Nowruz-juhlaa Stoaan! Juhlaa vietetään musiikin, tiedon ja yhteisen tekemisen merkeissä.",
                "sv": "Välkommen att fira vårens ankomst och Nowruz på Stoa! Festen firas med musik, information och gemensamma aktiviteter.",
                "en": "Join us in celebrating the arrival of spring and Nowruz at Stoa! The event will feature music, information and shared activities."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_kevaan_juhla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_varens_fest",
                "en": "http://www.stoa.fi/en/events/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_celebrating_spring"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan kevään saapumista ja Nowruz-juhlaa Stoaan! Juhlaa vietetään musiikin, tiedon ja yhteisen tekemisen merkeissä.</p><p>Nowruz on kevätpäiväntasauksen juhla ja iranilaisen kalenterin uusivuosi. Sitä on juhlittu yli 3000 vuoden ajan Iranissa sekä laajasti Keski-Aasiassa, Kaukasuksella, Mustanmeren alueella ja kurdien keskuudessa.</p><p><b>Klo 16–17.45 Luova askartelupaja aulassa</b><br>Lapsiperheiden askartelupajassa tehdään kevätaiheinen postikortti Nowruzin symboleista inspiroituen. Työpaja kutsuu osallistujat pohtimaan kevään, luonnon ja uuden alun teemoja rennon tekemisen kautta. Työpajan ohjaa Sadaf Yazdizadeh. <br> <br><b>Klo 16–17 Tutkija Jonas Maristo kirjastossa</b><br>Suomalainen tutkija Jonas Maristo pitää luennon Nowruzin historiasta. Luento esittelee juhlan pitkää historiaa, zarathustralaisia juuria, perinteistä juhlapöytää (sofre-ye haft sin) sekä Nowruzin viettoa eri puolilla maailmaa.<br> <br><b>Klo 18–19 Road Ensemble aulassa</b><br>Illan päättää Road Ensemble, joka yhdistelee iranilaiskansojen, kurdien ja afgaanien kansanmusiikkia. Yhtyeessä soittavat Fardin Abbasi (perkussiot, laulu), Sheida Sanati (bass tar / moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santour, laulu, taiteellinen johtaja) sekä Mehrab (dombyra, laulu).<br> <br>Tilaisuus on maksuton ja avoin kaikille.</p>",
                "sv": "<p>Välkommen att fira vårens ankomst och Nowruz på Stoa! Festen firas med musik, information och gemensamma aktiviteter.</p><p>Nowruz är vårdagjämningens fest och den iranska kalenderns nyår. Den har firats i över 3 000 år i Iran och i stora delar av Centralasien, Kaukasus och Svartahavsregionen samt bland kurderna.</p><p><b>Kl. 16–17.45 Kreativ pysselverkstad i aulan</b><br>I pysselverkstaden för barnfamiljer får man göra ett vårligt vykort med inspiration från Nowruz symboler. Verkstaden bjuder in deltagarna att fundera kring våren, naturen och en ny början genom en avslappnad aktivitet. Verkstaden leds av Sadaf Yazdizadeh. <br> <br><b>Kl. 16–17 Forskaren Jonas Maristo på biblioteket</b><br>Den finländske forskaren Jonas Maristo håller en föreläsning om Nowruz historia. Föreläsningen berättar om högtidens långa historia, zarathustriska rötter och traditionella festbord (sofre-ye haft sin), samt hur Nowruz firas på olika håll i världen.<br> <br><b>Kl. 18–19 Road Ensemble i aulan</b><br>Kvällen avslutas med Road Ensemble, som kombinerar folkmusik från iranska folk, kurder och afghaner. I bandet spelar Fardin Abbasi (slagverk, sång), Sheida Sanati (bass tar/moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santour, sång, konstnärlig ledare) och Mehrab (dombyra, sång).<br> <br>Evenemanget är avgiftsfritt och öppet för alla.</p>",
                "en": "<p>Join us in celebrating the arrival of spring and Nowruz at Stoa! The event will feature music, information and shared activities.</p><p>Nowruz is the celebration of the spring equinox and the New Year in the Iranian calendar. It has been observed for more than 3,000 years in Iran and widely throughout Central Asia, the Caucasus, in the Black Sea area and among Kurds.</p><p><b>16.00–17.45 Creative crafts workshop in the lobby</b><br>Come to the crafts workshop for families with children and create a spring-themed postcard inspired by Nowruz symbols. The workshop encourages participants to think about the themes of spring, nature and new beginnings by participating in relaxed shared activities. The workshop is led by Sadaf Yazdizadeh.<br> <br><b>16.00–17.00 Lecture by researcher Jonas Maristo in the library</b><br>Finnish researcher Jonas Maristo will give a lecture on the history of Nowruz. The lecture will provide an overview of the long history of the celebration, its Zoroastrian roots, the traditional festive spread (Sofreh Haft Sin) as well as how Nowruz is observed around the world. <br> <br><b>18.00–19.00 Road Ensemble in the lobby</b><br>The evening will be closed by the Road Ensemble combining folk music by Iranian peoples, Kurds and Afghans. The line-up of the group includes Fardin Abbasi (percussion, vocals), Sheida Sanati (bass tar / moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santur, vocals, artistic direction) and Mehrab (dombyra, vocals).<br> <br>The event is free of charge and open to all.</p>"
            },
            "name": {
                "fi": "Nowruz – kevään juhla",
                "sv": "Nowruz – vårens fest",
                "en": "Nowruz – celebrating spring"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68190/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67381",
            "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-sentimental-value-malmitalo-21375695/",
                        "sv": "https://www.lippu.fi/event/kino-helios-sentimental-value-malmitalo-21375695/",
                        "en": "https://www.lippu.fi/event/kino-helios-sentimental-value-malmitalo-21375695/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1509761,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T13:13:50.282406Z",
                    "last_modified_time": "2026-03-03T13:13:50.282422Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781064.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509761/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T13:13:50.160055Z",
            "last_modified_time": "2026-03-20T01:13:40.854188Z",
            "date_published": null,
            "start_time": "2026-03-20T13: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": "Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5B4501740D73AF1173964D73996333A8/Sentimental_Value_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5B4501740D73AF1173964D73996333A8/Sentimental_Value_12_",
                "en": "http://www.malmitalo.fi/en/events/event/5B4501740D73AF1173964D73996333A8/Sentimental_Value_12_"
            },
            "description": {
                "fi": "<p>Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan.</p><p>Gustav tarjoaa Noralle, teatterinäyttelijälle, roolin elokuvasta, jonka hän toivoo palauttavan hänen uransa kukoistukseen.</p><p>Kun Nora kieltäytyy, hän saa tietää, että rooli on annettu nuorelle ja innokkaalle Hollywood-tähdelle. Pian sisarusten täytyy selvittää vaikeaa suhdettaan isäänsä ja tulla toimeen amerikkalaisen tähden kanssa, joka sotkeutuu heidän monimutkaisiin perhekuvioihinsa.</p><p>Cannes Grand Prix voittaja Sentimental value -elokuvan on ohjannut Joachim Trier. Pääsosissa Renate Reinsve, Inga Ibsdotter Lilleaas, Stellan Skarsgård ja Elle Fanning.</p><p>Elokuva on saavuttanut huikeat yhdeksän Oscar-ehdokkuutta, mukaan lukien parhaan elokuvan, ohjauksen (Joachim Trier), naispääosan (Renate Reinsve) ja miessivuosan (Stellan Skarsgård) kategorioissa.</p><p>Ikäraja: 12<br>Kesto: 135 min<br>Ensi-ilta: 17.10.2025<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>"
            },
            "name": {
                "fi": "Sentimental Value (12) – Kino Helios",
                "sv": "Sentimental Value (12) – Kino Helios",
                "en": "Sentimental Value (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67381/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67968",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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-21098315/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098315/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098315/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494459,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T08:13:36.836781Z",
                    "last_modified_time": "2026-01-13T08:13:36.836796Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779245.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494459/?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:36.732459Z",
            "last_modified_time": "2026-03-20T01:13:40.704196Z",
            "date_published": null,
            "start_time": "2026-03-20T09: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.vuotalo.fi/fi/tapahtumat/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.vuotalo.fi/en/events/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja_Estonia_"
            },
            "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>",
                "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. 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. 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!-festivaali",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja (Estonia) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67968/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67967",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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-21098314/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098314/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098314/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494458,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T07:13:36.536056Z",
                    "last_modified_time": "2026-01-13T07:13:36.536074Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779244.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494458/?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-13T07:13:36.358529Z",
            "last_modified_time": "2026-03-20T01:13:40.560090Z",
            "date_published": null,
            "start_time": "2026-03-20T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.vuotalo.fi/en/events/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja_Estonia_"
            },
            "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>",
                "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. 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. 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!-festivaali",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja (Estonia) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67967/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67703",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494066,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:53.518695Z",
                    "last_modified_time": "2025-12-04T12:12:53.518711Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782448.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494066/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:53.442111Z",
            "last_modified_time": "2026-03-20T01:13:40.446126Z",
            "date_published": null,
            "start_time": "2026-03-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4987F49CEDA1F10B4F84AF1B34A94F72/Yleison_suosikit_Kesakirja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4987F49CEDA1F10B4F84AF1B34A94F72/Publikens_favoriter_Sommarboken_S_",
                "en": "http://www.malmitalo.fi/en/events/event/4987F49CEDA1F10B4F84AF1B34A94F72/Audience_Favourites_Summer_Book"
            },
            "description": {
                "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.<br>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa. Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br>Kesto: 95 min<br>Ikäraja: S<br>Kieli: englanti, tekstitetty suomeksi<br>Vapaa pääsy!</p>",
                "sv": "<p>Filmen som baserar sig på Tove Janssons älskade verk Sommarboken berättar en magisk och livsstigande historia om flickan Sophias (Emily Matthews) sommar tillsammans med mormor (Glenn Close) på en liten ö i Finska viken. När Sophias far (Anders Danielsen Lie) sörjer sin makas död smeker sjövågorna klippan, solen skiner och träden växer.</p><p>Sommarboken är en beskrivning av en liten flickas och en gammal kvinnas vänskap omgiven av en finländsk sommardröm, nära varandra och nära naturen. I filmen är Finlands sommar och skärgårdsnaturen som mest genuin och vacker.<br> <br>Åldersgräns: Tillåten<br>Längd: 95 min.</p><p>Baserar sig på Tove Janssons Sommarboken.</p>",
                "en": "<p>Based on Tove Jansson's beloved novel The Summer Book, the film tells a magical and life-enhancing story of a girl named Sophia (Emily Matthews) spending the summer with her grandmother (Glenn Close) on a tiny island in the Gulf of Finland. While Sophia's father (Anders Danielsen Lie) mourns the loss of his spouse, the waves gently caress the rocks, the sun shines and the trees grow.</p><p>The Summer Book is a depiction of the friendship between a little girl and an old woman surrounded by the Finnish summer dream, close to each other and nature. The film captures the Finnish summer and archipelago nature at their most authentic and beautiful.<br> <br>Age limit: Suitable for all ages<br>Length: 95 min</p><p>Based on Tove Jansson's Summer Book.</p>"
            },
            "name": {
                "fi": "Yleisön suosikit: Kesäkirja",
                "sv": "Publikens favoriter: Sommarboken (S)",
                "en": "Audience Favourites: Summer Book"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67703/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67562",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:42/?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:755/?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:p22193/?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/name-21076982",
                        "sv": "https://www.lippu.fi/event/name-21076982",
                        "en": "https://www.lippu.fi/event/name-21076982"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494307,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T10:13:56.964590Z",
                    "last_modified_time": "2025-12-23T10:13:56.964605Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781729.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494307/?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-23T10:13:56.821784Z",
            "last_modified_time": "2026-03-20T01:13:40.288723Z",
            "date_published": null,
            "start_time": "2026-03-19T15:30:00Z",
            "end_time": "2026-03-19T16:15: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": "Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!",
                "sv": "Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!",
                "en": "Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_",
                "en": "http://www.malmitalo.fi/en/events/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_"
            },
            "description": {
                "fi": "<p>Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!</p><p>Onko huonekaluilla tunteita? Voiko pölyn nähdä?</p><p>Dust (suomeksi pöly) on fiktiivinen tarina, joka yhdistää leikkisästi muistoja, maagista realismia, pehmeää sirkusta ja akrobatiaa. Näyttämö on toisinaan aivan ylösalaisin kun kolme esiintyjää matkustaa läpi maailman, jossa jotakin erikoista on tapahtunut; esineet liikkuvat omillaan ja musiikki tanssii. Seikkailu etenee ihastuttavan oudoilla ja ihmeellisillä tavoilla.</p><p>Koreografia ja näyttämöllepano: Claire Parsons ja ensemble<br>Esiintyjät 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel</p><p>Skenografia: Anna Nyberg<br>Pukusuunnittelu ja ompelu: Matilda Hyttsten<br>Ompelu: Pia Gyll, Bitte Palm<br>Valosuunnittelu: Christian Farcher<br>Musiikki ja äänisuunnittelu: Mikael Svanevik<br>Hiukset, peruukit, naamiointi: Angelica Ekeberg, Theresia Frisk<br>Tuottaja: Lena Yngvesson<br>Valokuvaus: Linda Himsel<br>Video: Marc Davin</p><p>Kesto: n. 45 min<br>Ikäsuositus: 6+<br>Kieli: sanaton</p>",
                "sv": "<p>Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!</p><p>Puder är sammanhang, minnen, förnimmelser och påminnelser. Magisk realism möter sång, dans, kropp och påståenden. PUDER är en utflykt till en plats där rummet rör sig och rörelsen sjunger. Det oväntade får huvudrollen.</p><p>Puder undersöker parallella verkligheter i en lekpark där dans, mim, akrobatik och det däremellan möts. En föreställning inspirerad av den franske filosofen Gaston Bachelards idéer om drömmar och rumslighet.<br> <br>En scenkonstupplevelse för alla från 6 år.</p><p>Premiär 23 november 2023 på Lokstallarna i Karlshamn, i samarbete med Regionteatern Blekinge Kronoberg.<br>Ordlös</p><p>För alla från 6 år.</p>",
                "en": "<p>Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!</p><p>Does furniture have feelings? Can you see the dust? Dust is a fictional tale in a playful mix of memory and tactility, magical realism, soft circus and acrobatics, in an upside and sometimes sideways viewed space. Three performers travel through a world where something has happened; objects move and music dances in an adventure that transfers in delightfully strange and wondrous ways.</p><p>A performance that challenges the fictional with a poetic truth or two, to see if this space is a true place, if furniture has feelings and if you can see the dust.</p><p>Premiere: 23 November 2023 at Lokstallarna, Karlshamn, in collaboration with Regionteatern Blekinge Kronoberg</p><p>Non-verbal<br>For everyone aged 6 and above!</p><p>Choreography & staging: Claire Parsons with ensemble<br>Performers 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel<br>Scenography: Anna Nyberg<br>Costumes and tailoring: Matilda Hyttsten<br>Tailoring: Pia Gyll, Bitte Palm<br>Lighting design: Christian Farcher<br>Music and sound design: Mikael Svanevik<br>Hair, wigs and makeup: Angelica Ekeberg, Theresia Frisk<br>Producer: Lena Yngvesson<br>Photo: Linda Himsel<br>Video: Marc Davin</p>"
            },
            "name": {
                "fi": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festivaali",
                "sv": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festival",
                "en": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67562/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68210",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1600642,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-12T13:13:55.968123Z",
                    "last_modified_time": "2026-03-12T13:13:55.968138Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786237.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1600642/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-12T13:13:55.832220Z",
            "last_modified_time": "2026-03-20T01:13:40.160967Z",
            "date_published": null,
            "start_time": "2026-03-19T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5B124D93D00587C0AE2AA330692621A4/Art_Thinking_Workshop",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5B124D93D00587C0AE2AA330692621A4/Art_Thinking_Workshop",
                "en": "http://www.malmitalo.fi/en/events/event/5B124D93D00587C0AE2AA330692621A4/_Art_Thinking_Workshop"
            },
            "description": {
                "fi": "<p>Welcome to an art & thinking workshop where we will explore Alex Markwith’s exhibition “Intersections” at Malmitalo Gallery. The evening will start with a conversation about  one of the artworks, facilitated by philosophical practitioner Elizaveta Bomash. The dialogue continues in a form of a Q&A with the artist, Alex Markwith. During the session, we’ll think together about art and the themes it evokes in us by asking questions, examining answers, and interpreting like a group of art detectives.</p><p>What to expect:<br>- Guided discussion using Socratic questioning method<br>- Fun way to sharpen your thinking skills<br>- New way of interacting with art and your own thoughts</p><p>No experience needed, just curiosity and an open mind.</p><p>The gallery is open until 20.00 and after the workshop, you can continue exploring other pieces in the exhibition.</p><p>The workshop takes about one and a half hours, from 17:30 to 19:00.</p><p>Free admission. Please RSVP by e-mail: lisabomash (at) gmail.com Welcome!</p>",
                "en": "<p>Welcome to an art & thinking workshop where we will explore Alex Markwith’s exhibition “Intersections” at Malmitalo Gallery. The evening will start with a conversation about  one of the artworks, facilitated by philosophical practitioner Elizaveta Bomash. The dialogue continues in a form of a Q&A with the artist, Alex Markwith. During the session, we’ll think together about art and the themes it evokes in us by asking questions, examining answers, and interpreting like a group of art detectives.</p><p>What to expect:<br>- Guided discussion using Socratic questioning method<br>- Fun way to sharpen your thinking skills<br>- New way of interacting with art and your own thoughts</p><p>No experience needed, just curiosity and an open mind.</p><p>The gallery is open until 20.00 and after the workshop, you can continue exploring other pieces in the exhibition.</p><p>The workshop takes about one and a half hours, from 17:30 to 19:00.</p><p>Free admission. Please RSVP by e-mail: lisabomash (at) gmail.com Welcome!</p>"
            },
            "name": {
                "fi": "Art & Thinking Workshop",
                "sv": "Art & Thinking Workshop",
                "en": "Art & Thinking Workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68246",
            "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:351/?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/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:p2625/?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": 1651741,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-17T09:13:04.296916Z",
                    "last_modified_time": "2026-03-17T09:13:04.296935Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786477.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1651741/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-17T09:13:04.136508Z",
            "last_modified_time": "2026-03-20T01:13:40.030909Z",
            "date_published": null,
            "start_time": "2026-03-19T12:00:00Z",
            "end_time": "2026-03-19T14: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": "Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson",
                "sv": "Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson",
                "en": "Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Artist_Talk",
                "sv": "http://www.caisa.fi/sv/evenemang/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Konstnarssamtal",
                "en": "http://www.caisa.fi/en/events/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Artist_Talk"
            },
            "description": {
                "fi": "<p>Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson</p><p>Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson</p><p>Tule kuulemaan, millaista on työskennellä taiteilijana erilaisissa ympäristöissä!</p><p>Tanssitaiteilija ja mehiläishoitaja Helena Krinal on syntynyt ja kasvanut Virossa. Hän muutti Palestiinaan vuonna 2013 ja asuu siellä perheensä kanssa. <br>Lue lisää Helenasta: www.helenakrinal.com</p><p>Ama Kyei on suomalais-ghana­lainen tanssija, tanssinopettaja, koreografi ja doula. Ama työskentelee esimerkiksi Ghanassa, Ruotsissa ja Suomessa. <br>Lue lisää Amasta: amakyei.se</p><p>Aude Busson, alun perin Ranskasta, on asunut Islannissa vuodesta 2005 ja työskentelee siellä esitystaiteilijana ja projektipäällikkönä.<br>Lue lisää Audesta: audebusson.cargo.site</p>",
                "sv": "<p>Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson</p><p>Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson</p><p>Kom och lyssna på hur det är att arbeta som konstnär i olika miljöer!</p><p>Danskonstnären och biodlaren Helena Krinal är född och uppvuxen i Estland. Hon flyttade till Palestina 2013 och bor där med sin familj. <br>Läs mer om Helena: www.helenakrinal.com</p><p>Ama Kyei är en finsk-ghanansk dansare, danslärare, koreograf och doula. Ama arbetar bland annat i Ghana, Sverige och Finland. <br>Läs mer om Ama: amakyei.se</p><p>Aude Busson, ursprungligen från Frankrike, har bott i Island sedan 2005, där hon arbetar som performancekonstnär och projektledare.<br>Läs mer om Aude: audebusson.cargo.site</p>",
                "en": "<p>Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival</p><p>Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival.</p><p>Come and hear what it's like to work as an artist in different environments!</p><p>Dance artist and beekeeper Helena Krinal was born and raised in Estonia. She moved to Palestine in 2013 and lives there with her family. <br>Read more about Helena: www.helenakrinal.com</p><p>Ama Kyei is a Finnish-Ghanaian dancer, dance teacher, choreographer, and doula. Ama works in Ghana, Sweden, and Finland, among other places. <br>Read more about Ama: amakyei.se</p><p>Aude Busson, originally from France, has lived in Iceland since 2005, where she works as a performance artist and project manager.<br>Read more about Aude: audebusson.cargo.site</p>"
            },
            "name": {
                "fi": "Bravo! Artist Talk – Bravo!-festivaalin taiteilijakeskustelu",
                "sv": "Bravo! Konstnärssamtal – Bravo! Festival artist discussion",
                "en": "Bravo! Artist Talk – Bravo! Artist Talk discussion event"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68246/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68130",
            "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: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: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": 1494901,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-19T10:12:54.257006Z",
                    "last_modified_time": "2026-02-19T10:12:54.257017Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785626.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494901/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-19T10:12:54.135358Z",
            "last_modified_time": "2026-03-20T01:13:39.910394Z",
            "date_published": null,
            "start_time": "2026-03-19T11:00:00Z",
            "end_time": "2026-03-19T13: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/1BC0B58D78F8A0BE102185CD004D14BD/Taiteilijaresidenssi_Bravo_Festivaalilla",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1BC0B58D78F8A0BE102185CD004D14BD/Taiteilijaresidenssi_Bravo_Festivaalilla",
                "en": "http://www.caisa.fi/en/events/event/1BC0B58D78F8A0BE102185CD004D14BD/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ä. Hankkeessa tarjotaan rahallista tukea, residenssitiloja, ammatillista ohjausta sekä verkostoitumismahdollisuuksia hankkeessa mukana oleville taiteilijoille.</p><p>Sopii kaiken ikäisille<br> <br>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:68130/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67702",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494573,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T14:14:07.339550Z",
                    "last_modified_time": "2026-01-20T14:14:07.339607Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782446.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494573/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2026-01-20T14:14:07.202475Z",
            "last_modified_time": "2026-03-20T01:13:39.768399Z",
            "date_published": null,
            "start_time": "2026-03-19T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.",
                "sv": "I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.",
                "en": "Designed for seniors, HopeaCine’s programme features new Finnish films once a month."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_Kullervon_tarina_tekijavieras_nayttelija_Elias_Salonen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_Kullervon_tarina_gastande_filmskapare_skadespelare_Elias_Salonen",
                "en": "http://www.malmitalo.fi/en/events/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_The_story_of_Kullervo_author_guest_actor_Elias_Salonen"
            },
            "description": {
                "fi": "<p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.</p><p>Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. HopeaCine näytökset löydät myös Cinema Orionista ja Vuotalolta.</p><p>Antti J. Jokisen ja Jorma Tommilan käsikirjoittama historiallinen ja toiminnallinen draamaelokuva on saanut inspiraationsa Kalevalasta.</p><p>Kullervon tarinan pääosassa nähdään Elias Salonen ja toista pääroolia Untamoa näyttelee Jussi-palkittu Eero Aho. Muissa rooleissa ovat muun muassa Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) ja Ronja Orasta (Aino).</p><p>Elokuva käsittelee armoa, merkityksellisen elämän kaipuuta ja itsensä löytämistä sekä koston, mutta myös oman perheen rakastamisen teemoja. Sen selkärangan muodostavat suomalainen luonto, vanhanajan heimosota, muinaiset myytit ja kalevalainen mytologia.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>",
                "sv": "<p>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.</p><p>Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som 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. HopeaCine-föreställningarna finns även på Cinema Orion och Nordhuset.</p><p>Manuskriptet till den historiska och actionfyllda dramafilmen är skriven av Antti J. Jokinen och Jorma Tommila och är inspirerad av Kalevala.</p><p>I Kullervon tarina spelar Elias Salonen huvudrollen och den andra huvudrollen, Untamo, spelas av Eero Aho, som tidigare prisbelönts med Jussi-priset. Övriga roller spelas av Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) och Ronja Orasta (Aino).</p><p>Filmen behandlar teman som barmhärtighet, längtan efter ett meningsfullt liv och självupptäckt, samt hämnd, men också kärleken till den egna familjen. Dess grund består av den finska naturen, forntida stamkrig, gamla myter och Kalevala-mytologin.</p><p>Längd: 143 min<br>Åldersgräns: 16</p>",
                "en": "<p>Designed for seniors, HopeaCine’s programme features new Finnish films once a month.</p><p>Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film. HopeaCine screenings are also shown at Cinema Orion and Vuotalo.</p><p>Written by Antti J. Jokinen and Jorma Tommila, the historical and action drama film is inspired by the Kalevala.</p><p>The Story of Kullervo stars Elias Salonen in the lead role and Jussi award-winner Eero Aho in the second lead role of Untamo. Other roles feature Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) and Ronja Orasta (Aino).</p><p>The film deals with the themes of mercy, a longing for a meaningful life, self-discovery and revenge, but also loving your own family. The story is built upon Finnish nature, ancient tribal warfare, ancient myths and Kalevala mythology.</p><p>Duration: 143 min<br>Age limit: 16</p>"
            },
            "name": {
                "fi": "HopeaCine: Kalevala: Kullervon tarina + tekijävieras näyttelijä Elias Salonen",
                "sv": "HopeaCine: Kalevala: Kullervon tarina + gästande filmskapare skådespelare Elias Salonen",
                "en": "HopeaCine: Kalevala: The story of Kullervo + author guest actor Elias Salonen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67702/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}