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=30
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=31",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=29"
    },
    "data": [
        {
            "id": "kulke:68027",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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.lippuagentti.fi/event/view?id=6545",
                        "sv": "https://www.lippuagentti.fi/event/view?id=6545",
                        "en": "https://www.lippuagentti.fi/event/view?id=6545"
                    },
                    "description": null,
                    "price": {
                        "fi": "10 € / 20 €",
                        "sv": "10 € / 20 €",
                        "en": "10 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494633,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T12:13:52.685828Z",
                    "last_modified_time": "2026-01-26T12:13:52.685845Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780642.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494633/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T12:13:52.565625Z",
            "last_modified_time": "2026-03-20T01:13:12.432139Z",
            "date_published": null,
            "start_time": "2026-02-20T16:00:00Z",
            "end_time": "2026-02-20T18:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa seuraamaan liiketoiminnan kriisiä!",
                "sv": "Välkommen att följa en kris i affärsverksamheten!",
                "en": "Come witness a business crisis!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/26ACE08F2AB0F8867212C9ACA979F3CA/Laajasalon_opiston_Tanssilinja_Liiketoiminnan_kriisi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/26ACE08F2AB0F8867212C9ACA979F3CA/Danslinjen_pa_Laajasalon_opisto_Liiketoiminnan_kriisi",
                "en": "http://www.stoa.fi/en/events/event/26ACE08F2AB0F8867212C9ACA979F3CA/Dance_students_of_Laajasalo_Adult_Education_Centre_Liiketoiminnan_kriisi"
            },
            "description": {
                "fi": "<p>Tervetuloa seuraamaan liiketoiminnan kriisiä!</p><p>Laajasalon opiston Tanssilinjan opiskelijat tuovat näyttämölle omat taiteelliset projektinsa. Tapahtumassa nähtävät teokset on ideoitu ja toteutettu osana Omat taiteelliset projektit -opintojaksoa. Prosessin aikana opiskelijat ovat päässeet tutustumaan itseensä tanssintekijöinä, tutkimaan liikettä ja sitä, mikä heitä tanssitaiteessa kiinnostaa.</p><p>Laajasalon opiston tanssilinja käynnistettiin ensimmäistä kertaa vuonna 2023 yhteistyössä Kinetic Orchestra -tanssiryhmän kanssa. Vuoden kestävän linjan tavoitteena on tukea opiskelijoiden omaa kehitystä tanssijana, vahvistaa tanssisuhdetta sekä valmistaa kiinnostuneita opiskelijoita tanssin jatko-opintoihin. <br>Tapahtumassa nähdään 14 teosta: sooloja, duoja sekä ryhmäteoksia.</p><p>Näytöksen kesto noin 2.5h (sisältää väliajan)</p><p>Näytökset: <br>Kulttuurikeskus Stoa, Turunlinnantie 1, Musiikkisali <br>To 19.2. klo 18-20.30 (sis. väliajan) <br>Pe 20.2. klo 13-15.30 (sis. väliajan) <br>Pe 20.2. klo 18-20.30 (sis. väliajan)</p><p>Lipunmyynti ennakkoon (ei ovimyyntiä): https://www.lippuagentti.fi/event/view?id=6545</p><p>Kannatuslippujen tulot käytetään opiskelijoiden kevään näytösten tilavuokriin.</p><p>Alle 4-vuotiaat lapset ilmaiseksi.</p><p>Stoa on liikuntaesteetön.</p><p>Tarkemmat esteettömyys- ja saavutettavuustiedot Stoan nettisivuilta: https://www.stoa.fi/fi/saavutettavuus</p><p>Näytöksessä käytetään teatterisavua ensimmäisellä puoliajalla. <br>Jotkin esityksistä saattavat sisältää voimakkaita välkkyviä valoja - ilmoitamme tästä käsiohjelmassa teoskohtaisesti.</p>",
                "sv": "<p>Välkommen att följa en kris i affärsverksamheten!</p><p>Studerande vid danslinjen på Laajasalon opisto framför sina egna konstnärliga projekt på scenen. De verk som visas vid evenemanget har planerats och genomförts som en del av en studieperiod för egna konstnärliga projekt. Under processen har eleverna fått utforska sig själva som skapare av dans samt utforska rörelse och vad som intresserar dem inom danskonsten.</p><p>Danslinjen på Laajasalon opisto startade för första gången år 2023 i samarbete med dansgruppen Kinetic Orchestra. Syftet med den ett år långa linjen är att stödja de studerandes utveckling som dansare, stärka relationen till dansen och förbereda intresserade studerande för vidare studier i dans.</p><p>Vid evenemanget framförs 14 verk: solo-, duo- och gruppverk. <br>Föreställningens längd är ca 2,5 h (inklusive paus)</p><p>Föreställningar: <br>Kulturcentret Stoa, Åbohusvägen 1, Musiksalen <br>Tor 19.2 kl. 18–20.30 (inkl. paus) <br>Fre 20.2 kl. 13–15.30 (inkl. paus) <br>Fre 20.2 kl. 18–20.30 (inkl. paus)</p><p>Biljetter 10 €/20 € <br>Förköp av biljetter (ingen försäljning vid dörren): https://www.lippuagentti.fi/event/view?id=6545 Inkomsterna från stödbiljetterna används till lokalhyror för de studerandes föreställningar under våren.</p><p>Barn under 4 år gratis. <br>Stoa är tillgängligt för rörelsehindrade. <br>Under den första halvan av föreställningen används teaterrök. <br>Vissa föreställningar kan innehålla starka blinkande ljus – vi informerar om detta i programbladet för föreställningen.</p>",
                "en": "<p>Come witness a business crisis!</p><p>Dance students from Laajasalo Adult Education Centre will bring their own artistic projects to the stage. The works featured at the event were conceived and created as part of the education centre’s ‘My artistic projects’ study unit. During the process, the students got to know themselves as dance makers, and to explore movement and what interests them in the art of dance.</p><p>The dance line of Laajasalo Adult Education Centre was introduced in 2023 in collaboration with the Kinetic Orchestra dance group. The objective of the year-long line is to support the students’ own development as dancers, strengthen their relationship with dance and prepare interested students for further studies in dance.</p><p>The event will feature 14 works: solos, duos and group works. <br>Show duration: roughly 2.5 h, incl. intermission</p><p>Shows: <br>Cultural Centre Stoa, Turunlinnantie 1, Music Hall <br>Thursday 19 February at 18.00–20.30 (incl. intermission) <br>Friday 20 February at 13.00–15.30 (incl. intermission) <br>Friday 20 February at 18.00–20.30 (incl. intermission)</p><p>Tickets €10/20 <br>Advance ticket sales (no tickets sold at the door): https://www.lippuagentti.fi/event/view?id=6545 The proceeds from the support tickets will be used to cover the rent for the students’ spring performances.</p><p>Children under the age of 4 can enter free of charge. <br>The facilities of Stoa are accessible. <br>The show will use artificial fog during the first half. Some of the performances may contain intense flashing lights – this will be indicated separately for each work in the programme leaflet.</p>"
            },
            "name": {
                "fi": "Laajasalon opiston Tanssilinja: Liiketoiminnan kriisi",
                "sv": "Danslinjen på Laajasalon opisto: Liiketoiminnan kriisi",
                "en": "Dance students of Laajasalo Adult Education Centre: Liiketoiminnan kriisi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68027/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67992",
            "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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494579,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T09:12:53.620196Z",
                    "last_modified_time": "2026-01-21T09:12:53.620211Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784292.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494579/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-01-21T09:12:53.400774Z",
            "last_modified_time": "2026-03-20T01:13:12.217663Z",
            "date_published": null,
            "start_time": "2026-02-20T15: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": "Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.",
                "sv": "Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).",
                "en": "Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible)."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D341691F3967356D46E2451563C2DEED/Nakyvat_nakymattomat_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D341691F3967356D46E2451563C2DEED/Nakyvat_nakymattomat_De_synliga_de_osynliga_",
                "en": "http://www.stoa.fi/en/events/event/D341691F3967356D46E2451563C2DEED/Nakyvat_nakymattomat_The_Visible_the_Invisible_"
            },
            "description": {
                "fi": "<p>Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.</p><p>Immersiivisyydellä tarkoitetaan, että yleisö saa kulkea teoksen sisällä, sekä valita mitä osia teoksesta haluaa kokea. <br>’Näkyvät, näkymättömät’ on Helsingin kaupungin nuorisopalvelujen tuottama ja toteuttama esitys, jonka työryhmään kuuluu nuoria helsinkiläisiä.</p><p>Ohjaajan sana: <br>Aina kun erilaiset ihmiset kohtaavat ja löytävät yhteyden, rakennamme yhteistä maailmaa ja parannamme ymmärrystä. <br>Halusimme tuoda yhteen helsinkiläisiä nuoria ja nuorten ryhmiä ja valmistaa yhdessä immersiivinen teoksen inspiroitumalla toisistamme.</p><p>Keräsimme materiaalia ryhmä- ja prosessilähtöisesti. Lähdimme synnyttämään uutta tietämättä, mitä on luvassa ja saimme paljon enemmän, kuin osasimme ikinä odottaakaan. Nuorten tekijöiden ryhmä työskenteli sitoutuen ja taitavasti toisiaan ja teemaa kuunnellen. On ollut ilo seurata, kuinka he ovat avanneet itsensä teokselle ja teemalle. Ryhmän kanssa työskentely on ollut täynnä lämpöä, ymmärrystä ja rehellistä luottamuksen ilmapiiriä.</p><p>Monitaiteinen yhteistyö on rikastuttanut ja mahdollistanut moninäkökulmaisen aiheen tutkimisen sekä ilmaisun muodot. <br>Olemme mielettömän vaikuttuneita lopputuloksesta ja olemme iloisia, että juuri sinä pääset kokemaan teoksen Näkyvät, näkymättömät.</p><p>Lämpimästi tervetuloa! <br>Ohjaajat Serafiina Minerva ja Marjaana Veikkanen</p><p>Esitysajat: <br> Pe 20.2. klo 17:00 ja 19:00 <br>La 21.2. klo 15:00 ja 17:00 <br>Su 22.2. klo 15:00 ja 17:00 <br>Saavuthan ajoissa paikalle, emme voi valitettavasti ottaa myöhästyneitä sisään.</p><p>Kesto on n.  1 h (ei väliaikaa)  <br>Suositusikäraja 12+.   <br>Esitystila on osittain esteellinen. <br>Osallistuminen ei vaadi suomen kielen taitoa. <br>Esitys on pääsymaksuton. <br> <br>HUOM: Esitykseen pääsee vain etukäteen varatulla lipulla. Lippujen varaus: tiivistamo@hel.fi <br> <br>Esityksen ohjaus: Marjaana Veikkanen ja Serafiina Minerva <br>Valosuunnittelu: Jarkko Tuominen, Jaakko Ylimäki, Valo Melvas <br>Äänisuunnittelu: Tomas Lamas, Onni Palander, Nooa Ojala <br>Digitaide: Mikko Röman <br>Projisoinnit: Jarkko Tuominen ja työryhmä <br>Lavastus: Yö Heinänen <br>Puvustus: Työryhmä <br>Naamiotaide: Tytti Punkka ja Shadan Mahmud <br>Julisteen kuvat: Satu Lehtinen <br>Tuottajat: Tiina Toivonen ja Janne Friman <br>Esiintyjät: Sanni Marttinen, Aamos Lindeman, Karlo Korhonen, Mars Häkkinen, Mette Sarlin, Olga Reinistö, Yö Heinänen, Shadan Mahmud, Valma Merimaa, Viktor Viiriäinen, Saimi Alatalo <br>Avustavat esiintyjät: Narrin teatteritoiminnan ryhmäläisiä <br>Oppaat: Laura Toikander, Samuli Mäkisalo, Tanja Männistö, Marjaana Veikkanen ja Serafiina Minerva <br> <br>Kiitokset: Antti Sarpo ja Stoan henkilökunta, Helsingin työväenopisto, Essi Ndiaye, Mia Vainikainen, Narrin teatteritoiminta ystävät, läheiset ja kaikki apunsa ja tukensa produktiolle antaneet.</p>",
                "sv": "<p>Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).</p><p>Föreställningen är en experimentell upptäcktsresa i avskildhet och samhörighet. Den mångkonstnärliga föreställningen kombinerar olika former av utövande konst och improvisation, ljus- och ljudkonst, scenografikonst samt digital konst som utnyttjar artificiell intelligens.</p><p>Att verket är immersivt innebär i denna föreställning att publiken får röra sig inne i verket, påverka händelseförloppet samt bestämma vilka delar av verket de vill uppleva. Du får själv bestämma hur du vill delta och har rätt att hela tiden fastställa dina egna gränser. <br>I början av föreställningen får du säkerhetsanvisningar. På platsen finns guider och du kan vid behov kontakta dem i frågor som gäller föreställningen.</p><p>Vänligen kom i tid, vi kan tyvärr inte släppa in personer som kommer för sent.</p><p>Föreställningstider:<br>Fre. 20.2 kl. 17.00 och 19.00<br>Lör. 21.2 kl. 15.00 och 17.00<br>Sön. 22.2 kl. 15.00 och 17.00<br> <br>Föreställningen är cirka en timme lång (ingen paus). <br>Åldersrekommendation 12+. <br>Föreställningslokalen är inte helt tillgänglig. <br>Du behöver inte tala finska för att delta.</p><p>Föreställningen är avgiftsfri.<br>Deltagande i föreställningen förutsätter en på förhand bokad biljett. Boka din biljett via e-post: tiivistamo@hel.fi. <br>OBS: Avboka din plats om du inte kan komma: tiivistamo@hel.fi.<br>Mer information: stoa.fi <br>Adress: Åbohusvägen 1 (Östra centrum)<br> <br>Helsingfors ungdomstjänster producerar och genomför föreställningen. I arbetsgruppen ingår unga Helsingforsbor.</p>",
                "en": "<p>Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible).</p><p>The performance is an experimental exploration of separateness and belonging. The multi-artistic performance combines various forms of performing arts and improvisation, light and sound art, stage art and digital art that utilises AI.</p><p>In the context of this work, immersiveness means that the audience is allowed to move within the work, influence the course of events and determine which parts of the work they want to experience. You are free to decide the level of your participation and you have the right to set your own limits at any moment.</p><p>At the beginning of the performance, you will be briefed on safety instructions. The performance includes guides whom you can turn to if you have any questions about the performance.</p><p>Please arrive on time, as unfortunately we cannot admit late arrivals.</p><p>Performance times:<br>Fri 20 February at 17.00 and 19.00<br>Sat 21 February at 15.00 and 17.00<br>Sun 22 February at 15.00 and 17.00<br> <br>The duration is approx. 1 hour (without intermission). <br>Age recommendation 12+. <br>The performance space is not fully accessible. <br>Participation does not require Finnish language skills.</p><p>The performance is free of charge.<br>The performance is only accessible with a pre-booked ticket. Book your ticket by email: tiivistamo@hel.fi. <br>PLEASE NOTE! If you cannot make it, please cancel your ticket: tiivistamo@hel.fi.<br>Further information: stoa.fi <br>Address: Turunlinnantie 1 (Itäkeskus)<br> <br>The performance is produced and performed by Helsinki Youth Services. Its working group includes young Helsinki residents.</p>"
            },
            "name": {
                "fi": "Näkyvät, näkymättömät",
                "sv": "Näkyvät, näkymättömät (De synliga, de osynliga)",
                "en": "Näkyvät, näkymättömät (The Visible, the Invisible)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67992/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67357",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494732,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T10:13:14.697897Z",
                    "last_modified_time": "2026-02-05T10:13:14.697912Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781028.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T10:13:14.560452Z",
            "last_modified_time": "2026-03-20T01:13:12.093242Z",
            "date_published": null,
            "start_time": "2026-02-20T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_"
            },
            "description": {
                "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Vinski 2 (7) – Kino Helios",
                "sv": "Vinski 2 (7) – Kino Helios",
                "en": "Vinski 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67357/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67868",
            "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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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-3871749",
                        "sv": "https://www.lippu.fi/eventseries/name-3871749",
                        "en": "https://www.lippu.fi/eventseries/name-3871749"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 28,90€",
                        "sv": "20 € / 28,90€",
                        "en": "20 € / 28,90€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494272,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-19T12:15:31.405845Z",
                    "last_modified_time": "2025-12-19T12:15:31.405860Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780420.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494272/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-19T12:15:31.291473Z",
            "last_modified_time": "2026-03-20T01:13:11.986354Z",
            "date_published": null,
            "start_time": "2026-02-20T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kun Hevisauruksen räpylät iskeytyvät estradiin ja jurahevin ensimmäiset biitit jyrähtävät ilmoille, nousee yleisössä tunnelma kattoon ja sen yli.",
                "sv": "När Hevisaurus går in på scenen och juraheavyns första beats drar igång, stiger stämningen bland publiken upp till taket och ännu högre.",
                "en": "When Hevisaurus hit the stage and the first beats of their Jurassic heavy metal hit the air, the atmosphere in the audience goes through the roof."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/10CB9C8667804A92CEE18A138321046B/LOPPUUNMYYTY_Hevisaurus",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/10CB9C8667804A92CEE18A138321046B/SLUTSALD_Hevisaurus",
                "en": "http://www.vuotalo.fi/en/events/event/10CB9C8667804A92CEE18A138321046B/SOLD_OUT_Hevisaurus"
            },
            "description": {
                "fi": "<p>Kun Hevisauruksen räpylät iskeytyvät estradiin ja jurahevin ensimmäiset biitit jyrähtävät ilmoille, nousee yleisössä tunnelma kattoon ja sen yli.</p><p>Kuten Hevisauruksen Mikä minusta tulee isona? -biisissäkin lauletaan: \"Seinät tärisee, katto putoaa, kun kertsi lähtee, kaikki sekoaa!\"</p><p>Rohkeimmat fanit joraavat keikoilla lavan edessä ja saattavat saada myös läpyt idoliltaan tai jopa Riffi Raffin plektran!<br>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi sekä tietysti itse Herra Hevisaurus pistävät pystyyn viihdyttävän lavashown, joka ei jätä juroimpiakaan tallaajia kylmäksi.</p><p>Jalan alle menevät sävellykset, nerokkaat sanoitukset ja taidokkaat sovitukset yhdistettynä vauhdikkaaseen menoon ja yllättäviin käänteisiin takaavat sen, että Hevisauruksen keikat ovat usein loppuunmyytyjä. Biiseissä on myös korvamatotakuu!</p><p>Kesto: n.  1 tunti</p>",
                "sv": "<p>När Hevisaurus går in på scenen och juraheavyns första beats drar igång, stiger stämningen bland publiken upp till taket och ännu högre.</p><p>Som vi sjunger i Hevisaurus låt Mikä minusta tulee isona?: ”Väggarna skakar, taget ramlar ner, när vi drar igång blir alla galna!” De modigaste fansen dansar framför scenen under konserterna och kanske till och med får en high five av sin idol eller ett plektrum av Riffi Raffi.</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi och naturligtvis Herra Hevisaurus själv bjuder på en underhållande estradshow som ingen kan låta bli att ryckas med av. Melodier som sätter sig i fötterna, geniala texter och skickliga arrangemang i kombination med fart och oväntade vändningar garanterar att Hevisaurus spelningar ofta är slutsålda. Låtarna har öronmaskgaranti!</p><p>Längd: cirka 1 timme</p>",
                "en": "<p>When Hevisaurus hit the stage and the first beats of their Jurassic heavy metal hit the air, the atmosphere in the audience goes through the roof.</p><p>As the Hevisaurus song Mikä minusta tulee isona? (‘What will I become when I grow up?) says: “The walls are shaking, the ceiling is falling, when the chorus hits, everyone goes crazy!” The bravest fans will be dancing in front of the stage, where they may get a high five from their idol or perhaps a guitar pick from Riffi Raffi!</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi and, of course, Mr. Hevisaurus himself will put on an entertaining stage show that will not leave even the surliest audience member cold. Compositions that get you moving, ingenious lyrics and skilful arrangements combined with upbeat antics and surprising twists and turns ensure that Hevisaurus’ shows are often sold out. The songs also come with an earworm guarantee!</p><p>Duration: roughly 1 h</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Hevisaurus",
                "sv": "SLUTSÅLD Hevisaurus",
                "en": "SOLD OUT Hevisaurus"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67868/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68026",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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.lippuagentti.fi/event/view?id=6545",
                        "sv": "https://www.lippuagentti.fi/event/view?id=6545",
                        "en": "https://www.lippuagentti.fi/event/view?id=6545"
                    },
                    "description": null,
                    "price": {
                        "fi": "10 € / 20 €",
                        "sv": "10 € / 20 €",
                        "en": "10 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494632,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T12:13:52.153539Z",
                    "last_modified_time": "2026-01-26T12:13:52.153556Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780641.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494632/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T12:13:52.021026Z",
            "last_modified_time": "2026-03-20T01:13:11.747781Z",
            "date_published": null,
            "start_time": "2026-02-20T11:00:00Z",
            "end_time": "2026-02-20T13:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa seuraamaan liiketoiminnan kriisiä!",
                "sv": "Välkommen att följa en kris i affärsverksamheten!",
                "en": "Come witness a business crisis!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8F887BB88BF2F799AB4A4EB9592E1AE9/Laajasalon_opiston_Tanssilinja_Liiketoiminnan_kriisi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8F887BB88BF2F799AB4A4EB9592E1AE9/Danslinjen_pa_Laajasalon_opisto_Liiketoiminnan_kriisi",
                "en": "http://www.stoa.fi/en/events/event/8F887BB88BF2F799AB4A4EB9592E1AE9/Dance_students_of_Laajasalo_Adult_Education_Centre_Liiketoiminnan_kriisi"
            },
            "description": {
                "fi": "<p>Tervetuloa seuraamaan liiketoiminnan kriisiä!</p><p>Laajasalon opiston Tanssilinjan opiskelijat tuovat näyttämölle omat taiteelliset projektinsa. Tapahtumassa nähtävät teokset on ideoitu ja toteutettu osana Omat taiteelliset projektit -opintojaksoa. Prosessin aikana opiskelijat ovat päässeet tutustumaan itseensä tanssintekijöinä, tutkimaan liikettä ja sitä, mikä heitä tanssitaiteessa kiinnostaa.</p><p>Laajasalon opiston tanssilinja käynnistettiin ensimmäistä kertaa vuonna 2023 yhteistyössä Kinetic Orchestra -tanssiryhmän kanssa. Vuoden kestävän linjan tavoitteena on tukea opiskelijoiden omaa kehitystä tanssijana, vahvistaa tanssisuhdetta sekä valmistaa kiinnostuneita opiskelijoita tanssin jatko-opintoihin. <br>Tapahtumassa nähdään 14 teosta: sooloja, duoja sekä ryhmäteoksia.</p><p>Näytöksen kesto noin 2.5h (sisältää väliajan)</p><p>Näytökset: <br>Kulttuurikeskus Stoa, Turunlinnantie 1, Musiikkisali <br>To 19.2. klo 18-20.30 (sis. väliajan) <br>Pe 20.2. klo 13-15.30 (sis. väliajan) <br>Pe 20.2. klo 18-20.30 (sis. väliajan)</p><p>Lipunmyynti ennakkoon (ei ovimyyntiä): https://www.lippuagentti.fi/event/view?id=6545</p><p>Kannatuslippujen tulot käytetään opiskelijoiden kevään näytösten tilavuokriin.</p><p>Alle 4-vuotiaat lapset ilmaiseksi.</p><p>Stoa on liikuntaesteetön.</p><p>Tarkemmat esteettömyys- ja saavutettavuustiedot Stoan nettisivuilta: https://www.stoa.fi/fi/saavutettavuus</p><p>Näytöksessä käytetään teatterisavua ensimmäisellä puoliajalla. <br>Jotkin esityksistä saattavat sisältää voimakkaita välkkyviä valoja - ilmoitamme tästä käsiohjelmassa teoskohtaisesti.</p>",
                "sv": "<p>Välkommen att följa en kris i affärsverksamheten!</p><p>Studerande vid danslinjen på Laajasalon opisto framför sina egna konstnärliga projekt på scenen. De verk som visas vid evenemanget har planerats och genomförts som en del av en studieperiod för egna konstnärliga projekt. Under processen har eleverna fått utforska sig själva som skapare av dans samt utforska rörelse och vad som intresserar dem inom danskonsten.</p><p>Danslinjen på Laajasalon opisto startade för första gången år 2023 i samarbete med dansgruppen Kinetic Orchestra. Syftet med den ett år långa linjen är att stödja de studerandes utveckling som dansare, stärka relationen till dansen och förbereda intresserade studerande för vidare studier i dans.</p><p>Vid evenemanget framförs 14 verk: solo-, duo- och gruppverk. <br>Föreställningens längd är ca 2,5 h (inklusive paus)</p><p>Föreställningar: <br>Kulturcentret Stoa, Åbohusvägen 1, Musiksalen <br>Tor 19.2 kl. 18–20.30 (inkl. paus) <br>Fre 20.2 kl. 13–15.30 (inkl. paus) <br>Fre 20.2 kl. 18–20.30 (inkl. paus)</p><p>Biljetter 10 €/20 € <br>Förköp av biljetter (ingen försäljning vid dörren): https://www.lippuagentti.fi/event/view?id=6545 Inkomsterna från stödbiljetterna används till lokalhyror för de studerandes föreställningar under våren.</p><p>Barn under 4 år gratis. <br>Stoa är tillgängligt för rörelsehindrade. <br>Under den första halvan av föreställningen används teaterrök. <br>Vissa föreställningar kan innehålla starka blinkande ljus – vi informerar om detta i programbladet för föreställningen.</p>",
                "en": "<p>Come witness a business crisis!</p><p>Dance students from Laajasalo Adult Education Centre will bring their own artistic projects to the stage. The works featured at the event were conceived and created as part of the education centre’s ‘My artistic projects’ study unit. During the process, the students got to know themselves as dance makers, and to explore movement and what interests them in the art of dance.</p><p>The dance line of Laajasalo Adult Education Centre was introduced in 2023 in collaboration with the Kinetic Orchestra dance group. The objective of the year-long line is to support the students’ own development as dancers, strengthen their relationship with dance and prepare interested students for further studies in dance.</p><p>The event will feature 14 works: solos, duos and group works. <br>Show duration: roughly 2.5 h, incl. intermission</p><p>Shows: <br>Cultural Centre Stoa, Turunlinnantie 1, Music Hall <br>Thursday 19 February at 18.00–20.30 (incl. intermission) <br>Friday 20 February at 13.00–15.30 (incl. intermission) <br>Friday 20 February at 18.00–20.30 (incl. intermission)</p><p>Tickets €10/20 <br>Advance ticket sales (no tickets sold at the door): https://www.lippuagentti.fi/event/view?id=6545 The proceeds from the support tickets will be used to cover the rent for the students’ spring performances.</p><p>Children under the age of 4 can enter free of charge. <br>The facilities of Stoa are accessible. <br>The show will use artificial fog during the first half. Some of the performances may contain intense flashing lights – this will be indicated separately for each work in the programme leaflet.</p>"
            },
            "name": {
                "fi": "Laajasalon opiston Tanssilinja: Liiketoiminnan kriisi",
                "sv": "Danslinjen på Laajasalon opisto: Liiketoiminnan kriisi",
                "en": "Dance students of Laajasalo Adult Education Centre: Liiketoiminnan kriisi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68026/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68011",
            "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: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494710,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-03T17:12:54.807138Z",
                    "last_modified_time": "2026-02-03T17:12:54.807152Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784332.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494710/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-03T17:12:54.676382Z",
            "last_modified_time": "2026-03-20T01:13:11.608214Z",
            "date_published": null,
            "start_time": "2026-02-20T10:00:00Z",
            "end_time": "2026-02-20T14:30: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": "Italian Rivieralle sijoittuvassa animaatioelokuvassa ystävykset Luca ja Alberto viettävät unohtumattoman kesän, johon kuuluu jäätelöä, pastaa ja skootteriajeluja. Ystävyksillä on kuitenkin suuri salaisuus: he ovat oikeasti vedenalaisesta maailmasta kotoisin olevia merihirviöitä.",
                "sv": "Med handlingen förlagd till den italienska rivieran berättar denna animerade långfilm historien om bästa vännerna Luca och Alberto, som tillbringar en oförglömlig sommar med gelato, pasta och skoterturer. Men vännerna har en stor hemlighet: de är i själva verket sjömonster från en undervattensvärld.",
                "en": "Set in the Italian Riviera, this animated feature tells the story of best friends Luca and Alberto who spend an unforgettable summer with gelato, pasta, and scooter rides. However, the friends share a big secret: they are in fact sea monsters from an underwater world."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0F915979337A9E16EBC26665C8C4E4AA/Lomakino_Luca",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0F915979337A9E16EBC26665C8C4E4AA/Lomakino_Luca",
                "en": "http://www.annantalo.fi/en/events/event/0F915979337A9E16EBC26665C8C4E4AA/Lomakino_Luca"
            },
            "description": {
                "fi": "<p>Italian Rivieralle sijoittuvassa animaatioelokuvassa ystävykset Luca ja Alberto viettävät unohtumattoman kesän, johon kuuluu jäätelöä, pastaa ja skootteriajeluja. Ystävyksillä on kuitenkin suuri salaisuus: he ovat oikeasti vedenalaisesta maailmasta kotoisin olevia merihirviöitä.</p><p><b>Lomakinon elokuva: Luca (2021)</b><br>Kieli: suomi, tekstitys englanniksi, ikäsuositus 7+</p><p>Esitykset:</p><p>Klo 12.00 <br>Klo 14.30</p><p>Ryhmien ilmoittautuminen ennakkoon: krista.holm@hel.fi</p><p>Elokuva näytetään Annansalissa, jonne mahtuu n. 80 henkeä. Jokainen osallistuja saa maksuttoman lipukkeen, jolla varmistaa paikan näytöksessä. Ryhmät ilmoittautuvat etukäteen. Paikkoja ei ole numeroitu.</p>",
                "sv": "<p>Med handlingen förlagd till den italienska rivieran berättar denna animerade långfilm historien om bästa vännerna Luca och Alberto, som tillbringar en oförglömlig sommar med gelato, pasta och skoterturer. Men vännerna har en stor hemlighet: de är i själva verket sjömonster från en undervattensvärld.</p><p><b>Sportlovsbio: Luca</b><br>Språk: finska, undertexter på engelska, tillåten från 7 år</p><p>Visningar:<br> <br>Kl. 12.00 <br>Kl. 14.30</p><p>Förbokningar för grupper: krista.holm@hel.fi</p><p>Visningarna hålls i Annesalen, som har en kapacitet på cirka 80 personer. Varje besökare får en gratisbiljett för att garantera en plats vid visningen. Grupper måste boka i förväg. Inga numrerade platser.</p>",
                "en": "<p>Set in the Italian Riviera, this animated feature tells the story of best friends Luca and Alberto who spend an unforgettable summer with gelato, pasta, and scooter rides. However, the friends share a big secret: they are in fact sea monsters from an underwater world.</p><p><b>Holiday cinema: Luca</b><br>Language: Finnish, subtitled in English, recommended for ages 7 and up</p><p>Screenings:<br> <br>12:00 PM  <br>2:30 PM</p><p>Pre-bookings for groups: krista.holm@hel.fi</p><p>Screenings will be held at Annansali, which has a capacity of about 80 people. Every attendee will be given a free ticket to ensure them a seat in the screening. Groups must make a booking in advance. No seat numbers</p>"
            },
            "name": {
                "fi": "Lomakino: Luca",
                "sv": "Lomakino: Luca",
                "en": "Lomakino: Luca"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68011/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67774",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494161,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-09T11:13:38.311535Z",
                    "last_modified_time": "2025-12-09T11:13:38.311556Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780407.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494161/?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-09T11:13:38.243361Z",
            "last_modified_time": "2026-03-20T01:13:11.499800Z",
            "date_published": null,
            "start_time": "2026-02-20T08:00:00Z",
            "end_time": "2026-02-20T11: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": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!",
                "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!",
                "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C29D466D541F5096F25FE322A00D70D3/Rantaunelmia",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C29D466D541F5096F25FE322A00D70D3/Stranddrommar",
                "en": "http://www.vuotalo.fi/en/events/event/C29D466D541F5096F25FE322A00D70D3/Beach_dreams"
            },
            "description": {
                "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>",
                "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Rantaunelmia – Talviloman avoimet työpajat",
                "sv": "Stranddrömmar – Öppna verkstäder under sportlovet",
                "en": "Beach dreams – Open workshops during the winter break"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67774/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67213",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?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:p28435/?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": 1494453,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-12T12:13:33.465827Z",
                    "last_modified_time": "2026-01-12T12:13:33.465845Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778622.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494453/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-12T12:13:33.330745Z",
            "last_modified_time": "2026-03-20T01:13:11.366977Z",
            "date_published": null,
            "start_time": "2026-02-20",
            "end_time": "2026-03-21",
            "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": "My Mother Became a Bird (äidistäni tuli lintu) on runollinen animaatiodokumentti tytöstä, joka on menettänyt äitinsä.",
                "sv": "My Mother Became a Bird är en poetisk dokumentär och en animation om en flicka som förlorade sin mamma.",
                "en": "My Mother Became a Bird is a poetic documentary narrating an animation about a girl who lost her mother."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A811EB048898D443899C5D577A5838A6/Maryam_Khalilzadehbin_My_Mother_Became_a_Bird",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A811EB048898D443899C5D577A5838A6/Maryam_Khalilzadehbin_My_Mother_Became_a_Bird",
                "en": "http://www.caisa.fi/en/events/event/A811EB048898D443899C5D577A5838A6/Maryam_Khalilzadehbin_My_Mother_Became_a_Bird"
            },
            "description": {
                "fi": "<p>My Mother Became a Bird (äidistäni tuli lintu) on runollinen animaatiodokumentti tytöstä, joka on menettänyt äitinsä.</p><p>Tytöllä on paljon kysymyksiä elämästä ja kuolemasta ja hän kertoo tarinaansa muistojen ja unohtamisen pelon välimaastossa. Teos seuraa kahta tarinaa taiteilijan omasta nykyhetkestä ja äidin elinajasta. Lopussa nämä tarinat yhdistyvät.</p><p>Elokuva on omaelämäkerrallinen ja henkilökohtainen taideteos. Alustava konsepti ja käsikirjoitus on jo laadittu. Teoksen muoto on näyttely, joka yhdistää animaatiota, installaatiota ja videotaidetta. Myöhemmin hankkeen pohjalta tehdään lyhyt animaatioelokuva.<br>Teos jakautuu neljään osaan, joiden nimet ovat: Stove (hella), Sewing Machine (ompelukone), Washing Machine (pesukone) ja My Mother Became a Bird (äidistäni tuli lintu).</p><p>Visuaalisesti teos koostuu perinteisestä 2D-animaatiosta, jossa hyödynnetään kolmea erilaista analogista menetelmää: öljymaalausta, hiilipiirrosta ja kameran alla kuvattua stop motion -animaatiota (taiteilijan äidille kuuluneilla tavaroilla).</p><p>Näyttelyssä on monikieliset tekstitykset ja selostus kielellisen saavutettavuuden varmistamiseksi, ja näyttelyn kuvakerronta ylittää kielelliset rajat. Lisäksi installaatio on suunniteltu ottamaan huomioon erilaiset liikkumisen tarpeet.</p><p>Näyttelyyn järjestetään viittomakielinen opastus suomeksi la 7.3.2025 klo 13–14.</p>",
                "sv": "<p>My Mother Became a Bird är en poetisk dokumentär och en animation om en flicka som förlorade sin mamma.</p><p>Hon har många frågor om liv och död och berättar sin historia mellan sitt minne och rädslan för att glömma. De två berättelserna växlar mellan konstnärens eget liv just nu och hennes mors livstid. Till slut förenas dessa två berättelser.</p><p>Detta projekt är ett biografiskt och personligt konstnärligt arbete.</p><p>Det första konceptet och manuset är redan färdiga. Projektet tar form som en utställning som kombinerar animation, installation och videokonst. Senare kommer det att omarbetas till en kort animerad film.</p><p>Verket är indelat i fyra delar med titlarna: Stove, Sewing Machine, Washing Machine och My Mother Became a Bird.</p><p>Det visuella konceptet som utforskas omfattar traditionell 2D-animation med tre olika analoga tekniker: oljefärg, kol och objektanimation (med föremål som tillhör modern) som filmas med kamera.</p><p>Utställningen har undertexter och berättarröster på flera språk för att säkerställa språklig tillgänglighet med tydligt bildberättande som överskrider språkbarriärerna. Den fysiska installationen utformas också för att tillgodose olika mobilitetsbehov.</p>",
                "en": "<p>My Mother Became a Bird is a poetic documentary narrating an animation about a girl who lost her mother.</p><p>The artist says: Two weeks before I moved to Europe to study, my mother passed away and went to another world. Just two weeks later, I had to pack my suitcase and leave, without having had the chance to mourn her loss. Four years have passed, yet I still feel that she is in our house, cooking in the kitchen, washing clothes, sewing. It is I who left that world, not her.<br> <br>This project brings memories to life, reimagining the fragmented pieces of dreams and reality that I have lived with my mother and after her, and intertwining them into a whole, like creating a family album.<br> <br>The exhibition narrates the life of the mother in four sections, reflecting both her life and the life of every homemaker woman: The Mirror, The Stove, The Sewing Machine, The Washing Machine, and My Mother Became a Bird.<br> <br>Through the creation of familiar domestic spaces, the works take shape through animation, video art, installation, illustration, and personal objects that carry memory.<br> <br>The exhibition has multilingual subtitles and commentary to ensure linguistic accessibility, and the exhibition's visual narrative crosses linguistic boundaries. In addition, the installation is designed to take into account different mobility needs.<br> <br>Sign language guidance will be organized for the exhibition in Finnish on Sat. 7.3.2025, from 13:00 to 14:00.</p>"
            },
            "name": {
                "fi": "Maryam Khalilzadehbin: My Mother Became a Bird",
                "sv": "Maryam Khalilzadehbin: My Mother Became a Bird",
                "en": "Maryam Khalilzadehbin: My Mother Became a Bird"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67213/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67669",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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-4041993",
                        "sv": "https://www.lippu.fi/eventseries/name-4041993",
                        "en": "https://www.lippu.fi/eventseries/name-4041993"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 7 €",
                        "sv": "20 € / 7 €",
                        "en": "20 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493973,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T13:14:14.868330Z",
                    "last_modified_time": "2025-12-01T13:14:14.868344Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778569.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493973/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T13:14:14.777520Z",
            "last_modified_time": "2026-03-20T01:13:11.222610Z",
            "date_published": null,
            "start_time": "2026-02-19T17: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": "Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä.",
                "sv": "Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram.",
                "en": "You have to dare let go and jump into the unknown, so that something new can emerge."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/58F79887490025DDFB9A4995FABC89D4/Fragile_Kollektiivi_Unleashed",
                "sv": "http://www.caisa.fi/sv/evenemang/event/58F79887490025DDFB9A4995FABC89D4/Fragile_Kollektiivi_Unleashed",
                "en": "http://www.caisa.fi/en/events/event/58F79887490025DDFB9A4995FABC89D4/Fragile_Kollektiivi_Unleashed"
            },
            "description": {
                "fi": "<p>Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä.</p><p>Unleashed on tanssitaiteilija Riku Lehtopolun koreografia kahdelle akrobaatille. Nykysirkusteos tutkii akrobatian ja tanssillisen ilmaisun keinoin ihmisten välisiä suhteita nykymaailmassa sekä irtipäästämisen teemaa. Mitä odotuksia vallitseva maailmantilanne asettaa ihmisten välisille suhteille? Entä me itse, mihin haluamme takertua? Mitä muuttuu, jos antaa virran viedä? Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä. Teos pureutuu syvälle inhimillisyyden syövereihin käyttäen välineenä esiintyjien fyysisiä kehoja sekä akrobatiaa ja tanssia yhdistävää liikettä.<br>  <br>Teoksessa esiintyvät akrobaatit Haidi Sadonkorpi ja Jilka Repo. Teoksessa nähdään ilma-akrobatiaa, tanssillista pariakrobatiaa sekä taiturointia cyr-renkaalla. Äänitaiteilija Mikko H Haapojan bassojouhikkovetoinen musiikki luo oman kerroksensa teoskokonaisuuteen. Valosuunnittelu on Kauri Klemelän.<br>Fragile Kollektiivi<br>Fragile Kollektiivi on vapaan kentän toimijoista koostuva taiteilijayhteisö. Aloitimme työryhmämme yhteistyön nykysirkusteoksella ”Fierce”, joka sai ensi-iltansa lokakuussa 2019. Vuonna 2022 valmistimme tähän ihmisten välisiä suhteita tanssin ja akrobatian keinoin käsittelevän teostrilogiaan toisen osan Fragile. Unleashed on tämän teostrilogian viimeinen osa.<br>Työryhmä    <br>Koregrafi: Riku Lehtopolku<br>Esiintyjät: Haidi Sadonkorpi, Jilka Repo<br>Sävellys/äänisuunnittelu/musiikki: Mikko H Haapoja<br>Valosuunnittelu; Kauri Klemelä<br>Video/valokuvaus: Aleksi Hakala<br>Tuotanto: Haidi Sadonkorpi / Fragile Kollektiivi<br>Tukijat/yhteistyökumppanit: Taiteen Edistämiskeskus - Taike, Porvoon kaupunki, Cirko - Uuden Sirkuksen Keskus, Tanssiteatteri Hurjaruuth, Kulttuurikeskus Caisa<br>Esityksen kesto: 45 min, ei väliaikaa<br>Ikäsuositus: + 7 v<br>Kieli: sanaton<br>Sisältöhuomiot: Esityksessä käytetään teatterisavua. Normaali vahvistettu äänisuunnittelu akustisilla livesoittimilla.</p>",
                "sv": "<p>Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram.</p><p>Unleashed är danskonstnärens Riku Lehtopolkus koreografi för två akrobater. Detta moderna cirkusverk utforskar relationer mellan människor i dagens värld och teman kring att släppa taget genom akrobatik och dans. Vilka förväntningar ställer det rådande världsläget på relationerna mellan människor? Och vi själva, vad vill vi klamra oss fast vid? Vad förändras om vi följer med strömmen? Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram. Verket dyker djupt ner i mänsklighetens virvlar med hjälp av de medverkandes fysiska kroppar och rörelser som kombinerar akrobatik och dans.</p><p>Akrobaterna Haidi Sadonkorpi och Jilka Repo medverkar i verket. Verket innehåller luftakrobatik, parakrobatik med dans och uppträdande med cyr-hjul. Ljudkonstnären Mikko H Haapojas basharpsdrivna musik skapar ett eget lager i verkshelheten. Ljusdesignen är gjord av Kauri Klemelä.<br>Fragile Kollektiivi<br>Fragile Kollektiivi är en gemenskap av konstnärer på det fria fältet. Samarbetet i vår arbetsgrupp inleddes med det moderna cirkusverket Fierce, som hade premiär i oktober 2019. Under 2022 tog vi fram Fragile, som är den andra delen av denna verkstrilogi som utforskar mänskliga relationer genom dans och akrobatik. Unleashed är den sista delen av verkstrilogin.<br>Arbetsgrupp<br>Koregrafi: Riku Lehtopolku<br>På scenen: Haidi Sadonkorpi, Jilka Repo<br>Komposition/ljuddesign/musik: Mikko H Haapoja<br>Ljusdesign; Kauri Klemelä<br>Video/fotografering: Aleksi Hakala<br>Produktion: Haidi Sadonkorpi / Fragile Kollektiivi<br>Sponsorer/samarbetspartner: Centret för konstfrämjande - Taike, Borgå stad, Cirko - Uuden Sirkuksen Keskus, Tanssiteateri Hurjaruuth, Kulturcentret Caisa<br>Föreställningens längd: 45 minuter, ingen paus.<br>Åldersrekommendation: + 7 år<br>Språk: ordlös<br>Innehållsvarning: Teaterrök används i föreställningen. Normal, förstärkt ljuddesign med akustiska liveinstrument.</p>",
                "en": "<p>You have to dare let go and jump into the unknown, so that something new can emerge.</p><p>Unleashed is a choreography for two acrobats, created by dance artist Riku Lehtopolku. Through acrobatics and dance expression, this contemporary circus act explores the relationships between people in today’s world and the theme of letting go. What expectations does the current world situation place on human relationships? And what about us? What do we want to cling to? What changes if you allow yourself to be carried away by the current? You have to dare let go and jump into the unknown, so that something new can emerge. The work delves deep into the depths of humanity, using the physical bodies of the performers and movement that combines acrobatics and dance as its instruments.</p><p>The work stars acrobats Haidi Sadonkorpi and Jilka Repo. The work features aerial acrobatics, pair dance acrobatics, and acrobatics with a Cyr wheel. Sound artist Mikko H. Haapoja’s music, with a bass jouhikko bowed lyre as the main instrument, brings its own layer to the work. The light design is by Kauri Klemelä.<br>Fragile Kollektiivi<br>Fragile Kollektiivi is a community of independent artists. We started our collaboration with the contemporary circus act Fierce, which premiered in October 2019. In 2022, we produced Fragile, the second part in this trilogy of works, which explores human relationships through dance and acrobatics. Unleashed is the final part of this trilogy of works.<br>Creative team<br>Choreographer: Riku Lehtopolku<br>Performers: Haidi Sadonkorpi, Jilka Repo<br>Composition/sound design/music: Mikko H. Haapoja<br>Lighting design: Kauri Klemelä<br>Video/photography: Aleksi Hakala<br>Production: Haidi Sadonkorpi / Fragile Kollektiivi<br>Supporters/partners: Arts Promotion Centre Finland (Taike), City of Porvoo, Cirko – Center for New Circus, Dance Theatre Hurjaruuth, Cultural Centre Caisa<br>Duration of the performance: 45 min, without intermission<br>Age recommendation: 7+<br>Language: non-verbal<br>Content notes: The performance will feature fog machines. Normal amplified sound design with live acoustic instruments.</p>"
            },
            "name": {
                "fi": "Fragile Kollektiivi: Unleashed",
                "sv": "Fragile Kollektiivi: Unleashed",
                "en": "Fragile Kollektiivi: Unleashed"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67669/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68025",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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.lippuagentti.fi/event/view?id=6545",
                        "sv": "https://www.lippuagentti.fi/event/view?id=6545",
                        "en": "https://www.lippuagentti.fi/event/view?id=6545"
                    },
                    "description": null,
                    "price": {
                        "fi": "10 € / 20 €",
                        "sv": "10 € / 20 €",
                        "en": "10 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494631,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T12:13:51.570848Z",
                    "last_modified_time": "2026-01-26T12:13:51.570866Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780640.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494631/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T12:13:51.400147Z",
            "last_modified_time": "2026-03-20T01:13:10.981023Z",
            "date_published": null,
            "start_time": "2026-02-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa seuraamaan liiketoiminnan kriisiä!",
                "sv": "Välkommen att följa en kris i affärsverksamheten!",
                "en": "Come witness a business crisis!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/21CBC0FDD0586FF02621D39C3A472EAD/Laajasalon_opiston_Tanssilinja_Liiketoiminnan_kriisi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/21CBC0FDD0586FF02621D39C3A472EAD/Danslinjen_pa_Laajasalon_opisto_Liiketoiminnan_kriisi",
                "en": "http://www.stoa.fi/en/events/event/21CBC0FDD0586FF02621D39C3A472EAD/Dance_students_of_Laajasalo_Adult_Education_Centre_Liiketoiminnan_kriisi"
            },
            "description": {
                "fi": "<p>Tervetuloa seuraamaan liiketoiminnan kriisiä!</p><p>Laajasalon opiston Tanssilinjan opiskelijat tuovat näyttämölle omat taiteelliset projektinsa. Tapahtumassa nähtävät teokset on ideoitu ja toteutettu osana Omat taiteelliset projektit -opintojaksoa. Prosessin aikana opiskelijat ovat päässeet tutustumaan itseensä tanssintekijöinä, tutkimaan liikettä ja sitä, mikä heitä tanssitaiteessa kiinnostaa.</p><p>Laajasalon opiston tanssilinja käynnistettiin ensimmäistä kertaa vuonna 2023 yhteistyössä Kinetic Orchestra -tanssiryhmän kanssa. Vuoden kestävän linjan tavoitteena on tukea opiskelijoiden omaa kehitystä tanssijana, vahvistaa tanssisuhdetta sekä valmistaa kiinnostuneita opiskelijoita tanssin jatko-opintoihin. <br>Tapahtumassa nähdään 14 teosta: sooloja, duoja sekä ryhmäteoksia.</p><p>Näytöksen kesto noin 2.5h (sisältää väliajan)</p><p>Näytökset: <br>Kulttuurikeskus Stoa, Turunlinnantie 1, Musiikkisali <br>To 19.2. klo 18-20.30 (sis. väliajan) <br>Pe 20.2. klo 13-15.30 (sis. väliajan) <br>Pe 20.2. klo 18-20.30 (sis. väliajan)</p><p>Lipunmyynti ennakkoon (ei ovimyyntiä): https://www.lippuagentti.fi/event/view?id=6545</p><p>Kannatuslippujen tulot käytetään opiskelijoiden kevään näytösten tilavuokriin.</p><p>Alle 4-vuotiaat lapset ilmaiseksi.</p><p>Stoa on liikuntaesteetön.</p><p>Tarkemmat esteettömyys- ja saavutettavuustiedot Stoan nettisivuilta: https://www.stoa.fi/fi/saavutettavuus</p><p>Näytöksessä käytetään teatterisavua ensimmäisellä puoliajalla. <br>Jotkin esityksistä saattavat sisältää voimakkaita välkkyviä valoja - ilmoitamme tästä käsiohjelmassa teoskohtaisesti.</p>",
                "sv": "<p>Välkommen att följa en kris i affärsverksamheten!</p><p>Studerande vid danslinjen på Laajasalon opisto framför sina egna konstnärliga projekt på scenen. De verk som visas vid evenemanget har planerats och genomförts som en del av en studieperiod för egna konstnärliga projekt. Under processen har eleverna fått utforska sig själva som skapare av dans samt utforska rörelse och vad som intresserar dem inom danskonsten.</p><p>Danslinjen på Laajasalon opisto startade för första gången år 2023 i samarbete med dansgruppen Kinetic Orchestra. Syftet med den ett år långa linjen är att stödja de studerandes utveckling som dansare, stärka relationen till dansen och förbereda intresserade studerande för vidare studier i dans.</p><p>Vid evenemanget framförs 14 verk: solo-, duo- och gruppverk. <br>Föreställningens längd är ca 2,5 h (inklusive paus)</p><p>Föreställningar: <br>Kulturcentret Stoa, Åbohusvägen 1, Musiksalen <br>Tor 19.2 kl. 18–20.30 (inkl. paus) <br>Fre 20.2 kl. 13–15.30 (inkl. paus) <br>Fre 20.2 kl. 18–20.30 (inkl. paus)</p><p>Biljetter 10 €/20 € <br>Förköp av biljetter (ingen försäljning vid dörren): https://www.lippuagentti.fi/event/view?id=6545 Inkomsterna från stödbiljetterna används till lokalhyror för de studerandes föreställningar under våren.</p><p>Barn under 4 år gratis. <br>Stoa är tillgängligt för rörelsehindrade. <br>Under den första halvan av föreställningen används teaterrök. <br>Vissa föreställningar kan innehålla starka blinkande ljus – vi informerar om detta i programbladet för föreställningen.</p>",
                "en": "<p>Come witness a business crisis!</p><p>Dance students from Laajasalo Adult Education Centre will bring their own artistic projects to the stage. The works featured at the event were conceived and created as part of the education centre’s ‘My artistic projects’ study unit. During the process, the students got to know themselves as dance makers, and to explore movement and what interests them in the art of dance.</p><p>The dance line of Laajasalo Adult Education Centre was introduced in 2023 in collaboration with the Kinetic Orchestra dance group. The objective of the year-long line is to support the students’ own development as dancers, strengthen their relationship with dance and prepare interested students for further studies in dance.</p><p>The event will feature 14 works: solos, duos and group works. <br>Show duration: roughly 2.5 h, incl. intermission</p><p>Shows: <br>Cultural Centre Stoa, Turunlinnantie 1, Music Hall <br>Thursday 19 February at 18.00–20.30 (incl. intermission) <br>Friday 20 February at 13.00–15.30 (incl. intermission) <br>Friday 20 February at 18.00–20.30 (incl. intermission)</p><p>Tickets €10/20 <br>Advance ticket sales (no tickets sold at the door): https://www.lippuagentti.fi/event/view?id=6545 The proceeds from the support tickets will be used to cover the rent for the students’ spring performances.</p><p>Children under the age of 4 can enter free of charge. <br>The facilities of Stoa are accessible. <br>The show will use artificial fog during the first half. Some of the performances may contain intense flashing lights – this will be indicated separately for each work in the programme leaflet.</p>"
            },
            "name": {
                "fi": "Laajasalon opiston Tanssilinja: Liiketoiminnan kriisi",
                "sv": "Danslinjen på Laajasalon opisto: Liiketoiminnan kriisi",
                "en": "Dance students of Laajasalo Adult Education Centre: Liiketoiminnan kriisi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68025/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67773",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494160,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-09T11:13:38.041951Z",
                    "last_modified_time": "2025-12-09T11:13:38.041966Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780406.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494160/?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-09T11:13:37.980879Z",
            "last_modified_time": "2026-03-20T01:13:10.866749Z",
            "date_published": null,
            "start_time": "2026-02-19T13:00:00Z",
            "end_time": "2026-02-19T16: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": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!",
                "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!",
                "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FB8A1A74E6C086CF66CD95665D881AF3/Rantaunelmia",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/FB8A1A74E6C086CF66CD95665D881AF3/Stranddrommar",
                "en": "http://www.vuotalo.fi/en/events/event/FB8A1A74E6C086CF66CD95665D881AF3/Beach_dreams"
            },
            "description": {
                "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>",
                "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Rantaunelmia – Talviloman avoimet työpajat",
                "sv": "Stranddrömmar – Öppna verkstäder under sportlovet",
                "en": "Beach dreams – Open workshops during the winter break"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67773/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67556",
            "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: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:752/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494193,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-11T10:13:13.444306Z",
                    "last_modified_time": "2025-12-11T10:13:13.444325Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781711.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494193/?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-10T11:12:47.154475Z",
            "last_modified_time": "2026-03-20T01:13:10.747082Z",
            "date_published": null,
            "start_time": "2026-02-19T13: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": "Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.",
                "sv": "Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.",
                "en": "The modern mammal city, Zootopia, is a city like no other."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/70FA768275E3B3C7B5A3CB7D08413D5E/Talvilomaleffa_Zootropolis_-_Elainten_kaupunki_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/70FA768275E3B3C7B5A3CB7D08413D5E/Sportlovsbio_Zootropolis_7_",
                "en": "http://www.malmitalo.fi/en/events/event/70FA768275E3B3C7B5A3CB7D08413D5E/Winter_holiday_movie_Zootopia_7_"
            },
            "description": {
                "fi": "<p>Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.</p><p>Se on maailman eläinten sulatusuuni, jossa kaikki norsusta päästäiseen asuvat yhdessä kaupunginosissa kuten elegantti Sahara Square ja viileä Tundratown. Mutta kun aina positiivinen konstaapeli Judy Hopps (Iina Kuustonen) saapuu Zootropolikseen, hän tajuaa, ettei ole helppoa olla ensimmäinen kaniini kaupungin poliisivoimien suurten ja karskien eläinten joukossa.</p><p>Näyttääkseen, mistä hänet on tehty, päättää Judy ratkaista hankalan jutun. Mysteerin ratkaiseminen tosin vaatii, että hän tekee yhteistyötä suulaan ja ovelan Nick Wilde (Ilkka Villi) -nimisen ketun kanssa.</p><p>Kesto: 108 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.</p><p>Staden är en smältdegel för världens djur, där allt från elefanter till näbbmöss bor tillsammans i kvarter som eleganta Sahara Square och coola Tundratown. Men när den alltid positiva konstapeln Judy Hopps (Iina Kuustonen) anländer till Zootropolis inser hon att det inte är lätt att vara den första kaninen bland de stora, tuffa djuren i stadens polisstyrka. <br>För att visa vad hon går för bestämmer sig Judy för att lösa ett knepigt fall. För att lösa mysteriet måste hon dock samarbeta med en pratsam och listig räv vid namn Nick Wilde (Ilkka Villi).</p><p>Längd: 108 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>",
                "en": "<p>The modern mammal city, Zootopia, is a city like no other.</p><p>It's the animal melting pot of the world, where everything from elephants to lions live together in neighbourhoods such as the elegant Sahara Square and cool Tundratown. But when the ever-positive Officer Judy Hopps (Iina Kuustonen) arrives at Zootropolis, she realises it's not easy being the first rabbit among the large, rugged animals of the city's police force. <br>To show what she's made of, Judy decides to solve a tricky case. Solving the mystery, however, requires Judy to team up with a mouthy and cunning fox named Nick Wilde (Ilkka Villi).</p><p>Duration: 108 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>"
            },
            "name": {
                "fi": "Talvilomaleffa: Zootropolis - Eläinten kaupunki (7)",
                "sv": "Sportlovsbio: Zootropolis (7)",
                "en": "Winter holiday movie: Zootopia (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67556/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67555",
            "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: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:752/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494171,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-10T11:12:46.940907Z",
                    "last_modified_time": "2025-12-10T11:12:46.940922Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781710.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494171/?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-10T11:12:46.876465Z",
            "last_modified_time": "2026-03-20T01:13:10.623207Z",
            "date_published": null,
            "start_time": "2026-02-19T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.",
                "sv": "Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.",
                "en": "The modern mammal city, Zootopia, is a city like no other."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Talvilomaleffa_Zootropolis_-_Elainten_kaupunki_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Sportlovsbio_Zootropolis_7_",
                "en": "http://www.malmitalo.fi/en/events/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Winter_holiday_movie_Zootopia_7_"
            },
            "description": {
                "fi": "<p>Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.</p><p>Se on maailman eläinten sulatusuuni, jossa kaikki norsusta päästäiseen asuvat yhdessä kaupunginosissa kuten elegantti Sahara Square ja viileä Tundratown. Mutta kun aina positiivinen konstaapeli Judy Hopps (Iina Kuustonen) saapuu Zootropolikseen, hän tajuaa, ettei ole helppoa olla ensimmäinen kaniini kaupungin poliisivoimien suurten ja karskien eläinten joukossa.</p><p>Näyttääkseen, mistä hänet on tehty, päättää Judy ratkaista hankalan jutun. Mysteerin ratkaiseminen tosin vaatii, että hän tekee yhteistyötä suulaan ja ovelan Nick Wilde (Ilkka Villi) -nimisen ketun kanssa.</p><p>Kesto: 108 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.</p><p>Staden är en smältdegel för världens djur, där allt från elefanter till näbbmöss bor tillsammans i kvarter som eleganta Sahara Square och coola Tundratown. Men när den alltid positiva konstapeln Judy Hopps (Iina Kuustonen) anländer till Zootropolis inser hon att det inte är lätt att vara den första kaninen bland de stora, tuffa djuren i stadens polisstyrka. <br>För att visa vad hon går för bestämmer sig Judy för att lösa ett knepigt fall. För att lösa mysteriet måste hon dock samarbeta med en pratsam och listig räv vid namn Nick Wilde (Ilkka Villi).</p><p>Längd: 108 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>",
                "en": "<p>The modern mammal city, Zootopia, is a city like no other.</p><p>It's the animal melting pot of the world, where everything from elephants to lions live together in neighbourhoods such as the elegant Sahara Square and cool Tundratown. But when the ever-positive Officer Judy Hopps (Iina Kuustonen) arrives at Zootropolis, she realises it's not easy being the first rabbit among the large, rugged animals of the city's police force. <br>To show what she's made of, Judy decides to solve a tricky case. Solving the mystery, however, requires Judy to team up with a mouthy and cunning fox named Nick Wilde (Ilkka Villi).</p><p>Duration: 108 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>"
            },
            "name": {
                "fi": "Talvilomaleffa: Zootropolis - Eläinten kaupunki (7)",
                "sv": "Sportlovsbio: Zootropolis (7)",
                "en": "Winter holiday movie: Zootopia (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67555/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68010",
            "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: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494709,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-03T16:13:44.110521Z",
                    "last_modified_time": "2026-02-03T16:13:44.110537Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784331.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494709/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-03T16:13:43.981214Z",
            "last_modified_time": "2026-03-20T01:13:10.490533Z",
            "date_published": null,
            "start_time": "2026-02-19T10:00:00Z",
            "end_time": "2026-02-19T14:30: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": "Paddington seikkailee -elokuvassa Paddington ja Brownin perhe vierailevat Lucy-tädin luona ja tempaantuvat jännittävään seikkailuun, joka vie heidät Amazonin sademetsiin ja Perun vuoristoon.",
                "sv": "I Paddington i Peru besöker Paddington och familjen Brown faster Lucy, bara för att dras med i ett spännande äventyr som tar dem till Amazonas regnskog och Perus berg.",
                "en": "In Paddington in Peru, Paddington and the Brown family visit Aunt Lucy only to be swept up in thrilling adventure that takes them into the Amazon rainforest and to the mountains of Peru."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F45EA52F252DBB30F7BCCDBB3E3D6D6E/Lomakino_Paddington_seikkailee_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/F45EA52F252DBB30F7BCCDBB3E3D6D6E/Lomakino_Paddington_i_Peru",
                "en": "http://www.annantalo.fi/en/events/event/F45EA52F252DBB30F7BCCDBB3E3D6D6E/Lomakino_Paddington_in_Peru"
            },
            "description": {
                "fi": "<p>Paddington seikkailee -elokuvassa Paddington ja Brownin perhe vierailevat Lucy-tädin luona ja tempaantuvat jännittävään seikkailuun, joka vie heidät Amazonin sademetsiin ja Perun vuoristoon.</p><p><b>Lomakinon elokuva: Paddington seikkailee (2024)</b><br>Kieli: suomi, tekstitys englanniksi, ikäsuositus 7+</p><p>Esitykset:</p><p>Klo 12.00 <br>Klo 14.30</p><p>Ryhmien ilmoittautuminen ennakkoon: krista.holm@hel.fi</p><p>Elokuva näytetään Annansalissa, jonne mahtuu n. 80 henkeä. Jokainen osallistuja saa maksuttoman lipukkeen, jolla varmistaa paikan näytöksessä. Ryhmät ilmoittautuvat etukäteen. Paikkoja ei ole numeroitu.</p>",
                "sv": "<p>I Paddington i Peru besöker Paddington och familjen Brown faster Lucy, bara för att dras med i ett spännande äventyr som tar dem till Amazonas regnskog och Perus berg.</p><p><b>Sportlovsbio: Paddington i Peru </b><br>Språk: finska, undertexter på engelska, tillåten från 7 år</p><p>Visningar:<br> <br>Kl. 12.00 <br>Kl. 14.30</p><p>Förbokningar för grupper: krista.holm@hel.fi</p>",
                "en": "<p>In Paddington in Peru, Paddington and the Brown family visit Aunt Lucy only to be swept up in thrilling adventure that takes them into the Amazon rainforest and to the mountains of Peru.</p><p><b>Holiday cinema: Paddington in Peru</b><br>Language: Finnish, subtitled in English, recommended for ages 7 and up</p><p>Screenings:<br> <br>12:00 PM<br>2:30 PM</p><p>Pre-bookings for groups: krista.holm@hel.fi</p><p>Screenings will be held at Annansali, which has a capacity of about 80 people. Every attendee will be given a free ticket to ensure them a seat in the screening. Groups must make a booking in advance. No seat numbers.</p>"
            },
            "name": {
                "fi": "Lomakino: Paddington seikkailee",
                "sv": "Lomakino: Paddington i Peru",
                "en": "Lomakino: Paddington in Peru"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68010/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67560",
            "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: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:602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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": 1494299,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T09:13:42.536084Z",
                    "last_modified_time": "2025-12-23T09:13:42.536100Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781719.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494299/?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-23T09:13:42.445377Z",
            "last_modified_time": "2026-03-20T01:13:10.383592Z",
            "date_published": null,
            "start_time": "2026-02-19T08:00:00Z",
            "end_time": "2026-02-19T11: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": "Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.",
                "sv": "I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.",
                "en": "Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF79F0A9BA99798DF532A1FD7B912F80/Elainpoliisit_-taidepaja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF79F0A9BA99798DF532A1FD7B912F80/Konstverkstaden_Elainpoliisit",
                "en": "http://www.malmitalo.fi/en/events/event/EF79F0A9BA99798DF532A1FD7B912F80/Art_workshop_animal_police"
            },
            "description": {
                "fi": "<p>Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Tässä pajassa koulutetaan pieniä eläinpoliiseja Zootropolis-elokuvan hengessä. Tule askartelemaan oma poliisihattusi, tietysti eläimen korvilla koristeltuna!</p><p>Vapaa pääsy!</p>",
                "sv": "<p>I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.</p><p>I denna verkstad utbildas små djurpoliser i samma anda som i filmen Zootropolis. Kom och tillverka en egen polishatt, naturligtvis dekorerad med djuröron!</p><p>Verkstadens språk: finska</p><p>Fritt inträde!</p>",
                "en": "<p>Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home.</p><p>This workshop will train little animal police officers in the spirit of the film Zootropolis. Come and craft your own police hat – decorated with animal ears, of course!</p><p>Workshop language: Finnish</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Eläinpoliisit -taidepaja",
                "sv": "Konstverkstaden Eläinpoliisit",
                "en": "Art workshop: animal police"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67560/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67668",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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-4041993",
                        "sv": "https://www.lippu.fi/eventseries/name-4041993",
                        "en": "https://www.lippu.fi/eventseries/name-4041993"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 7 €",
                        "sv": "20 € / 7 €",
                        "en": "20 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493972,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T13:14:14.535802Z",
                    "last_modified_time": "2025-12-01T13:14:14.535817Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778568.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493972/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T13:14:14.394043Z",
            "last_modified_time": "2026-03-20T01:13:10.222157Z",
            "date_published": null,
            "start_time": "2026-02-18T17: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": "Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä.",
                "sv": "Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram.",
                "en": "You have to dare let go and jump into the unknown, so that something new can emerge."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6C8238B9C8BE1411663578C50A38E0C9/Fragile_Kollektiivi_Unleashed_ENSI-ILTA",
                "sv": "http://www.caisa.fi/sv/evenemang/event/6C8238B9C8BE1411663578C50A38E0C9/Fragile_Kollektiivi_Unleashed",
                "en": "http://www.caisa.fi/en/events/event/6C8238B9C8BE1411663578C50A38E0C9/Fragile_Kollektiivi_Unleashed"
            },
            "description": {
                "fi": "<p>Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä.</p><p>Unleashed on tanssitaiteilija Riku Lehtopolun koreografia kahdelle akrobaatille. Nykysirkusteos tutkii akrobatian ja tanssillisen ilmaisun keinoin ihmisten välisiä suhteita nykymaailmassa sekä irtipäästämisen teemaa. Mitä odotuksia vallitseva maailmantilanne asettaa ihmisten välisille suhteille? Entä me itse, mihin haluamme takertua? Mitä muuttuu, jos antaa virran viedä? Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä. Teos pureutuu syvälle inhimillisyyden syövereihin käyttäen välineenä esiintyjien fyysisiä kehoja sekä akrobatiaa ja tanssia yhdistävää liikettä.<br>  <br>Teoksessa esiintyvät akrobaatit Haidi Sadonkorpi ja Jilka Repo. Teoksessa nähdään ilma-akrobatiaa, tanssillista pariakrobatiaa sekä taiturointia cyr-renkaalla. Äänitaiteilija Mikko H Haapojan bassojouhikkovetoinen musiikki luo oman kerroksensa teoskokonaisuuteen. Valosuunnittelu on Kauri Klemelän.<br>Fragile Kollektiivi</p><p>Fragile Kollektiivi on vapaan kentän toimijoista koostuva taiteilijayhteisö. Aloitimme työryhmämme yhteistyön nykysirkusteoksella ”Fierce”, joka sai ensi-iltansa lokakuussa 2019. Vuonna 2022 valmistimme tähän ihmisten välisiä suhteita tanssin ja akrobatian keinoin käsittelevän teostrilogiaan toisen osan Fragile. Unleashed on tämän teostrilogian viimeinen osa.</p><p>Työryhmä    <br>Koregrafi: Riku Lehtopolku<br>Esiintyjät: Haidi Sadonkorpi, Jilka Repo<br>Sävellys/äänisuunnittelu/musiikki: Mikko H Haapoja<br>Valosuunnittelu; Kauri Klemelä<br>Video/valokuvaus: Aleksi Hakala<br>Tuotanto: Haidi Sadonkorpi / Fragile Kollektiivi<br>Tukijat/yhteistyökumppanit: Taiteen Edistämiskeskus - Taike, Porvoon kaupunki, Cirko - Uuden Sirkuksen Keskus, Tanssiteatteri Hurjaruuth, Kulttuurikeskus Caisa<br>Esityksen kesto: 45 min, ei väliaikaa<br>Ikäsuositus: + 7 v<br>Kieli: sanaton<br>Sisältöhuomiot: Esityksessä käytetään teatterisavua. Normaali vahvistettu äänisuunnittelu akustisilla livesoittimilla.</p>",
                "sv": "<p>Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram.</p><p>Unleashed är danskonstnärens Riku Lehtopolkus koreografi för två akrobater. Detta moderna cirkusverk utforskar relationer mellan människor i dagens värld och teman kring att släppa taget genom akrobatik och dans. Vilka förväntningar ställer det rådande världsläget på relationerna mellan människor? Och vi själva, vad vill vi klamra oss fast vid? Vad förändras om vi följer med strömmen? Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram. Verket dyker djupt ner i mänsklighetens virvlar med hjälp av de medverkandes fysiska kroppar och rörelser som kombinerar akrobatik och dans.</p><p>Akrobaterna Haidi Sadonkorpi och Jilka Repo medverkar i verket. Verket innehåller luftakrobatik, parakrobatik med dans och uppträdande med cyr-hjul. Ljudkonstnären Mikko H Haapojas basharpsdrivna musik skapar ett eget lager i verkshelheten. Ljusdesignen är gjord av Kauri Klemelä.<br>Fragile Kollektiivi<br>Fragile Kollektiivi är en gemenskap av konstnärer på det fria fältet. Samarbetet i vår arbetsgrupp inleddes med det moderna cirkusverket Fierce, som hade premiär i oktober 2019. Under 2022 tog vi fram Fragile, som är den andra delen av denna verkstrilogi som utforskar mänskliga relationer genom dans och akrobatik. Unleashed är den sista delen av verkstrilogin.<br>Arbetsgrupp<br>Koregrafi: Riku Lehtopolku<br>På scenen: Haidi Sadonkorpi, Jilka Repo<br>Komposition/ljuddesign/musik: Mikko H Haapoja<br>Ljusdesign; Kauri Klemelä<br>Video/fotografering: Aleksi Hakala<br>Produktion: Haidi Sadonkorpi / Fragile Kollektiivi<br>Sponsorer/samarbetspartner: Centret för konstfrämjande - Taike, Borgå stad, Cirko - Uuden Sirkuksen Keskus, Tanssiteateri Hurjaruuth, Kulturcentret Caisa<br>Föreställningens längd: 45 minuter, ingen paus.<br>Åldersrekommendation: + 7 år<br>Språk: ordlös<br>Innehållsvarning: Teaterrök används i föreställningen. Normal, förstärkt ljuddesign med akustiska liveinstrument.</p>",
                "en": "<p>You have to dare let go and jump into the unknown, so that something new can emerge.</p><p>Unleashed is a choreography for two acrobats, created by dance artist Riku Lehtopolku. Through acrobatics and dance expression, this contemporary circus act explores the relationships between people in today’s world and the theme of letting go. What expectations does the current world situation place on human relationships? And what about us? What do we want to cling to? What changes if you allow yourself to be carried away by the current? You have to dare let go and jump into the unknown, so that something new can emerge. The work delves deep into the depths of humanity, using the physical bodies of the performers and movement that combines acrobatics and dance as its instruments.</p><p>The work stars acrobats Haidi Sadonkorpi and Jilka Repo. The work features aerial acrobatics, pair dance acrobatics, and acrobatics with a Cyr wheel. Sound artist Mikko H. Haapoja’s music, with a bass jouhikko bowed lyre as the main instrument, brings its own layer to the work. The light design is by Kauri Klemelä.<br>Fragile Kollektiivi<br>Fragile Kollektiivi is a community of independent artists. We started our collaboration with the contemporary circus act Fierce, which premiered in October 2019. In 2022, we produced Fragile, the second part in this trilogy of works, which explores human relationships through dance and acrobatics. Unleashed is the final part of this trilogy of works.<br>Creative team<br>Choreographer: Riku Lehtopolku<br>Performers: Haidi Sadonkorpi, Jilka Repo<br>Composition/sound design/music: Mikko H. Haapoja<br>Lighting design: Kauri Klemelä<br>Video/photography: Aleksi Hakala<br>Production: Haidi Sadonkorpi / Fragile Kollektiivi<br>Supporters/partners: Arts Promotion Centre Finland (Taike), City of Porvoo, Cirko – Center for New Circus, Dance Theatre Hurjaruuth, Cultural Centre Caisa<br>Duration of the performance: 45 min, without intermission<br>Age recommendation: 7+<br>Language: non-verbal<br>Content notes: The performance will feature fog machines. Normal amplified sound design with live acoustic instruments.</p>"
            },
            "name": {
                "fi": "Fragile Kollektiivi: Unleashed ENSI-ILTA",
                "sv": "Fragile Kollektiivi: Unleashed",
                "en": "Fragile Kollektiivi: Unleashed"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67668/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67356",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299647/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299647/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299647/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494727,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T09:13:53.600489Z",
                    "last_modified_time": "2026-02-05T09:13:53.600506Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781026.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T09:13:53.491783Z",
            "last_modified_time": "2026-03-20T01:13:10.104492Z",
            "date_published": null,
            "start_time": "2026-02-18T16: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": "Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C5D36907B2851948006E365B1AB1C573/Humiseva_harju_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C5D36907B2851948006E365B1AB1C573/Humiseva_harju_16_",
                "en": "http://www.malmitalo.fi/en/events/event/C5D36907B2851948006E365B1AB1C573/Humiseva_harju_16_"
            },
            "description": {
                "fi": "<p>Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi.</p><p>Rohkeassa ja omaperäisessä tulkinnassa yhdestä aikamme suurimmista rakkaustarinoista, Emerald Fennellin Humisevassa harjussa, nähdään Margot Robbie Cathyna ja Jacob Elordi Heathcliffinä, joiden kielletty intohimo toisiaan kohtaan muuttuu romanttisesta huumaavaksi eeppiseksi tarinaksi himosta, rakkaudesta ja hulluudesta.</p><p>Elokuvaa tähdittävät myös Oscar®-ehdokas Hong Chau, Shazad Latif, Alison Oliver, BAFTA®-voittaja Martin Clunes ja Ewan Mitchell.<br> <br>Fennell ohjaa omasta käsikirjoituksestaan, joka perustuu Emily Brontën romaaniin Humiseva Harju, ja tuottaa sen yhdessä Oscar®-ehdokas ja BAFTA®-voittaja Josey McNamaran sekä Margot Robbien kanssa. Oscar®-ehdokas Tom Ackerley sekä Sara Desmond ovat vastaavia tuottajia.</p><p>Ikäraja: 16<br>Kesto: 136 min<br>Ensi-ilta: 13.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Humiseva harju (16) – Kino Helios",
                "sv": "Humiseva harju (16) – Kino Helios",
                "en": "Humiseva harju (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67356/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68039",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": 1494660,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T13:13:02.019124Z",
                    "last_modified_time": "2026-01-28T13:13:02.019140Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783063.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494660/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-28T13:13:01.881222Z",
            "last_modified_time": "2026-03-20T01:13:09.995167Z",
            "date_published": null,
            "start_time": "2026-02-18T16: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": "Det är praoveckor för bästa vännerna Bert och Åke när Åke för första gången i sitt liv blir kär.",
                "sv": "Det är praoveckor för bästa vännerna Bert och Åke när Åke för första gången i sitt liv blir kär."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4C9664354C3CE223C68C2CE03D1917CA/Bert_Sabbar_allt",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/4C9664354C3CE223C68C2CE03D1917CA/Bert_Sabbar_allt",
                "en": "http://www.vuotalo.fi/en/events/event/4C9664354C3CE223C68C2CE03D1917CA/Bert_Sabbar_allt"
            },
            "description": {
                "fi": "<p>Det är praoveckor för bästa vännerna Bert och Åke när Åke för första gången i sitt liv blir kär.</p><p>Hon heter Molly. Samma Molly som Bert också har blivit kär i! Och Molly och Bert praoar ihop och hon verkar gilla honom. Och Åke vet ingenting! Svåra frågor, dilemman och invecklade lögner staplas för att till slut brisera och Bert riskerar att förlora både sin bäste vän och den stora kärleken.</p><p>Filmen är med svenskt tal och utan textning.<br>Regi: Manuel Concha</p><p>Skådespelare: Axel Adelöw, Viggo Rapo, Matilda Gross, Elvis Karlsson, Sigge Dorsin, Josefin Neldén, Klas Eriksson, Peter Magnusson, Joel Adolphson, Isabella Pessoa Fernandes<br>Manus: Tapio Leopold</p><p>On TET-viikot parhaiden ystävien Bertin ja Åken elämässä, kun Åke ensimmäistä kertaa elämässään rakastuu.</p><p>Hänen nimensä on Molly. Sama Molly, johon myös Bert on rakastunut! Ja Molly ja Bert ovat TET-harjoittelussa yhdessä, ja Molly tuntuu pitävän hänestä. Eikä Åke tiedä asiasta mitään! Vaikeita kysymyksiä, pulmia ja monimutkaisia valheita kasautuu, kunnes kaikki lopulta räjähtää – ja Bert on vaarassa menettää sekä parhaan ystävänsä että suuren rakkautensa.</p><p>Elokuva on puhuttu ruotsiksi ja on ilman tekstitystä.</p>",
                "sv": "<p>Det är praoveckor för bästa vännerna Bert och Åke när Åke för första gången i sitt liv blir kär.</p><p>Hon heter Molly. Samma Molly som Bert också har blivit kär i! Och Molly och Bert praoar ihop och hon verkar gilla honom. Och Åke vet ingenting! Svåra frågor, dilemman och invecklade lögner staplas för att till slut brisera och Bert riskerar att förlora både sin bäste vän och den stora kärleken.</p><p>Filmen är med svenskt tal och utan textning.<br>Regi: Manuel Concha</p><p>Skådespelare: Axel Adelöw, Viggo Rapo, Matilda Gross, Elvis Karlsson, Sigge Dorsin, Josefin Neldén, Klas Eriksson, Peter Magnusson, Joel Adolphson, Isabella Pessoa Fernandes<br>Manus: Tapio Leopold</p>",
                "en": "<p>The movie is spoken in Swedish and without subtitles.</p>"
            },
            "name": {
                "fi": "Bert Sabbar allt – Sportlovsbio",
                "sv": "Bert Sabbar allt – Sportlovsbio",
                "en": "Bert Sabbar allt – Sportlovsbio"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68039/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67772",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494159,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-09T11:13:37.730896Z",
                    "last_modified_time": "2025-12-09T11:13:37.730926Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780405.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494159/?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-09T11:13:37.612041Z",
            "last_modified_time": "2026-03-20T01:13:09.889698Z",
            "date_published": null,
            "start_time": "2026-02-18T13:00:00Z",
            "end_time": "2026-02-18T16: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": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!",
                "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!",
                "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2D1E2CBF1A68D759D4E5FF0C3B269B30/Rantaunelmia",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2D1E2CBF1A68D759D4E5FF0C3B269B30/Stranddrommar",
                "en": "http://www.vuotalo.fi/en/events/event/2D1E2CBF1A68D759D4E5FF0C3B269B30/Beach_dreams"
            },
            "description": {
                "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>",
                "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Rantaunelmia – Talviloman avoimet työpajat",
                "sv": "Stranddrömmar – Öppna verkstäder under sportlovet",
                "en": "Beach dreams – Open workshops during the winter break"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67772/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67355",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299551/",
                        "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299551/",
                        "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299551/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494723,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T07:13:43.059892Z",
                    "last_modified_time": "2026-02-05T07:13:43.059910Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781025.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494723/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T07:13:42.871912Z",
            "last_modified_time": "2026-03-20T01:13:09.772040Z",
            "date_published": null,
            "start_time": "2026-02-18T13: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": "Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3D31662A1B62BBBE41DCEE1831812455/Luottomies-elokuva_Lepoloma_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3D31662A1B62BBBE41DCEE1831812455/Luottomies-elokuva_Lepoloma_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3D31662A1B62BBBE41DCEE1831812455/Luottomies-elokuva_Lepoloma_7_"
            },
            "description": {
                "fi": "<p>Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle.</p><p>Johanilla on yksi ehto: hän haluaa autonsa mukaan. Tommi lupautuu ajamaan Johanin auton Espanjaan – yhdessä Juhiksen kanssa. Asiat eivät kuitenkaan mene aivan suunnitellusti, ja kun Johanin auto varastetaan, Tommi ja Juhis päättävät selvittää tilanteen omin avuin ja pian sankarimme syöksyvät taas kiihtyvällä vauhdilla katastrofista toiseen.</p><p>Ikäraja: 7<br>Kesto: 88 min<br>Ensi-ilta: 4.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Luottomies-elokuva: Lepoloma (7) – Kino Helios",
                "sv": "Luottomies-elokuva: Lepoloma (7) – Kino Helios",
                "en": "Luottomies-elokuva: Lepoloma (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67355/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}