Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 21736,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=35",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=33"
    },
    "data": [
        {
            "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:67255",
            "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: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "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-4023177",
                        "sv": "https://www.lippu.fi/eventseries/name-4023177",
                        "en": "https://www.lippu.fi/eventseries/name-4023177"
                    },
                    "description": null,
                    "price": {
                        "fi": "46-72 €",
                        "sv": "46-72 €",
                        "en": "46-72 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493769,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-11T09:12:53.960696Z",
                    "last_modified_time": "2025-11-11T09:12:53.960712Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779934.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493769/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-11T09:12:53.849683Z",
            "last_modified_time": "2026-03-20T01:12:57.158243Z",
            "date_published": null,
            "start_time": "2026-02-05T17: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": "Kuvittele, että sinut kutsuttaisiin kurkistamaan sisään mystisen vaatekaapin avaimenreiästä. Kaapin, joka pursuilee muiden ihmisten salaisuuksia ja henkilökohtaisia tarinoita. Miltä tuntuisi, jos muita vakoillessasi näkisit myös välähdyksen itsestäsi – törmäisit omiin pelkoihisi, muistoihisi ja toteutumattomiin unelmiisi?",
                "sv": "Tänk dig att du blir inbjuden att kika in i en mystisk garderob genom nyckelhålet. Ett skåp fullt av andra människors hemligheter och personliga berättelser. Hur skulle det kännas om du, samtidigt som du spionerade på andra, också fick se en glimt av dig själv – en glimt av dina egna rädslor, minnen och ouppfyllda drömmar?",
                "en": "Imagine being asked to take a peek through a keyhole of a mysterious wardrobe – one bursting with other people’s secrets and personal stories. How would you feel if, while spying on others, you also saw a glimpse of yourself – encountering your own fears, memories and unfulfilled dreams?"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4CBE2A645B1BF0D859E24A8BB17606F9/Freedom_Ballet_tanssinaytelma_Wardrobe",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/4CBE2A645B1BF0D859E24A8BB17606F9/Freedom_Ballet_dansforestallningen_Wardrobe",
                "en": "http://www.savoyteatteri.fi/en/events/event/4CBE2A645B1BF0D859E24A8BB17606F9/Freedom_Ballet_tanssinaytelma_Wardrobe"
            },
            "description": {
                "fi": "<p>Kuvittele, että sinut kutsuttaisiin kurkistamaan sisään mystisen vaatekaapin avaimenreiästä. Kaapin, joka pursuilee muiden ihmisten salaisuuksia ja henkilökohtaisia tarinoita. Miltä tuntuisi, jos muita vakoillessasi näkisit myös välähdyksen itsestäsi – törmäisit omiin pelkoihisi, muistoihisi ja toteutumattomiin unelmiisi?</p><p>Legendaarinen ukrainalainen Freedom Ballet juhli hiljattain 20. juhlavuottaan. Näihin vuosiin on mahtunut niin monia hämmästyttäviä kokeiluja, genrerajoja ylittäviä esityksiä sekä arvokkaita näyttämöteoksia, että kaiken kokoaminen laajimpaankaan kirjaan olisi lähes mahdotonta. Nyt tämän luovan arsenaalin kerääminen, järjestäminen ja säilöminen on kuitenkin tullut välttämättömäksi, ja koko uskomaton matka on laitettu... <i>vaatekaappiin!</i></p><p><i>Vaatekaappi</i> on Freedomin taiteellisen näkemyksen perikuva – tanssiteos täynnä syvästi henkilökohtaisia tarinoita ja aitoja ihmisiä. On vain sinä, 14 tanssijaa ja heidän läpitunkevat, intiimit tarinansa. Mutta kyse ei ole ainoastaan tanssista vaan myös elämästä, joka on täynnä intohimoa, juonittelua, improvisaatiota, draamaa ja rakkautta.</p><p>Maailmankuulu Freedom Ballet on historiansa aikana luonut tuhansia tanssi- ja teatterituotantoja sekä ollut mukana useissa merkittävissä televisioprojekteissa.<br>Seurue on kiertänyt loppuunmyydyillä esityksillään yli 30 maassa ja jakanut lavan lukuisten tunnettujen taiteilijoiden, kuten burleskitähti Dita Von Teesen, kanssa.</p><p>Ensimmäistä kertaa Suomeen saapuva balettiryhmä tuo nyt ainutlaatuisen Wardrobe-tanssinäytelmänsä Helsingin Savoy-teatteriin. Täydellisen kehonkielen avulla esiintyjät pohtivat ajan ja tilan luonnetta, rakkauden ja intohimon hämärtyneitä ääriviivoja. He muuntautuvat eri rooleihin ja heräävät eloon yhä uudestaan. Katsojan tehtäväksi jää vain tuntea, kaikki muu katoaa.</p><p>Joten avaa kaapin ovi ja astu sisään – mutta vain, jos et pelkää omaa heijastustasi.</p><p>Kesto n. 2 h väliaikoineen</p>",
                "sv": "<p>Tänk dig att du blir inbjuden att kika in i en mystisk garderob genom nyckelhålet. Ett skåp fullt av andra människors hemligheter och personliga berättelser. Hur skulle det kännas om du, samtidigt som du spionerade på andra, också fick se en glimt av dig själv – en glimt av dina egna rädslor, minnen och ouppfyllda drömmar?</p><p>Legendariska Freedom Ballet från Ukraina firade nyligen sitt 20-årsjubileum. Dessa år har bjudit på så många fantastiska experiment, genreöverskridande föreställningar och värdefulla scenproduktioner att det skulle vara nästan omöjligt att sammanställa allt ens i en tjock bok. Men nu har det blivit nödvändigt att samla, organisera och förvara denna kreativa arsenal, och hela den otroliga resan har hamnat... i garderoben!</p><p>Wardrobe är urtypen för Freedoms konstnärliga synsätt – ett dansverk fyllt av djupt personliga berättelser och äkta människor. Det är bara du, 14 dansare och deras inträngande, intima berättelser. Men det handlar inte bara om dans, det handlar också om ett liv fullt av passion, intriger, improvisation, drama och kärlek.</p><p>Världsberömda Freedom Ballet har skapat tusentals dans- och teaterproduktioner under sin historia och har varit involverad i flera stora tv-projekt.<br>Sällskapet har turnerat med utsålda föreställningar i över 30 länder och delat scen med många välkända artister, däribland burleskstjärnan Dita Von Teese.</p><p>Nu kommer baletten för första gången till Finland för att framföra sin unika dansföreställning Wardrobe på Savoy-teatern. Genom ett perfekt kroppsspråk reflekterar artisterna över tid och rum, kärlekens och passionens suddiga konturer. De förvandlar sig själva till olika roller och kommer till liv om och om igen. Betraktarens uppgift är bara att uppleva, allt annat försvinner.</p><p>Så öppna garderobsdörren och kliv in – men bara om du inte är rädd för din egen spegelbild.</p><p>Längd ca 2 timmar med paus</p>",
                "en": "<p>Imagine being asked to take a peek through a keyhole of a mysterious wardrobe – one bursting with other people’s secrets and personal stories. How would you feel if, while spying on others, you also saw a glimpse of yourself – encountering your own fears, memories and unfulfilled dreams?</p><p>The legendary Ukrainian Freedom Ballet recently celebrated its 20th anniversary. These years have seen so many amazing experiments, genre-crossing performances and valuable stage productions that it would be almost impossible to compile everything in even the most comprehensive of books. However, it has now become necessary to collect, organise and preserve this creative arsenal, and the whole incredible journey has been put... in a wardrobe!</p><p>Wardrobe is the epitome of Freedom’s artistic vision – a dance work full of deeply personal stories and genuine people. It will just be you, 14 dancers and their penetrating, intimate stories. However, the work not just about dance; it is also about a life full of passion, intrigue, improvisation, drama and love.</p><p>The world-renowned Freedom Ballet has created thousands of dance and theatre productions throughout its history, and the company has been involved in several major television projects.<br>The company has toured with sold-out performances in over 30 countries and shared the stage with numerous well-known artists, including burlesque star Dita von Teese.</p><p>Coming to Finland for the first time, the ballet company will now bring its unique Wardrobe dance play to the Savoy Theatre in Helsinki. Through perfect body language, the performers reflect on the nature of time and space, the blurred contours of love and passion. They transform themselves into different roles and come to life again and again. All the viewer has to do is feel; everything else disappears.</p><p>So, open the wardrobe door and step inside – but only if you are not afraid of your own reflection.</p><p>Duration: roughly 2 h, incl. intermission</p>"
            },
            "name": {
                "fi": "Freedom Ballet: tanssinäytelmä Wardrobe",
                "sv": "Freedom Ballet: dansföreställningen Wardrobe",
                "en": "Freedom Ballet: tanssinäytelmä Wardrobe"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Aftersunset Oy",
                "sv": "Aftersunset Oy",
                "en": "Aftersunset Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67255/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67474",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/guto-konrad-bra-timo-haikarainen-blues-band-4030034/#calendar-start=2026-02",
                        "sv": "https://www.lippu.fi/artist/malmitalo/guto-konrad-bra-timo-haikarainen-blues-band-4030034/#calendar-start=2026-02",
                        "en": "https://www.lippu.fi/artist/malmitalo/guto-konrad-bra-timo-haikarainen-blues-band-4030034/#calendar-start=2026-02"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,90 € / 26,90 € / 23,80 €",
                        "sv": "29,90 € / 26,90 € / 23,80 €",
                        "en": "29,90 € / 26,90 € / 23,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493882,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-24T14:13:19.963839Z",
                    "last_modified_time": "2025-11-24T14:13:19.963854Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781446.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493882/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-24T14:13:19.809886Z",
            "last_modified_time": "2026-03-20T01:12:56.998462Z",
            "date_published": null,
            "start_time": "2026-02-05T17: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": "Somessa ilmiöksi noussut ja Suomen syksyllä sekaisin saanut nuori blueskitara-virtuoosi tekee paluun!",
                "sv": "Den unga bluesgitarrvirtuosen som blivit ett fenomen i de sociala medierna och som i höstas förbluffat Finland gör come back!",
                "en": "The young blues guitar virtuoso who became a social media phenomenon and sent the whole of Finland crazy last autumn is back!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/272E89CC4D991F7A0C3E95B5A9B59C0F/Guto_Konrad_BRA_Timo_Haikarainen_Blues_Band",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/272E89CC4D991F7A0C3E95B5A9B59C0F/Guto_Konrad_BRA_Timo_Haikarainen_Blues_Band",
                "en": "http://www.malmitalo.fi/en/events/event/272E89CC4D991F7A0C3E95B5A9B59C0F/Guto_Konrad_BRA_Timo_Haikarainen_Blues_Band"
            },
            "description": {
                "fi": "<p>Somessa ilmiöksi noussut ja Suomen syksyllä sekaisin saanut nuori blueskitara-virtuoosi tekee paluun!</p><p>Tämän nuoren herran tekemisiä Joe Bonamassan ja Kirk Fletcherin kaltaiset maailmantähdetkin seuraavat!</p><p>Oletko valmis kitarabluesin ja blues-rockin ilotulitukseen, jota et unohda? Yleisöt hurmioon saanut ja keikkapaikkojen yleisöennätyksiä lokakuun kiertueellaan murskannut 22-vuotias Guto Konrad saapuu uudelleen Suomeen Suomi-bluesin kärkikahinoihin nopeasti nousseen Timo Haikarainen Blues Bandin säestämänä.</p><p>Ensimmäisellä Euroopan kiertueellaan lokakuussa Suomessa aikaisemmin täysin tuntematon Guto aiheutti huimia reaktioita yleisössä. Sanoja ”tyrmäys” ja ”shokki” käytettiin kuvaamaan hänen vaikutustaan yleisöön. Jo ensimmäinen esiintyminen räjäytti somen ja sai aikaan huhumyllyn, joka täytti keikkapaikan toisensa jälkeen. Osa ensimmäisen keikan nähneistä jopa seurasi Gutoa ja THBB:tä ympäri Suomen keikalta toiselle! Nyt tätä herkkua saadaan lisää, sillä Guto palaa suuren kysynnän saattelemana Suomeen THBB säestäjänään.</p><p>Guto on jo kotimaassaan ja sosiaalisessa mediassa blues- ja kitarafanit hämmästyttänyt nouseva tähti. Hänen jopa hämmentävän virtuoosimaisessa soitossa yhdistyvät Jimi Hendrixin ja Stevie Ray Vaughanin energia ja BB Kingin hienostuneet nuottivalinnat yksilöllisellä tavalla. Hän tarjoilee energiaa ja vauhtia sekä fiilistelyä ja malttia kutkuttavana sekoituksen. Lisäksi nuorukainen laulaa upeasti, ja hänen ”look” sekä vauhdikas tapa esiintyä säteilevät luontaista rock-tähti- ja kitarasankari -auraa. Myös sanaa ”sex-appeal” viljeltiin tiiviisti ensimmäisen kiertueen yhteydessä.</p><p>Timo Haikarainen tutustui Gutoon sosiaalisen median kautta ja he alkoivat suunnitella kiertuetta alkukesästä 2025 ja se toteutettiin lokakuussa 2025. Nyt on toivotun uusinnan aika! Guto kertoo odottavansa innolla paluuta Suomen: ”En malta odottaa, että takaisin Suomeen! Vastaanotto oli viimeksi uskomattoman lämmin. Toivon, että näen ja tapaan taas paljon uusia ihmisiä, joille pääsen soittamaan musiikkiani!”</p><p>Ei liene liioittelua ennustaa, että Guto kuuluu bluesin ja bluesrockin seuraaviin potentiaalisiin supertähtiin. Tämän veikkauksen toistivat myös kaikki Suomen musiikkiauktoriteetit Guton ensimmäisen kiertueen yhteydessä. Tule siis paikalle todistamaan tämän nuorukaisin vauhtia ja talenttia. Voi olla, että 5–10 vuoden päästä hämmästytät musiikkikeskustelussa kertomalla nähneesi Guto Konradin klubikiertueella Suomessa!</p><p>Guto Konrad, kitara ja laulu<br>Timo Haikarainen, kitara<br>Markku Vainio-Pekka, basso<br>Iikka Korhonen, rummut</p>",
                "sv": "<p>Den unga bluesgitarrvirtuosen som blivit ett fenomen i de sociala medierna och som i höstas förbluffat Finland gör come back!</p><p>Världsberömda stjärnor som Joe Bonamassa och Kirk Fletcher följer vad denna unga herre gör!</p><p>Är du redo för ett oförglömligt fyrverkeri av gitarrblues och bluesrock? Den 22-åriga Guto Konrad, som hänfört publiken och krossat publikrekorden på spelningsplatserna under sin turné i oktober, anländer på nytt till Finland under ackompanjemang av Timo Haikarainen Blues Band, som snabbt klivit upp i den finska bluestoppen.</p><p>Under sin första turné i Europa i oktober orsakade Guto, som tidigare var helt okänd i Finland, kraftiga reaktioner bland publiken. Orden ”knockout” och ”chock” användes för att beskriva hans inverkan på publiken. Redan det första uppträdandet sprängde sociala medierna och gav upphov till en ryktesflora som fyllde en spelningsplats efter en annan. En del av dem som såg den första spelningen följde till och med Guto och THBB från en spelning till en annan runt om i Finland! Nu får vi mer av det goda, eftersom Guto på grund av stor efterfrågan återvänder till Finland med THBB som sin ackompanjatör.</p><p>Guto är redan en stigande stjärna i sitt hemland och i de sociala medierna, där han förvånar blues- och gitarrfansen. Jimi Hendrix och Stevie Ray Vaugans energi samt BB Kings fina notval kombineras på ett individuellt sätt i hans till och med förvånande virtuosliknande spelande. Han bjuder på energi och fart samt stämningsfullhet och behärskning i en spännande blandning. Dessutom sjunger den unga mannen underbart, och hans ”look” samt det snabba sättet att uppträda utstrålar en naturlig aura för rockstjärnor och gitarrhjältar. Ordet \"sex-appeal\" användes också flitigt under den första turnén.</p><p>Timo Haikarainen bekantade sig med Guto via de sociala medierna och de började planera en turné under början av sommaren 2025. Turnén genomfördes i oktober 2025. Nu är det dags för den efterlängtade reprisen! Guto berättar att han ser fram emot att återvända till Finland:” Jag väntar verkligen på att få komma tillbaka till Finland! Mottagandet var senast så otroligt varmt. Jag hoppas att jag igen ser och träffar många nya människor som jag får spela min musik för!”</p><p>Det är inte en överdrift att förutspå att Guto är nästa potentiella superstjärna inom blues och bluesrock. Denna förutsägelse upprepades också av alla Finlands musikauktoriteter under Gutos första turné. Kom och bevittna denna ungas fart och talang. Kan hända att du om 5–10 år förvånar någon i en musikdiskussion genom att berätta att du såg Guto Konrad på klubbturnén i Finland!</p><p>Guto Konrad, gitarr och sång<br>Timo Haikarainen, gitarr<br>Markku Vainio-Pekka, bas<br>Iikka Korhonen, trummor</p>",
                "en": "<p>The young blues guitar virtuoso who became a social media phenomenon and sent the whole of Finland crazy last autumn is back!</p><p>The work of this young gentleman is closely followed by world stars such as Joe Bonamassa and Kirk Fletcher!</p><p>Are you ready for a firework show of guitar blues and blues-rock that you won't forget in a hurry? The 22-year-old Guto Konrad, who wowed audiences and smashed attendance records of venues on his October tour, will return to Finland accompanied by the Timo Haikarainen Blues Band, who have quickly risen to the top of the Finnish blues scene.</p><p>On his first European tour in October, Guto, previously unknown to the Finnish public, elicited ecstatic reactions from audiences. The words ‘stunning’ and ‘shocking’ were used to describe his impact on the audience. Even just the first performance blew up social media and created a buzz that filled venue after venue. Some of those who saw the first show even followed Guto and THBB around Finland from one show to the next! Now there's more of this treat to come, as Guto returns to Finland by popular demand, accompanied by THBB.</p><p>Guto is already a rising star in his home country and on social media among blues and guitar fans. His confounding, virtuosic playing uniquely combines the energy of Jimi Hendrix and Stevie Ray Vaughan with the refined note choices of BB King. He serves up a tantalising mix of energy and momentum, as well as great vibes and composure. This young man also sings beautifully and his ‘look’ and his energetic performance style radiate natural rockstar and guitar virtuoso charisma. The term ‘sex appeal’ also often popped up in the context of his first tour.</p><p>Timo Haikarainen got to know Guto through social media and they started planning the tour in early summer 2025. The tour took place in October 2025. Now it's time for a much-awaited new tour! Guto says he is looking forward to returning to Finland: “I can't wait to get back to Finland! Last time, the reception was incredibly welcoming. I hope to see and meet a lot of new people again and to play my music for them!”</p><p>It is no exaggeration to predict that Guto could be one of the next potential superstars of blues and blues rock. This prediction was also echoed by all the Finnish music authorities in connection with Guto's first tour. Come and witness the speed and talent of this young promising artist. In 5 or 10 years, you may amaze your music fan friends by telling them that you saw Guto Konrad on a club tour in Finland!</p><p>Guto Konrad, guitar and vocals<br>Timo Haikarainen, guitar<br>Markku Vainio-Pekka, bass<br>Iikka Korhonen, drums</p>"
            },
            "name": {
                "fi": "Guto Konrad (BRA) & Timo Haikarainen Blues Band",
                "sv": "Guto Konrad (BRA) & Timo Haikarainen Blues Band",
                "en": "Guto Konrad (BRA) & Timo Haikarainen Blues Band"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67474/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67428",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494007,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:05.946335Z",
                    "last_modified_time": "2025-12-03T08:13:05.946353Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781197.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:05.856973Z",
            "last_modified_time": "2026-03-20T01:12:56.885401Z",
            "date_published": null,
            "start_time": "2026-02-05T16: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": "Elokuva nostaa katsojat hevosten selkään, matkalle argentiinalaiseen gaucho-kulttuuriin.",
                "sv": "Filmen lyfter upp tittarna på hästrygg, på en resa till argentinska gaucho-kulturen",
                "en": "The film takes viewers on a journey on horseback through the Argentinian Gaucho culture."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_",
                "en": "http://www.malmitalo.fi/en/events/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_"
            },
            "description": {
                "fi": "<p>Elokuva nostaa katsojat hevosten selkään, matkalle argentiinalaiseen gaucho-kulttuuriin.</p><p>Pitkään odotettu Piemonten tryffelinmetsästäjät – ohjaajien uutuus Gaucho Gaucho sijoittuu täysin erilaiselle, mutta yhtä osuvasti ainutlaatuiselle seudulle. Argentiinan pampalla eletään hevosten kanssa ja hevosten ehdoilla. Päähenkilöksi nousee miesten maailmassa omaa tilaansa vaativa nuori Gauda, joka harjoittelee hevosten kesytystä ajan karhentamien konkareiden kanssa. Kylän koulun opettaja vaatii Gaudaa pitämään koulupukua huonolla menestyksellä. Ratsastajan asuun, nahkasäärystimiin ja reilun kokoiseen baskeriin pukeutunut Gauda vastaa: ”Olen gaucha, ja tämä on minun asuni!”.</p><p>Ansel Adamsin kamera hyväilee karua maisemaa samettisesti. Ohjaajat Michael Dweck ja Gregory Kershaw asuivat pampalla yli kaksi vuotta päästäkseen sisälle gauchojen ajattomaan elämäntapaan, joka on vaarassa kadota. Argentiinalaisen Los Gatos –bändin La Balsa –hitin helisevät kitarat ja Georges Bizet´n Helmenkalastajat soivat ääniraidalla hevosten rytmissä. Gaucho Gaucho sai Sundance festivaaleilla kunniamaininnan upeasta ääniraidastaan.</p><p>Kesto: 85 min<br>Ikäraja: S<br>Vapaa pääsy!</p>",
                "sv": "<p>Filmen lyfter upp tittarna på hästrygg, på en resa till argentinska gaucho-kulturen</p><p>Den länge förväntade Gaucho Gaucho, filmnyheten av regissörerna till Tryffeljägarna från Piemonte , är förlagd på en helt annan men lika unik bygd. På den argentinska pampasen lever man livet med hästar och på deras villkor. Huvudpersonen är den unga Gauda som kräver eget utrymme i männens värld. Han övar på att tämja hästar tillsammans med ruggiga veteraner. Byskoleläraren kräver att Gauda ska bära skoluniform, men med dålig framgång. Gauda, klädd i ryttardräkt, benvärmare av läder och en stor basker svarar: ”Jag är gaucha, och detta är min dräkt!”</p><p>Ansel Adams kamera smeker sammetslent det karga landskapet. Regissörerna Michael Dweck och Gregory Kershaw bodde på pampasen i mer än två år för att få en inblick i gauchornas tidlösa livsstil, som riskerar att försvinna. Det argentinska bandet Los Gatos hitlåt La Balsa med dess klingande gitarrer och Georges Bizets Pärlfiskarna spelar i takt med hästarna på ljudspåret. Gaucho Gaucho fick ett hedersomnämnande på Sundance-festivalen för sitt fantastiska ljudspår.</p><p>Längd: 85 min.<br>Åldersgräns: S<br>Fritt inträde!</p>",
                "en": "<p>The film takes viewers on a journey on horseback through the Argentinian Gaucho culture.</p><p>Gaucho Gaucho, the long-awaited new work by the directors of The Truffle Hunters, is set in a very different, but just as aptly unique region. On the Argentinian Pampas, life is lived together with horses and on their terms. The protagonist is the young Guada, who is trying to claim her own space in a man's world and practices horse taming with the time-weathered experts. The teacher at the village school tries to tell Guada to wear her school dress, with little success. Dressed in a rider's outfit, leather leggings and a large beret, Guada replies, \"I am a Gaucha, and this is my outfit!”</p><p>Ansel Adams’s camera work caresses the barren landscape with velvety grace. The directors, Michael Dweck and Gregory Kershaw, lived on the Pampas for more than two years to gain access to the timeless gaucho way of life, which is in danger of disappearing. The soundtrack features both the bright guitars of the hit song La Balsa by the Argentinian band Los Gatos and the sounds of the opera Les pêcheurs de perles by Georges Bizet, set to the rhythm of horses. Gaucho Gaucho received an honourable mention at the Sundance Festival for its stunning soundtrack.</p><p>Duration: 85 min<br>Age rating: G<br>Free entry!</p>"
            },
            "name": {
                "fi": "Doc Helios: Gaucho Gaucho (S)",
                "sv": "Doc Helios: Gaucho Gaucho (S)",
                "en": "Doc Helios: Gaucho Gaucho (S)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67428/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67271",
            "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: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": 1493828,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-18T10:14:23.661619Z",
                    "last_modified_time": "2025-11-18T10:14:23.661635Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780801.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493828/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-18T10:14:23.530764Z",
            "last_modified_time": "2026-03-20T01:12:56.658626Z",
            "date_published": null,
            "start_time": "2026-02-05T16: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/6653435B6CEC091D3D558A4642CF7FB0/Red_Nose_Company_Taydellinen_musikaali_-_Matka_manalaan",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6653435B6CEC091D3D558A4642CF7FB0/Red_Nose_Company_Taydellinen_musikaali_matka_manalaan_Den_perfekta_musikalen_en_resa_till_underjorden_",
                "en": "http://www.kanneltalo.fi/en/events/event/6653435B6CEC091D3D558A4642CF7FB0/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 – Ensi-ilta",
                "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:67271/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67900",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/niklas-winter-kvintett-aar-som-lov-musik-till-texter-av-bo-carpelan-vuotalo-21142472/",
                        "sv": "https://www.lippu.fi/event/niklas-winter-kvintett-aar-som-lov-musik-till-texter-av-bo-carpelan-vuotalo-21142472/",
                        "en": "https://www.lippu.fi/event/niklas-winter-kvintett-aar-som-lov-musik-till-texter-av-bo-carpelan-vuotalo-21142472/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€/15€",
                        "sv": "20€/15€",
                        "en": "20€/15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494320,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-29T08:13:28.838102Z",
                    "last_modified_time": "2025-12-29T08:13:28.838123Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780412.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494320/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-29T08:13:28.678788Z",
            "last_modified_time": "2026-03-20T01:12:56.536309Z",
            "date_published": null,
            "start_time": "2026-02-05T16: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": "Niklas Winter Kvintett tulkitsee Bo Carpelanin runoja melodisen jazzin rytmeissä."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1CB60F6842A051F8867C23DFACC17674/Niklas_Winter_Kvintett",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1CB60F6842A051F8867C23DFACC17674/Niklas_Winter_Kvintett",
                "en": "http://www.vuotalo.fi/en/events/event/1CB60F6842A051F8867C23DFACC17674/Niklas_Winter_Kvintett"
            },
            "description": {
                "fi": "<p>Niklas Winter Kvintett tulkitsee Bo Carpelanin runoja melodisen jazzin rytmeissä.</p><p>Niklas Winter on säveltänyt uutta musiikkia valituille runoille Bo Carpelandin kirjasta År som löv (1989), joka on ollut hänelle pitkäaikainen inspiraation lähde.</p><p>Yhdessä useiden suurten musiikkipersoonallisuuksien hän esittää runoja melodisen jazzin kautta, joka koostuu sekä laulu- että instrumentaalisesta ilmaisusta, joihin jokainen osallistuja lisää oman leimansa.</p><p>Johanna Grüssner – laulu<br>Niklas Winter – kitarat ja sävellykset <br>Lars Jansson – piano<br>Ulf Krokfors – kontrabasso<br>Olavi Louhuvuori - rummut</p><p>Kesto 60 min.</p><p>Kieli: englanti, ruotsi, suomi</p>",
                "sv": "<p>År som löv – musik till texter av Bo Carpelan<br>Niklas Winter har skapat ny musik till utvalda dikter ur Bo Carpelands bok År som löv (1989), som varit en ständig inspirationskälla för honom.</p><p>Tillsammans med en rad stora personligheter tolkar han dikterna genom melodisk jazz som består av både vokala och instrumentala uttryck, som varje medverkande sätter sin egen prägel på.</p><p>Johanna Grüssner – sång<br>Niklas Winter - gitarrer samt kompositioner<br>Lars Jansson – piano<br>Ulf Krokfors – kontrabas<br>Olavi Louhuvuori - trummor</p><p>Språk: engelska, svenska, finska</p>"
            },
            "name": {
                "fi": "Niklas Winter Kvintett – År som löv – musik till texter av Bo Carpelan",
                "sv": "Niklas Winter Kvintett – År som löv – musik till texter av Bo Carpelan",
                "en": "Niklas Winter Kvintett – År som löv – musik till texter av Bo Carpelan"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67900/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}