Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 32746,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=42&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=40&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:67911",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/global-music-club-vuotalo-21121913/",
                        "sv": "https://www.lippu.fi/event/global-music-club-vuotalo-21121913/",
                        "en": "https://www.lippu.fi/event/global-music-club-vuotalo-21121913/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€/10€",
                        "sv": "8€/10€",
                        "en": "8€/10€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494331,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-30T10:13:42.561989Z",
                    "last_modified_time": "2025-12-30T10:13:42.562003Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782109.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494331/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-30T10:13:42.449973Z",
            "last_modified_time": "2026-03-20T01:14:03.769528Z",
            "date_published": null,
            "start_time": "2026-04-17T15: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": "Vuotalon Global Music Clubilla esiintyvät Joni Vierre ja Chico Matada.",
                "sv": "Joni Vierre och Chico Matada uppträder på Nordhusets Global Music Club.",
                "en": "Joni Vierre and Chico Matada will perform at the Vuotalo Global Music Club event."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/69C4443D1BC236082471FD51AD94AD4A/Joni_Vierre_Chico_Matada",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/69C4443D1BC236082471FD51AD94AD4A/Joni_Vierre_Chico_Matada",
                "en": "http://www.vuotalo.fi/en/events/event/69C4443D1BC236082471FD51AD94AD4A/Joni_Vierre_Chico_Matada"
            },
            "description": {
                "fi": "<p>Vuotalon Global Music Clubilla esiintyvät Joni Vierre ja Chico Matada.</p><p>Joni Vierre on suomalainen säveltäjä, muusikko ja opettaja, jonka työ yhdistää sävellystä, improvisaatiota ja kulttuurienvälistä yhteistyötä. Hän ammentaa vaikutteita jazzista, folkista ja globaaleista perinteistä ja luo musiikkia, joka asettaa kuuntelun, vuorovaikutuksen ja yhteyden genrejen ulkopuolelle.</p><p>Chico Matada on Mosambikissa syntynyt rumpali, säveltäjä ja yhtyeenjohtaja, jonka musiikki yhdistää afrikkalaisia rytmisiä perinteitä moderniin jazziin, elokuvamaisiin sovituksiin ja improvisaatioon. Suomessa asuva Matada ammentaa erityisesti mosambikilaisen Ndau-heimon Ndokodo-musiikista ja yhdistää sen moderniin jazz-harmoniaan.</p><p>Musiikki on samanaikaisesti meditatiivista ja rytmisesti eloisaa – kutsu kuulijalle pysähtyä, kuunnella ja tuntea.</p><p>Kieli: monikielinen</p><p>Kesto 180 min.</p>",
                "sv": "<p>Joni Vierre och Chico Matada uppträder på Nordhusets Global Music Club.</p><p>Joni Vierre är en finländsk kompositör, musiker och lärare som i sitt arbete kombinerar komposition, improvisation och interkulturellt samarbete. Han hämtar inspiration från jazz, folkmusik och globala traditioner för att skapa musik som driver lyssnandet, interaktionen och kontakten bortom genrerna.</p><p>Chico Matada är en trummis, tonsättare och bandledare född i Moçambique, vars musik kombinerar afrikanska rytmtraditioner med modern jazz, filmiska arrangemang och improvisation. Matada, som bor i Finland, använder sig särskilt av Ndokodo-musiken från den moçambikiska Ndau-stammen och kombinerar den med modern jazzharmonik.</p><p>Musiken är på samma gång meditativ och rytmiskt vibrerande – en inbjudan till lyssnaren att stanna upp, lyssna och känna.</p>",
                "en": "<p>Joni Vierre and Chico Matada will perform at the Vuotalo Global Music Club event.</p><p>Joni Vierre is a Finnish composer, musician, and educator whose work blends composition, improvisation, and intercultural collaboration. Drawing on influences from jazz, folk, and global traditions, he creates music that prioritizes listening, exchange, and connection beyond genre.</p><p>Chico Matada is a Mozambique-born drummer, composer and bandleader whose music combines African rhythmic traditions with modern jazz, cinematic arrangements and improvisation. Matada, who lives in Finland, draws in particular from the Ndokodo music of the Mozambican Ndau tribe, combining it with modern jazz harmony.  The music is simultaneously meditative and rhythmically vibrant – an invitation for the listener to stop, listen, and feel.</p>"
            },
            "name": {
                "fi": "Joni Vierre & Chico Matada – Global Music Club",
                "sv": "Joni Vierre & Chico Matada – Global Music Club",
                "en": "Joni Vierre & Chico Matada – Global Music Club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67402",
            "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-esittaa-kino-helios-the-drama-malmitalo-21473667/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473667/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473667/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1673366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T13:14:11.490816Z",
                    "last_modified_time": "2026-03-19T13:14:11.490833Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781095.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1673366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T13:14:11.387597Z",
            "last_modified_time": "2026-03-20T01:14:03.260893Z",
            "date_published": null,
            "start_time": "2026-04-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/630BE6FD3010028E608A93E14729F311/The_Drama_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/630BE6FD3010028E608A93E14729F311/The_Drama_12_",
                "en": "http://www.malmitalo.fi/en/events/event/630BE6FD3010028E608A93E14729F311/The_Drama_12_"
            },
            "description": {
                "fi": "<p>Emman ja Charlien hartaasti odottama hääpäivä on vihdoin lähellä, eikä pari voisi olla onnellisempi. Kun odottamaton salaisuus paljastuu, heidän täydellisesti suunniteltu hääviikkonsa alkaa hajota käsiin. Rakkaus joutuu koetukselle, kun jokainen sana, katse ja vitsi saa uuden merkityksen – eikä mikään ole entisellään.<br>Zendaya ja Robert Pattinson tähdittävät A24:n elokuvaa The Drama.</p><p>Ikäraja: 12<br>Kesto: 105 min<br>Ensi-ilta: 02.04.2026<br>Kieli: englanti<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "The Drama (12) – Kino Helios",
                "sv": "The Drama (12) – Kino Helios",
                "en": "The Drama (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67402/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67401",
            "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-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468697/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468697/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468697/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672532,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T11:14:20.160541Z",
                    "last_modified_time": "2026-03-19T11:14:20.160556Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781094.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672532/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T11:14:20.036768Z",
            "last_modified_time": "2026-03-20T01:14:03.094627Z",
            "date_published": null,
            "start_time": "2026-04-17T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7C6D5711D6269598CC700B25E4590A2B/The_Wizard_of_The_Kremlin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7C6D5711D6269598CC700B25E4590A2B/The_Wizard_of_The_Kremlin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/7C6D5711D6269598CC700B25E4590A2B/The_Wizard_of_The_Kremlin_12_"
            },
            "description": {
                "fi": "<p>Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut. Keskellä kaaosta ja itseään uudelleen rakentavaa maata kulkee määrätietoisesti omaa polkuaan poikkeuksellisen älykäs nuori mies, Vadim Baranov (Paul Dano). Ensin avantgardetaiteilija, sitten tosi-tv-ohjelmien tuottaja, hänestä tulee epävirallinen neuvonantaja entiselle KGB-agentille, joka on matkalla kohti ehdotonta valtaa – miehelle, joka tullaan pian tuntemaan nimellä ”tsaari”, Vladimir Putin (Jude Law).</p><p>Järjestelmän ytimeen päätynyt Baranov nousee uuden Venäjän spin doctoriksi, muovaamaan puheita, mielikuvia ja todellisuudentajua. Yksi ihminen jää kuitenkin hänen vaikutusvaltansa ulkopuolelle: Ksenia (Alicia Vikander), vapaa ja tavoittamaton nainen, joka edustaa mahdollisuutta paeta – kauas poliittisesta vaikutuksesta ja vallankäytöstä.</p><p>Viisitoista vuotta myöhemmin, vetäydyttyään hiljaisuuteen, Baranov suostuu puhumaan. Se, mitä hän paljastaa, hämärtää rajat totuuden ja fiktion, uskomuksen ja strategian välillä. The Wizard of the Kremlin on laskeutuminen vallan pimeisiin käytäviin – elokuva, jossa jokainen sana on osa juonta.</p><p>Elokuva perustuu Giuliano da Empolin romaaniin Kremlin velho.</p><p>Ikäraja: 12<br>Kesto: 146 min<br>Ensi-ilta: 13.03.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "The Wizard of The Kremlin (12) – Kino Helios",
                "sv": "The Wizard of The Kremlin (12) – Kino Helios",
                "en": "The Wizard of The Kremlin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67401/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67859",
            "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:32/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4055677",
                        "sv": "https://www.lippu.fi/eventseries/name-4055677",
                        "en": "https://www.lippu.fi/eventseries/name-4055677"
                    },
                    "description": null,
                    "price": {
                        "fi": "46,50-67,50 €",
                        "sv": "46,50-67,50 €",
                        "en": "46,50-67,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494279,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-20T13:13:56.502144Z",
                    "last_modified_time": "2025-12-20T13:13:56.502158Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783155.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494279/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-19T18:13:40.568818Z",
            "last_modified_time": "2026-03-20T01:14:02.784970Z",
            "date_published": null,
            "start_time": "2026-04-16T16: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": "Intensiivinen Tango Golden Years -tanssiesitys vie sinut maailmaan, jossa tango kohtaa jazzin. Se johdattaa yleisön musiikin ja tanssin kulta-aikaan aina Buenos Airesista Harlemiin ja 1920-luvulta 1930-luvulle. Maailmankuulun tangovisionääri Marcos Ayalan johtama show on täynnä eleganssia, intohimoa, rakkauden voimaa ja vapautta.",
                "sv": "Den intensiva dansföreställningen Tango Golden Years tar dig med till en värld där tango möter jazz. Den leder publiken genom musikens och dansens guldålder, från Buenos Aires till Harlem och från 1920- till 1930-talet. Föreställningen, som leds av den världsberömde tangovisionären Marcos Ayala, är full av elegans, passion, kärlekens kraft och frihet.",
                "en": "The intense Tango Golden Years dance performance will take you to a world where tango meets jazz. The show will take the audience through the golden age of music and dance, from Buenos Aires to Harlem and from the 1920s to the 1930s. Led by world-renowned tango visionary Marcos Ayala, the show will be full of elegance, passion, the power of love and freedom."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/788CC12BB81FC59673DCB339E9842C13/Tango_The_Golden_Years_Argentiina_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/788CC12BB81FC59673DCB339E9842C13/Tango_The_Golden_Years_Argentina_",
                "en": "http://www.savoyteatteri.fi/en/events/event/788CC12BB81FC59673DCB339E9842C13/Tango_The_Golden_Years_Argentina_"
            },
            "description": {
                "fi": "<p>Intensiivinen Tango Golden Years -tanssiesitys vie sinut maailmaan, jossa tango kohtaa jazzin. Se johdattaa yleisön musiikin ja tanssin kulta-aikaan aina Buenos Airesista Harlemiin ja 1920-luvulta 1930-luvulle. Maailmankuulun tangovisionääri Marcos Ayalan johtama show on täynnä eleganssia, intohimoa, rakkauden voimaa ja vapautta.</p><p>Tango Golden Years on elämää sykkivä musiikillinen ja koreografinen matka läpi swingin, big bandien, klubien, tangolaulujen ja milongan. Se on valon ja varjon maailma, jossa tanssista tulee historiaa, muistot heräävät eloon joka askeleella ja rytmi kaikuu vapauden äänenä.</p><p>Vaikka esitys kumpuaa tangon juurilta, se puhuttelee myös nykyaikaa. Se tuo esiin taiteen voiman, joka yhdistää kulttuureja, rikkoo raja-aitoja ja voi muuttaa tuskan kauneudeksi.</p><p>Marcos Ayala Dance Company on argentiinalainen tanssiryhmä, jonka Marcos Ayala perusti vuonna 2010. Jo vuosia ryhmä on kiertänyt ympäri maailmaa loppuunmyydyille katsomoille. Sen tuotantojen ydin on klassinen argentiinalainen tango yhdistettynä nykyteatteriin, -musiikkiin ja kuvataiteeseen – jokainen show tuo tangon maailmaan uutta luovuutta ja ennennäkemättömiä koreografioita. Ryhmä nähdään Helsingissä Savoy-teatterissa 16. huhtikuuta 2026.</p><p>Marcos Ayala on tanssija, koreografi ja ohjaaja, joka on pienestä pitäen opiskellut kansantansseja, klassisia ja moderneja tekniikoita, jazzia ja tietenkin tangoa. Hän on voittanut useita kansainvälisiä palkintoja, esimerkiksi World Championship of Tango (Japani 2006) ja Latin ACE Awards (New York 2015).</p><p>Ovet 18.00</p><p>Kesto n. 2 tuntia 30 minuuttia väliaikoineen</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Den intensiva dansföreställningen Tango Golden Years tar dig med till en värld där tango möter jazz. Den leder publiken genom musikens och dansens guldålder, från Buenos Aires till Harlem och från 1920- till 1930-talet. Föreställningen, som leds av den världsberömde tangovisionären Marcos Ayala, är full av elegans, passion, kärlekens kraft och frihet.</p><p>Tango Golden Years är en musikalisk och koreografisk resa genom swing, storband, klubbar, tangolåtar och milonga som pulserar av liv. Det är en värld av ljus och skugga, där dans blir historia, minnen väcks till liv med varje steg och rytmen ekar som ljudet av frihet.</p><p>Även om föreställningen har sina rötter i tangon talar den också till vår tid. Den belyser konstens förmåga att förena kulturer, bryta ner barriärer och förvandla smärta till skönhet.</p><p>Marcos Ayala Dance Company är en argentinsk dansgrupp som grundades 2010 av Marcos Ayala. I flera år har gruppen turnerat världen över för utsålda arenor. Kärnan i dess produktioner är klassisk argentinsk tango i kombination med modern teater, musik och bildkonst – varje show bidrar med ny kreativitet och aldrig tidigare skådade koreografier i tangons värld. Gruppen uppträder på Savoy-teatern i Helsingfors den 16 april 2026.</p><p>Marcos Ayala är en dansare, koreograf och regissör som sedan tidig ålder har studerat folkdanser, klassiska och moderna tekniker, jazz och naturligtvis tango. Han har vunnit flera internationella priser, bl.a. World Championship of Tango (Japan 2006) och Latin ACE Awards (New York 2015).</p><p>Dörrar 18.00</p><p>Längd ca 2 timmar och 30 minuter, inklusive pauser</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>The intense Tango Golden Years dance performance will take you to a world where tango meets jazz. The show will take the audience through the golden age of music and dance, from Buenos Aires to Harlem and from the 1920s to the 1930s. Led by world-renowned tango visionary Marcos Ayala, the show will be full of elegance, passion, the power of love and freedom.</p><p>Tango Golden Years is a musical and choreographic journey through swing, big bands, clubs, tango songs and milonga that pulsates with life. It is a world of light and shadow, where dance becomes history, memories come alive with every step and rhythm echoes as the sound of freedom.</p><p>Although the performance has its roots in tango, it also speaks to the present day. It highlights the power of art to unite cultures, break down barriers and transform pain into beauty.</p><p>Marcos Ayala Dance Company is an Argentinian dance company founded by Marcos Ayala in 2010. For years, the group has been touring the world and playing sold-out shows. At the heart of its productions is classical Argentine tango combined with contemporary theatre, music and visual art – each show bringing new creativity and unprecedented choreography to the world of tango. The group will play the Savoy Theatre in Helsinki on 16 April 2026.</p><p>Marcos Ayala is a dancer, choreographer and director who has studied folk dance, classical and modern techniques, jazz and, of course, tango from an early age. He has won several international awards, including the World Championship of Tango (Japan 2006) and the Latin ACE Awards (New York 2015).</p><p>The doors will open at 18.00</p><p>Duration: roughly 2 h 30 min, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.<br>.</p>"
            },
            "name": {
                "fi": "Tango – The Golden Years (Argentiina)",
                "sv": "Tango – The Golden Years (Argentina)",
                "en": "Tango – The Golden Years (Argentina)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Aftersunset Oy",
                "sv": "Aftersunset Oy",
                "en": "Aftersunset Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67859/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67699",
            "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:33/?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/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04",
                        "sv": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04",
                        "en": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 20€",
                        "sv": "24,50 € / 20€",
                        "en": "24,50 € / 20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494003,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T07:12:56.463466Z",
                    "last_modified_time": "2025-12-03T07:12:56.463480Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780706.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494003/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T07:12:56.366524Z",
            "last_modified_time": "2026-03-20T01:14:02.617672Z",
            "date_published": null,
            "start_time": "2026-04-16T15: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": "Luvassa on täysin poikkeuksellinen näyttämöllepano Stravinskyn ja kumppaneiden ikonisen Kevätuhrin innoittamana.",
                "sv": "Clownerna dansar en koreografi till Stravinskijs storverk med stor passion och stort hjärta.",
                "en": "The clowns will dance their choreography to Stravinsky's great work with great passion and all their heart."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8526883BC8B3C0D0E45612D280704E6A/Red_Nose_Company_About_the_Kevatuhri",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8526883BC8B3C0D0E45612D280704E6A/Red_Nose_Company_About_the_Kevatuhri",
                "en": "http://www.stoa.fi/en/events/event/8526883BC8B3C0D0E45612D280704E6A/Red_Nose_Company_About_the_Kevatuhri"
            },
            "description": {
                "fi": "<p>Luvassa on täysin poikkeuksellinen näyttämöllepano Stravinskyn ja kumppaneiden ikonisen Kevätuhrin innoittamana.</p><p>Neljä klovnia tarttuvat suurteokseen ja perkaavat sävellyksen sekä sen sadat tulkinnat. He heittäytyvät toimeen täydellä sydämellä, kaikkensa likoon laittaen. Esityksessä klovnit tanssivat oman koreografiansa varta vasten heille sävellettyyn musiikkiin. Päämääränä on yhteyden kokemuksia voimistava rituaali, jossa ei uhrata enää yhtäkään nuorta tyttöä.<br> <br>Kevätuhrin ensi-ilta 1913 oli skandaali ja syntyi aikaan, jossa leijuivat ensimmäisen maailmansodan enteet. Djagilevin venäläinen baletti esitti ensi-illassa esityksen sinnikkäästi loppuun asti, vaikka yleisöstä osa juoksi huutaen karkuun. Nizinsky, Roerich ja Stravinsky loivat myyttisen tarinan, jossa ihmislajin väkivaltaisuus ja yhteisöllisyys, uhraaminen ja rituaalit tuotiin katsojien eteen paljaina ja pelotta. Kevätuhri vavisutti totuttuja kaavoja ja on vaikuttanut länsimaisen taiteen kehitykseen kenties enemmän kuin mikään muu teos.<br> <br>Ajassamme puhaltavat jälleen sodan tuulet. Klovneilla onkin suuri missio palauttaa rauha tähän maailmaan. Kevätuhrin alkuperäiskoreografin, Nizinskin innoittamana klovnit kääntävät katseensa maata kohden. Löytyykö luontoyhteyden vahvistamisesta tarvittavaa voimaa, jolla polarisaation, eriarvoistavan kehityksen ja väkivallan kierteen voisi kääntää parempaan suuntaan?<br> <br>Kevätuhrin aiemmat ja usein varsin vakavat tulkinnat ovat inspiroitumisen aarreaitta. Tällä kertaa komedialta ei voida välttyä, kun klovnit Babylon, ExMayhem, Hoenanen ja Ré avaavat omaa suhdettaan Stravinskyn musiikkiin, aikaisempiin koreografioihin, kevään piirileikkeihin, esivanhempiin, aikamme tietäjiin, uhraamiseen ja toisaalta uhrautumiseen. Mitä klovnit ovat itse valmiita uhraamaan? Entä ihmiskunta? Painaako vaakakupissa enemmän yhteinen hyvä vaiko sittenkin oma mielihyvä?<br> <br>Esitys on tulvillaan sanatonta komiikkaa.<br> <br>Kesto: 2 h sis. väliaika<br>Ikäsuositus: K13<br>Kieli: englanti, (suomi)</p><p>TYÖRYHMÄ<br><b> Käsikirjoitus ja koreografia </b>Työryhmä<br><b> Ohjaus</b> Niina Sillanpää<br><b> Näyttämöllä</b> Johanna Keinänen, Kaisa Niemi, Minna Puolanto ja Hanna Seppä<br><b> Musiikin sävellys ja äänisuunnittelu</b> Tommi Lindell<br><b> Valosuunnittelu</b>Juha Tuisku<br><b> Puku- ja lavastussuunnittelu</b> Paula Koivunen<br><b> Innoittajina</b> Igor Stravisky, Nikolai Roerich, Vatslav Nižinski…<br><b> Yhteistuotanto</b> Red Nose Company, Tanssiteatteri Tsuumi, Stoa<br><b> Kuvat</b> Jolle Onnismaa</p>",
                "sv": "<p>Clownerna dansar en koreografi till Stravinskijs storverk med stor passion och stort hjärta.</p><p>Det här är en helt exceptionell tolkning av Stravinskijs och hans samarbetspartners ikoniska Våroffer. Clownerna dansar en egen koreografi till detta storverk med stort hjärta, och satsar sitt allt. Målet är att hitta en ritual som stärker upplevelsen av kontakt i dag, när man inte längre offrar unga flickor.</p><p>Våroffrets premiär 1913 var en skandal och kom till i en tid då förebud om det första världskriget låg i luften. Djagilevs ryska balett slutförde premiärföreställningen, trots att en del av publiken skrikande flydde. Niżyński, Roerich och Stravinskij skapade en mytisk berättelse, där mänsklighetens våldsamhet och gemenskap, offer och ritualer lades fram för publiken öppet och oförskräckt. Våroffer skakade om de invanda mönstren och har påverkat den västerländska konstens utveckling kanske mer än något annat verk.</p><p>Krigets vindar blåser åter i vår tid. Clownerna har ett stort uppdrag att återställa freden i världen. Inspirerade av Niżyński, den ursprungliga koreografen för Våroffer, vänder clownerna blicken mot marken. Kan en starkare relation till naturen ge den kraft som behövs för att vända spiralen av polarisering, ökande ojämlikhet och våld?</p><p>De tidigare och ofta ganska seriösa tolkningarna av Våroffer är en skattkista av inspiration. Den här gången går det inte att undvika komik, när clownerna Babylon, ExMayhem, Hoenanen och Ré öppnar upp sin egen relation till Stravinskijs musik, vårens ringlekar, förfäder, vår tids schamaner, offer och uppoffringar. Vad är clownerna själva beredda att offra? Hur är det med mänskligheten? Väger det gemensamma bästa eller den egna njutningen tyngre?</p><p>Föreställningen flödar av ordlös komik!</p><p>Längd 2 timmar, inklusive paus<br>Åldersrekommendation: För vuxna, från 13 år<br>Språk: engelska, finska</p><p>ARBETSGRUPP<br>Manus: Arbetsgrupp<br>Regi: Niina Sillanpää<br>På scenen: Johanna Keinänen, Kaisa Niemi, Minna Puolanto och Hanna Seppä<br>Musik: Tommi Lindell feat. Igor Stravinskij<br>Ljuddesign: Tommi Lindell<br>Ljusdesign: Juha Tuisku<br>Musikalisk konsultation: Marzi Nyman<br>Kostym och scenografi: Paula Koivunen<br>Bilder: Jolle Onnismaa<br>Samproduktion: Red Nose Company, Tanssiteatteri Tsuumi, Stoa</p>",
                "en": "<p>The clowns will dance their choreography to Stravinsky's great work with great passion and all their heart.</p><p>The audience is in for an entirely exceptional interpretation of the iconic The Rite of Spring by Stravinsky and Co. The clowns will be dancing to their own choreography for this masterpiece with all their heart and soul. The aim is to find a contemporary ritual that will enhance the experience of connection, without sacrificing any more young girls.</p><p>The 1913 premiere of The Rite of Spring was a scandal and came at a time when the first signs of the coming First World War could be sensed. Diaghilev’s Ballets Russes ballet company performed the premiere of the piece with perseverance until the end, even though some of the audience members ran away screaming. Nizinsky, Roerich and Stravinsky created a mythical story in which the violence and communalism, sacrifice and rituals of the human species were fearlessly laid bare in front the audience. The Rite of Spring shook the familiar structures to their core and has influenced the development of Western art perhaps more than any other work.</p><p>War is once again a looming presence in our time. The clowns have a great mission to restore peace to this world. Inspired by Nijinsky, the original choreographer of The Rite of Spring, the clowns turn their gaze to the ground. Does strengthening their connection with nature lend them the necessary power to reverse the spiral of polarisation, inequality and violence?<br>The earlier and often quite serious interpretations of The Rite of Spring are a treasure trove of inspiration. This time, comedy cannot be avoided, as clowns Babylon, ExMayhem, Hoenanen and Ré dance out their own relationship with Stravinsky's music, spring circle dances, ancestors, the seers of our time, sacrifice and self-sacrifice. What are the clowns themselves prepared to sacrifice? What about humanity? Is it the common good that matters more or our own pleasure?</p><p>The show is full of unspoken comedy!</p><p>Duration 2 hours, including intermission<br>Recommended age: For adults, over 13s<br>Language: English, Finnish</p><p>CREATIVE TEAM<br>Written by: The creative team<br>Directed by: Niina Sillanpää<br>On stage: Johanna Keinänen, Kaisa Niemi, Minna Puolanto and Hanna Seppä<br>Music: Tommi Lindell feat. Igor Stravinsky<br>Sound design: Tommi Lindell<br>Light design: Juha Tuisku<br>Musical consultation: Marzi Nyman<br>Costume and set design: Paula Koivunen<br>Photos: Jolle Onnismaa<br>Co-production: Red Nose Company, Tsuumi Dance Theatre, Stoa</p>"
            },
            "name": {
                "fi": "Red Nose Company: About the Kevätuhri – – rituaali neljälle klovnille",
                "sv": "Red Nose Company: About the Kevätuhri – About the Kevätuhri – en ritual för fyra clowner.",
                "en": "Red Nose Company: About the Kevätuhri – About the Kevätuhri – a ritual for four clowns."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67699/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67708",
            "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": 1494338,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-30T13:13:14.126766Z",
                    "last_modified_time": "2025-12-30T13:13:14.126778Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782559.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494338/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-30T13:13:14.011056Z",
            "last_modified_time": "2026-03-20T01:14:02.423916Z",
            "date_published": null,
            "start_time": "2026-04-16T15: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": "Lentävä kuolema on röntgenkuva tuberkuloosin jättämistä arvista, joista olemme vuosikymmenet vaienneet.",
                "sv": "Lentävä kuolema är en röntgenbild av de ärr som tuberkulosen lämnat efter sig, något vi har tigit om i decennier.",
                "en": "The film Lentävä kuolema – ‘the flying death’ – is an X-ray of the scars left by tuberculosis, which we have been carrying in silence for decades."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_",
                "en": "http://www.malmitalo.fi/en/events/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_"
            },
            "description": {
                "fi": "<p>Lentävä kuolema on röntgenkuva tuberkuloosin jättämistä arvista, joista olemme vuosikymmenet vaienneet.</p><p>Tuberkuloosiparantola oli asukkailleen yhtä aikaa taivas ja helvetti samojen seinien sisällä. Epidemian historia sisältää niin kuolemaa, häpeää ja eristystä kuin parantolaromansseja, hauskanpitoa ja selviytymistarinoita.</p><p>Lentävä kuolema perehtyy kansalliseen tragediaamme, löytäen sieltä yhteisöllisyyttä, lähimmäisenrakkautta ja järjestelmällistä ja sisukasta työtä ihmishenkien pelastamiseksi.</p><p>Elokuva vie elävälle matkalle parantoloiden aikaan: Se antaa katsojalle yllätyksiä täynnä olevan parantolakokemuksen, ja dokumentaarisen todistusvoiman avulla vie salaisuuksien äärelle.</p><p>Lentävä kuolema paljastaa tuberkuloosin unohdetut tarinat ja antaa mahdollisuuden puhua kokemuksista, joista on vaiettu yli 50 vuotta. Lentävä kuolema kulkee kahdessa eri aikatasossa vuorotellen nykyisyyden ja parantola-aikakauden välillä ja kertoo kollektiivisen tarinan yksilötarinoiden sijaan.</p><p>Ainutlaatuisissa vuonna 1971 tallennetuissa SKS:n arkiston audionauhoissa kolme potilasta kertovat kokemuksistaan parantolan arjesta. Hahmot ovat iloinen maalaistyttö Enne, synkkyyteen taipuva Tenho ja uskonnollinen vastarakastunut Kalevi. Elokuvassa käytetyt arkistofilmit ja valokuvat ovat valtaosin ennennäkemättömiä.</p><p>Kesto: 70 min</p><p>Ikäraja: K-7</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Lentävä kuolema är en röntgenbild av de ärr som tuberkulosen lämnat efter sig, något vi har tigit om i decennier.</p><p>Tuberkulossanatoriet var samtidigt ett himmelrike och ett helvete för de boende. Epidemihistorien innehåller död, skam och isolering, liksom sanatorieromanser, nöje och överlevnadsberättelser. Filmen Lentävä kuolema utforskar vår nationella tragedi och finner i den en känsla av gemenskap, nästankärlek och en systematisk och modig insats i att rädda människoliv.</p><p>Filmen för dig på en levande resa till sanatoriernas tid: Den ger tittaren en sanatorieupplevelse full av överraskningar, och med hjälp av dokumentära bevis avslöjar den även hemligheter.</p><p>Lentävä kuolema avslöjar de glömda historierna om tuberkulosen och ger en möjlighet att tala om upplevelserna man har tigit om i över 50 år. Lentävä kuolema framskrider i två olika tidsplan växelvis mellan nutid och sanatoriets era och berättar en kollektiv berättelse i stället för individuella berättelser.</p><p>I de unika inspelningarna från 1971 från FLS:s arkiv berättar tre patienter om sina upplevelser av sanatorievardagen. Karaktärerna omfattas av den glada bondflickan Enne, Tenho som blir dyster till sinnet och religösa och nykära Kalevi. De arkivfilmer och fotografier som används i filmen har till stor del aldrig visats förr.</p><p>Längd: 70 min.</p><p>Åldersgräns: K-7</p><p>Fritt inträde!</p>",
                "en": "<p>The film Lentävä kuolema – ‘the flying death’ – is an X-ray of the scars left by tuberculosis, which we have been carrying in silence for decades.</p><p>The tuberculosis sanatorium was both heaven and hell within the same walls for the residents. The story of the epidemic features death, shame and isolation, but also tales of love at the sanatorium, joy and survival. Lentävä kuolema explores our national tragedy, revealing a sense of community, neighbourly love, and a systematic and determined effort to save human lives.</p><p>The film takes you on a vivid journey to the era of sanatoria: It offers the viewer a sanatorium experience full of surprises and reveals the secrets through the power of documentary evidence. Lentävä kuolema unearths the forgotten stories of tuberculosis and allows us to talk about experiences that have been silenced for more than 50 years. Lentävä kuolema alternates between two different time levels, from the present time to the sanatorium era, telling a collective history instead of individual stories.</p><p>In unique audio tapes from SKS archives recorded in 1971, three patients talk about their experiences of everyday life in the sanatorium. The characters are the cheerful country girl Enne, the brooding Tenho, and the religious Kalevi who has recently fallen in love. Most of the archive films and photographs used in the film have never been seen before in public.</p><p>Duration: 70 min</p><p>Age rating: 7</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Doc Helios: Lentävä kuolema (7)",
                "sv": "Doc Helios: Lentävä kuolema (7)",
                "en": "Doc Helios: Lentävä kuolema (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67708/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68161",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1590172,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-11T15:39:58.176110Z",
                    "last_modified_time": "2026-03-11T15:39:58.176130Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780707.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1590172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-11T15:39:58.066191Z",
            "last_modified_time": "2026-03-20T01:14:02.283696Z",
            "date_published": null,
            "start_time": "2026-04-16T15: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": "Työväenopiston konsertti"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/77AC2163D790EB3C44E89EED1B06D79C/Piano_ja_vapaa_saestys_-kurssien_kevatsoittajaiset_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/77AC2163D790EB3C44E89EED1B06D79C/Piano_ja_vapaa_saestys_-kurssien_kevatsoittajaiset_",
                "en": "http://www.stoa.fi/en/events/event/77AC2163D790EB3C44E89EED1B06D79C/Piano_ja_vapaa_saestys_-kurssien_kevatsoittajaiset_"
            },
            "description": {
                "fi": "<p>Työväenopiston konsertti</p>"
            },
            "name": {
                "fi": "Piano ja vapaa säestys -kurssien kevätsoittajaiset",
                "sv": "Piano ja vapaa säestys -kurssien kevätsoittajaiset",
                "en": "Piano ja vapaa säestys -kurssien kevätsoittajaiset"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68161/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68160",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": 1498836,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-02T14:14:26.790457Z",
                    "last_modified_time": "2026-03-02T14:14:26.790475Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785931.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1498836/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-02T14:14:26.614055Z",
            "last_modified_time": "2026-03-20T01:14:01.933518Z",
            "date_published": null,
            "start_time": "2026-04-16T13:00:00Z",
            "end_time": "2026-04-16T16: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 tutustumaan Kanneltalon palveluihin ja kurkistamaan kulisseihin sekä tapaamaan alueen toimijoita!",
                "sv": "Välkommen att bekanta dig med Gamlasgårdens tjänster, titta in bakom kulisserna och träffa aktörer i området!",
                "en": "Welcome to Kanneltalo to take a peek behind the scenes and meet local operators!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Kaikkien_Kantsu_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Gamlasgard_for_alla",
                "en": "http://www.kanneltalo.fi/en/events/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Our_Kantsu"
            },
            "description": {
                "fi": "<p>Tervetuloa tutustumaan Kanneltalon palveluihin ja kurkistamaan kulisseihin sekä tapaamaan alueen toimijoita!</p><p>- Oletko koskaan käynyt Kanneltalossa – vai kuljetko aina vain ohi?</p><p>- Onko Kanneltalo turvallinen paikka, jonne kaikki saavat tulla?</p><p>- Tiesitkö, että saman katon alta löytyy neljä eri palvelua: nuorisotalo, kirjasto, työväenopisto sekä kulttuuripalvelut?</p><p>- Haluaisitko kurkistaa kulissien taakse ja nähdä tiloja, joihin et yleensä pääse?</p><p>- Etsitkö inspiroivaa harrastusta lapselle, nuorelle tai itsellesi – tai kivaa tekemistä koko perheelle?</p><p>- Kiinnostaako tavata talon väkeä ja jutella alueen kuulumisista muiden toimijoiden kanssa?</p><p>Näihin ja muihin kysymyksiin voit saada vastauksen torstaina 16.4., kun Kanneltalossa vietetään avointen ovien iltapäivää.</p><p>Avoimet ovet -tapahtuma on suunnattu kaikille kannelmäkeläisille.</p><p>Kanneltalossa toimii nuorisotalo, kirjasto, kulttuuripalvelut sekä työväenopisto ja avointen ovien iltapäivässä pääset kuulemaan näiden palveluiden toiminnasta sekä tutustumaan henkilökuntaan.</p><p>Iltapäivän aikana pääset kurkkaamaan Kanneltalon kulisseihin ja takakäytäviin sekä näkemään, mitä työväenopiston kursseilla oikeasti tehdään.</p><p>Tapahtuman aikana esitellään Kanneltalon lisäksi myös muita alueen palveluita, kuten harrastus- ja kesätoimintaa sekä tavataan yhteistyökumppaneita.</p><p>Kahvilan stagella kuullaan tietoiskut palveluista klo 16 ja klo 17 ja lähdöt talokierroksille ovat klo 16.30 ja 17.30.</p><p>Kaikille avoin naapurustopaneeli järjestetään Kahvilan stagella klo 18–18.45.<br>Paneelissa mukana Kanneltalon palveluiden johto sekä alueella toimivia tahoja. Paneelin fasilitoi yhdyskuntatyöntekijä Tuija Salovaara.</p><p>Lapsille on omaa ohjelmaa sekä lapsiparkki kirjaston monitoimitila Tempossa klo 16–19.</p><p>Tule mukaan tutustumaan Kanneltaloon sekä kysymään ja keskustelemaan alueen ajankohtaisista asioista.</p><p>Nähdään Kanneltalossa!</p><p>Ohjelma<br>Klo 16–19 Palveluiden ja alueen toimijoiden esittelypisteet ja keskustelua kävijöiden kanssa</p><p>Klo 16–19 Harrastus- ja kesätoiminnan esittelyä</p><p>Klo 16–19 Lasten omaa ohjelmaa ja lapsiparkki kirjaston monitoimitila Tempossa</p><p>Klo 16 Tietoisku Kanneltalon palveluista Kahvilan stagella klo 16 ja klo 17</p><p>Klo 16.30 Ohjattu talokierros (myös kulissien taakse) lähtö aulasta</p><p>Klo 17 Tietoisku Kanneltalon palveluista Kahvilan stagella klo 16 ja klo 17</p><p>Klo 17.30 Ohjattu talokierros (myös kulissien taakse) lähtö aulasta</p><p>Klo 18–18.45 Naapurustopaneeli Kahvilan stagella</p>",
                "sv": "<p>Välkommen att bekanta dig med Gamlasgårdens tjänster, titta in bakom kulisserna och träffa aktörer i området!</p><p>– Har du någon gång besökt Gamlasgården – eller brukar du bara gå förbi?</p><p>– Är Gamlasgården en trygg plats dit alla får komma?</p><p>– Visste du att där finns fyra olika tjänster under ett och samma tak: en ungdomsgård, ett bibliotek, ett arbetarinstitut och kulturtjänster?</p><p>– Vill du ta en titt bakom kulisserna och se utrymmen som du normalt inte har tillgång till?</p><p>– Letar du efter en inspirerande hobby för ett barn, en ung person eller dig själv – eller något roligt för hela familjen?</p><p>– Vill du träffa personalen i huset och diskutera aktuella frågor i området med andra aktörer?</p><p>Dessa och andra frågor kan du få svar på torsdagen den 16 april, när Gamlasgården håller öppet hus under eftermiddagen.</p><p>Öppet hus-evenemanget riktar sig till alla i Gamlas.</p><p>I Gamlasgården finns en ungdomsgård, ett bibliotek, kulturtjänster och ett arbetarinstitut, och under öppet hus-eftermiddagen får du höra om dessa tjänster och träffa personalen.</p><p>Under eftermiddagen får du kika in bakom kulisserna och backstage på Gamlasgården och se vad man egentligen gör på arbetarinstitutets kurser.</p><p>Under evenemanget presenteras förutom Gamlasgården även andra tjänster i området, till exempel fritids- och sommarverksamhet, och man får träffa samarbetspartner.</p><p>Information om tjänsterna ges på kaféscenen kl. 16 och 17, och rundturer i huset startar 16.30 och 17.30.</p><p>En grannskapspanel som är öppen för alla ordnas på kaféscenen kl. 18–18.45.<br>I panelen medverkar ledningen för Gamlasgårdens tjänster och aktörer som är verksamma i området. Panelen faciliteras av Tuija Salovaara, som arbetar med samhällsfrågor.</p><p>För barnen ordnas eget program och barnparkering i bibliotekets allaktivitetsrum Tempo kl. 16–19.</p><p>Kom med för att utforska Gamlasgården, ställa frågor och diskutera sådant som är aktuellt i området.</p><p>Vi ses på Gamlasgården!</p><p>Program<br>Kl. 16–19 Tjänster och aktörer i området presenterar sig och diskuterar med besökarna</p><p>Kl. 16–19 Presentation av fritids- och sommarverksamhet</p><p>Kl. 16–19 Program för barnen och barnparkering i bibliotekets allaktivitetsrum Tempo</p><p>Kl. 16 Information om Gamlasgårdens tjänster på kaféscenen kl. 16 och kl. 17</p><p>Kl. 16.30 Guidad rundtur i huset (även bakom kulisserna), startar från entrén</p><p>Kl. 17 Information om Gamlasgårdens tjänster på kaféscenen kl. 16 och kl. 17</p><p>Kl. 17.30 Guidad rundtur i huset (även bakom kulisserna), startar från entrén</p><p>18–18.45 Grannskapspanel på kaféscenen</p>",
                "en": "<p>Welcome to Kanneltalo to take a peek behind the scenes and meet local operators!</p><p>- Have you ever been to Kanneltalo – or do you always just pass it by?</p><p>- Is Kanneltalo a safe place where everyone can come?</p><p>- Did you know that there are four different services under one roof: a youth centre, a library, an adult education centre and cultural services?</p><p>- Would you like to take a peek behind the scenes and visit places you would normally not get to see?</p><p>- Looking for an inspiring hobby for a child, a young person or yourself – or fun activities for the whole family?</p><p>- Are you interested in meeting the people of the centre and talking about neighbourhood events with other operators?</p><p>You can get answers to these and other questions on Thursday 16 April, when Kanneltalo hosts an open house afternoon.</p><p>The Open House event is open to all residents of Kannelmäki.</p><p>Kanneltalo is home to a youth centre, a library, cultural services and an adult education centre, and the open house afternoon will give you the chance to learn more about the activities of these services and meet the staff.</p><p>During the afternoon, you can take a peek behind the scenes and backstage at Kanneltalo and see what really goes on at adult education centre courses.</p><p>In addition to Kanneltalo itself, local services, such as hobby and summer activities, will be presented during the event and you can meet cooperation partners.</p><p>The Café Stage will host information sessions on services at 16.00 and 17.00 and house tours will start at 16.30 and 17.30.</p><p>The neighbourhood panel, open to all, will take place on the Café Stage from 18.00 to 18.45.<br>Kanneltalo service management and local operators will participate in the panel. The panel will be moderated by community worker Tuija Salovaara.</p><p>There are activities for children and a dedicated room for children to stay in in the library's multifunctional space Tempo from 16.00 to 19.00.</p><p>Join us in exploring Kanneltalo and asking questions and discussing current issues in the neighbourhood.</p><p>See you at Kanneltalo!</p><p>Programme<br>16.00–19.00 Presentation of services and local operators and discussion with visitors</p><p>16.00–19.00 Presentation of hobby and summer activities</p><p>16.00–19.00 Children's programme and children's room in the library's multifunctional space Tempo</p><p>16.00 Information session on services at Kanneltalo on the Café Stage at 16.00 and 17.00</p><p>16.30 Guided house tour (including behind-the-scenes areas) starting from the lobby</p><p>17.00 Information session on services at Kanneltalo on the Café Stage at 16.00 and 17.00</p><p>17.30 Guided house tour (including behind-the-scenes areas) starting from the lobby</p><p>18.00–18.45 Neighbourhood panel on the Café Stage</p>"
            },
            "name": {
                "fi": "Kaikkien Kantsu",
                "sv": "Gamlasgård för alla",
                "en": "Our Kantsu"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68160/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67698",
            "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:33/?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/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04",
                        "sv": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04",
                        "en": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 20€",
                        "sv": "24,50 € / 20€",
                        "en": "24,50 € / 20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494002,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T07:12:56.143043Z",
                    "last_modified_time": "2025-12-03T07:12:56.143056Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780705.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494002/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T07:12:56.052046Z",
            "last_modified_time": "2026-03-20T01:14:01.616262Z",
            "date_published": null,
            "start_time": "2026-04-15T15: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": "Luvassa on täysin poikkeuksellinen näyttämöllepano Stravinskyn ja kumppaneiden ikonisen Kevätuhrin innoittamana.",
                "sv": "Clownerna dansar en koreografi till Stravinskijs storverk med stor passion och stort hjärta.",
                "en": "The clowns will dance their choreography to Stravinsky's great work with great passion and all their heart."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FDC61E07C383B91F72F048C796D691D4/Red_Nose_Company_About_the_Kevatuhri",
                "sv": "http://www.stoa.fi/sv/evenemang/event/FDC61E07C383B91F72F048C796D691D4/Red_Nose_Company_About_the_Kevatuhri",
                "en": "http://www.stoa.fi/en/events/event/FDC61E07C383B91F72F048C796D691D4/Red_Nose_Company_About_the_Kevatuhri"
            },
            "description": {
                "fi": "<p>Luvassa on täysin poikkeuksellinen näyttämöllepano Stravinskyn ja kumppaneiden ikonisen Kevätuhrin innoittamana.</p><p>Neljä klovnia tarttuvat suurteokseen ja perkaavat sävellyksen sekä sen sadat tulkinnat. He heittäytyvät toimeen täydellä sydämellä, kaikkensa likoon laittaen. Esityksessä klovnit tanssivat oman koreografiansa varta vasten heille sävellettyyn musiikkiin. Päämääränä on yhteyden kokemuksia voimistava rituaali, jossa ei uhrata enää yhtäkään nuorta tyttöä.<br> <br>Kevätuhrin ensi-ilta 1913 oli skandaali ja syntyi aikaan, jossa leijuivat ensimmäisen maailmansodan enteet. Djagilevin venäläinen baletti esitti ensi-illassa esityksen sinnikkäästi loppuun asti, vaikka yleisöstä osa juoksi huutaen karkuun. Nizinsky, Roerich ja Stravinsky loivat myyttisen tarinan, jossa ihmislajin väkivaltaisuus ja yhteisöllisyys, uhraaminen ja rituaalit tuotiin katsojien eteen paljaina ja pelotta. Kevätuhri vavisutti totuttuja kaavoja ja on vaikuttanut länsimaisen taiteen kehitykseen kenties enemmän kuin mikään muu teos.<br> <br>Ajassamme puhaltavat jälleen sodan tuulet. Klovneilla onkin suuri missio palauttaa rauha tähän maailmaan. Kevätuhrin alkuperäiskoreografin, Nizinskin innoittamana klovnit kääntävät katseensa maata kohden. Löytyykö luontoyhteyden vahvistamisesta tarvittavaa voimaa, jolla polarisaation, eriarvoistavan kehityksen ja väkivallan kierteen voisi kääntää parempaan suuntaan?<br> <br>Kevätuhrin aiemmat ja usein varsin vakavat tulkinnat ovat inspiroitumisen aarreaitta. Tällä kertaa komedialta ei voida välttyä, kun klovnit Babylon, ExMayhem, Hoenanen ja Ré avaavat omaa suhdettaan Stravinskyn musiikkiin, aikaisempiin koreografioihin, kevään piirileikkeihin, esivanhempiin, aikamme tietäjiin, uhraamiseen ja toisaalta uhrautumiseen. Mitä klovnit ovat itse valmiita uhraamaan? Entä ihmiskunta? Painaako vaakakupissa enemmän yhteinen hyvä vaiko sittenkin oma mielihyvä?<br> <br>Esitys on tulvillaan sanatonta komiikkaa.<br> <br>Kesto: 2 h sis. väliaika<br>Ikäsuositus: K13<br>Kieli: englanti, (suomi)</p><p>TYÖRYHMÄ<br><b> Käsikirjoitus ja koreografia </b>Työryhmä<br><b> Ohjaus</b> Niina Sillanpää<br><b> Näyttämöllä</b> Johanna Keinänen, Kaisa Niemi, Minna Puolanto ja Hanna Seppä<br><b> Musiikin sävellys ja äänisuunnittelu</b> Tommi Lindell<br><b> Valosuunnittelu</b>Juha Tuisku<br><b> Puku- ja lavastussuunnittelu</b> Paula Koivunen<br><b> Innoittajina</b> Igor Stravisky, Nikolai Roerich, Vatslav Nižinski…<br><b> Yhteistuotanto</b> Red Nose Company, Tanssiteatteri Tsuumi, Stoa<br><b> Kuvat</b> Jolle Onnismaa</p>",
                "sv": "<p>Clownerna dansar en koreografi till Stravinskijs storverk med stor passion och stort hjärta.</p><p>Det här är en helt exceptionell tolkning av Stravinskijs och hans samarbetspartners ikoniska Våroffer. Clownerna dansar en egen koreografi till detta storverk med stort hjärta, och satsar sitt allt. Målet är att hitta en ritual som stärker upplevelsen av kontakt i dag, när man inte längre offrar unga flickor.</p><p>Våroffrets premiär 1913 var en skandal och kom till i en tid då förebud om det första världskriget låg i luften. Djagilevs ryska balett slutförde premiärföreställningen, trots att en del av publiken skrikande flydde. Niżyński, Roerich och Stravinskij skapade en mytisk berättelse, där mänsklighetens våldsamhet och gemenskap, offer och ritualer lades fram för publiken öppet och oförskräckt. Våroffer skakade om de invanda mönstren och har påverkat den västerländska konstens utveckling kanske mer än något annat verk.</p><p>Krigets vindar blåser åter i vår tid. Clownerna har ett stort uppdrag att återställa freden i världen. Inspirerade av Niżyński, den ursprungliga koreografen för Våroffer, vänder clownerna blicken mot marken. Kan en starkare relation till naturen ge den kraft som behövs för att vända spiralen av polarisering, ökande ojämlikhet och våld?</p><p>De tidigare och ofta ganska seriösa tolkningarna av Våroffer är en skattkista av inspiration. Den här gången går det inte att undvika komik, när clownerna Babylon, ExMayhem, Hoenanen och Ré öppnar upp sin egen relation till Stravinskijs musik, vårens ringlekar, förfäder, vår tids schamaner, offer och uppoffringar. Vad är clownerna själva beredda att offra? Hur är det med mänskligheten? Väger det gemensamma bästa eller den egna njutningen tyngre?</p><p>Föreställningen flödar av ordlös komik!</p><p>Längd 2 timmar, inklusive paus<br>Åldersrekommendation: För vuxna, från 13 år<br>Språk: engelska, finska</p><p>ARBETSGRUPP<br>Manus: Arbetsgrupp<br>Regi: Niina Sillanpää<br>På scenen: Johanna Keinänen, Kaisa Niemi, Minna Puolanto och Hanna Seppä<br>Musik: Tommi Lindell feat. Igor Stravinskij<br>Ljuddesign: Tommi Lindell<br>Ljusdesign: Juha Tuisku<br>Musikalisk konsultation: Marzi Nyman<br>Kostym och scenografi: Paula Koivunen<br>Bilder: Jolle Onnismaa<br>Samproduktion: Red Nose Company, Tanssiteatteri Tsuumi, Stoa</p>",
                "en": "<p>The clowns will dance their choreography to Stravinsky's great work with great passion and all their heart.</p><p>The audience is in for an entirely exceptional interpretation of the iconic The Rite of Spring by Stravinsky and Co. The clowns will be dancing to their own choreography for this masterpiece with all their heart and soul. The aim is to find a contemporary ritual that will enhance the experience of connection, without sacrificing any more young girls.</p><p>The 1913 premiere of The Rite of Spring was a scandal and came at a time when the first signs of the coming First World War could be sensed. Diaghilev’s Ballets Russes ballet company performed the premiere of the piece with perseverance until the end, even though some of the audience members ran away screaming. Nizinsky, Roerich and Stravinsky created a mythical story in which the violence and communalism, sacrifice and rituals of the human species were fearlessly laid bare in front the audience. The Rite of Spring shook the familiar structures to their core and has influenced the development of Western art perhaps more than any other work.</p><p>War is once again a looming presence in our time. The clowns have a great mission to restore peace to this world. Inspired by Nijinsky, the original choreographer of The Rite of Spring, the clowns turn their gaze to the ground. Does strengthening their connection with nature lend them the necessary power to reverse the spiral of polarisation, inequality and violence?<br>The earlier and often quite serious interpretations of The Rite of Spring are a treasure trove of inspiration. This time, comedy cannot be avoided, as clowns Babylon, ExMayhem, Hoenanen and Ré dance out their own relationship with Stravinsky's music, spring circle dances, ancestors, the seers of our time, sacrifice and self-sacrifice. What are the clowns themselves prepared to sacrifice? What about humanity? Is it the common good that matters more or our own pleasure?</p><p>The show is full of unspoken comedy!</p><p>Duration 2 hours, including intermission<br>Recommended age: For adults, over 13s<br>Language: English, Finnish</p><p>CREATIVE TEAM<br>Written by: The creative team<br>Directed by: Niina Sillanpää<br>On stage: Johanna Keinänen, Kaisa Niemi, Minna Puolanto and Hanna Seppä<br>Music: Tommi Lindell feat. Igor Stravinsky<br>Sound design: Tommi Lindell<br>Light design: Juha Tuisku<br>Musical consultation: Marzi Nyman<br>Costume and set design: Paula Koivunen<br>Photos: Jolle Onnismaa<br>Co-production: Red Nose Company, Tsuumi Dance Theatre, Stoa</p>"
            },
            "name": {
                "fi": "Red Nose Company: About the Kevätuhri – – rituaali neljälle klovnille",
                "sv": "Red Nose Company: About the Kevätuhri – About the Kevätuhri – en ritual för fyra clowner.",
                "en": "Red Nose Company: About the Kevätuhri – About the Kevätuhri – a ritual for four clowns."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67698/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67400",
            "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-esittaa-kino-helios-the-drama-malmitalo-21473666/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473666/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473666/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672954,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:15:05.518375Z",
                    "last_modified_time": "2026-03-19T12:15:05.518407Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781092.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672954/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:15:05.412598Z",
            "last_modified_time": "2026-03-20T01:14:01.484941Z",
            "date_published": null,
            "start_time": "2026-04-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CA429F071F6D2F3FF78C56B1AF97CC3C/The_Drama_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CA429F071F6D2F3FF78C56B1AF97CC3C/The_Drama_12_",
                "en": "http://www.malmitalo.fi/en/events/event/CA429F071F6D2F3FF78C56B1AF97CC3C/The_Drama_12_"
            },
            "description": {
                "fi": "<p>Emman ja Charlien hartaasti odottama hääpäivä on vihdoin lähellä, eikä pari voisi olla onnellisempi. Kun odottamaton salaisuus paljastuu, heidän täydellisesti suunniteltu hääviikkonsa alkaa hajota käsiin. Rakkaus joutuu koetukselle, kun jokainen sana, katse ja vitsi saa uuden merkityksen – eikä mikään ole entisellään.<br>Zendaya ja Robert Pattinson tähdittävät A24:n elokuvaa The Drama.</p><p>Ikäraja: 12<br>Kesto: 105 min<br>Ensi-ilta: 02.04.2026<br>Kieli: englanti<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "The Drama (12) – Kino Helios",
                "sv": "The Drama (12) – Kino Helios",
                "en": "The Drama (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67399",
            "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-esittaa-kino-helios-orava-malmitalo-21468712/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468712/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468712/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672947,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:50.308469Z",
                    "last_modified_time": "2026-03-19T12:14:50.308485Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781091.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:50.182927Z",
            "last_modified_time": "2026-03-20T01:14:01.328339Z",
            "date_published": null,
            "start_time": "2026-04-15T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E1021ACEA656DA50781A41F8AAAF3CED/Orava_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E1021ACEA656DA50781A41F8AAAF3CED/Orava_12_",
                "en": "http://www.malmitalo.fi/en/events/event/E1021ACEA656DA50781A41F8AAAF3CED/Orava_12_"
            },
            "description": {
                "fi": "<p>Orava on absurdi tarina Pasista, yksinäisestä mutta hyväsydämisestä keinotekoisten eläinten suunnittelijasta, joka elää maailmassa, missä luonto on vain muisto ja ihmisen hyvinvointi on järjestetty jopa liiankin huolellisesti.</p><p>Eräänä päivänä Pasi (Miro Lopperi) löytää sattumalta maailman viimeisen elävän oravan, ja kohtaa samalla Emilian (Mimosa Willamo), hyvinvoinnin sääntökirjaa valvovan viranomaisen. Pasi päättää uhmata yhteiskunnan sääntöjä ja auttaa oravaa, mutta tapahtuu jotain odottamatonta – orava masentuu ja Pasi rakastuu.</p><p>7.5. klo 13 HopeaCine-näytöksessä mukana tekijävieras.</p><p>Ikäraja: 12<br>Kesto: 93 min<br>Ensi-ilta: 02.04.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Orava (12) – Kino Helios",
                "sv": "Orava (12) – Kino Helios",
                "en": "Orava (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68078",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494788,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-06T13:13:18.697803Z",
                    "last_modified_time": "2026-02-06T13:13:18.697816Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780498.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494788/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-06T13:13:18.606543Z",
            "last_modified_time": "2026-03-20T01:14:01.154800Z",
            "date_published": null,
            "start_time": "2026-04-15T08: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": "Kevään Skidikinossa moikataan myyrää! Myyrälle ja hänen ystävilleen aiheuttaa ihmetystä Myyrän kolon edestä löytynyt herätyskello. Sillä on hauska leikkiä, koska se tikittää ja sen viisareita voi käännellä.",
                "sv": "Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.",
                "en": "Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3C29C97D2D06CB80B3B3C9657A9F7E6E/Skidikino_S_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/3C29C97D2D06CB80B3B3C9657A9F7E6E/Skidikino_S_",
                "en": "http://www.vuotalo.fi/en/events/event/3C29C97D2D06CB80B3B3C9657A9F7E6E/Skidikino_S_"
            },
            "description": {
                "fi": "<p>Kevään Skidikinossa moikataan myyrää! Myyrälle ja hänen ystävilleen aiheuttaa ihmetystä Myyrän kolon edestä löytynyt herätyskello. Sillä on hauska leikkiä, koska se tikittää ja sen viisareita voi käännellä.</p><p>Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa ihastuttavan riemukkaita hetkiä kaikenikäisille! Elokuvassa on musiikkisäestys. Soveltuu myös perheen pienimmille.</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. Vuotalo - Taidekasvatus</p><p>Kieli: sanaton  <br>Kesto: n. 30 min <br>Hinta: 0 € <br>Ikäraja: S <br>Ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi <br>Lisätietoja: salla.fornaro@hel.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen. <br> <br>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus <br> <br>Längd: ca. 30 min <br>Språk: ordlös <br>Anmälan för grupper på kultus.hel.fi <br>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus <br> <br>Duration: 30 min <br>Language: no dialogue <br>Registration for daycare groups at kultus.hel.fi <br>More information: salla.fornaro@hel.fi</p>"
            },
            "name": {
                "fi": "Skidikino (S) – Myyrä ja herätyskello",
                "sv": "Skidikino (S) – Myyrä ja herätyskello",
                "en": "Skidikino (S) – Myyrä ja herätyskello"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68078/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68079",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494787,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-06T13:13:18.372327Z",
                    "last_modified_time": "2026-02-06T13:13:18.372342Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780497.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-06T13:13:18.255984Z",
            "last_modified_time": "2026-03-20T01:14:01.008574Z",
            "date_published": null,
            "start_time": "2026-04-15T06:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kevään Skidikinossa moikataan myyrää! Myyrälle ja hänen ystävilleen aiheuttaa ihmetystä Myyrän kolon edestä löytynyt herätyskello. Sillä on hauska leikkiä, koska se tikittää ja sen viisareita voi käännellä.",
                "sv": "Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.",
                "en": "Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FFE233CA54AC444330E14EE8E21410BC/Skidikino_S_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/FFE233CA54AC444330E14EE8E21410BC/Skidikino_S_",
                "en": "http://www.vuotalo.fi/en/events/event/FFE233CA54AC444330E14EE8E21410BC/Skidikino_S_"
            },
            "description": {
                "fi": "<p>Kevään Skidikinossa moikataan myyrää! Myyrälle ja hänen ystävilleen aiheuttaa ihmetystä Myyrän kolon edestä löytynyt herätyskello. Sillä on hauska leikkiä, koska se tikittää ja sen viisareita voi käännellä.</p><p>Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa ihastuttavan riemukkaita hetkiä kaikenikäisille! Elokuvassa on musiikkisäestys. Soveltuu myös perheen pienimmille.</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. Vuotalo - Taidekasvatus</p><p>Kieli: sanaton  <br>Kesto: n. 30 min <br>Hinta: 0 € <br>Ikäraja: S <br>Ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi <br>Lisätietoja: salla.fornaro@hel.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus <br> <br>Längd: ca. 30 min <br>Språk: ordlös <br>Anmälan för grupper på kultus.hel.fi <br>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus <br> <br>Duration: 30 min <br>Language: no dialogue <br>Registration for daycare groups at kultus.hel.fi <br>More information: salla.fornaro@hel.fi</p>"
            },
            "name": {
                "fi": "Skidikino (S) – Myyrä ja herätyskello",
                "sv": "Skidikino (S) – Myyrä ja herätyskello",
                "en": "Skidikino (S) – Myyrä ja herätyskello"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68079/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67697",
            "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:33/?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/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04",
                        "sv": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04",
                        "en": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-about-the-kevaetuhri-4040347/#calendar-start=2026-04"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 20€",
                        "sv": "24,50 € / 20€",
                        "en": "24,50 € / 20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494001,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T07:12:55.817833Z",
                    "last_modified_time": "2025-12-03T07:12:55.817847Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780704.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494001/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T07:12:55.725697Z",
            "last_modified_time": "2026-03-20T01:14:00.850416Z",
            "date_published": null,
            "start_time": "2026-04-14T15: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": "Luvassa on täysin poikkeuksellinen näyttämöllepano Stravinskyn ja kumppaneiden ikonisen Kevätuhrin innoittamana.",
                "sv": "Clownerna dansar en koreografi till Stravinskijs storverk med stor passion och stort hjärta.",
                "en": "The clowns will dance their choreography to Stravinsky's great work with great passion and all their heart."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/825BCA3D97CB1F03E5BAED2E9F76C44D/Red_Nose_Company_About_the_Kevatuhri",
                "sv": "http://www.stoa.fi/sv/evenemang/event/825BCA3D97CB1F03E5BAED2E9F76C44D/Red_Nose_Company_About_the_Kevatuhri",
                "en": "http://www.stoa.fi/en/events/event/825BCA3D97CB1F03E5BAED2E9F76C44D/Red_Nose_Company_About_the_Kevatuhri"
            },
            "description": {
                "fi": "<p>Luvassa on täysin poikkeuksellinen näyttämöllepano Stravinskyn ja kumppaneiden ikonisen Kevätuhrin innoittamana.</p><p>Neljä klovnia tarttuvat suurteokseen ja perkaavat sävellyksen sekä sen sadat tulkinnat. He heittäytyvät toimeen täydellä sydämellä, kaikkensa likoon laittaen. Esityksessä klovnit tanssivat oman koreografiansa varta vasten heille sävellettyyn musiikkiin. Päämääränä on yhteyden kokemuksia voimistava rituaali, jossa ei uhrata enää yhtäkään nuorta tyttöä.<br> <br>Kevätuhrin ensi-ilta 1913 oli skandaali ja syntyi aikaan, jossa leijuivat ensimmäisen maailmansodan enteet. Djagilevin venäläinen baletti esitti ensi-illassa esityksen sinnikkäästi loppuun asti, vaikka yleisöstä osa juoksi huutaen karkuun. Nizinsky, Roerich ja Stravinsky loivat myyttisen tarinan, jossa ihmislajin väkivaltaisuus ja yhteisöllisyys, uhraaminen ja rituaalit tuotiin katsojien eteen paljaina ja pelotta. Kevätuhri vavisutti totuttuja kaavoja ja on vaikuttanut länsimaisen taiteen kehitykseen kenties enemmän kuin mikään muu teos.<br> <br>Ajassamme puhaltavat jälleen sodan tuulet. Klovneilla onkin suuri missio palauttaa rauha tähän maailmaan. Kevätuhrin alkuperäiskoreografin, Nizinskin innoittamana klovnit kääntävät katseensa maata kohden. Löytyykö luontoyhteyden vahvistamisesta tarvittavaa voimaa, jolla polarisaation, eriarvoistavan kehityksen ja väkivallan kierteen voisi kääntää parempaan suuntaan?<br> <br>Kevätuhrin aiemmat ja usein varsin vakavat tulkinnat ovat inspiroitumisen aarreaitta. Tällä kertaa komedialta ei voida välttyä, kun klovnit Babylon, ExMayhem, Hoenanen ja Ré avaavat omaa suhdettaan Stravinskyn musiikkiin, aikaisempiin koreografioihin, kevään piirileikkeihin, esivanhempiin, aikamme tietäjiin, uhraamiseen ja toisaalta uhrautumiseen. Mitä klovnit ovat itse valmiita uhraamaan? Entä ihmiskunta? Painaako vaakakupissa enemmän yhteinen hyvä vaiko sittenkin oma mielihyvä?<br> <br>Esitys on tulvillaan sanatonta komiikkaa.<br> <br>Kesto: 2 h sis. väliaika<br>Ikäsuositus: K13<br>Kieli: englanti, (suomi)</p><p>TYÖRYHMÄ<br><b> Käsikirjoitus ja koreografia </b>Työryhmä<br><b> Ohjaus</b> Niina Sillanpää<br><b> Näyttämöllä</b> Johanna Keinänen, Kaisa Niemi, Minna Puolanto ja Hanna Seppä<br><b> Musiikin sävellys ja äänisuunnittelu</b> Tommi Lindell<br><b> Valosuunnittelu</b>Juha Tuisku<br><b> Puku- ja lavastussuunnittelu</b> Paula Koivunen<br><b> Innoittajina</b> Igor Stravisky, Nikolai Roerich, Vatslav Nižinski…<br><b> Yhteistuotanto</b> Red Nose Company, Tanssiteatteri Tsuumi, Stoa<br><b> Kuvat</b> Jolle Onnismaa</p>",
                "sv": "<p>Clownerna dansar en koreografi till Stravinskijs storverk med stor passion och stort hjärta.</p><p>Det här är en helt exceptionell tolkning av Stravinskijs och hans samarbetspartners ikoniska Våroffer. Clownerna dansar en egen koreografi till detta storverk med stort hjärta, och satsar sitt allt. Målet är att hitta en ritual som stärker upplevelsen av kontakt i dag, när man inte längre offrar unga flickor.</p><p>Våroffrets premiär 1913 var en skandal och kom till i en tid då förebud om det första världskriget låg i luften. Djagilevs ryska balett slutförde premiärföreställningen, trots att en del av publiken skrikande flydde. Niżyński, Roerich och Stravinskij skapade en mytisk berättelse, där mänsklighetens våldsamhet och gemenskap, offer och ritualer lades fram för publiken öppet och oförskräckt. Våroffer skakade om de invanda mönstren och har påverkat den västerländska konstens utveckling kanske mer än något annat verk.</p><p>Krigets vindar blåser åter i vår tid. Clownerna har ett stort uppdrag att återställa freden i världen. Inspirerade av Niżyński, den ursprungliga koreografen för Våroffer, vänder clownerna blicken mot marken. Kan en starkare relation till naturen ge den kraft som behövs för att vända spiralen av polarisering, ökande ojämlikhet och våld?</p><p>De tidigare och ofta ganska seriösa tolkningarna av Våroffer är en skattkista av inspiration. Den här gången går det inte att undvika komik, när clownerna Babylon, ExMayhem, Hoenanen och Ré öppnar upp sin egen relation till Stravinskijs musik, vårens ringlekar, förfäder, vår tids schamaner, offer och uppoffringar. Vad är clownerna själva beredda att offra? Hur är det med mänskligheten? Väger det gemensamma bästa eller den egna njutningen tyngre?</p><p>Föreställningen flödar av ordlös komik!</p><p>Längd 2 timmar, inklusive paus<br>Åldersrekommendation: För vuxna, från 13 år<br>Språk: engelska, finska</p><p>ARBETSGRUPP<br>Manus: Arbetsgrupp<br>Regi: Niina Sillanpää<br>På scenen: Johanna Keinänen, Kaisa Niemi, Minna Puolanto och Hanna Seppä<br>Musik: Tommi Lindell feat. Igor Stravinskij<br>Ljuddesign: Tommi Lindell<br>Ljusdesign: Juha Tuisku<br>Musikalisk konsultation: Marzi Nyman<br>Kostym och scenografi: Paula Koivunen<br>Bilder: Jolle Onnismaa<br>Samproduktion: Red Nose Company, Tanssiteatteri Tsuumi, Stoa</p>",
                "en": "<p>The clowns will dance their choreography to Stravinsky's great work with great passion and all their heart.</p><p>The audience is in for an entirely exceptional interpretation of the iconic The Rite of Spring by Stravinsky and Co. The clowns will be dancing to their own choreography for this masterpiece with all their heart and soul. The aim is to find a contemporary ritual that will enhance the experience of connection, without sacrificing any more young girls.</p><p>The 1913 premiere of The Rite of Spring was a scandal and came at a time when the first signs of the coming First World War could be sensed. Diaghilev’s Ballets Russes ballet company performed the premiere of the piece with perseverance until the end, even though some of the audience members ran away screaming. Nizinsky, Roerich and Stravinsky created a mythical story in which the violence and communalism, sacrifice and rituals of the human species were fearlessly laid bare in front the audience. The Rite of Spring shook the familiar structures to their core and has influenced the development of Western art perhaps more than any other work.</p><p>War is once again a looming presence in our time. The clowns have a great mission to restore peace to this world. Inspired by Nijinsky, the original choreographer of The Rite of Spring, the clowns turn their gaze to the ground. Does strengthening their connection with nature lend them the necessary power to reverse the spiral of polarisation, inequality and violence?<br>The earlier and often quite serious interpretations of The Rite of Spring are a treasure trove of inspiration. This time, comedy cannot be avoided, as clowns Babylon, ExMayhem, Hoenanen and Ré dance out their own relationship with Stravinsky's music, spring circle dances, ancestors, the seers of our time, sacrifice and self-sacrifice. What are the clowns themselves prepared to sacrifice? What about humanity? Is it the common good that matters more or our own pleasure?</p><p>The show is full of unspoken comedy!</p><p>Duration 2 hours, including intermission<br>Recommended age: For adults, over 13s<br>Language: English, Finnish</p><p>CREATIVE TEAM<br>Written by: The creative team<br>Directed by: Niina Sillanpää<br>On stage: Johanna Keinänen, Kaisa Niemi, Minna Puolanto and Hanna Seppä<br>Music: Tommi Lindell feat. Igor Stravinsky<br>Sound design: Tommi Lindell<br>Light design: Juha Tuisku<br>Musical consultation: Marzi Nyman<br>Costume and set design: Paula Koivunen<br>Photos: Jolle Onnismaa<br>Co-production: Red Nose Company, Tsuumi Dance Theatre, Stoa</p>"
            },
            "name": {
                "fi": "Red Nose Company: About the Kevätuhri – – rituaali neljälle klovnille",
                "sv": "Red Nose Company: About the Kevätuhri – About the Kevätuhri – en ritual för fyra clowner.",
                "en": "Red Nose Company: About the Kevätuhri – About the Kevätuhri – a ritual for four clowns."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67697/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67589",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p2625/?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": 1494528,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T16:13:42.138440Z",
                    "last_modified_time": "2026-01-16T16:13:42.138457Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781981.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494528/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-16T16:13:42.034224Z",
            "last_modified_time": "2026-03-20T01:14:00.665039Z",
            "date_published": null,
            "start_time": "2026-04-14T15: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": "PROSESSISSA-esityksessä Malmitalo muuntautuu taiteellisen prosessin näyttämöksi.",
                "sv": "I föreställningen PROSESSISSA omvandlas Malms kulturhus till en scen för den konstnärliga processen.",
                "en": "The PROSESSISSA performance transforms Malmitalo into a stage for an artistic process."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_esitys_teatteriesityksen_valmistamisesta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_en_framstallning_om_utarbetande_av_en_teaterforestallning",
                "en": "http://www.malmitalo.fi/en/events/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_IN_PROCESS_a_show_about_the_making_of_a_theatre_performance"
            },
            "description": {
                "fi": "<p>PROSESSISSA-esityksessä Malmitalo muuntautuu taiteellisen prosessin näyttämöksi.</p><p>Yleisö pääsee reaaliajassa seuraamaan teatteritaiteilijoiden työskentelyä kokonaisuuden eri osa-alueiden parissa sekä vaikuttamaan illan päätteeksi Malmisalin estradilla nähtävän ainutkertaisen näyttämöteoksen sisältöön. Jos olet koskaan pohtinut, kuinka vuorovaikutteinen, todellisista elämäkokemuksista ponnistava esitysprosessi tapahtuu – tämä on esitys juuri sinulle!</p><p>Esitys on osa Helsingin Kaupunginteatterin Pääroolissa Malmi - hanketta, jossa toteutetaan alue- ja yhteisölähtöistä teatteri- ja taidetoimintaa. Hanke on yksi Helsingin kaupungin Helsingin malli -hankkeista.</p><p>Kuvassa Talvikki Eerola ja Reetta Kankare.</p><p>Esitys on maksuton, mutta liput täytyy varata ennakkoon. Lippujen varaus Lyytin kautta: https://www.lyyti.in/PROSESSISSA_esitys</p><p>Esityksen kieli on suomi. Suosittelemme esitystä yli 13-vuotiaille.</p><p>Esityksen kesto 2 t 30 min, sis väliajan</p><p>Työryhmä</p><p>Esityskonsepti:<br>Laura Ikonen, Aleksi Kinnunen, Janne Puustinen</p><p>Taiteelliset suunnittelijat ja osallistavien pisteiden vetäjät:<br>Laura Ikonen, Jenny Jumppanen, Riikka Karjalainen, Aleksi Kinnunen, Mirja Neuvonen, Janne Puustinen</p><p>Näyttelijät:<br>Laura Ikonen, Reetta Kankare, Heli Lyytikäinen</p><p>Avustajaoppaat:<br>Mari Ikonen, Marina Toivonen</p><p>Tuotanto:<br>Helsingin Kaupunginteatterin yleisötyö / Pääroolissa Malmi, Malmitalo</p>",
                "sv": "<p>I föreställningen PROSESSISSA omvandlas Malms kulturhus till en scen för den konstnärliga processen.</p><p>Publiken kan i realtid följa teaterkonstnärernas arbete bland de olika delområdena i helheten och i slutet av kvällen påverka innehållet i ett unikt scenuppförande som ses på Malmsalens estrad. <br> <br>Föreställningen är en del av Helsingfors stadsteaters projekt Pääroolissa Malmi (Malm i huvudrollen), i vilken man genomför regional och samhällsbaserad teater- och konstverksamhet. Projektet är ett av Helsingfors stads Helsingforsmodellen-projekt.<br> <br>På bilden: Talvikki Eerola och Reetta Kankare.</p><p>Föreställningen är avgiftsfri, men biljetterna måste förhandsbokas. Biljetterna till föreställningen finns tillgängliga i februari 2026.</p><p>Föreställningens språk är finska.</p>",
                "en": "<p>The PROSESSISSA performance transforms Malmitalo into a stage for an artistic process.</p><p>The audience will be given the chance to see the work of the theatre artists in real time and will be shown how the artists work on the different aspects of the performance. They will also be able to influence the content of this unique performance work, shown on the stage of Malmi Hall at the end of the evening. <br> <br>The performance is part of the Helsinki City Theatre's Pääroolissa Malmi (Starring Malmi) project, which implements regional and community-based theatre and art activities. This project is one of the City of Helsinki's Helsinki Model projects.<br> <br>Pictured Talvikki Eerola and Reetta Kankare.</p><p>The performance is free of charge, but tickets must be booked in advance. Tickets for the show will be available in February 2026.</p><p>The performance will be in Finnish.</p>"
            },
            "name": {
                "fi": "PROSESSISSA – esitys teatteriesityksen valmistamisesta",
                "sv": "PROSESSISSA – en framställning om utarbetande av en teaterföreställning",
                "en": "PROSESSISSA – IN PROCESS, a show about the making of a theatre performance"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67589/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67468",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494012,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:10.157077Z",
                    "last_modified_time": "2025-12-03T08:13:10.157092Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781434.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494012/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:10.056100Z",
            "last_modified_time": "2026-03-20T01:14:00.419644Z",
            "date_published": null,
            "start_time": "2026-04-14T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!",
                "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!",
                "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4059968138DB6B0E76CCF0132F5978F6/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4059968138DB6B0E76CCF0132F5978F6/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/4059968138DB6B0E76CCF0132F5978F6/Singalongs"
            },
            "description": {
                "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>",
                "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Allsång",
                "en": "Singalongs"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67468/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68191",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": 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": 1585994,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T08:12:59.206454Z",
                    "last_modified_time": "2026-03-10T08:12:59.206466Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782247.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1585994/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-10T08:12:59.095549Z",
            "last_modified_time": "2026-03-20T01:14:00.290443Z",
            "date_published": null,
            "start_time": "2026-04-14T12:00:00Z",
            "end_time": "2026-04-14T15: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": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CBB8CF4509A5EFFBDDAE53C035F0191F/Roskasta_kaunista_-tyopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CBB8CF4509A5EFFBDDAE53C035F0191F/Roskasta_kaunista_-tyopajat",
                "en": "http://www.vuotalo.fi/en/events/event/CBB8CF4509A5EFFBDDAE53C035F0191F/Roskasta_kaunista_-tyopajat"
            },
            "description": {
                "fi": "<p>Tule mukaan tekemään roskasta kaunista! Pääset harjoittamaan kädentaitojasi ja kokeilemaan, miten erilaiset materiaalit taipuvat uuteen käyttöön.</p><p>Huhtikuussa järjestetään kolme työpajaa Roskaa!-näyttelyn keskellä, Vuotalon aulassa. Saat kaikki tarvittavat materiaalit paikan päältä. Työpajat eivät maksa mitään. Työpajat sopivat kaiken ikäisille, mutta alle kouluikäiset voivat osallistua vain oman aikuisen seurassa.</p><p>Roskasta kaunista -pajat toteutetaan yhteistyössä Työväenopiston kanssa. Työpajoja ohjaa Kristiina Tergujeff. Ohjauskieli on suomi.</p><p>Ohjelma:</p><p>ti 7.4. klo 15.00-18.15<br>Kukkia karkkipaperista</p><p>ti 14.4. klo 15.00-18.15<br>Napit kiertoon</p><p>ti 21.4. klo 15.00-18.15<br>Kierrätä pitsejä</p>"
            },
            "name": {
                "fi": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa",
                "sv": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa",
                "en": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68191/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68014",
            "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:33/?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: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3873721",
                        "sv": "https://www.lippu.fi/eventseries/name-3873721",
                        "en": "https://www.lippu.fi/eventseries/name-3873721"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,80-38,90 €",
                        "sv": "22,80-38,90 €",
                        "en": "22,80-38,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494614,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-23T11:12:57.109170Z",
                    "last_modified_time": "2026-01-23T11:12:57.109182Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784343.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-23T11:12:57.018439Z",
            "last_modified_time": "2026-03-20T01:13:59.793147Z",
            "date_published": null,
            "start_time": "2026-04-13T16: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": "Jumppatytöt on esitys joukkuevoimistelusta.",
                "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.",
                "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/21E7DA90B47BA9409194446F265D0C58/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/21E7DA90B47BA9409194446F265D0C58/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki",
                "en": "http://www.savoyteatteri.fi/en/events/event/21E7DA90B47BA9409194446F265D0C58/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki_"
            },
            "description": {
                "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”</p><p>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>",
                "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>",
                "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>"
            },
            "name": {
                "fi": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Loppuunmyyty! / Sold out!",
                "sv": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Slutsåld!",
                "en": "Jumppatytöt:Havukainen - Hyvönen - Lahdenmäki – Sold out!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Jumppatytöt ry",
                "sv": "Jumppatytöt ry",
                "en": "Jumppatytöt ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68014/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67286",
            "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: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494068,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:54.638696Z",
                    "last_modified_time": "2025-12-04T12:12:54.638711Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780831.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494068/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:54.565768Z",
            "last_modified_time": "2026-03-20T01:13:59.693670Z",
            "date_published": null,
            "start_time": "2026-04-13T15: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": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2556EEE9319C221814501AD70455C877/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2556EEE9319C221814501AD70455C877/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/2556EEE9319C221814501AD70455C877/Let_us_sing_"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko Mari Kätkä.</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 h</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 h</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>"
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67286/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68020",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494626,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T10:12:56.694420Z",
                    "last_modified_time": "2026-01-26T10:12:56.694431Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777683.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494626/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T10:12:56.605709Z",
            "last_modified_time": "2026-03-20T01:13:59.588013Z",
            "date_published": null,
            "start_time": "2026-04-13T13:00:00Z",
            "end_time": "2026-04-13T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.",
                "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.",
                "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7489357F4A8B0DD77F72B633649F10FE/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7489357F4A8B0DD77F72B633649F10FE/Eftermiddagar_planerade_av_unga",
                "en": "http://www.vuotalo.fi/en/events/event/7489357F4A8B0DD77F72B633649F10FE/Afternoons_planned_by_young_people"
            },
            "description": {
                "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>",
                "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>",
                "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>"
            },
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi",
                "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi",
                "en": "Afternoons planned by young people – Operation Pulse!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68020/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}