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=30&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6469,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=31&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=29&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:67741",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-vuotalo-21013046/#tab=",
                        "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-vuotalo-21013046/#tab=",
                        "en": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-vuotalo-21013046/#tab="
                    },
                    "description": null,
                    "price": {
                        "fi": "19 €",
                        "sv": "19 €",
                        "en": "19 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494117,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T08:13:02.987844Z",
                    "last_modified_time": "2025-12-08T08:13:02.987858Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780413.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494117/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-08T08:13:02.904300Z",
            "last_modified_time": "2026-03-20T01:12:59.602018Z",
            "date_published": null,
            "start_time": "2026-02-07T13: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": "Legendaarinen taikuri Simo Aalto ja avustaja Kirsti Aalto palaavat lavalle uudessa, riemukkaassa koko perheen taikashow’ssa Ihan Simona.",
                "sv": "Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.",
                "en": "A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0F6220E11ED90F563F85933DCC19046A/Jokeri_Pokeri_Box_Ihan_Simona_Show",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0F6220E11ED90F563F85933DCC19046A/JOKERI_POKERI_BOX_Ihan_Simona_",
                "en": "http://www.vuotalo.fi/en/events/event/0F6220E11ED90F563F85933DCC19046A/JOKERI_POKERI_BOX_Ihan_Simona_Joker_Poker_Box_Magic_Show_"
            },
            "description": {
                "fi": "<p>Legendaarinen taikuri Simo Aalto ja avustaja Kirsti Aalto palaavat lavalle uudessa, riemukkaassa koko perheen taikashow’ssa Ihan Simona.</p><p>Uudistunut esitys tuo katsojien eteen taikatemppuja, joita ei ole aiemmin Suomessa nähty. Lavalla nähdään hyväntuulinen ja visuaalisesti näyttävä taikaesitys, jossa yleisö pääsee ihastelemaan muun muassa upeaa perhosnumeroa, värikkäitä ja ihmeellisiä taikakuplia sekä monia yllättäviä hetkiä, jotka viihdyttävät kaikenikäisiä katsojia.</p><p>Show’ssa ovat mukana myös Simon ja Kirstin rakastetut eläinkaverit Erkki-kani, Paloma-kyyhky sekä uusi tuttavuus Sasu Sormikas. Ja tietysti lapset auttavat taikuria kiperissä tilanteissa taikasanoilla ja taikapuhalluksilla. Simo vie kaikenikäiset katsojat taikamaailmaan, jossa mikään ei ole mahdotonta!</p><p>Kesto: 1 t</p>",
                "sv": "<p>Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.</p><p>I den nya glada showen får vi se världens bästa trollkonster smaksatta med en gladlynt scenshow. Under ledning av Simo får åskådare av alla åldrar åka på en timmes resa till trollkonsternas värld, där inget är omöjligt.</p><p>Med i äventyret är Simos och Kirstis djurkompisar kaninen Erkki och duvan Paloma samt den egensinniga papegojan Eino. Och visst får barnen vara med och hjälpa trollkarlen ända upp på scenen!</p><p>Simos medryckande framträdande garanterar att trollpillret verkar länge, humöret piggas upp och vardagens rutiner glöms bort. Med andra ord utlovas högklassig estradunderhållning!</p><p>Själv säger Simo: “Under min långa karriär har redan en generation, nittiotalsbarnen, hunnit växa upp, och de kommer nu för att se sin barndomsidol med sina egna barn. Därför vill jag bjuda på glädje och förundran för alla åldrar.”</p><p>Längd 1 h <br>Åldersrekommendation: 2–100 år</p>",
                "en": "<p>A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant.</p><p>The happy new show will feature some of the world’s best magic tricks accompanied by a light-hearted stage show. Simo leads audiences of all ages on a one-hour journey into a magical world where everything is possible.</p><p>Along for the adventure are Simo and Kirsti’s animal friends, Erkki the rabbit, Paloma the pigeon, and Eino, the stubborn parrot. And, of course, the kids get to assist the magician up on stage!</p><p>Simo’s engaging performance ensures that the magic pill lasts for a long time, refreshing your mind and making you forget the daily hustle and bustle. In a word, this will be high-quality entertainment on the stage!</p><p>In Simo’s own words, “During my long career, one generation – the ‘90s kids – have already grown up, and are now bringing their own children to see their childhood idol. That’s why I want to offer joy and wonder to people of all ages.”</p><p>Duration: 1 h <br>Age recommendation: 2–100 years</p>"
            },
            "name": {
                "fi": "Jokeri Pokeri Box: Ihan Simona! Show",
                "sv": "JOKERI POKERI BOX – Ihan Simona!",
                "en": "JOKERI POKERI BOX – Ihan Simona! (Joker Poker Box Magic Show)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67741/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67729",
            "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:351/?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: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/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494060,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:49.462865Z",
                    "last_modified_time": "2025-12-04T12:12:49.462881Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780614.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494060/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:49.388343Z",
            "last_modified_time": "2026-03-20T01:12:59.488421Z",
            "date_published": null,
            "start_time": "2026-02-07T13: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": "Take a nice seat, and let me tell you a story...",
                "sv": "Take a nice seat, and let me tell you a story...",
                "en": "Take a nice seat, and let me tell you a story..."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9011D23CCB120FF8526727984604E1F6/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9011D23CCB120FF8526727984604E1F6/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential",
                "en": "http://www.stoa.fi/en/events/event/9011D23CCB120FF8526727984604E1F6/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential"
            },
            "description": {
                "fi": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>1 h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p><p>Kheba Tourayn englanninkielinen esitys. Sidequest Addict on raju ja tunteikas matka, joka yhdistää teatterin, spoken wordin ja kovaksi hiotun rohkeuden amerikkalaisen unelman etsinnässä.</p><p>Käsikirjoitus ja esiintyjä: Kheba Touray<br>Ohjaus: Daniel Virtanen<br>Kesto: noin 1 tunti, ei väliaikaa<br>Kieli: englanti</p>",
                "sv": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>~1h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p>",
                "en": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>~1h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p>"
            },
            "name": {
                "fi": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential",
                "sv": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential",
                "en": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67729/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67347",
            "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: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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/",
                        "sv": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/",
                        "en": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494557,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T08:12:47.861393Z",
                    "last_modified_time": "2026-01-20T08:12:47.861407Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781010.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494557/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-20T08:12:47.766565Z",
            "last_modified_time": "2026-03-20T01:12:59.373095Z",
            "date_published": null,
            "start_time": "2026-02-07T13: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": "Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_",
                "en": "http://www.malmitalo.fi/en/events/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_"
            },
            "description": {
                "fi": "<p>Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika.</p><p>Kanakani ja hänen ystävänsä, Meri ja Hugo, ovat keränneet mainetta kuuluisina seikkailijoina. Uusi seikkailu odottaa heitä, kun Rollo palaa kuvioihin mukanaan mystinen esine. Kanakanin ottoisä, kuningas Kaarle, huomaa esineeseen kaiverretun symbolin, joka liittyy tarunomaiseen murmeliin. Kuningas kertoo tarinan murmelista, jolla on taaksepäin katsovat kasvot ja kannustaa ryhmää etsintäretkelle – murmeli on löydettävä ennen kuin joku ehtii käyttää sen maagista voimaa. Seikkailu saa yllättävän käänteen, kun Kanakani ystävineen huomaa, etteivät he ole ainoita, jotka etsivät tätä muinaista voimaesinettä.</p><p>Matkansa varrella he kohtaavat toinen toistaan erikoisempia esteitä ja uusia, värikkäitä hahmoja. Kuka löytää murmelin ensimmäisenä ja saa käyttöönsä sen valtavan voiman – ja mitä siitä seuraa?</p><p>Ikäraja: 7<br>Kesto: 89 min<br>Ensi-ilta: 23.01.2026<br>Elokuva on puhuttu suomeksi</p>"
            },
            "name": {
                "fi": "Kanakani ja murmelin salaisuus (7) – Kino Helios",
                "sv": "Kanakani ja murmelin salaisuus (7) – Kino Helios",
                "en": "Kanakani ja murmelin salaisuus (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67347/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67272",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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: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: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-3994678",
                        "sv": "https://www.lippu.fi/eventseries/name-3994678",
                        "en": "https://www.lippu.fi/eventseries/name-3994678"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80€/20€",
                        "sv": "24,80€/20€",
                        "en": "24,80€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493830,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-18T11:13:14.933968Z",
                    "last_modified_time": "2025-11-18T11:13:14.933986Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780803.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493830/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-18T11:13:14.766432Z",
            "last_modified_time": "2026-03-20T01:12:59.137797Z",
            "date_published": null,
            "start_time": "2026-02-07T13: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": "Klovnikaksikko Secret (Amira Khalifa) ja TikTak (Nora Raikamo) haluavat räjäyttää kaikkien tajunnan musikaalikentällä.",
                "sv": "Clownduon Secret (Amira Khalifa) och TikTak (Nora Raikamo) vill spränga allas medvetande på musikalfältet.",
                "en": "The clown duo Secret (Amira Khalifa) and TikTak (Nora Raikamo) want to blow everyone's minds in the musical scene."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/657A2C4705792A18E6ECA76D1E75BEAC/Red_Nose_Company_Taydellinen_musikaali_-_Matka_manalaan",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/657A2C4705792A18E6ECA76D1E75BEAC/Red_Nose_Company_Taydellinen_musikaali_matka_manalaan_Den_perfekta_musikalen_en_resa_till_underjorden_",
                "en": "http://www.kanneltalo.fi/en/events/event/657A2C4705792A18E6ECA76D1E75BEAC/Red_Nose_Company_Taydellinen_musikaali_-_Matka_manalaan"
            },
            "description": {
                "fi": "<p>Klovnikaksikko Secret (Amira Khalifa) ja TikTak (Nora Raikamo) haluavat räjäyttää kaikkien tajunnan musikaalikentällä.</p><p>Nuoruuden toteutumatta jääneet haaveet ja kaikki uran aikana tekemättä jääneet musikaalien pääroolit mielessään he päättävät luoda yhdessä klovnimuusikko Delta Airwavesin (Jussu Pöyhönen) kanssa täydellisen musikaalin, jonka säveltäminen on Deltan suuri unelma. <br> <br>Hamutessaan kohti teatterikentän taivaita klovnit lipsahtelevat vääjäämättä kohti maallisten tomumajojensa rajallisuutta. Miten tavoitellaan täydellistä, kun jalka ei enää taivu spagaatiin eikä nouse korvien korkeudelle? Klovnit joutuvat kohtaamaan sen armottoman tosiasian, että ruumis rapistuu eikä elämä jatku ikuisesti. Onko heillä käsillään viimein se käännekohta, jonka jälkeen suunta on alaspäin, kohti luopumista ja kuolemaa, kohti manan majoja? <br> <br>Klovnitriomme etsii täydellisellä matkallaan opastusta niin Lemminkäisen äidin uroteoista kuin sumerilaisen rakkauden ja sodan jumalatar Inannan manalaan laskeutumisen myytistä. Heidän ainoa vaihtoehtonsa on laulaa sisäiset tuntonsa kertakaikkisen kuuluviksi ja tanssia ruumiinsa rajat näkyviksi. Eihän heillä ole enää muuta menetettävää kuin huumori. <br> <br>Täydellinen musikaali – matka manalaan on kotimainen kantaesitys. Secret ja TikTak ovat valloittaneet yleisön jo edellisessä valaistumista tavoittelevassa Mieletön-esityksessään. <br> <br>Työryhmä <br>Ohjaus: Niina Sillanpää <br>Näyttämöllä: Amira Khalifa, Nora Raikamo ja Jussu Pöyhönen<br>Musiikki ja äänisuunnittelu: Jussu Pöyhönen<br>Valosuunnittelu: Juha Tuisku <br>Pukusuunnittelu: Noora Salmi <br>Koreografia: Kaisa Niemi <br>Tuotanto: Red Nose Company ja Kanneltalo <br> <br>Ensi-ilta Kanneltalossa to 5.2.2026 klo 18.00 <br>Muut esitykset: la 7.2. klo 15, ti 24.2. klo 18, ke 25.2. klo 18, to 26.2.2026 klo 18 <br>Kesto: 2 h (sis. väliaika)<br>Ikäsuositus: 14+</p>",
                "sv": "<p>Clownduon Secret (Amira Khalifa) och TikTak (Nora Raikamo) vill spränga allas medvetande på musikalfältet.</p><p>De tänker på alla ouppfyllda ungdomsdrömmar och musikalhuvudroller som de inte gjort under sin karriär, och har nu tillsammans med clownmusikern Delta Airwaves (Jussu Pöyhönen) bestämt sig för att skapa den perfekta musikalen, som de är Deltas stora dröm att komponera. <br> <br>I sin strävan mot teaterfältets himlar halkar clownerna ohjälpligt mot det jordiska stoftets begränsningar. Hur strävar man efter perfektion när benen inte längre går ner i spagat eller går att lyfta till öronhöjd? Clownerna ställs inför det obönhörliga faktum att kroppen förfaller och att livet inte fortsätter för evigt. Står de till sist vid den vändpunkt där allting börjar gå neråt, mot slutet och döden, mot de sälla jaktmarkerna? <br> <br>På sin perfekta resa söker vår clowntrio vägledning såväl i Lemminkäinens mors stordåd som i myten om den sumeriska kärleks- och krigsgudinnan Inannas resa till dödsriket. Deras enda alternativ är att sjunga fram sina inre känslor så att de kan höras och att dansa sina kroppsliga gränser synliga. De har ju inte längre någonting annat än humorn att förlora. <br> <br>Täydellinen musikaali – matka manalaan är ett inhemskt uruppförande. Secret och TikTak har charmat publiken redan med sin tidigare föreställning Mieletön, där de strävade efter upplysning. <br> <br>Arbetsgrupp <br>Regi: Niina Sillanpää <br>På scenen: Amira Khalifa, Nora Raikamo och Jussu Pöyhönen<br>Musik och ljuddesign: Jussu Pöyhönen<br>Ljusdesign: Juha Tuisku <br>Kostym: Noora Salmi<br>Koreografi: Kaisa Niemi <br>Produktion: Red Nose Company och Gamlasgården <br> <br>Premiär på gamlasgården torsdag 5.2.2026 kl. 18.00 <br>Övriga föreställningar: lördag 7.2 kl. 15, tisdag 24.2 kl. 18, onsdag 25.2 kl. 18, torsdag 26.2.2026 kl. 18 <br> <br>Åldersrekommendation: 14+</p>",
                "en": "<p>The clown duo Secret (Amira Khalifa) and TikTak (Nora Raikamo) want to blow everyone's minds in the musical scene.</p><p>With the unfulfilled dreams of their youth and all the musical roles they have missed out on during their careers in mind, they decide to work together with clown musician Delta Airwaves (Jussu Pöyhönen) to create the perfect musical, which is Delta's dream composition. <br> <br>As the clowns clamber towards theatre heaven, they inevitably slip towards the confines of their earthly prisons. How can you aim for perfection when your legs no longer stretch into the splits or reach your ears? The clowns are faced with the brutal fact that the body decays and life does not go on forever. Are they finally at the point where the direction is taken downwards, towards abandonment and death, towards the underworld? <br> <br>On their perfect journey, our clown trio seeks guidance from both the feats of the mother of Lemminkäinen and the myth of the Sumerian goddess of love and war, Inanna, descending into the underworld. Their only option is to sing their inner feelings out loud and dance their body's limits into view. After all, they have nothing left to lose but humour. <br> <br>‘Täydellinen musikaali – matka manalaan’ (A perfect musical – the journey to the underworld) is a Finnish premiere. Secret and TikTak have already captivated audiences with their previous enlightenment-seeking performance, ‘Mieletön’ (Mindless). <br> <br>Creative team <br>Directed by: Niina Sillanpää <br>On stage: Amira Khalifa, Nora Raikamo and Jussu Pöyhönen<br>Music and sound design: Jussu Pöyhönen<br>Light design: Juha Tuisku <br>Costume design: Noora Salmi <br>Choreography: Kaisa Niemi <br>Production: Red Nose Company and Kanneltalo <br> <br>Premiere at Kanneltalo on Thu 5 February 2026 at 18.00 <br>Other performances: Sat 7 February at 15.00, Tue 24 February at 18.00, Wed 25 February at 18.00, Thu 26 February 2026 at 18.00 <br> <br>Recommended age: 14+</p>"
            },
            "name": {
                "fi": "Red Nose Company: Täydellinen musikaali - Matka manalaan",
                "sv": "Red Nose Company: Täydellinen musikaali – matka manalaan (Den perfekta musikalen – en resa till underjorden)",
                "en": "Red Nose Company: Täydellinen musikaali - Matka manalaan"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67272/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67432",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@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/company-kate-pasi/#calendar-start=2026-02",
                        "sv": "https://www.lippu.fi/artist/company-kate-pasi/#calendar-start=2026-02",
                        "en": "https://www.lippu.fi/artist/company-kate-pasi/#calendar-start=2026-02"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493961,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T10:12:37.597333Z",
                    "last_modified_time": "2025-12-01T10:12:37.597349Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781245.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493961/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-01T10:12:37.447188Z",
            "last_modified_time": "2026-03-20T01:12:58.984870Z",
            "date_published": null,
            "start_time": "2026-02-07T13: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": "Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi.",
                "sv": "Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.",
                "en": "A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Kulinaarikaaos_-_koko_perheen_sirkusesitys",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Kulinaarikaaos_-_en_cirkusforestallning_for_hela_familjen",
                "en": "http://www.malmitalo.fi/en/events/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Culinary_Chaos_A_Circus_Show_for_the_Whole_Family"
            },
            "description": {
                "fi": "<p>Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi.</p><p>Kokkien keittiössä taidokas akrobatia, jongleeraus ja hersyvä komiikka yhdistyvät esitykseksi, jossa mikään ei suju suunnitelmien mukaan – mutta kaikki on herkullista alusta loppuun.</p><p>Humoristinen ja elämäniloa pulppuava esitys tempaa yleisön mukaansa maailmaan, jossa jauhot pöllyävät ja tavarat lentävät.</p><p>Katerina Repposen ja Pasi Nousiaisen muodostama Kate & Pasi on esiintynyt 15 vuoden aikana yli 25 maassa ympäri maailmaa, aina Kanadasta Japaniin, ja heidän teoksiaan on nähty lähes sadan eri festivaalin ohjelmistossa. Suomessa he ovat tuoneet sirkusta kaikkien ulottuville esiintymällä päiväkodeissa, kouluissa ja leikkipuistoissa, Tanssiteatteri Hurjaruuthin Talvisirkuksessa ja Sirkus Finlandian ohjelmistossa.</p><p>Kate ja Pasi yhdistävät esityksissään poikkeuksellisella tavalla akrobaattisen taituruuden, vahvuuden, kauneuden ja huumorin. Heidän esityksensä ovat saaneet kansainvälistä tunnustusta ja voittaneet palkintoja arvostetuilla sirkusfestivaaleilla muun muassa Saksassa, Latviassa ja Ranskassa.</p><p>Kesto: 45 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p><b>Työryhmä</b><br>Ohjaus: Katerina Repponen ja Pasi Nousiainen<br>Esiintyjät: Katerina Repponen ja Pasi Nousiainen<br>Ohjauksellinen apu: Marc Gassot<br>Ohjauksellinen ja dramaturginen apu: Jarkko Lehmus<br>Valosuunnittelu: Jaakko Sirainen<br>Pukusuunnittelu: Riikka Manni<br>Tukijat: Cirko, Tanssiteatteri Hurjaruuth, Kallo Collective, Taiteen edistämiskeskus</p>",
                "sv": "<p>Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.</p><p>I kockarnas kök förenas skicklig akrobatik, jonglering och skrattframkallande komik i en föreställning där ingenting går som planerat – men allt är smakligt från början till slut. Den humoristiska och livsglädjefyllda föreställningen drar med sig publiken in i en värld där mjölet yr och sakerna flyger.</p><p>Kate & Pasi, som består av Katerina Repponen och Pasi Nousiainen, har under 15 års tid uppträtt i över 25 länder runt om i världen, allt från Kanada till Japan, och deras verk har setts på nästan hundra olika festivalers program. I Finland har de gjort cirkusen tillgänglig för alla genom att uppträda på daghem, i skolor och lekparker, på Dansteater Hurjaruuths vintercirkus och i Sirkus Finlandias program. Kate och Pasi förenar i sina föreställningar på ett exceptionellt sätt den akrobatiska skickligheten, styrkan, skönheten och humorn. Deras föreställningar har fått internationellt erkännande och vunnit pris på ansedda cirkusfestivaler bland annat i Tyskland, Lettland och Frankrike.</p><p>Längd: 45 min.<br>Åldersrekommendation: 4+<br>Språk: ordlöst</p><p><b>Arbetsgrupp</b><br>Regi: Katerina Repponen och Pasi Nousiainen<br>På scenen: Katerina Repponen och Pasi Nousiainen<br>Hjälp med regin: Marc Gassot<br>Hjälp med regin och dramaturgin: Jarkko Lehmus<br>Ljusdesign: Jaakko Sirainen<br>Kostym: Riikka Manni<br>Stödjare: Cirko, DansteaternHurjaruuth, Kallo Collective, Centret för konstfrämjande</p>",
                "en": "<p>A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way.</p><p>In their kitchen, skilful acrobatics, juggling and gleeful comedy blend into a performance where nothing goes according to plan, yet everything is delicious from start to finish. This humorous and joy-filled show whisks the audience off into a world where flour and objects fly around.</p><p>Katerina Repponen and Pasi Nousiainen, the duo behind Kate & Pasi, have performed for 15 years in over 25 countries across the globe, from Canada to Japan, and their works have been seen at nearly a hundred festivals. In Finland, they have brought the circus to everyone's doorstep, performing at daycares, schools and playgrounds, as well as in Dance Theatre Hurjaruuth's Winter Circus and as part of the Sirkus Finlandia programme. Kate and Pasi combine acrobatic mastery, strength, beauty and humour in a truly unique way. Their performances have earned international acclaim and have won awards at prestigious circus festivals in countries such as Germany, Latvia and France.</p><p>Duration: 45 min<br>Recommended age: 4+<br>Language: non-verbal</p><p>Creative team<br>Directed by: Katerina Repponen and Pasi Nousiainen<br>Performers: Katerina Repponen and Pasi Nousiainen<br>Directorial assistance: Marc Gassot<br>Directorial and dramaturgical assistance: Jarkko Lehmus<br>Light design: Jaakko Sirainen<br>Costume design: Riikka Manni<br>Supported by: Cirko, Dance Theatre Hurjaruuth, Kallo Collective and Arts Promotion Centre Finland</p>"
            },
            "name": {
                "fi": "Kate & Pasi: Kulinaarikaaos - koko perheen sirkusesitys",
                "sv": "Kate & Pasi: Kulinaarikaaos - en cirkusföreställning för hela familjen",
                "en": "Kate & Pasi: Culinary Chaos – A Circus Show for the Whole Family"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67432/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67712",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494032,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T14:13:06.825658Z",
                    "last_modified_time": "2025-12-03T14:13:06.825671Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780608.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494032/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T14:13:06.737472Z",
            "last_modified_time": "2026-03-20T01:12:58.842831Z",
            "date_published": null,
            "start_time": "2026-02-07T12: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": "Shadows of the Mind kertoo tarinan ihmisestä ja hänen varjostaan... tai ehkä tarinan varjosta ja hänen ihmisestään.",
                "sv": "Shadows of the Mind berättar historien om en människa och dess skugga... eller kanske historien om en skugga och dess människa.",
                "en": "Shadows of the Mind tells the story of a human and their shadow... or maybe the story of a shadow and their human."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C0641AD7B1FD8F52809AC22963C9D5E2/Wonderground_Company_Shadows_of_the_Mind",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C0641AD7B1FD8F52809AC22963C9D5E2/Wonderground_Company_Shadows_of_the_Mind",
                "en": "http://www.stoa.fi/en/events/event/C0641AD7B1FD8F52809AC22963C9D5E2/Wonderground_Company_Shadows_of_the_Mind"
            },
            "description": {
                "fi": "<p>Shadows of the Mind kertoo tarinan ihmisestä ja hänen varjostaan... tai ehkä tarinan varjosta ja hänen ihmisestään.</p><p>Kuun mystisessä maastossa todistamme intiimin kohtaamisen. Poissaoleva olento muuttuu ruumiiksi, varjo ahmii omistajansa. Aivan kuten majakan tai kuun pimeä puoli, varjot ovat näkymätön läsnäolo. Se osa, jota emme voi tai halua nähdä, piilotettu olemus. <br> <br>Jos voisit kohdata oman varjosi, mitä löytäisit?</p><p>Kesto: noin 50 minuuttia<br>Kieli: sanaton<br>Ikäsuositus: 8+<br> <br><b>Teostiedot:</b><br>Konsepti ja koreografia: Roser Tutusaus ja Tom Weksler <br>Tila- ja pukusuunnittelu: Roser Tutusaus ja Tom Weksler <br>Tanssi ja kanssakoreografia: Janne Aspvik ja Misa Lommi <br>Äänisuunnittelu: Miki Brunou <br>Valosuunnittelu: Anttoni Halonen <br>Tuotanto: Janne Aspvik yhteistyössä Wonderground Companyn kanssa <br> <br>Tukijat: Svenska Kulturfonden, Stiftelsen Tre Smeder, Taiteen <br>edistämiskeskus ja Jenny ja Antti Wihurin rahasto <br>Valokuvat: Mika Haaranen</p>",
                "sv": "<p>Shadows of the Mind berättar historien om en människa och dess skugga... eller kanske historien om en skugga och dess människa.</p><p>I ett mystiskt månterritorium bevittnar vi ett intimt möte. En frånvarande varelse förvandlas till en kropp, en skugga slukar sin ägare. Precis som baksidan av fyren eller månens mörka sida är skuggor den osynliga närvaron. Den del vi inte kan eller vill se, den dolda essensen.</p><p>Om du kunde möta din egen skugga, vad skulle du upptäcka?</p><p>Längd: 50 min<br>Åldersrekommendation: 8+<br> <br>Koncept och koreografi: Roser Tutusaus och Tom Weksler <br>Dekor och kostym: Roser Tutusaus och Tom Weksler <br>Dans och samkoreografi: Janne Aspvik och Misa Lommi <br>Ljuddesign: Miki Brunou <br>Ljusdesign: Anttoni Halonen <br>Produktion: Janne Aspvik i samarbete med Wonderground Company</p><p>Stöds av: Svenska Kulturfonden, Stiftelsen Tre Smeder, Centret för <br>konstfrämjande och Jenny ja Antti Wihurin rahasto <br>Foton: Mika Haaranen</p><p>Det spanska Wonderground Company har skapat en föreställning i samarbete med en finsk arbetsgrupp, som kommer att ha premiär i Teatersalen på Stoa i Helsingfors i februari 2026. Gruppens konstnärliga ledare, Roser Tutusaus och Tom Weksler, utforskar kopplingen mellan det naturliga, det artificiella och det kulturella i sitt konstnärliga arbete.</p><p>Shadows of the Mind är ett poetiskt mångtydigt verk för två dansare, som bygger på rörelsepraktiken Movement Archery, skapad av Tutusaus och Weksler. Praktiken kombinerar bland annat kampsport, fysisk teater, butoh, improvisation, partnering, meditation och akrobatik.</p>",
                "en": "<p>Shadows of the Mind tells the story of a human and their shadow... or maybe the story of a shadow and their human.</p><p>In a lunar mystical territory, we witness an intimate encounter. An absent being transforms into a body, a shadow devours its owner. Just like the back of the lighthouse or the dark side of the moon, shadows are the invisible presence. The part we can't or don't want to see, the hidden essence. <br> <br>If you could confront your own shadow, what would you discover? <br> <br>Duration: 50 min<br>Age recommendation: 8+<br>Language: none</p><p>Concept and choreography: Roser Tutusaus and Tom Weksler <br>Stage and costume design: Roser Tutusaus and Tom Weksler <br>Dance and co-choreography: Janne Aspvik and Misa Lommi <br>Sound design: Miki Brunou <br>Light design: Anttoni Halonen <br>Production: Janne Aspvik in collaboration with Wonderground Company</p><p>Supported by: Swedish Cultural Foundaton in Finland, Stiftelsen Tre <br>Smeder, Arts Promoton Centre Finland and Jenny and Antti Wihuri <br>Foundation <br>Photos: Mika Haaranen</p><p>The Spanish Wonderground Company has created a performance in collaboration with a Finnish working group, which will premiere at the Stoa Theatre Hall in Helsinki in February 2026. The group's artistic directors, Roser Tutusaus and Tom Weksler, explore the connection between the natural, the artificial, and the cultural in their artistic work.</p><p>Shadows of the Mind is a poetic, multi-layered work for two dancers, drawing on the movement language of Movement Archery, created jointly by Tutusaus and Weksler. The practice combines martial arts, physical theater, butoh, improvisation, partnering, meditation, and acrobatics, among other things.</p>"
            },
            "name": {
                "fi": "Wonderground Company: Shadows of the Mind",
                "sv": "Wonderground Company: Shadows of the Mind",
                "en": "Wonderground Company: Shadows of the Mind"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67712/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67495",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494281,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-22T09:14:17.632072Z",
                    "last_modified_time": "2025-12-22T09:14:17.632090Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781602.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494281/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-22T09:14:17.364626Z",
            "last_modified_time": "2026-03-20T01:12:58.717046Z",
            "date_published": null,
            "start_time": "2026-02-07T09:00:00Z",
            "end_time": "2026-02-07T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/548638D77EA3BD999B65B13DB533FA15/Annantalon_taidelauantai_Hyvan_unen_apurit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/548638D77EA3BD999B65B13DB533FA15/Annegardens_konstlordagar_Medhjalpare_for_god_somn",
                "en": "http://www.annantalo.fi/en/events/event/548638D77EA3BD999B65B13DB533FA15/Annantalo_Art_Saturdays_Good_sleep_helpers"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Hyvän unen apurit</b></p><p>Mikä avuksi, kun uni ei meinaa tulla ja mielessä pyörii askarruttavia ajatuksia? Tule Annantalon taidelauantaihin rakentamaan pieni tyynyn alle yöksi laitettava nukkekaveri. Guatemalan vuoristossa asuneiden Maya -intiaanien tarinan mukaan nuket murehtivat huolet yön aikana piiloon taaten unennäkijälle rauhalliset yöunet. Nuket tehdään puutikuista ja rautalangasta, eri värisistä langoista ja kangastilkuista. Tule tekemään oma huolinukkesi ja nuku hyvin!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Medhjälpare för god sömn</b></p><p>Vad kan hjälpa när du inte kan somna och tankarna snurrar i huvudet? Kom till Annegårdens konstlördagar och bygg en liten dockvän som du kan lägga under kudden till natten. Enligt en berättelse från mayaindianerna i bergen i Guatemala tar dockor hand om alla bekymmer under natten och garanterar en fridfull natts sömn för sovaren. Dockorna tillverkas av träpinnar, järntråd, olikfärgade garner och tygbitar. Kom och gör din egen orosdocka och sov gott!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b> Good sleep helpers</b><br>What can you do if you are unable to fall asleep and have things weighing on your mind? Come to Annantalo’s Art Monday to build a little doll friend that you can put under your pillow for the night. According to a Mayan legend from the mountains of Guatemala, such dolls would hide the sleeper’s worries for the night, ensuring a peaceful night’s sleep. The dolls are made from wooden sticks and wire, different coloured yarns and fabric patches. Come make your own worry doll and sleep well!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Hyvän unen apurit",
                "sv": "Annegårdens konstlördagar: Medhjälpare för god sömn",
                "en": "Annantalo Art Saturdays: Good sleep helpers"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67495/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67824",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-12T12:13:59.379512Z",
                    "last_modified_time": "2025-12-12T12:13:59.379534Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778838.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-12T12:13:59.197339Z",
            "last_modified_time": "2026-03-20T01:12:58.508804Z",
            "date_published": null,
            "start_time": "2026-02-07T09:00:00Z",
            "end_time": "2026-02-07T12: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": "Helmikuussa 2026 Annantalon valtaa taiteen perusopetuksen juhla, kun TPO-polku goes Annantalo kokoaa yhteen 11 taiteen perusopetuksen oppilaitosta ja kuusi taiteen perusopetuksen taiteenlajia saman katon alle.",
                "sv": "I februari 2026 förvandlas Annegården till en festplats för den grundläggande konstundervisningen. Evenemanget GRK-stigen goes Annegården samlar elva läroanstalter och sex olika konstområden under ett och samma tak.",
                "en": "In February 2026, Annantalo will be the centre of a lively celebration of basic arts education as the TPO Path goes to Annantalo event brings together eleven local institutions providing basic art education in six different art disciplines under one roof."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/40E03C96CD6F7C6D9A95A0E38CE8A21C/TPO-polku_goes_Annantalo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/40E03C96CD6F7C6D9A95A0E38CE8A21C/GRK-stigen_goes_Annegarden",
                "en": "http://www.annantalo.fi/en/events/event/40E03C96CD6F7C6D9A95A0E38CE8A21C/TPO_Path_goes_to_Annantalo"
            },
            "description": {
                "fi": "<p>Helmikuussa 2026 Annantalon valtaa taiteen perusopetuksen juhla, kun TPO-polku goes Annantalo kokoaa yhteen 11 taiteen perusopetuksen oppilaitosta ja kuusi taiteen perusopetuksen taiteenlajia saman katon alle.</p><p>Päivän aikana päästään sukeltamaan monipuoliseen taiteen maailmaan työpajojen, esitysten ja kohtaamisten kautta.<br>Tapahtuma tarjoaa tilaisuuden tutustua siihen, miten taiteen perusopetus rakentaa luovuutta, yhteisöllisyyttä ja tulevaisuuden taitoja.</p><p>Päivän ohjelmaan kuuluu myös paneelikeskustelu, jossa ääneen pääsevät poliitikot, elinkeinoelämän toimijat ja taidekasvatuksen asiantuntijat – yhdessä he pohtivat taiteen perusopetuksen merkitystä yhteiskunnan eri tasoilla.</p><p>TPO-polku goes Annantalo on kutsuvierastapahtuma, joka kokoaa yhteen taidekasvatuksen, päätöksenteon ja elinkeinoelämän edustajat perheineen keskustelemaan taiteen tulevaisuudesta – ja ennen kaikkea juhlistamaan taiteen perusopetuksen monimuotoisuutta ja vaikuttavuutta. Tapahtuma on osa valtakunnallista Luovuutta politiikkaan -kampanjaa.</p><p>Toivomme ystävällisesti osallistujia ilmoittautumaan tapahtumaan.<br>Ilmoittautuminen Google forms -lomakkeella: https://forms.gle/NrH1CvJYfDvJUitS7</p><p>Ohjelma<br>🖌️ Klo 11-12 TAIDEPAJOJA kutsuvieraille (kuvataide, käsityö, musiikki, sanataide, tanssi ja teatteritaide)</p><p>🖌️ Klo 12-13 PANEELIKESKUSTELU<br>Musiikkiesitys Ninni Mäkipää, harppu<br>Paneelikeskustelu \"Taiteen perusopetus hyvinvoinnin ja tulevaisuuden rakentajana\", fasilitaattorina Helsingin Konservatorion rehtori-toimitusjohtaja Hanna Repo-Nikkanen<br>PANELISTIT<br>🔹 Kaarlo Hildén, Taideyliopiston rehtori<br>🔹 Mirjam Kalland, Helsingin Yliopiston varhaiskasvatuksen professori ja lastenpsykoterapeutti<br>🔹 Pirjetta Mulari, Annantalon johtaja ja lastenkulttuuripäällikkö<br>🔹 Tuomo Salonen, Promesa Consulting Oy ja International School of Music kannatusyhdistys ry:n vpj.<br>Yhteisen alustuksen ja panelistien keskustelun jälkeen aikaa on myös yleisökeskustelulle.</p><p>🖌️ Klo 13-14 TAIDEPAJOJA<br>Paneelikeskustelun aikana lasten on mahdollisuus olla Annansalin lapsiparkissa taideohjaajien ohjauksessa.</p>",
                "sv": "<p>I februari 2026 förvandlas Annegården till en festplats för den grundläggande konstundervisningen. Evenemanget GRK-stigen goes Annegården samlar elva läroanstalter och sex olika konstområden under ett och samma tak.</p><p>Under dagen får besökarna dyka in i konstens mångsidiga värld genom verkstäder, föreställningar och möten.<br> <br>Evenemanget ger besökarna möjlighet att upptäcka hur den grundläggande konstundervisningen främjar kreativitet, gemenskap och viktiga framtidskompetenser. Programmet innehåller också en paneldiskussion där politiker, aktörer inom näringslivet och experter inom konstpedagogik möts – tillsammans reflekterar de över den grundläggande konstundervisningens betydelse på olika samhällsnivåer.<br> <br>GRK-stigen goes Annegården är ett evenemang som bjuder in representanter för konstpedagogik och näringsliv samt beslutsfattare med familj för att diskutera konstundervisningens framtid – och framför allt för att fira mångfalden och genomslagskraften inom den grundläggande konstundervisningen. Evenemanget är en del av den riksomfattande kampanjen Kreativitet i politiken.</p><p>Vi ber vänligen deltagare att anmäla sig till evenemanget.<br>Anmälan sker via Google forms-formuläret:<br>https://forms.gle/NrH1CvJYfDvJUitS7</p><p>Program<br>🖌️ Kl. 11–12 KONSTVERKSTÄDER OCH FRAMTRÄDANDEN för inbjudna gäster<br>(bildkonst, slöjd, musik, ordkonst, dans och teater)</p><p>🖌️ Kl. 12–13 PANELDISKUSSION<br>Musikframträdande: Ninni Mäkipää, harpa<br>Paneldiskussion: ”Grundläggande konstundervisning skapar välmående och framtid”<br>Facilitator: Hanna Repo-Nikkanen, rektor och verkställande direktör vid Helsingfors Konservatorium</p><p>PANELDELTAGARE<br>🔹 Kaarlo Hildén, rektor för Konstuniversitetet<br>🔹 Mirjam Kalland, professor i småbarnspedagogik vid Helsingfors universitet och barnpsykoterapeut<br>🔹 Pirjetta Mulari, chef för Annantalo och kulturchef för barnkultur<br>🔹 Tuomo Salonen, Promesa Consulting Oy och vice ordförande i understödsföreningen för International School of Music<br>Efter den gemensamma inledningen och panelisternas diskussion finns även tid för samtal med publiken.</p><p>🖌️ Kl. 13–14 KONSTVERKSTÄDER OCH FRAMTRÄDANDEN<br>Under paneldiskussionen har barnen möjlighet att vistas i Annegårdens sal (Annansali) för barnpassning under handledning av konstpedagoger.</p>",
                "en": "<p>In February 2026, Annantalo will be the centre of a lively celebration of basic arts education as the TPO Path goes to Annantalo event brings together eleven local institutions providing basic art education in six different art disciplines under one roof.</p><p>Throughout the day, visitors can dive into the diverse world of music, theatre, dance, and literary and visual arts through workshops, performances, and other encounters.</p><p>The event offers an opportunity to explore how basic art education fosters creativity, a sense of community, and future skills. The day’s programme also includes a panel discussion featuring politicians, business representatives, and experts in arts education, who will together reflect on the significance of basic art education at different levels of society.</p><p>TPO Path goes to Annantalo is an invitation-only event that brings together representatives of arts education, decision-makers, and the business sector along with their families to discuss the future of art and to celebrate the diversity and impact of basic education in the arts. The event is part of the nationwide Creativity in Politics campaign.</p><p>We kindly ask participants to register for the event in advance.<br>Registration via Google Forms:<br>https://forms.gle/NrH1CvJYfDvJUitS7</p><p>Programme<br>11:00–12:00 ART WORKSHOPS for invited guests<br>(visual arts, crafts, music, literary arts, dance, and theatre)</p><p>12:00–13:00 PANEL DISCUSSION<br>Musical performance: Ninni Mäkipää, harp<br>Panel discussion:<br>“Basic Education in the Arts as a Builder of Well-being and the Future”<br>Facilitator: Hanna Repo-Nikkanen, Principal and CEO, Helsinki Conservatory<br>Panelists<br>🔹 Kaarlo Hildén, Rector, University of the Arts Helsinki<br>🔹 Mirjam Kalland, Professor of Early Childhood Education, University of Helsinki, and Child Psychotherapist<br>🔹 Pirjetta Mulari, Director of Annantalo and Head of Children’s Culture<br>🔹 Tuomo Salonen, Promesa Consulting Oy and Vice Chair of the International School of Music Support Association<br>Following the introductory remarks and panel discussion, there will be time for audience discussion.</p><p>🖌️ 13:00–14:00 ART WORKSHOPS<br>During the panel discussion, children may attend the Annansali children’s activity area, supervised by art instructors.</p>"
            },
            "name": {
                "fi": "TPO-polku goes Annantalo – Taiteen perusopetuksen kutsuvierastapahtuma",
                "sv": "GRK-stigen goes Annegården",
                "en": "TPO Path goes to Annantalo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67824/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67716",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4040934",
                        "sv": "https://www.lippu.fi/eventseries/name-4040934",
                        "en": "https://www.lippu.fi/eventseries/name-4040934"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-39 €",
                        "sv": "17-39 €",
                        "en": "17-39 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494098,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T16:12:56.951894Z",
                    "last_modified_time": "2025-12-04T16:12:56.951911Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782292.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494098/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T16:12:52.869930Z",
            "last_modified_time": "2026-03-20T01:12:58.256868Z",
            "date_published": null,
            "start_time": "2026-02-06T18: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": "DocPoint & Savoy-teatteri esittävät: Elokuva ja konsertti – Ivo Dimchev",
                "sv": "DocPoint & Savoy-teatern presenterar: Film och konsert – Ivo Dimchev",
                "en": "DocPoint & the Savoy Theatre present: Film and concert – Ivo Dimchev"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/73AE27D008C22EBC2174655EC0C82A70/Savoy_X_DocPoint_Ivo_Dimchev_Live_Bulgaria_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/73AE27D008C22EBC2174655EC0C82A70/Savoy_X_DocPoint_Ivo_Dimchev_Live_Bulgaria_",
                "en": "http://www.savoyteatteri.fi/en/events/event/73AE27D008C22EBC2174655EC0C82A70/Savoy_X_DocPoint_Ivo_Dimchev_Live_Bulgaria_"
            },
            "description": {
                "fi": "<p>DocPoint & Savoy-teatteri esittävät: Elokuva ja konsertti – Ivo Dimchev</p><p>Helmikuussa on luvassa ainutkertainen ilta, kun DocPoint – Helsingin dokumenttielokuvafestivaali palaa ryminällä Savoy-teatteriin. DocPoint ja Savoy yhdistävät voimansa tuodakseen Suomeen yhden Euroopan kiinnostavimmista ja provokatiivisimmista nykytaiteilijoista. Illan aikana on luvassa dokumenttielokuva ja live-konsertti: teatteria, musiikkia, aktivismia ja taidetta äärimmäisen värikkäänä sekoituksena.<br> <br>Ilta alkaa uuden musiikkidokumentin In Hell With Ivo (2024, ohj. Kristina Nikolova) Suomen ensiesityksellä. Elokuva tarjoaa vangitsevan muotokuvan bulgarialaisesta queer-taiteilijasta ja laulaja-lauluntekijästä, <b>Ivo Dimchevistä</b>, joka muuntaa henkilökohtaisen haavoittuvuuden ja yhteiskunnan asettamat vaikeudet vaikuttavaksi, provokatiiviseksi taiteeksi ja aktivismiksi. Dokumentti on väkevä todistus luovuuden parantavasta voimasta. Elokuvanäytöksen jälkeen järjestetään lyhyt Q&A -haastatteluhetki ohjaaja Kristina Nikolovan kanssa.<br> <br>Elokuvan jälkeen lavalle nousee Dimchev itse nelihenkisine yhtyeineen (Martin Bodurov, Adrian Nikolov, Aleksandar Hristov, Boil Karaneychev). Kansainvälisesti tunnustettu koreografi, performanssitaiteilija ja laulaja-lauluntekijä tarjoilee konsertin, joka yhdistelee fyysistä teatteria, tummanpuhuvaa runoutta ja musiikillista ilotulitusta. Dimchevin musiikki liikkuu niin bluesin, taidepopin kuin teknonkin rajamailla, samalla kun hänen ällistyttävä lavaolemuksensa heilahtelee rocktähden ja kabareeprimadonnan välillä. Myös balkanilaiset juuret kuuluvat vahvasti bändin musiikissa.<br> <br>Tule todistamaan, miksi New York Times kuvailee Ivo Dimcheviä elämästä ja kuolemasta laulavaksi kameleontiksi, joka saa kyynisimmänkin katsojan liikuttumaan.<br> <br><i>”Ivo Dimchev on kulttuuri-ilmiö.”</i> – BBC Radio</p><p>Pe 6.2.2026 klo 18<br>Savoy X DocPoint: In Hell with Ivo -dokumentti<br>Liput 13,80 €</p><p>Pe 6.2.2026 klo 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)<br>Liput 39/29/17 €<br> <br>Yhteislippu 45 €, sisältää sekä elokuvan että konsertin:<br>Savoy X DocPoint: Ivo Dimchev yhteislippu: elokuva & keikka</p><p>Elokuvan kesto n.  1 h 20 min<br>Konsertin kesto n. 1 h 30 min, ei väliaikaa<br> <br>HUOM! Elokuvaa ei suositella alle 12-vuotiaille.<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.<br>Numeroimaton katsomo</p>",
                "sv": "<p>DocPoint & Savoy-teatern presenterar: Film och konsert – Ivo Dimchev</p><p>I februari utlovas en unik kväll när dokumentärfilmfestivalen DocPoint återvänder till Savoy-teatern med buller och bång. DocPoint och Savoy samarbetar för att få en av Europas mest intressanta och provokativa samtida konstnärer till Finland. Under kvällen blir det dokumentärfilm och livekonsert: teater, musik, aktivism och konst i en extremt färggrann blandning.</p><p>Kvällen inleds med Finlandspremiären av In Hell With Ivo (2024, regi Kristina Nikolova). Filmen ger ett fängslande porträtt av den bulgariska queerkonstnären och singer-songwritern Ivo Dimchev, som omvandlar sin personliga sårbarhet och de svårigheter som samhället orsakar till kraftfull, provocerande konst och aktivism. Dokumentären är ett kraftfullt vittnesbörd om kreativitetens helande kraft.</p><p>Efter filmen går Dimchev själv upp på scenen med sitt fyrmannaband. Den internationellt hyllade koreografen, performancekonstnären och singer-songwritern bjuder på en konsert som kombinerar fysisk teater, mörk poesi och musikaliska fyrverkerier. Dimchevs musik rör sig i gränslandet mellan blues, konstpop och techno, medan hans fantastiska scennärvaro pendlar mellan rockstjärna och kabaréns primadonna. Rötterna på Balkan hörs också tydligt i bandets musik.</p><p>Kom och upplev varför New York Times beskriver Ivo Dimchev som en kameleont som sjunger om livet och döden på ett sätt som berör även den mest cyniska av åskådare.</p><p>”Ivo Dimchev är ett kulturellt fenomen.” – BBC Radio</p><p>Fre 6.2.2026 kl. 18<br>Savoy X DocPoint: Dokumentären In Hell with Ivo<br>Biljetter 13,80 €</p><p>Fre 6.2.2026 kl. 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgarien)<br>Biljetter 39/29/17 €</p><p>Kombinerad biljett 45 €, inkluderar både film och konsert:<br>Savoy X DocPoint: Ivo Dimchev kombinerad biljett: film & spelning</p><p>Filmens längd ca 1 h 20 min<br>Konsertens längd ca 1 h 30 min, ingen paus</p><p>OBS! Filmen rekommenderas inte för barn under 12 år.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.<br>Onumrerad läktare.</p>",
                "en": "<p>DocPoint & the Savoy Theatre present: Film and concert – Ivo Dimchev</p><p>February will bring DocPoint – Helsinki Documentary Film Festival back to the Savoy Theatre with a bang for a unique evening. DocPoint and Savoy are joining forces to bring one of Europe’s most interesting and provocative contemporary artists to Finland. The evening will include a documentary film and a live concert; a highly colourful mix of theatre, music, activism and art.</p><p>The evening will kick off with the Finnish premiere of a new music documentary film entitled In Hell with Ivo (2024, dir. Kristina Nikolova). The film paints a captivating portrait of Bulgarian queer artist and singer-songwriter Ivo Dimchev, who transforms personal vulnerability and difficulties imposed by society into powerful, provocative art and activism. The documentary is a powerful testimony to the healing power of creativity.</p><p>After the film, Dimchev himself and his four-piece band will take to the stage. The internationally acclaimed choreographer, performance artist and singer-songwriter will perform a concert that combines physical theatre, darkly tinted poetry and musical fireworks. Dimchev’s music straddles the boundaries of blues, art pop and techno, while his stunning stage presence oscillates between that of a rockstar and a cabaret prima donna. His Balkan roots are also strongly present in the band’s music.</p><p>Come witness why the New York Times describes Ivo Dimchev as a chameleon who sings about life and death in a manner that will move even the most cynical viewer.</p><p>“Ivo Dimchev is a cultural phenomenon.” – BBC Radio</p><p>Friday 6 February 2026 at 18.00<br>Savoy X DocPoint: In Hell with Ivo documentary<br>Tickets €13.80</p><p>Friday 6 February 2026 at 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)<br>Tickets €39/29/17</p><p>Combined ticket €45, incl. both the film and the concert:<br>Savoy X DocPoint: Ivo Dimchev combined ticket: film and concert</p><p>Film duration: roughly 1 h 20 min<br>Concert duration: approx. 1 h 30 min, no intermission</p><p>PLEASE NOTE! The film is not recommended for those under 12.</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.<br>Unnumbered seats.</p>"
            },
            "name": {
                "fi": "Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)",
                "sv": "Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)",
                "en": "Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri & DocPoint",
                "sv": "Savoy-teatern & DocPoint",
                "en": "Savoy Theatre & DocPoint"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67716/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67728",
            "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:351/?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: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/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494059,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:49.117082Z",
                    "last_modified_time": "2025-12-04T12:12:49.117100Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780613.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494059/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:49.012549Z",
            "last_modified_time": "2026-03-20T01:12:58.143805Z",
            "date_published": null,
            "start_time": "2026-02-06T17: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": "Take a nice seat, and let me tell you a story...",
                "sv": "Take a nice seat, and let me tell you a story...",
                "en": "Take a nice seat, and let me tell you a story..."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/339E2E3814F06C59BB33102AA221176F/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential",
                "sv": "http://www.stoa.fi/sv/evenemang/event/339E2E3814F06C59BB33102AA221176F/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential",
                "en": "http://www.stoa.fi/en/events/event/339E2E3814F06C59BB33102AA221176F/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential"
            },
            "description": {
                "fi": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>1 h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p><p>Kheba Tourayn englanninkielinen esitys. Sidequest Addict on raju ja tunteikas matka, joka yhdistää teatterin, spoken wordin ja kovaksi hiotun rohkeuden amerikkalaisen unelman etsinnässä.</p><p>Käsikirjoitus ja esiintyjä: Kheba Touray<br>Ohjaus: Daniel Virtanen<br>Kesto: noin 1 tunti, ei väliaikaa<br>Kieli: englanti</p>",
                "sv": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>~1h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p>",
                "en": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>~1h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p>"
            },
            "name": {
                "fi": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential",
                "sv": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential",
                "en": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67728/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67715",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4040934",
                        "sv": "https://www.lippu.fi/eventseries/name-4040934",
                        "en": "https://www.lippu.fi/eventseries/name-4040934"
                    },
                    "description": null,
                    "price": {
                        "fi": "13,80 €",
                        "sv": "13,80 €",
                        "en": "13,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494097,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T16:12:56.724885Z",
                    "last_modified_time": "2025-12-04T16:12:56.724900Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782291.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494097/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T16:12:52.380612Z",
            "last_modified_time": "2026-03-20T01:12:57.881640Z",
            "date_published": null,
            "start_time": "2026-02-06T16: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": "DocPoint & Savoy-teatteri esittävät: Elokuva ja konsertti – Ivo Dimchev",
                "sv": "DocPoint & Savoy-teatern presenterar: Film och konsert – Ivo Dimchev",
                "en": "DocPoint & the Savoy Theatre present: Film and concert – Ivo Dimchev"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5407050D621C2575AE4AEE33AC6C86A5/Savoy_X_DocPoint_In_Hell_with_Ivo_-dokumentti",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5407050D621C2575AE4AEE33AC6C86A5/Savoy_X_DocPoint_In_Hell_with_Ivo_-dokumentti",
                "en": "http://www.savoyteatteri.fi/en/events/event/5407050D621C2575AE4AEE33AC6C86A5/Savoy_X_DocPoint_In_Hell_with_Ivo_-dokumentti"
            },
            "description": {
                "fi": "<p>DocPoint & Savoy-teatteri esittävät: Elokuva ja konsertti – Ivo Dimchev</p><p>Helmikuussa on luvassa ainutkertainen ilta, kun DocPoint – Helsingin dokumenttielokuvafestivaali palaa ryminällä Savoy-teatteriin. DocPoint ja Savoy yhdistävät voimansa tuodakseen Suomeen yhden Euroopan kiinnostavimmista ja provokatiivisimmista nykytaiteilijoista. Illan aikana on luvassa dokumenttielokuva ja live-konsertti: teatteria, musiikkia, aktivismia ja taidetta äärimmäisen värikkäänä sekoituksena.<br> <br>Ilta alkaa uuden musiikkidokumentin In Hell With Ivo (2024, ohj. Kristina Nikolova) Suomen ensiesityksellä. Elokuva tarjoaa vangitsevan muotokuvan bulgarialaisesta queer-taiteilijasta ja laulaja-lauluntekijästä, <b>Ivo Dimchevistä</b>, joka muuntaa henkilökohtaisen haavoittuvuuden ja yhteiskunnan asettamat vaikeudet vaikuttavaksi, provokatiiviseksi taiteeksi ja aktivismiksi. Dokumentti on väkevä todistus luovuuden parantavasta voimasta.</p><p>Elokuvanäytöksen jälkeen järjestetään lyhyt Q&A -haastatteluhetki ohjaaja Kristina Nikolovan kanssa.</p><p>Elokuvan jälkeen lavalle nousee Dimchev itse nelihenkisine yhtyeineen. Kansainvälisesti tunnustettu koreografi, performanssitaiteilija ja laulaja-lauluntekijä tarjoilee konsertin, joka yhdistelee fyysistä teatteria, tummanpuhuvaa runoutta ja musiikillista ilotulitusta. Dimchevin musiikki liikkuu niin bluesin, taidepopin kuin teknonkin rajamailla, samalla kun hänen ällistyttävä lavaolemuksensa heilahtelee rocktähden ja kabareeprimadonnan välillä. Myös balkanilaiset juuret kuuluvat vahvasti bändin musiikissa.<br> <br>Tule todistamaan, miksi New York Times kuvailee Ivo Dimcheviä elämästä ja kuolemasta laulavaksi kameleontiksi, joka saa kyynisimmänkin katsojan liikuttumaan.<br> <br><i>”Ivo Dimchev on kulttuuri-ilmiö.”</i> – BBC Radio</p><p>Pe 6.2.2026 klo 18<br>Savoy X DocPoint: In Hell with Ivo -dokumentti<br>Liput 13,80 €</p><p>Pe 6.2.2026 klo 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)<br>Liput 39/29/17 €<br> <br>Yhteislippu 45 €, sisältää sekä elokuvan että konsertin:<br>Savoy X DocPoint: Ivo Dimchev yhteislippu: elokuva & keikka</p><p>Elokuvan kesto n.  1 h 20 min<br>Konsertin kesto n. 1 h 30 min, ei väliaikaa<br> <br>HUOM! Elokuvaa ei suositella alle 12-vuotiaille.<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.<br>Numeroimaton katsomo</p>",
                "sv": "<p>DocPoint & Savoy-teatern presenterar: Film och konsert – Ivo Dimchev</p><p>I februari utlovas en unik kväll när dokumentärfilmfestivalen DocPoint återvänder till Savoy-teatern med buller och bång. DocPoint och Savoy samarbetar för att få en av Europas mest intressanta och provokativa samtida konstnärer till Finland. Under kvällen blir det dokumentärfilm och livekonsert: teater, musik, aktivism och konst i en extremt färggrann blandning.</p><p>Kvällen inleds med Finlandspremiären av In Hell With Ivo (2024, regi Kristina Nikolova). Filmen ger ett fängslande porträtt av den bulgariska queerkonstnären och singer-songwritern Ivo Dimchev, som omvandlar sin personliga sårbarhet och de svårigheter som samhället orsakar till kraftfull, provocerande konst och aktivism. Dokumentären är ett kraftfullt vittnesbörd om kreativitetens helande kraft.</p><p>Efter filmen går Dimchev själv upp på scenen med sitt fyrmannaband. Den internationellt hyllade koreografen, performancekonstnären och singer-songwritern bjuder på en konsert som kombinerar fysisk teater, mörk poesi och musikaliska fyrverkerier. Dimchevs musik rör sig i gränslandet mellan blues, konstpop och techno, medan hans fantastiska scennärvaro pendlar mellan rockstjärna och kabaréns primadonna. Rötterna på Balkan hörs också tydligt i bandets musik.</p><p>Kom och upplev varför New York Times beskriver Ivo Dimchev som en kameleont som sjunger om livet och döden på ett sätt som berör även den mest cyniska av åskådare.</p><p>”Ivo Dimchev är ett kulturellt fenomen.” – BBC Radio</p><p>Fre 6.2.2026 kl. 18<br>Savoy X DocPoint: Dokumentären In Hell with Ivo<br>Biljetter 13,80 €</p><p>Fre 6.2.2026 kl. 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgarien)<br>Biljetter 39/29/17 €</p><p>Kombinerad biljett 45 €, inkluderar både film och konsert:<br>Savoy X DocPoint: Ivo Dimchev kombinerad biljett: film & spelning</p><p>Filmens längd ca 1 h 20 min<br>Konsertens längd ca 1 h 30 min, ingen paus</p><p>OBS! Filmen rekommenderas inte för barn under 12 år.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.<br>Onumrerad läktare.</p>",
                "en": "<p>DocPoint & the Savoy Theatre present: Film and concert – Ivo Dimchev</p><p>February will bring DocPoint – Helsinki Documentary Film Festival back to the Savoy Theatre with a bang for a unique evening. DocPoint and Savoy are joining forces to bring one of Europe’s most interesting and provocative contemporary artists to Finland. The evening will include a documentary film and a live concert; a highly colourful mix of theatre, music, activism and art.</p><p>The evening will kick off with the Finnish premiere of a new music documentary film entitled In Hell with Ivo (2024, dir. Kristina Nikolova). The film paints a captivating portrait of Bulgarian queer artist and singer-songwriter Ivo Dimchev, who transforms personal vulnerability and difficulties imposed by society into powerful, provocative art and activism. The documentary is a powerful testimony to the healing power of creativity.</p><p>After the film, Dimchev himself and his four-piece band will take to the stage. The internationally acclaimed choreographer, performance artist and singer-songwriter will perform a concert that combines physical theatre, darkly tinted poetry and musical fireworks. Dimchev’s music straddles the boundaries of blues, art pop and techno, while his stunning stage presence oscillates between that of a rockstar and a cabaret prima donna. His Balkan roots are also strongly present in the band’s music.</p><p>Come witness why the New York Times describes Ivo Dimchev as a chameleon who sings about life and death in a manner that will move even the most cynical viewer.</p><p>“Ivo Dimchev is a cultural phenomenon.” – BBC Radio</p><p>Friday 6 February 2026 at 18.00<br>Savoy X DocPoint: In Hell with Ivo documentary<br>Tickets €13.80</p><p>Friday 6 February 2026 at 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)<br>Tickets €39/29/17</p><p>Combined ticket €45, incl. both the film and the concert:<br>Savoy X DocPoint: Ivo Dimchev combined ticket: film and concert</p><p>Film duration: roughly 1 h 20 min<br>Concert duration: approx. 1 h 30 min, no intermission</p><p>PLEASE NOTE! The film is not recommended for those under 12.</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.<br>Unnumbered seats.</p>"
            },
            "name": {
                "fi": "Savoy X DocPoint: In Hell with Ivo -dokumentti",
                "sv": "Savoy X DocPoint: In Hell with Ivo -dokumentti",
                "en": "Savoy X DocPoint: In Hell with Ivo -dokumentti"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri & DocPoint",
                "sv": "Savoy-teatern & DocPoint",
                "en": "Savoy Theatre & DocPoint"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67715/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67690",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T14:13:06.485631Z",
                    "last_modified_time": "2025-12-03T14:13:06.485644Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780607.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T14:13:06.361003Z",
            "last_modified_time": "2026-03-20T01:12:57.758323Z",
            "date_published": null,
            "start_time": "2026-02-06T16: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": "Shadows of the Mind kertoo tarinan ihmisestä ja hänen varjostaan... tai ehkä tarinan varjosta ja hänen ihmisestään.",
                "sv": "Shadows of the Mind berättar historien om en människa och dess skugga... eller kanske historien om en skugga och dess människa.",
                "en": "Shadows of the Mind tells the story of a human and their shadow... or maybe the story of a shadow and their human."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/75DAF50F9C34377C398E3AB573814D85/Wonderground_Company_Shadows_of_the_Mind",
                "sv": "http://www.stoa.fi/sv/evenemang/event/75DAF50F9C34377C398E3AB573814D85/Wonderground_Company_Shadows_of_the_Mind",
                "en": "http://www.stoa.fi/en/events/event/75DAF50F9C34377C398E3AB573814D85/Wonderground_Company_Shadows_of_the_Mind"
            },
            "description": {
                "fi": "<p>Shadows of the Mind kertoo tarinan ihmisestä ja hänen varjostaan... tai ehkä tarinan varjosta ja hänen ihmisestään.</p><p>Kuun mystisessä maastossa todistamme intiimin kohtaamisen. Poissaoleva olento muuttuu ruumiiksi, varjo ahmii omistajansa. Aivan kuten majakan tai kuun pimeä puoli, varjot ovat näkymätön läsnäolo. Se osa, jota emme voi tai halua nähdä, piilotettu olemus. <br> <br>Jos voisit kohdata oman varjosi, mitä löytäisit?</p><p>Kesto: noin 50 minuuttia<br>Kieli: sanaton<br>Ikäsuositus: 8+<br> <br><b>Teostiedot:</b><br>Konsepti ja koreografia: Roser Tutusaus ja Tom Weksler <br>Tila- ja pukusuunnittelu: Roser Tutusaus ja Tom Weksler <br>Tanssi ja kanssakoreografia: Janne Aspvik ja Misa Lommi <br>Äänisuunnittelu: Miki Brunou <br>Valosuunnittelu: Anttoni Halonen <br>Tuotanto: Janne Aspvik yhteistyössä Wonderground Companyn kanssa <br> <br>Tukijat: Svenska Kulturfonden, Stiftelsen Tre Smeder, Taiteen <br>edistämiskeskus ja Jenny ja Antti Wihurin rahasto <br>Valokuvat: Mika Haaranen</p>",
                "sv": "<p>Shadows of the Mind berättar historien om en människa och dess skugga... eller kanske historien om en skugga och dess människa.</p><p>I ett mystiskt månterritorium bevittnar vi ett intimt möte. En frånvarande varelse förvandlas till en kropp, en skugga slukar sin ägare. Precis som baksidan av fyren eller månens mörka sida är skuggor den osynliga närvaron. Den del vi inte kan eller vill se, den dolda essensen.</p><p>Om du kunde möta din egen skugga, vad skulle du upptäcka?</p><p>Längd: 50 min<br>Åldersrekommendation: 8+<br> <br>Koncept och koreografi: Roser Tutusaus och Tom Weksler <br>Dekor och kostym: Roser Tutusaus och Tom Weksler <br>Dans och samkoreografi: Janne Aspvik och Misa Lommi <br>Ljuddesign: Miki Brunou <br>Ljusdesign: Anttoni Halonen <br>Produktion: Janne Aspvik i samarbete med Wonderground Company</p><p>Stöds av: Svenska Kulturfonden, Stiftelsen Tre Smeder, Centret för <br>konstfrämjande och Jenny ja Antti Wihurin rahasto <br>Foton: Mika Haaranen</p><p>Det spanska Wonderground Company har skapat en föreställning i samarbete med en finsk arbetsgrupp, som kommer att ha premiär i Teatersalen på Stoa i Helsingfors i februari 2026. Gruppens konstnärliga ledare, Roser Tutusaus och Tom Weksler, utforskar kopplingen mellan det naturliga, det artificiella och det kulturella i sitt konstnärliga arbete.</p><p>Shadows of the Mind är ett poetiskt mångtydigt verk för två dansare, som bygger på rörelsepraktiken Movement Archery, skapad av Tutusaus och Weksler. Praktiken kombinerar bland annat kampsport, fysisk teater, butoh, improvisation, partnering, meditation och akrobatik.</p>",
                "en": "<p>Shadows of the Mind tells the story of a human and their shadow... or maybe the story of a shadow and their human.</p><p>In a lunar mystical territory, we witness an intimate encounter. An absent being transforms into a body, a shadow devours its owner. Just like the back of the lighthouse or the dark side of the moon, shadows are the invisible presence. The part we can't or don't want to see, the hidden essence. <br> <br>If you could confront your own shadow, what would you discover? <br> <br>Duration: 50 min<br>Age recommendation: 8+<br>Language: none</p><p>Concept and choreography: Roser Tutusaus and Tom Weksler <br>Stage and costume design: Roser Tutusaus and Tom Weksler <br>Dance and co-choreography: Janne Aspvik and Misa Lommi <br>Sound design: Miki Brunou <br>Light design: Anttoni Halonen <br>Production: Janne Aspvik in collaboration with Wonderground Company</p><p>Supported by: Swedish Cultural Foundaton in Finland, Stiftelsen Tre <br>Smeder, Arts Promoton Centre Finland and Jenny and Antti Wihuri <br>Foundation <br>Photos: Mika Haaranen</p><p>The Spanish Wonderground Company has created a performance in collaboration with a Finnish working group, which will premiere at the Stoa Theatre Hall in Helsinki in February 2026. The group's artistic directors, Roser Tutusaus and Tom Weksler, explore the connection between the natural, the artificial, and the cultural in their artistic work.</p><p>Shadows of the Mind is a poetic, multi-layered work for two dancers, drawing on the movement language of Movement Archery, created jointly by Tutusaus and Weksler. The practice combines martial arts, physical theater, butoh, improvisation, partnering, meditation, and acrobatics, among other things.</p>"
            },
            "name": {
                "fi": "Wonderground Company: Shadows of the Mind",
                "sv": "Wonderground Company: Shadows of the Mind",
                "en": "Wonderground Company: Shadows of the Mind"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67690/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67766",
            "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": 1494154,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-09T09:13:02.841369Z",
                    "last_modified_time": "2025-12-09T09:13:02.841380Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780411.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494154/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-09T09:13:02.743022Z",
            "last_modified_time": "2026-03-20T01:12:57.636929Z",
            "date_published": null,
            "start_time": "2026-02-06T16: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": "Pohjois-Norjaan sijoittuvan tarinan keskiössä on saamelaisteini Elvira.",
                "sv": "Denna berättelse utspelar sig i norra Norge och handlar om den samiska tonåringen Elvira.",
                "en": "Set in northern Norway, this story centres on a Sámi teenager named Elvira."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2949BEAD2372848996ECC98BDBAAC95D/Saamelaispaiva_Biru_Unj_rga_-_Fucking_Uuniemi_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2949BEAD2372848996ECC98BDBAAC95D/Samernas_dag_Biru_Unj_rga_-_Fucking_Uuniemi_12_",
                "en": "http://www.vuotalo.fi/en/events/event/2949BEAD2372848996ECC98BDBAAC95D/S_mi_Day_Biru_Unj_rga_Fucking_Uuniemi_12_"
            },
            "description": {
                "fi": "<p>Pohjois-Norjaan sijoittuvan tarinan keskiössä on saamelaisteini Elvira.</p><p>Tytölle on uskoteltu, että hänen äitinsä hedelmöitettiin tanskalaisella klinikalla, mutta sitten paikalle ilmaantuu tytön oikea isä. Elviran maailma muuttuu pysyvästi.</p><p>Näyttelijät: Sarah Olaussen Eira, Ingá Elisá Påve Idivuoma, Aslat Máhtte Gaup, Amund Lode<br>Kesto: 1 t 18 min<br>Ikäraja: K12<br>Kieli: saami, tanskan kieli, englanti, norjan kieli<br>Tekstitykset: suomi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Denna berättelse utspelar sig i norra Norge och handlar om den samiska tonåringen Elvira.</p><p>Hon har fått veta att hennes mamma befruktades på en dansk klinik, men plötsligt dyker hennes riktiga pappa upp. Elviras värld förändras för alltid.</p><p>Medverkande: Sarah Olaussen Eira, Ingá Elisá Påve Idivuoma, Aslat Máhtte Gaup, Amund Lode</p><p>Längd: 1 h 18 min.<br>Åldersgräns: Tillåten från 12 år.<br>Språk: samiska, danska, engelska, norska<br>Textning: finska</p><p>Fritt inträde!</p>",
                "en": "<p>Set in northern Norway, this story centres on a Sámi teenager named Elvira.</p><p>The girl has been led to believe that her mother was impregnated in a Danish clinic, but then her real father turns up. Elvira’s world changes forever.</p><p>Cast: Sarah Olaussen Eira, Ingá Elisá Påve Idivuoma, Aslat Máhtte Gaup, Amund Lode<br>Duration: 1 h 18 min<br>Age rating: 12 and over<br>Language: Sámi, Danish, English, Norwegian<br>Subtitles: Finnish</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Saamelaispäivä: Biru Unjárga - Fucking Uuniemi (12)",
                "sv": "Samernas dag: Biru Unjárga - Fucking Uuniemi (12)",
                "en": "Sámi Day: Biru Unjárga – Fucking Uuniemi (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67766/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67346",
            "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: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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223606/",
                        "sv": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223606/",
                        "en": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223606/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494564,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T12:12:53.071758Z",
                    "last_modified_time": "2026-01-20T12:12:53.071774Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781006.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494564/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-20T12:12:52.936574Z",
            "last_modified_time": "2026-03-20T01:12:57.528717Z",
            "date_published": null,
            "start_time": "2026-02-06T16: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": "Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/58FBB920C48225B0615D966CDAE9BF2A/Hamnet_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/58FBB920C48225B0615D966CDAE9BF2A/Hamnet_12_",
                "en": "http://www.malmitalo.fi/en/events/event/58FBB920C48225B0615D966CDAE9BF2A/Hamnet_12_"
            },
            "description": {
                "fi": "<p>Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä.</p><p>Elokuva palkittiin kahdella Golden Globe -palkinnolla: paras elokuva ja paras naispääosa (Jessie Buckley).</p><p>Ikäraja: 12<br>Kesto: 126 min<br>Ensi-ilta: 30.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Hamnet (12) – Kino Helios",
                "sv": "Hamnet (12) – Kino Helios",
                "en": "Hamnet (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67346/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67345",
            "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/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-marty-supreme-unelmoi-isosti-4076282/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494553,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T15:12:53.842618Z",
                    "last_modified_time": "2026-01-19T15:12:53.842636Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781005.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494553/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T15:12:53.722845Z",
            "last_modified_time": "2026-03-20T01:12:57.408636Z",
            "date_published": null,
            "start_time": "2026-02-06T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6862313C6C45E2E77DE1124C05F1D8B1/Marty_Supreme_unelmoi_isosti_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6862313C6C45E2E77DE1124C05F1D8B1/Marty_Supreme_unelmoi_isosti_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6862313C6C45E2E77DE1124C05F1D8B1/Marty_Supreme_unelmoi_isosti_12_"
            },
            "description": {
                "fi": "<p>Nuori Marty Mauser lähtee tavoittelemaan unelmaa, johon kukaan muu ei usko. Hän on valmis menemään läpi helvetin todistaakseen kaikille – myös itselleen – epäilyt vääriksi.</p><p>Josh Safdien ohjaama MARTY SUPREME – UNELMOI ISOSTI elokuvateattereissa 23.1.2026. Pääosissa Timothée Chalamet, Gwyneth Paltrow, Kevin O'Leary, Odessa A’Zion, Abel Ferrara ja Tyler Okonma.</p><p>Ikäraja: 12<br>Kesto: 149 min<br>Ensi-ilta: 23.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "sv": "Marty Supreme – unelmoi isosti (12) – Kino Helios",
                "en": "Marty Supreme – unelmoi isosti (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67345/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67239",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494280,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-22T08:13:57.882155Z",
                    "last_modified_time": "2025-12-22T08:13:57.882179Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780062.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494280/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-22T08:13:57.629176Z",
            "last_modified_time": "2026-03-20T01:12:57.289049Z",
            "date_published": null,
            "start_time": "2026-02-06",
            "end_time": "2026-03-28",
            "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": "Miten erilaisten tunteiden kanssa tullaan toimeen? Haluaisitko oppia hillitsemään ja hallitsemaan tunteitasi paremmin?",
                "sv": "Hur hanterar du olika känslor? Skulle du vilja lära dig att kontrollera och hantera dina känslor bättre?",
                "en": "How can you deal with different emotions? Would you like to learn to control and manage your emotions better?"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9CDEFC509353D04C80574B6F9A969C9C/Tunnemuskelit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9CDEFC509353D04C80574B6F9A969C9C/Tunnemuskelit_Kanslomuskler",
                "en": "http://www.annantalo.fi/en/events/event/9CDEFC509353D04C80574B6F9A969C9C/Tunnemuskelit"
            },
            "description": {
                "fi": "<p>Miten erilaisten tunteiden kanssa tullaan toimeen? Haluaisitko oppia hillitsemään ja hallitsemaan tunteitasi paremmin?</p><p>Tunnemuskeliasiantuntijat ovat palveluksessasi! Tervetuloa hulvattoman hauskoihin treeneihin Maltti-Martin, Koko-Locon, Sisäisen apurin ja Strutsi Strösselssönin kanssa. Tunneduunari Oy:n kuntosalilla voit treenata tunnemuskeleita eli sellaisia henkisiä lihaksia, jotka auttavat selviytymään hankalissa tilanteissa. Kun jännittää, suututtaa, surettaa, houkuttaa tai arveluttaa.</p><p>Onko olemassa erikokoisia harmeja? Löytyykö ihmisen kehosta STOP-nappi? Mitä tehdä, kun nukkumaanmenoaika lähestyy ja Barbaba-pyjama on pyykissä? Tule mukaan miettimään ja harjoittelemaan hilpeiden hahmojen opastuksella.</p><p>Tunnemuskelit on hankalien tunteiden satumainen käsikirja, jossa tunnetaitojen opetteluun suhtaudutaan lempeydellä ja huumorilla.</p><p>Kirja on suunnattu 5–8-vuotiaille lapsille ja heidän kasvattajilleen.</p><p>Tekijöinä ovat runoilija, psykologi Miira Luhtavaara, taidekasvattaja Marjut Maristo ja kuvittajana Satu Kettunen.</p>",
                "sv": "<p>Hur hanterar du olika känslor? Skulle du vilja lära dig att kontrollera och hantera dina känslor bättre?</p><p>Känslomuskelexperterna står till din tjänst! Välkommen till en hysteriskt rolig träning med Maltti-Martti, Koko-Loco, Sisäinen apuri och Strutsi Strösselssön. På Tunneduunari Oy:s gym kan du träna dina känslomuskler, det vill säga de mentala muskler som hjälper dig att klara av svåra situationer. När du är nervös, arg, ledsen, frestad eller tveksam.</p><p>Finns det olika stora problem? Finns det en stoppknapp i människokroppen? Vad gör man när det närmar sig läggdags och Barbapapa-pyjamasen ligger i tvätten? Kom med för att fundera och träna tillsammans med roliga karaktärer.</p><p>Tunnemuskelit är en sagolik handbok om svåra känslor med ett varmt och humoristiskt förhållningssätt till inlärningen av emotionella färdigheter.</p><p>Boken riktar sig till barn i åldern 5–8 år och deras fostrare.</p><p>Boken har skapats av poeten och psykologen Miira Luhtavaara, konstpedagogen Marjut Maristo och illustratören Satu Kettunen.</p>",
                "en": "<p>How can you deal with different emotions? Would you like to learn to control and manage your emotions better?</p><p>Emotion muscle experts are at your service! Join us for a hilarious training session with Maltti-Martti, Koko-Loco, Inner Helper and Strösselssön the Ostrich. At Tunneduunari Oy’s gym, you can train your emotion muscles, i.e. mental muscles that help you manage in difficult situations. When you are nervous, angry, sad, tempted or apprehensive.</p><p>Do problems come in different sizes? Is there a STOP button in the human body? What should you do when bedtime approaches and your Barbapapa jammies are in the laundry? Join us to think about and practice these things with the help of hilarious characters.</p><p>Tunnemuskelit (‘Emotion Muscles’) is a magical handbook for difficult emotions, in which the learning of emotional skills is approached with gentleness and humour.</p><p>The book is aimed at children aged 5–8 and their carers.</p><p>The authors are poet and psychologist Miira Luhtavaara, art educator Marjut Maristo and illustrator Satu Kettunen.</p>"
            },
            "name": {
                "fi": "Tunnemuskelit – Kuvitusnäyttely kahvila Naperossa",
                "sv": "Tunnemuskelit – Känslomuskler – Illustrationsutställning på kafé Napero",
                "en": "Tunnemuskelit – Illustration exhibition at Café Napero"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67239/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68051",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494704,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-03T09:13:37.867604Z",
                    "last_modified_time": "2026-02-03T09:13:37.867621Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785236.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494704/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-03T09:13:37.563796Z",
            "last_modified_time": "2026-03-20T01:12:56.034237Z",
            "date_published": null,
            "start_time": "2026-02-05",
            "end_time": "2026-02-28",
            "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": "Näyttely koostuu kahdesta kokonaisuudesta. Suurikokoiset työt ovat osa sarjaa Mieskuvia, pienemmät työt osa sarjaa Pieniä painajaisia.",
                "sv": "Utställningen av Juha Okko (f. 1963) består av två delar. De stora verken är serien Manliga porträtt, skapad 2020–23, och de mindre verken är Små mardrömmar, målade 2025–24.",
                "en": "The exhibition by Juha Okko (b. 1963) consists of two entities. The large works are the series Male Portraits, created in 2020–23, and the smaller works are the Little Nightmares, painted in 2025–24."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B48698341CAE7B0483419102F619668B/Mieskuvia_ja_pienia_painajaisia",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B48698341CAE7B0483419102F619668B/Manliga_portratt_och_lilla_mardromma",
                "en": "http://www.malmitalo.fi/en/events/event/B48698341CAE7B0483419102F619668B/Male_Portraits_and_Little_Nightmares"
            },
            "description": {
                "fi": "<p>Näyttely koostuu kahdesta kokonaisuudesta. Suurikokoiset työt ovat osa sarjaa Mieskuvia, pienemmät työt osa sarjaa Pieniä painajaisia.</p><p>Mieskuvien kohdalla katsoja voi kysyä, miksi Okko on maalannut sarjan muotokuvia keski-ikäisistä, kulahtaneen jäykistä valkoisista miehistä. Eikö tätä lajia ole jo nähty tarpeeksi? Tekijän lähtökohtana oli pandemian aikainen sosiaalisen elämän suppeus. Kun Covid-2019 viruksen etenemistä estäviä rajoituksia helpotettiin kesällä 2020, Okko kutsui oman ikäluokkansa ystäviä, työtovereita ja naapureita 60 minuutin sessioihin työhuoneelleen, yksi kerrallaan. Tunnin kuluessa puhuttiin, päivitettiin omat ja maailman asiat ja samalla syntyi yksivärinen luonnos suureen kasvokuvaan. Mallista otetut kännykkäkuvat toimivat jatkotyöskentelyn lisämateriaalina, mutta osa alkuperäisistä virheistä löytyy yhä. Työt eivät ensisijaisesti ole muotokuvia, enemmän esitys moninaisuudesta samankaltaisuudessa. Lopputulos on sarja julistemaisia ja pelkistettyjä naamakuvia, lähes tyhjiä merkkejä.  <br> <br>Teossarja sai jatkoa kesästä 2021 alkaen. Pääosin samat miehet vierailivat ateljeessa, nyt 90 minuuttia kerrallaan. Okko luonnosteli kokovartalokuvan sekä ateljeehen tapaamista varten viriteltyjä kankaita, kukkia ja juomia. Teoksien jatkamista varten taaskin otettiin useampia kännykkäkuvia. Kasvokuvien melko yhtenäinen käsittelytapa sai väistyä eklektisen ja vaihtelevamman esittämistavan tieltä. Maalauksista voi löytää ekspressiivisen abstrakteja maalauseleitä, väripintoja, tarkkaa piirustusta sekä muotoa rakentavaa maalausta. Osa yksityiskohdista viittaa muotokuvataiteen historiaan, mutta ei suoraan kopioiden. Maalausprosessin aikana miljöö on muuttuva ja aktiivinen, henkilö paikallaan oleva ja passiivinen. Henkilöiden ilmeet ovat keskittyneitä, koska poseeraaminen on vakava asia. Tässä ei naureta. Ympäristöön putkahtelee roskapusseja, lisää kukkia ym. Maailman muuttuminen on kestettävä.</p><p>Okko on pitkään pohtinut, miten tulee tai voisi olla mies sosiaalisena sukupuolena. Millainen on hyvä mies ja miksi osalla miehistä on vahva taipumus väkivaltaan ja valtapeleihin. Miten tästä seuraava kilpailu määrittää kaikkia (miehiä). Mutta entäpä vanheneminen, kuolema ja luopuminen. Ns. hegemoninen maskuliinisuus, ymmärrettynä yhtenä miehisyyden mallina on aikaa sitten murtunut – ja hyvä niin. Yksilölliset valinnat ovat se, mitä jää. Ja hämmennys: ”Eikö tästä tämän selkeämpää tullut?”. <br> <br>Pienten painajaisten lähtökohtana on digitaalinen, mustavalkoinen valokuvakollaasi. Materiaalina kollaaseille on käytetty taiteilijan itse ottamia valokuvia, skannattuja lehtikuvia ja internetistä kopioituja kuvia. Maalaukset ovat eräänlaisia tarjouskimppuja, sekalaisesta materiaalista koottuja kasaumia.  Kuvat voi nähdä kommenttina aikaan. Maalauksissa on hyödynnetty erilaisia esittämisen tapoja ja niiden rinnastaminen yhdessä työssä synnyttää melua ja eriaikaisuutta. Osa elementeistä on, osa on tulossa, osa jo mennyt.  Niin kuin eletty todellisuus.</p><p>Lämpimästi tervetuloa näyttelyn avajaisiin keskiviikkona 4.2. klo 17 alkaen. Tarjolla pientä purtavaa ja virvoketta.</p>",
                "sv": "<p>Utställningen av Juha Okko (f. 1963) består av två delar. De stora verken är serien Manliga porträtt, skapad 2020–23, och de mindre verken är Små mardrömmar, målade 2025–24.</p><p>När det gäller Manliga porträtt kan betraktaren fråga sig varför Okko har målat en serie porträtt av medelålders, stela och slitna vita män. Har inte denna genre setts tillräckligt ofta? Konstnärens utgångspunkt var det begränsade sociala livet under pandemin. När restriktionerna som förhindrade spridningen av Covid-2019-viruset lättades sommaren 2020, bjöd Okko in vänner, kollegor och grannar i sin egen åldersgrupp till 60-minuterssessioner i sin studio, en i taget. Under timmen pratade dom, uppdaterade ens egna och världsliga angelägenheter och skapade samtidigt en monokrom skiss för ett stort ansiktsporträtt. Mobiltelefonfotona som tagits av modellen fungerar som ytterligare material för vidare arbete, men några av de ursprungliga misstagen kan fortfarande hittas. Verken är inte primärt porträtt, utan mer en representation av mångfald i likhet. Slutresultatet är en serie affischliknande och förenklade ansiktsporträtt, nästan tomma emblem.</p><p>Serien fortsatte från sommaren 2021. Huvudsakligen samma män besökte ateljén, nu 90 minuter åt gången. Okko skissade ett helkroppsporträtt och tyger, blommor och drycker arrangerades för mötet i ateljén. Flera mobiltelefonfoton togs igen för att fortsätta verken. Det ganska enhetliga sättet att hantera ansiktsbilder gav vika för ett eklektiskt och mer varierat presentationssätt. Målningarna har expressiva abstrakta målerigester, färgytor, precis teckning och formbyggande måleri. Vissa detaljer hänvisar till porträttkonstens historia, men kopierar dem inte direkt. Under målningsprocessen förändras miljön och är aktiv, personen är stillastående och passiv. Människornas ansiktsuttryck är fokuserade, eftersom posering är en allvarlig sak. Det finns inget att skratta åt här. Sopsäckar kastas i miljön, fler blommor, etc. Världen måste uthärdas medan den förändras. <br> <br>Okko har länge funderat över hur en man blir eller kan vara som ett socialt kön. Hur är en god man och varför vissa män har en stark tendens till våld och maktspel. Hur definierar den konkurrens som följer alla (män). Men hur är det med åldrande, död och övergivande? Så kallad hegemonisk maskulinitet, förstådd som en enda modell för manlighet, har sedan länge brutit samman – och det är okej. Individuella val är det som återstår. Och förvirringen: \"Blev inte detta tydligare än så här?\" <br> <br>Utgångspunkten för Lilla mardrömmar är ett digitalt, svartvitt fotokollage. Kollagen består av fotografier tagna av konstnären, skannade tidningsbilder och bilder kopierade från internet. Målningarna är ett slags reabuketter, samlingar av diverse material. Bilderna kan ses som en kommentar till tiden. Målningarna använder olika sätt att representera och att ställa dem mot varandra i ett verk skapar brus och en annan temporalitet. Vissa element finns där, vissa kommer, vissa har redan passerat. Precis som den levda verkligheten.</p>",
                "en": "<p>The exhibition by Juha Okko (b. 1963) consists of two entities. The large works are the series Male Portraits, created in 2020–23, and the smaller works are the Little Nightmares, painted in 2025–24.</p><p>In the case of Male Portraits, the viewer may ask why Okko has painted a series of portraits of middle-aged, stiff, and worn-out white men. Hasn't this genre been seen enough? The artist's starting point was the narrowness of social life during the pandemic. When restrictions preventing the spread of the Covid-2019 virus were eased in the summer of 2020, Okko invited <br> <br>friends, colleagues, and neighbors of his own age group to 60-minute sessions in his studio, one at a time. During the hour, they talked, updated each other’s own and worldly affairs, and at the same time Okko created a monochrome sketch for a large face portrait. The cell phone photos taken of the model serve as additional material for further work, but some of the original mistakes can still be found. The works are not primarily portraits, more like a representation of diversity in similarity. The result is a series of poster-like and simplified face portraits, almost empty signs. <br> <br>The series continued from summer 2021. Mainly the same men visited the studio, now for 90 minutes at a time. Okko sketched a full-body portrait and fabrics, flowers and drinks arranged for the meeting in the studio. Several photos were taken again to continue the work. The rather uniform way of handling facial images gave way to an eclectic and more varied way of presentation. The paintings feature expressive abstract painting gestures, color surfaces, precise drawing and form building painting. Some of the details refer to the history of portrait art, but not directly. During the painting process, the environment is changing and active; the person is stationary and passive. The expressions of the people are focused, because posing is a serious matter. There is no laughing matter here. Garbage bags are thrown into the environment, more flowers, etc. The world must be endured as it changes. <br> <br>Okko has long pondered how a man becomes or could be as a social gender. What is a good man like and why some men have a strong tendency towards violence and power games. How does the competition that follows define all (men). But what about aging, death and renunciation? So-called hegemonic masculinity, understood as a single model of manhood, has long since broken down – and that's okay. Individual choices are what remains. And the confusion: \"Didn't this get clearer than this?\" <br> <br>The starting point for Little Nightmares is a digital, black-and-white photo collage. The collages are made up of photographs taken by the artist, scanned newspaper images, and images copied from the internet. The paintings are a kind of offer bouquets, accumulations of miscellaneous material. The images can be seen as a comment on time. The paintings utilize different ways of presentation and juxtaposing them in one work creates noise and a different temporality. Some of the elements are, some are coming, some have already passed. Just like a lived reality.</p><p>We warmly welcome you to the exhibition’s opening at Malmitalo’s gallery on Wednesday, 4th of February, starting from 17.</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Mieskuvia ja pieniä painajaisia – Juha Okko",
                "sv": "Manliga porträtt och lilla mardrömma – Juha Okko",
                "en": "Male Portraits and Little Nightmares – Juha Okko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68051/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67987",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494589,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T12:14:10.601885Z",
                    "last_modified_time": "2026-01-21T12:14:10.601902Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784266.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494589/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-21T12:14:10.477282Z",
            "last_modified_time": "2026-03-20T01:12:53.769201Z",
            "date_published": null,
            "start_time": "2026-02-02",
            "end_time": "2026-02-28",
            "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": "Tylsän harmaat asennuskaapit ovat erinomainen pohja taideteoksille ja valokuville."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_",
                "en": "http://www.kanneltalo.fi/en/events/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_"
            },
            "description": {
                "fi": "<p>Tylsän harmaat asennuskaapit ovat erinomainen pohja taideteoksille ja valokuville.</p><p>Taide piristää kaupunkikuvaa ja auttaa havainnoimaan ympäristöä uudella tavalla. Samalla ne antavat taiteilijoille ja kuvaajille hyviä kohteita tuoda esille tuotoksiaan.</p><p>Haagan Taideseura ry on Helsingissä vuodesta 1966 toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot Haagan Taideseura ry<br> <br>Kahvilan vitriinit</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa",
                "sv": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa",
                "en": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67987/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66987",
            "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: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/artist/cremulator/cremulator-3964631/",
                        "en": "https://www.lippu.fi/artist/cremulator/cremulator-3964631/"
                    },
                    "description": null,
                    "price": {
                        "fi": "58-114 €",
                        "en": "58-114 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490640,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-05T11:14:22.523472Z",
                    "last_modified_time": "2025-09-05T11:14:22.523491Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777250.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490640/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-05T11:14:22.384027Z",
            "last_modified_time": "2026-03-20T01:12:53.633674Z",
            "date_published": null,
            "start_time": "2026-02-01T17:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/ADC5A8E3251A31C2524398A60337FE03/Cremulator",
                "en": "http://www.savoyteatteri.fi/en/events/event/ADC5A8E3251A31C2524398A60337FE03/Cremulator"
            },
            "description": {
                "fi": "<p>Official Participant of Voices Berlin Festival</p><p>This first production of the novel by Belarusian-born writer Sasha Filipenko tells the story of Peter Nesterenko, a White Guard officer who, after a long ordeal of emigration in the early 20th century, made a deal with the Soviet authorities and returned to his homeland. It is a tale of manipulation and the pursuit of one’s truth, of burning and blotting it out of several generations, of emigration and the wars of the last century, of a great love that loses its meaning when its dedicated audience is a tyrant.</p><p>Filipenko’s book draws from historical evidence and interrogation notes recorded after Nesterenko’s arrest by the NKVD before his execution in 1942. The text was adapted for the theater by German playwright Johannes Kirsten and staged by the renowned theater director Maxim Didenko, who left Russia in 2022.</p><p>Author of the novel: Sasha Filipenko<br>Director: Maxim Didenko</p><p>Performers:<br>Maxim Sukhanov<br>Svetlana Mamresheva<br>Yang Ge<br>Igor Titov</p><p>Set and costume designer: Alexander Barmenkov<br>Composer: Sergej Newski<br>Video artist: Oleg Mikhailov<br>Live-camera operator: Frol Podlesny<br>Lighting designer: Alexander Kurochkin<br>Playwright: Johannes Kirsten<br>General Producer: Svetlana Dolya<br>Technical Director: Ilya Reizman<br>Executive Producer: Ilya Kuznetsov<br>Supported by: NGO Kibbuz and ICF</p><p>Duration: 1 hour 40 minutes<br>Age restriction: 16+<br>Language: Performed in Russian with English subtitles</p>",
                "en": "<p>Official Participant of Voices Berlin Festival</p><p>This first production of the novel by Belarusian-born writer Sasha Filipenko tells the story of Peter Nesterenko, a White Guard officer who, after a long ordeal of emigration in the early 20th century, made a deal with the Soviet authorities and returned to his homeland. It is a tale of manipulation and the pursuit of one’s truth, of burning and blotting it out of several generations, of emigration and the wars of the last century, of a great love that loses its meaning when its dedicated audience is a tyrant.</p><p>Filipenko’s book draws from historical evidence and interrogation notes recorded after Nesterenko’s arrest by the NKVD before his execution in 1942. The text was adapted for the theater by German playwright Johannes Kirsten and staged by the renowned theater director Maxim Didenko, who left Russia in 2022.</p><p>Author of the novel: Sasha Filipenko<br>Director: Maxim Didenko</p><p>Performers:<br>Maxim Sukhanov<br>Svetlana Mamresheva<br>Yang Ge<br>Igor Titov</p><p>Set and costume designer: Alexander Barmenkov<br>Composer: Sergej Newski<br>Video artist: Oleg Mikhailov<br>Live-camera operator: Frol Podlesny<br>Lighting designer: Alexander Kurochkin<br>Playwright: Johannes Kirsten<br>General Producer: Svetlana Dolya<br>Technical Director: Ilya Reizman<br>Executive Producer: Ilya Kuznetsov<br>Supported by: NGO Kibbuz and ICF</p><p>Duration: 1 hour 40 minutes<br>Age restriction: 16+<br>Language: Performed in Russian with English subtitles</p>"
            },
            "name": {
                "fi": "Cremulator",
                "en": "Cremulator"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Aftersunset Oy",
                "en": "Aftersunset Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66987/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66994",
            "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-3954795",
                        "sv": "https://www.lippu.fi/eventseries/name-3954795",
                        "en": "https://www.lippu.fi/eventseries/name-3954795"
                    },
                    "description": null,
                    "price": {
                        "fi": "44,90-48,90 €",
                        "sv": "44,90-48,90 €",
                        "en": "44,90-48,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490664,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T06:14:24.558085Z",
                    "last_modified_time": "2025-09-09T06:14:24.558104Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777059.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490664/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T06:14:24.439878Z",
            "last_modified_time": "2026-03-20T01:12:53.455610Z",
            "date_published": null,
            "start_time": "2026-01-31T17: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": "Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.",
                "sv": "Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.",
                "en": "Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6C945586C2E216B24EE09F0E92F3D3C3/Maagikot_5_-_Variety_of_Wonders",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/6C945586C2E216B24EE09F0E92F3D3C3/Maagikot_5_-_Variety_of_Wonders",
                "en": "http://www.savoyteatteri.fi/en/events/event/6C945586C2E216B24EE09F0E92F3D3C3/Maagikot_5_-_Variety_of_Wonders"
            },
            "description": {
                "fi": "<p>Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.</p><p><b>Mitä kaikkea lavalla nähdään?</b></p><p>Varietee on taiteen juhlaa – se yhdistää taikuuden, mentalismin, akrobatian, jongleerauksen ja komedian yhdeksi häikäiseväksi kokonaisuudeksi. Maagikot 5 – Variety of Wonders tuo lavalle huippuammattilaiset, joiden esitykset saavat yleisön haukkomaan henkeään ja hymyilemään sydämensä kyllyydestä. Luvassa on mieltä taivuttavaa mentalismia, maailmanennätysjongleerausta, akrobatiaa, joka uhmaa painovoimaa, sekä taikuutta, joka rikkoo todellisuuden rajoja.</p><p><b>Esiintyjät:</p><p>Pete Poskiparta</b> – Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Joni Pakanen</b> – Vuoden esiintyjä, taikuuden, komedian ja teatterin mestari<br><b>Herra Koskinen</b> – Moninkertainen maailmanennätysjonglööri<br><b>Christian Engblom</b> – Kahdesti Penn & Telleriä huijannut mestaritaikuri<br><b>Gigi</b> – Ympäri maailmaa esiintynyt akrobaatti, joka tuo lavalle liikettä ja lumoa</p><p><b>Maagikot-ilmiö jatkuu</b></p><p>Jo viidettä kertaa järjestettävä Maagikot on vakiinnuttanut paikkansa Suomen suosituimpana magian ja illuusion kiertueena. Keväällä 2025 kiertue rikkoi yleisöennätyksiä – yli <b>12 000 katsojaa</b> täytti konserttisalit ympäri maan.<br>Kiertueen suosio perustuu maailmanluokan esiintyjiin, joiden taidokkaat ja hämmästyttävät esitykset puhuttelevat kaikenikäisiä. Tämä show ei ole vain temppuja – se on kokemus, joka jää mieleen pitkäksi aikaa.</p><p><b>Katsojien palautteita viime kiertueelta:</b></p><p><i>\"Ensimmäinen kerta Maagikoissa. Ylitti odotukseni!”<br>\"Kiitos hienosta showsta! Tämä oli upea yhteinen kokemus minulle ja teini-ikäiselle lapselleni.”<br>“Isot kiitokset esityksestä, oli todella upea kokemus. Koko meidän perhe nautti suunnattomasti!”</i></p><p>Parhaat paikat myydään nopeimmille – varmista paikkasi ajoissa!</p><p>Suositusikäraja: 10+</p><p>Show’n kesto noin 2 tuntia, sisältäen väliajan</p>",
                "sv": "<p>Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.</p><p>Vad allt kommer vi att få se på scenen?</p><p>En varieté är en hyllning till konsten – en kombination av magi, mentalism, akrobatik, jonglering och komedi i en imponerande helhet. Maagikot 5 – Variety of Wonders visar de främsta proffsen på scenen vars föreställningar får åskådarna att kippa efter andan och le från djupet av sina hjärtan. Det blir mentalism som utmanar sinnet, världsrekord i jonglering, akrobatik som trotsar tyngdkraften och magi som spränger verklighetens gränser.</p><p>På scenen:</p><p>Pete Poskiparta – Finlands enda internationellt prisbelönta mentalist<br>Joni Pakanen – Årets artist, mästare på magi, komedi och teater<br>Herra Koskinen – jonglör med flera världsrekord<br>Christian Engblom – mästertrollkarl som lurat Penn & Teller två gånger<br>Gigi – akrobat som har uppträtt över hela världen och för med sig rörelse och magi på scenen</p><p>Fenomenet Maagikot fortsätter</p><p>Maagikot ordnas nu för femte gången och har etablerat sig som den mest populära magi- och illusionsturnén i Finland. Under våren 2025 slog turnén publikrekord – mer än 12 000 personer fyllde konsertsalarna runt om i landet.<br>Turnéns popularitet bygger på artister i världsklass som med sina skickliga och häpnadsväckande framträdanden tilltalar åskådare i alla åldrar. Den här showen handlar inte bara om trick – den är en upplevelse som du kommer ihåg länge.</p><p>Respons från åskådarna på den senaste turnén:</p><p>”Första gången jag sett Maagikot. Överträffade mina förväntningar!”<br>”Tack för en fin show! Det var en fantastisk upplevelse för mig och mitt tonårsbarn.”<br>”Tack så mycket för föreställningen, det var en riktigt fin upplevelse. Hela vår familj tyckte väldigt mycket om den!”</p><p>De bästa platserna säljs till de snabbaste – se till att få en plats!</p><p>Åldersrekommendation: 10+</p><p>Föreställningens längd ca 2 timmar, inklusive paus.</p>",
                "en": "<p>Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family.</p><p>What will you see on stage?</p><p>Varietee is a celebration of art, combining magic, mentalism, acrobatics, juggling and comedy into one dazzling whole. Maagikot 5 – Variety of Wonders fills the stage with top professionals whose performances will leave the audience gasping for breath and smiling wide with their hearts full. There will be mind-blowing mentalism, world record juggling, acrobatics that defy gravity and magic that breaks the boundaries of reality.</p><p>Performers:</p><p>Pete Poskiparta - Finland's only internationally awarded mentalist<br>Joni Pakanen - Performer of the Year, master of magic, comedy and theatre<br>Herra Koskinen - A juggler with multiple world records<br>Christian Engblom - The master magician who twice tricked Penn & Teller<br>Gigi - An acrobat who has performed all over the world, bringing movement and magic to the stage</p><p>The Maagikot phenomenon continues</p><p>Now in its fifth year, the Maagikot show has established itself as the most popular magic and illusion tour in Finland. In spring 2025, the tour broke audience records – more than 12,000 people filled concert halls across the country.<br>The tour's popularity is built on the world-class performers whose skilful and astonishing performances appeal to all ages. This show is not just about tricks – it's an experience that will stay with you for a long time.</p><p>Audience feedback from the last tour:</p><p>“First time with Maagikot. Exceeded my expectations!”<br>“Thank you for a great show! It was a great shared experience for me and my teenage child.”<br>“Thank you very much for the performance, it was an amazing experience. Our whole family enjoyed it immensely!”</p><p>The best seats are sold to the fastest – make sure to book your ticket on time!</p><p>Age recommendation: 10+</p><p>Duration of the show about 2 h, including intermission</p>"
            },
            "name": {
                "fi": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom",
                "sv": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom",
                "en": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Nelonen Media Live yhteistyössä Radio Aito Iskelmä",
                "sv": "Nelonen Media Live",
                "en": "Nelonen Media Live"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66994/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}