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=27
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 21732,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=28",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=26"
    },
    "data": [
        {
            "id": "kulke:67365",
            "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-21299671/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299671/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299671/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494734,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T10:13:18.369888Z",
                    "last_modified_time": "2026-02-05T10:13:18.369906Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781040.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494734/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T10:13:18.258735Z",
            "last_modified_time": "2026-03-20T01:13:21.446897Z",
            "date_published": null,
            "start_time": "2026-02-28T13: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/71E2D03DBF9596222BE29CB02D6B086D/Vinski_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/71E2D03DBF9596222BE29CB02D6B086D/Vinski_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/71E2D03DBF9596222BE29CB02D6B086D/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:67365/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67831",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494209,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-15T13:13:37.076458Z",
                    "last_modified_time": "2025-12-15T13:13:37.076474Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779978.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494209/?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-15T13:13:36.920583Z",
            "last_modified_time": "2026-03-20T01:13:21.301205Z",
            "date_published": null,
            "start_time": "2026-02-28T12: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ämä koko perheen jazzkonsertti juhlistaa Kulttuurikeskus Caisan 30-vuotista historiaa – osuvasti Jazz Suomi 100 -juhlavuonna!",
                "sv": "Denna Jazzkonsert för hela familjen uppmärksammar kulturcentret Caisas 30-åriga historia – lämpligt nog under Jazz Finland 100-jubileumsåret.",
                "en": "In this solo concert, Battah invites the audience – especially children – to join her on a musical journey of rhythm, voice and imagination."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah",
                "sv": "http://www.caisa.fi/sv/evenemang/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah",
                "en": "http://www.caisa.fi/en/events/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah"
            },
            "description": {
                "fi": "<p>Tämä koko perheen jazzkonsertti juhlistaa Kulttuurikeskus Caisan 30-vuotista historiaa – osuvasti Jazz Suomi 100 -juhlavuonna!</p><p>Jazz for Kids on korkeatasoisten jazzkonserttien sarja, johon ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä äänenvoimakkuudella kulttuurikeskusten helposti saavutettavissa tiloissa.</p><p>Tässä Jazz for Kids-konsertissa <b>Nemat Battah</b> esittelee soolouransa alkuperäisiä sävellyksiä, joihin hän ammentaa vaikutteita myös Wishamalii-triostaan. Loopperin ja live-elektroniikan avulla hän luo intiimin äänimaiseman, jossa perinteinen kohtaa uuden ja ennakkoluulottoman. Hänen musiikkinsa yhdistää arabialaisen maqam-estetiikan ja jazzin improvisaation vapauden, luoden syvästi ilmaisuvoimaisen ja nykyaikaisen äänimaiseman.</p><p>Battah kutsuu yleisön – erityisesti lapset – mukaan rytmin, äänen ja mielikuvituksen matkalle! Leikkisän vuorovaikutuksen ja spontaanin luomisen kautta hän tutkii, miten ääni voi kertoa tarinoita ja yhdistää ihmisiä yli kulttuurirajojen. Esitys huokuu uteliaisuutta, lämpöä ja jazzin improvisaation henkeä, tarjoten elämyksen, joka koskettaa ja inspiroi kaikenikäisiä kuulijoita.<br>Nemat Battah – oud, laulu, live-elektroniikka & loopperi</p><p>Tilaisuuden kesto: 45 min. Artisti esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikkoa ja soitinta.</p><p>Kieli: englanti ja arabia</p><p>Paikat täytetään saapumisjärjestyksessä.</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Denna Jazzkonsert för hela familjen uppmärksammar kulturcentret Caisas 30-åriga historia – lämpligt nog under Jazz Finland 100-jubileumsåret.</p><p>Jazz for Kids är en serie av högklassiga jazzkonserter för barn, där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga utrymmen.</p><p>I den här Jazz for Kids-konserten framför <b>Nemat Battah</b> originallåtar ur sin solokarriär, där även influenser från trion Wishamalii ingår. Med hjälp av en looper och liveelektronik skapar hon ett intimt ljudlandskap, där det traditionella möter det nya och fördomsfria. Hennes musik kombinerar arabisk maqam-estetik med friheten i jazzimprovisation, och skapar ett djupt uttrycksfullt och modernt ljudlandskap.</p><p>Battah bjuder in publiken – särskilt barnen – på en resa fylld av rytmer, ljud och fantasi! Genom lekfull interaktion och spontant skapande utforskar hon hur ljuden kan berätta historier och förena människor över kulturgränserna. Föreställningen andas nyfikenhet, värme och jazzimprovisation och bjuder på en upplevelse som berör och inspirerar lyssnare i alla åldrar.</p><p>Nemat Battah – oud, sång, liveelektronik och looper</p><p>Evenemangets längd: 45 minuter. Artisten uppträder i ca 35 minuter, varefter publiken kan hälsa på musikern och instrumentet.</p><p>Språk: engelska och arabiska<br>Fritt inträde!</p>",
                "en": "<p>In this solo concert, Battah invites the audience – especially children – to join her on a musical journey of rhythm, voice and imagination.</p><p>Jazz for Kids is a series of high-quality jazz concerts for everyone from babies to grandparents! Professional musicians perform their work at child-friendly volumes in the easily accessible facilities of the City’s cultural centres.</p><p>In this Jazz for Kids concert, Nemat Battah will perform original compositions from her solo career, also drawing influence from her Wishamalii trio. With the help of loopers and live electronics, she will create an intimate soundscape where the traditional meets the new and unprejudiced. Her music combines Arabic maqam aesthetics with the improvisational freedom of jazz, creating a deeply expressive and contemporary soundscape.</p><p>Battah invites the audience – especially children – to join her on a journey of rhythm, sound and imagination! Through playful interaction and spontaneous creation, she explores how sound can tell stories and connect people across cultural boundaries. The performance exudes curiosity, warmth and the improvisational spirit of jazz, providing an experience that will touch and inspire listeners of all ages.</p><p>Nemat Battah – oud, vocals, live electronics and looper</p><p>Event duration: 45 min. The artist will perform for roughly 35 minutes, after which the audience can come meet the musician and see the instruments used.</p><p>Language: English and Arabic</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Jazz for Kids: Nemat Battah",
                "sv": "Jazz for Kids: Nemat Battah",
                "en": "Jazz for Kids: Nemat Battah"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67831/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67656",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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: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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/taika-box-louhi/",
                        "sv": "https://www.lippu.fi/artist/taika-box-louhi/",
                        "en": "https://www.lippu.fi/artist/taika-box-louhi/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493955,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T16:13:01.413282Z",
                    "last_modified_time": "2025-11-28T16:13:01.413296Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782300.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493955/?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-11-28T16:13:01.317564Z",
            "last_modified_time": "2026-03-20T01:13:21.065926Z",
            "date_published": null,
            "start_time": "2026-02-28T12: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.",
                "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.",
                "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi",
                "en": "http://www.annantalo.fi/en/events/event/6E516266DA62B02730A7393C88626487/TaikaBox_Louhi"
            },
            "description": {
                "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 4-10 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p>",
                "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>",
                "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p>"
            },
            "name": {
                "fi": "TaikaBox: Louhi",
                "sv": "TaikaBox: Louhi",
                "en": "TaikaBox: Louhi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67656/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67655",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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: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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/taika-box-louhi/",
                        "sv": "https://www.lippu.fi/artist/taika-box-louhi/",
                        "en": "https://www.lippu.fi/artist/taika-box-louhi/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493954,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T16:13:01.048571Z",
                    "last_modified_time": "2025-11-28T16:13:01.048586Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782299.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493954/?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-11-28T16:13:00.957519Z",
            "last_modified_time": "2026-03-20T01:13:20.929819Z",
            "date_published": null,
            "start_time": "2026-02-28T10: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.",
                "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.",
                "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi",
                "en": "http://www.annantalo.fi/en/events/event/FAF83F649F07B33974BEC4AF680D73D6/TaikaBox_Louhi"
            },
            "description": {
                "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 4-10 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p>",
                "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>",
                "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p>"
            },
            "name": {
                "fi": "TaikaBox: Louhi",
                "sv": "TaikaBox: Louhi",
                "en": "TaikaBox: Louhi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67655/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67449",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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: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": 1494073,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:55.557187Z",
                    "last_modified_time": "2025-12-04T13:12:55.557203Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781375.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494073/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-04T13:12:55.448375Z",
            "last_modified_time": "2026-03-20T01:13:20.706968Z",
            "date_published": null,
            "start_time": "2026-02-28T10:00:00Z",
            "end_time": "2026-02-28T14: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": "Koko perheen viittomakielinen ilmaistapahtuma Helsingissä!",
                "sv": "Gratis evenemang på teckenspråk för hela familjen i Helsingfors!",
                "en": "A free event for the whole family in sign language in Helsinki!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Viittomakielinen_kulttuuritapahtuma",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Ett_kulturevenemang_pa_teckensprak",
                "en": "http://www.kanneltalo.fi/en/events/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Cultural_event_in_sign_language"
            },
            "description": {
                "fi": "<p>Koko perheen viittomakielinen ilmaistapahtuma Helsingissä!</p><p>Tervetuloa viettämään hauska päivä 28.2.2026 klo 12–16 Kanneltalolle.</p><p>Luvassa on mielenkiintoista tekemistä ja ohjelmaa kaikenikäisille. Tule mukaan nauttimaan tunnelmasta ja keväisestä menosta!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Vapaa pääsy</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p>",
                "sv": "<p>Gratis evenemang på teckenspråk för hela familjen i Helsingfors!</p><p>Välkommen till en rolig dag på Gamlasgården den 28 februari 2026 kl. 12–16.<br>Där utlovas intressanta aktiviteter och program för alla åldrar. Kom med och njut av stämningen och våren!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p><p>Fritt inträde</p>",
                "en": "<p>A free event for the whole family in sign language in Helsinki!</p><p>Come along and spend a fun day on 28 February 2026 from 12.00–16.00 at Kanneltalo.<br>There will be interesting activities and a programme for all ages. Come along and enjoy the atmosphere and spring activities!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p><p>Free entry</p>"
            },
            "name": {
                "fi": "HELsign 2026 – Viittomakielinen kulttuuritapahtuma",
                "sv": "HELsign 2026 – Ett kulturevenemang på teckenspråk",
                "en": "HELsign 2026 – Cultural event in sign language"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67449/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67497",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494645,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-27T08:13:00.233390Z",
                    "last_modified_time": "2026-01-27T08:13:00.233410Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781604.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494645/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-27T08:13:00.144327Z",
            "last_modified_time": "2026-03-20T01:13:20.595976Z",
            "date_published": null,
            "start_time": "2026-02-28T09:00:00Z",
            "end_time": "2026-02-28T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/230927E0E7D4B562A3BD87B0143473B8/Annantalon_taidelauantai_Nastat_kortit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/230927E0E7D4B562A3BD87B0143473B8/Annegardens_konstlordag",
                "en": "http://www.annantalo.fi/en/events/event/230927E0E7D4B562A3BD87B0143473B8/Annantalo_Art_Saturday_Pin_Me_a_Picture"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Nastat kortit</b></p><p>Pistele reikiä paperikorttiin luodaksesi kauniita pitsimäisiä kuvioita. Rauhallista ja piikikästä puuhaa!<br> <br>Alle kouluikäisille aikuisen kanssa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaa Chloé Mahy.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Gör hål i ett papperskort för att skapa vackra spetsliknande mönster. En rogivande och lite stickig aktivitet!<br> <br>För barn under 7 år i sällskap av en vuxen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen led av Chloé Mahy.</p><p>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Pin Me a Picture</b></p><p>Punch holes on a paper card to create beautiful lacey patterns. Soothing and prickly business!</p><p>For kids under 7 with an adult.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by Chloé Mahy.</p><p>A warm welcome to Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Nastat kortit",
                "sv": "Annegårdens konstlördag",
                "en": "Annantalo Art Saturday: Pin Me a Picture"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67497/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67957",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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": 1494434,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T13:12:57.639011Z",
                    "last_modified_time": "2026-01-09T13:12:57.639021Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783780.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-09T13:12:57.498447Z",
            "last_modified_time": "2026-03-20T01:13:20.288726Z",
            "date_published": null,
            "start_time": "2026-02-28T08:30:00Z",
            "end_time": "2026-06-06T08:45: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 viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu noin 5-6 v. lapsille oman aikuisen kanssa.",
                "sv": "Välkommen till en avkopplande stund med dans, lek och den lokala naturen!",
                "en": "Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Tanssi-_ja_luontotyopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Dans-_och_naturverkstader",
                "en": "http://www.vuotalo.fi/en/events/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Dance_and_nature_workshops"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu noin 5-6 v. lapsille oman aikuisen kanssa.</p><p>Arjen keskellä on välillä vaikea löytää hetkiä vain olla yhdessä ja leikkiä tai vaikkapa mennä tutustumaan lähimetsään. Työpajat tarjoavat mahdollisuuden eri-ikäisille ihmisille, aikuisille ja lapsille, viettää kiireetöntä ja vapaata aikaa ja olla yhdessä tanssin, leikin ja lähiluonnon parissa.</p><p>Työpajoissa keskitytään erityisesti leikkimiseen ja yhdessä liikkumiseen tanssillisten tehtävien kautta. Työpajojen aiheet kulkevat mielikuvitus leikeistä tarinoihin, peleihin, metsässä kulkemiseen ja tutkimiseen yhdessä.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa kehollisia, intuitiivisia ja kuvitteellisia tietämisen tapoja. Hanke kehittää demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi</p><p>Työpaja ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p>Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p>Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen<br>artofknowing2025@gmail.com</p><p>Ilmoittautumisen yhteydessä kerro:<br>Osallistujien nimi / nimet<br>Puhelinnumero<br>Ryhmä, johon osallistutaan</p><p>Vapaa pääsy</p><p>Työpajoja ohjaavat tanssitaiteilija-tanssipedagogi Jenni Koistinen ja tanssitaiteilija-koreografi Virva Talonen.</p><p>Tule mukaan lauantaisin klo 10.30–11.45!<br>Päivämäärät: 28.2., 7.3., 14.3., 21.3., 28.3., 11.4., 18.4., 25.4., 9.5., 16.5, 23.5 ja 6.6.2026.</p><p>HUOM! Kaikkien ryhmien yhteinen viimeinen kerta on poikkeuksellisesti la 6.6.26 klo 10.30–12.</p><p>Järjestämme tanssi- ja luontotyöpajoja myös 7-12-vuotiaille lapsille oman aikuisen kanssa torstaisin 26.2.–28.5. klo 17.30–18.15 sekä kaikenikäisille torstaisin 26.2.–28.5. klo 18.30-19.45.</p>",
                "sv": "<p>Välkommen till en avkopplande stund med dans, lek och den lokala naturen!</p><p>Mitt i vardagen kan det vara svårt att hitta stunder för att bara vara tillsammans och leka eller gå på upptäcktsfärd i den lokala skogen. Verkstäderna erbjuder en möjlighet för personer i olika åldrar, vuxna och barn, att umgås fritt och utan stress, dansa, leka och njuta av den lokala naturen.</p><p>I verkstäderna fokuserar vi särskilt på lek och att röra oss tillsammans genom dansuppgifter. Verkstädernas teman rör sig från fantasilekar till berättelser, spel, promenader i naturen och gemensamt utforskande.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Kone-stiftelsen och där vi utvecklar kroppsliga, intuitiva och tänkta sätt att veta i samarbete med forskare och danskonstnärer. Projektet utvecklar demokratiska och inkluderande metoder där lek, kroppslighet och natur är viktiga källor till kunskap.</p><p>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi <br>Kursen kräver ingen tidigare bakgrund inom dans eller erfarenhet av dans. Kursen leds på finska, och vid behov använder vi också svenska och engelska.</p><p>Verkstäderna hålls i Lilla salen i Nordhuset och i närliggande skogar i Nordsjö.</p><p>De anmälda till verkstäderna får närmare information om var de ska samlas innan kursen börjar.</p><p>LEDARE FÖR VERKSTÄDERNA: Verkstäderna leds av danskonstnären och -pedagogen Jenni Koistinen samt danskonstnären och koreografen Virva Talonen.</p><p><b>Anmälan sker via e-post till adressen:</b> artofknowing2025@gmail.com</p><p>I samband med anmälan, vänligen uppge:<br>Deltagarens namn / deltagarnas namn<br>Telefonnummer<br>Den grupp som man anmäler sig till</p><p>Vi ordnar dans- och naturworkshops även för deltagare i alla åldrar på torsdagar 26.2.–28.5. kl. 18.30–19.45 samt för barn i åldern 5–6 år tillsammans med en egen vuxen på lördagar 28.2.–6.6. kl. 10.30–11.45.</p><p>OBS! Alla gruppers gemensamma sista träff hålls undantagsvis lördagen den 6.6.26 kl. 10.30–12.</p>",
                "en": "<p>Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!</p><p>In the busyness of everyday life, it can be hard to find moments to just be together and play, or perhaps go explore the local forest. These workshops offer an opportunity for people of all ages, adults and children alike, to spend some unhurried and free time together, dancing, playing and enjoying the local nature.</p><p>The workshops will focus particularly on playing and moving together through dance-related activities. The workshop themes range from imagination play to stories, games, walking in the woods and exploring things together.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop bodily, intuitive and imaginary ways of knowing. The project develops democratic and participatory methods in which play, bodiliness and nature are important sources of knowing.</p><p>If you participate in the workshops, you can also take part in a survey if you wish. For more information on the survey, please contact: anna.rainio@helsinki.fi</p><p>No previous dance background or experience is required for attending the course. The course is instructed in Finnish, and we also speak Swedish and English where necessary.</p><p>The workshops will be held in the Small Hall room of Vuotalo and in the nearby forests of Vuosaari.</p><p>Those registered for the workshops will receive more information about the assembly places before the course starts.</p><p>WORKSHOP INSTRUCTORS: The workshops will be instructed by dance artist and educator Jenni Koistinen and dance artist and choreographer Virva Talonen.</p><p>Registration takes place by email to the following address:</p><p><b>When registering, please provide: </b><br>artofknowing2025@gmail.com</p><p>Participant’s name / participants’ names<br>Phone number<br>The group you are registering for</p><p>We also organise dance and nature workshops for all ages on Thursdays from 26 Feb to 28 May, from 6:30 pm to 7:45 pm, as well as workshops for 5–6-year-old children together with their own adult on Saturdays from 28 Feb to 6 June, from 10:30 am to 11:45 am.</p><p>NOTE! The final session for all groups will exceptionally be held together on Saturday 6 June 2026, from 10:30 am to 12:00 pm.</p>"
            },
            "name": {
                "fi": "Tanssi- ja luontotyöpajat – Aikuiset ja n. 5-6 v.lapset",
                "sv": "Dans- och naturverkstäder – Vuxna och barn 5–6 år.",
                "en": "Dance and nature workshops – Adults and children aged 5–6"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67957/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67909",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494595,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T14:12:55.084754Z",
                    "last_modified_time": "2026-01-21T14:12:55.084768Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777733.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-21T14:12:54.928362Z",
            "last_modified_time": "2026-03-20T01:13:20.147658Z",
            "date_published": null,
            "start_time": "2026-02-28",
            "end_time": "2026-05-23",
            "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": "Helsingin kaupunginmuseon kierrätysnäyttely keikauttaa käsityksesi roskasta.",
                "sv": "Helsingfors stadsmuseums återvunna utställning utmanar uppfattningen om skräp.",
                "en": "The Helsinki City Museum recycled exhibition will challenge your notions on waste."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Roskaa_-_Mita_jatamme_jalkeemme",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Skrap_Det_vi_lamnar_efter_oss",
                "en": "http://www.vuotalo.fi/en/events/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Trash_What_we_leave_behind"
            },
            "description": {
                "fi": "<p>Helsingin kaupunginmuseon kierrätysnäyttely keikauttaa käsityksesi roskasta.</p><p>Mistä helsinkiläisten roskat muodostuvat, mihin ne päätyvät ja miten ne vaikuttavat ympäristöön?</p><p>Vuotaloon saapuu näyttely, joka haastaa pohtimaan omia kulutustottumuksia ja kannustaa kestävämpiin valintoihin. Kaupunginmuseon kierrätetty näyttely Roskaa! kutsuu kaupunkilaiset ihmettelemään kotitalousjätteiden kiertokulkua ja ympäristövastuun merkityksiä eri aikoina.</p><p>Näyttely esittelee Helsingin jätehuollon historiaa ja nykyhetkeä leikkimielisten tehtävien ja erilaisten teemojen avulla. Koti havainnollistaa kuluttamisen muutoksia, Viemäri paljastaa putkistojen salaisuudet, Jätehuolto näyttää jätteiden reitit kaupungissa ja Kierrätyspajassa vanha saa uuden elämän.</p><p>Pöntöt, pytyt ja putket, sekä Riku Ounaslehdon näyttelyä varten kuvittamat maskottihahmot – Herra Sumppi, Lörö, Voda, Kara ja Rööperi-Rotta – saavat kaikenikäiset hymyilemään.</p><p>Roskaa! toteutetaan yhteistyössä Helsingin seudun ympäristöpalvelujen kanssa. Näyttelyn tuottaja on museolehtori Magnus Rask.</p><p>Roskaa! – Mitä jätämme jälkeemme<br>28.2.–23.5.2026<br>Vuotalo <br>Vapaa pääsy</p>",
                "sv": "<p>Helsingfors stadsmuseums återvunna utställning utmanar uppfattningen om skräp.</p><p>Till Nordhuset kommer en utställning som utmanar till att tänka på ens egna konsumtionsvanor och uppmuntrar till hållbarare val. Stadsmuseets återvunna utställning Skräp! handlar om hushållsavfallets kretslopp i staden och människors miljöansvar under olika tidsperioder.</p><p>Hur uppstår helsingforsarnas avfall, vart hamnar det och hur påverkar det miljön?</p><p>Utställningen presenterar avfallshanteringens historia och nuläge i Helsingfors med hjälp av olika skojiga uppgifter och teman; Hemmet åskådliggör förändringar i konsumtionen, Avloppet avslöjar rörsystemens hemligheter, Avfallshanteringen visar avfallets rutter i staden och i Återvinningsverkstaden ger gamla saker ett nytt liv.</p><p>Pottor, byttor och rör, samt maskotarna Herr Sump, Klumpen, Vatu, Skrottet och råttan Rööperi designade av Riku Ounaslehto får vem som helst att dra på smilbanden</p><p>Utställningen Skräp! är ett samarbete mellan Helsingfors stadsmuseum och Helsingforsregionens miljötjänster. Utställningen produceras av museilektor Magnus Rask.</p><p>Skräp! – Det vi lämnar efter oss<br>28.2–23.5.2026<br>Nordhuset<br>Fritt inträde</p>",
                "en": "<p>The Helsinki City Museum recycled exhibition will challenge your notions on waste.</p><p>What does the trash of Helsinki residents consist of, where does it end up, and how does it impact the environment?</p><p>An exhibition is coming to Vuotalo, that challenges visitors to reflect on their own consumption habits and encourages to make more sustainable choices. The Helsinki City Museum recycled exhibition Trash! digs into the journey of household waste in the city and the significance of environmental responsibility in different times.</p><p>The exhibition showcases the history and present of waste management in Helsinki through playful tasks and diverse themes. Home illustrates changes in consumption, Sewer reveals the secrets of pipelines, Waste Management shows the routes of different waste types in the city, and Recycling Shop gives new life to old items.</p><p>Potties, bins and pipes, along with the mascot characters illustrated by Riku Ounaslehto for the exhibition – Mr. Sumppi, Lörö, Voda, Kara, and Rööperi the Rat – are sure to bring smiles to visitors of all ages.</p><p>Trash! is produced in collaboration with Helsinki Region Environmental Services Authority HSY. The exhibition is produced by museum educator Magnus Rask.</p><p>Trash! – What we leave behind<br>28.2–23.5.2026<br>Vuotalo<br>Free entry</p>"
            },
            "name": {
                "fi": "Roskaa! - Mitä jätämme jälkeemme – Helsingin kaupunginmuseon kierrätysnäyttely",
                "sv": "Skräp! – Det vi lämnar efter oss – Helsingfors stadsmuseums återvunna utställning",
                "en": "Trash! – What we leave behind – A recycled exhibition by the Helsinki City Museum"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67909/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67667",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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-4041994",
                        "sv": "https://www.lippu.fi/eventseries/name-4041994",
                        "en": "https://www.lippu.fi/eventseries/name-4041994"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€/7€",
                        "sv": "15€/7€",
                        "en": "15€/7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493967,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T12:12:47.549056Z",
                    "last_modified_time": "2025-12-01T12:12:47.549087Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778708.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493967/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T12:12:47.422634Z",
            "last_modified_time": "2026-03-20T01:13:20.001022Z",
            "date_published": null,
            "start_time": "2026-02-27T17: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": "Uppoudu ainutlaatuiseen konserttiin, jossa moderni elektroninen musiikki kohtaa perinteisen keskiaasialaisen kansanmusiikin.",
                "sv": "Dyk ner i en unik konsert där modern elektronisk musik möter traditionell centralasiatisk folkmusik.",
                "en": "Immerse yourself in a unique concert where modern electronic music meets traditional Central Asian folk music."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/3A2ABA86757646800BF530E213D67BD1/Aizhan_Sultan_and_Saku_Liimatainen",
                "sv": "http://www.caisa.fi/sv/evenemang/event/3A2ABA86757646800BF530E213D67BD1/Aizhan_Sultan_and_Saku_Liimatainen",
                "en": "http://www.caisa.fi/en/events/event/3A2ABA86757646800BF530E213D67BD1/Aizhan_Sultan_and_Saku_Liimatainen"
            },
            "description": {
                "fi": "<p>Uppoudu ainutlaatuiseen konserttiin, jossa moderni elektroninen musiikki kohtaa perinteisen keskiaasialaisen kansanmusiikin.</p><p>Helsingissä toimivat taiteilijat Aizhan Sultan (KZ) ja Saku Liimatainen (FI) yhdistävät voimansa luodakseen mukaansatempaavan esityksen. He rakentavat sillan kulttuuriensa, historian ja ainutlaatuisen äänimaailman läpi ja sekoittavat modernia musiikkia ja elektronista musiikkia perinteiseen keskiaasialaiseen kansanmusiikkiin.</p><p>Laulaja, lauluntekijä ja tutkija Aizhan Sultan tutkii vammaisuuden, identiteetin, dekolonialisaation ja uudelleenrakentamisen teemoja. Laulutekniikoillaan ja munniharpullaan hän valjastaa perinteisiä ääniä selviytymiskyvyn ja vapautumisen välineiksi.<br>Hän esiintyy yhdessä elektronista live-musiikkia soittavan muusikko, pianisti ja säveltäjä Saku Liimataisen kanssa. Liimatainen kutoo modernin ja rosoisen suomalaisen äänimaailmansa yhteen Aizhanin paimentolaismusiikin kanssa. Hän tulkitsee kansanperinteitä uudelleen tunnelmallisten kerrosten ja rytmien kautta ja luo siten tilan, jossa ikivanhat äänet ja numeerinen tulevaisuus ovat läsnä rinnakkain.</p><p>Yhdessä he luovat kulttuurienvälisen keskustelun, jossa on yhtä paljon kyse historiasta ja identiteetistä kuin muutoksesta ja taiteellisesta vapaudestakin.</p><p>Aizhan Sultan on Kazakstanista kotoisin oleva laulaja, säveltäjä ja väitöskirjatutkija, joka toimii Suomessa. Hän ammentaa sävellyksiinsä inspiraatiota Kazakstanin perinne- ja nykymusiikista ja pohtii niiden kautta matkaansa ympäri maailmaa sekä omia poliittisia ja sosiaalisia kokemuksiaan. Hän tarjoaa ainutlaatuisen genreyhdistelmän, jonka kautta hän jatkuvasti dekolonisoi itseään pitäen musiikkinsa samalla kuitenkin saavutettavana suurelle yleisölle. Hänen päätavoitteenaan on edustaa Keski-Aasian ja etenkin Kazakstanin musiikkia ja taidetta ja tehdä niitä saavutettaviksi kansainvälisille yleisöille. Tekijä tarjoaa yleisölle tilaisuuden tutustua kazakstanilaiseen taiteeseen ja historiaan.<br> <br>Saku Liimatainen on helsinkiläinen muusikko, joka on keskittynyt elektronisen musiikin säveltämiseen, musiikkituotantoon ja pianopedagogiikkaan. Liimataisen juuret taiteen kentällä painottuvat voimakkaasti elektroniseen improvisointiin ja uteliaisuuteen löytää epätavanomaisia äänilähteitä. Sooloartistin ja -muusikon uransa lisäksi hän on ollut mukana useissa eri projekteissa ja yhtyeissä, joiden taiteelliset suuntaukset ovat vaihdelleet klassisesta musiikista kokeelliseen melumusiikkiin. Hän on ollut mukana monissa kokeellisissa nyky- ja populaarimusiikkituotannoissa, kuten esiintyjänä Radion sinfoniaorkesterissa, Kaartin soittokunnassa ja Pangosmos-kollektiivissa. Vuodesta 2023 lähtien Liimatainen on lisäksi soittanut syntetisaattoreita Knife Girlin live-kokoonpanossa ja työskennellyt ääniteknikkona useille suomalaisille yhtyeille, kuten Nupulle ja Serotille.</p><p>Kesto: n. 45–50 min<br>Kielet: suomi, kazakki ja englanti</p>",
                "sv": "<p>Dyk ner i en unik konsert där modern elektronisk musik möter traditionell centralasiatisk folkmusik.</p><p>Aizhan Sultan (KZ) och Saku Liimatainen (FI) – två artister bosatta i Helsingfors – går samman för att skapa en fängslande föreställning. De bygger en bro genom sina kulturer och sin historia med en unik ljudbild som blandar modern elektronisk och modern musik med traditionell centralasiatisk folkmusik.<br>Sångerskan, låtskrivaren och forskaren Aizhan Sultan utforskar teman som funktionsnedsättning, identitet och dekolonial återuppbyggnad. Med hjälp av sin sångteknik och sin mungiga återvänder hon till traditionella toner som verktyg för motståndskraft och frigörelse.</p><p>Tillsammans med henne uppträder Saku Liimatainen, en elektronisk livemusiker, pianist och kompositör. Han väver in sin moderna finska texturerade ljudbild i Aizhans nomadiska musik. Han återskapar folktraditioner genom ambienta skikt och rytmer – och skapar ett utrymme där uråldriga röster och numerisk framtid samexisterar.<br>Tillsammans skapar de ett interkulturellt samtal som handlar lika mycket om historia och identitet som om förvandling och konstnärlig frihet.</p><p>Aizhan Sultan är en sångerska, kompositör och doktorand som är bosatt i Finland men ursprungligen kommer från Kazakstan. Hennes kompositioner hämtar inspiration från kazakisk folkmusik och samtida musik för att reflektera över hennes resa över världen och hennes inre politiska och sociala erfarenheter. Hon erbjuder en unik syntes av genrer för att kontinuerligt avkolonisera sig själv, samtidigt som hon har som mål att göra sin musik tillgänglig för en större publik. Hennes främsta mål är att representera och göra centralasiatisk, i synnerhet kazakisk, musik och konst tillgänglig för en internationell publik. Författaren ger publiken möjlighet att upptäcka mer om kazakernas konst och historia.<br> <br>Saku Liimatainen är en musiker från Helsingfors som fokuserar på elektronisk komposition, musikproduktion och pianopedagogik. Liimatainens rötter inom konsten bygger i hög grad på elektronisk improvisation och nyfikenhet på okonventionella ljudkällor. Utöver sitt arbete som soloartist och musiker har han deltagit i många olika projekt och musikgrupper med olika konstnärliga intressen, allt från klassisk musik till experimentellt ljud. Saku Liimatainen har varit involverad i flera experimentella samtida musik- och populärmusikproduktioner, bland annat som artist med Radions symfoniorkester (RSO), Gardets musikkår och Pangosmos-kollektivet. Sedan 2023 har Liimatainen också spelat synt i Knife Girls liveuppsättning och arbetat som ljudtekniker för olika finska band, bland andra Nupu och Serot.</p><p>Längd: ca 45–50 min.<br>Språk: finska, kazakiska och engelska</p>",
                "en": "<p>Immerse yourself in a unique concert where modern electronic music meets traditional Central Asian folk music.</p><p>Aizhan Sultan (KZ) and Saku Liimatainen (FI) – two artists based in Helsinki – are joining forces to propose a captivating performance. They build a bridge through their cultures and history with a unique soundscape, mixing modern electronic and modern music with traditional Central Asian folk music.<br>Singer, songwriter and researcher, Aizhan Sultan explores the themes of disability, identity and decolonial reconstruction. Through her vocal techniques and her jaw harp, she revisits traditional sounds as tools of resilience and emancipation.<br>Performing with her is Saku Liimatainen, a live electronic musician, pianist, and composer. He is weaving his modern Finnish textured soundscape into Aizhan’s nomadic music. He reimagines folk traditions through ambient layers and rhythms – creating a space where ancient voices and numerical future coexist.<br>Together, they craft an intercultural conversation, that is as much about history and identity as it is about transformation and artistic freedom.<br>Aizhan Sultan is a singer, composer and doctoral researcher based in Finland originally from Kazakhstan. Her compositions derive inspiration from Kazakh folk and contemporary music to reflect on her journey around the world and her inner political and social experiences. She offers a unique synthesis of genres to continuously decolonise herself, whilst having at heart the accessibility of her music to a greater audience. Her main goal is to represent and make accessible Central Asian, in particular Kazakh, music and art to the international audience. The author is giving the audience the opportunity to discover more the art and history of the Kazakhs.<br> <br>Saku Liimatainen is a musician from Helsinki focused on electronic composition, music production and piano pedagogy. Liimatainen's roots in the field of art rely heavily on electronic improvisation and curiosity to discover unconventional sources of sound. Besides his work as a solo artist and musician, he has taken part of many different projects and music groups with various artistic interests, ranging from classical music to experimental noise.Saku Liimatainen has been involved in several experimental contemporary music and popular music productions, including as a performer with the Finnish Radio Symphony Orchestra (RSO), Kaartin Soittokunta, and the Pangosmos collective. Since 2023, Liimatainen has also played synthesizers in Knife Girl's live lineup and has worked as a sound technician for various Finnish bands including Nupu and Serot.</p><p>Duration: approx 45–50 min<br>Languages: Finnish, Kazakh and English</p>"
            },
            "name": {
                "fi": "Aizhan Sultan and Saku Liimatainen",
                "sv": "Aizhan Sultan and Saku Liimatainen",
                "en": "Aizhan Sultan and Saku Liimatainen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67667/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67483",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/lena-the-slide-brothers/",
                        "sv": "https://www.lippu.fi/artist/lena-the-slide-brothers/",
                        "en": "https://www.lippu.fi/artist/lena-the-slide-brothers/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494017,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T09:12:51.977304Z",
                    "last_modified_time": "2025-12-03T09:12:51.977315Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781534.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494017/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T09:12:51.899383Z",
            "last_modified_time": "2026-03-20T01:13:19.861884Z",
            "date_published": null,
            "start_time": "2026-02-27T17: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": "Vuonna 2009 perustettu Lena & The Slide Brothers tarjoilee tinkimätöntä bluesia ja roots-musiikkia sydämellä ja taidolla.",
                "sv": "Lena & The Slide Brothers grundades 2009 och bjuder på kompromisslös blues- och rootsmusik från hjärtat och med talang.",
                "en": "Founded in 2009, Lena & The Slide Brothers serve up uncompromising blues and roots music with both a large heart and great talent."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F396FEFB1E4822D64C8CCBFEB308A6CC/Lena_The_Slide_Brothers_feat_Pepe_Ahlqvist",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F396FEFB1E4822D64C8CCBFEB308A6CC/Lena_The_Slide_Brothers_feat_Pepe_Ahlqvist",
                "en": "http://www.malmitalo.fi/en/events/event/F396FEFB1E4822D64C8CCBFEB308A6CC/Lena_The_Slide_Brothers_feat_Pepe_Ahlqvist"
            },
            "description": {
                "fi": "<p>Vuonna 2009 perustettu Lena & The Slide Brothers tarjoilee tinkimätöntä bluesia ja roots-musiikkia sydämellä ja taidolla.</p><p>Neljä kiiteltyä albumia julkaissut yhtye on kerännyt huomiota niin alan lehdistössä kuin radioaalloilla ympäri maailmaa.</p><p>Lavalla luvassa on vahvaa omaa materiaalia, ja myös rakastettuja bluesja roots-klassikoita – tulkittuna bändin omalla, svengaavalla otteella. Lena & The Slide Brothers on tuttu näky festareilla, klubeilla ja konserttisaleissa ympäri Suomen – ja myös kansainvälisillä areenoilla mm. Italiassa, Ranskassa, Ruotsissa, Virossa, Belgiassa ja Sveitsissä.</p><p>Yhtye työstää parhaillaan viidettä albumiaan, josta ensimmäinen single on jo julkaistu.</p><p>Lena Lindroos – laulu, basso<br>Matti Kettunen – kitarat, laulu<br>Kristian Wahlström – kitarat, laulu<br>Raine Kokkinen – rummut<br>Pepe Ahlqvist – kitara</p><p>Kesto: 2 h, sis väliaika 20min.</p>",
                "sv": "<p>Lena & The Slide Brothers grundades 2009 och bjuder på kompromisslös blues- och rootsmusik från hjärtat och med talang.</p><p>Bandet har släppt fyra berömda album och fått uppmärksamhet både inom den branschspecifika pressen och i radion runt om i världen.</p><p>På scenen utlovas eget kraftigt material och även älskade blues- och roots-klassiker – tolkade med bandets egna, svängande grepp. Lena & The Slide Brothers är en bekant syn på festivaler, klubbar och i konsertsalar runt om i Finland – och även på internationella arenor bland annat i Italien, Frankrike, Sverige, Estland, Belgien och Schweiz.<br>Bandet arbetar för närvarande med sitt femte album, av vilket den första singelplattan redan har publicerats.</p><p>Lena Lindroos – sång, bas<br> Matti Kettunen – gitarr, sång<br> Kristian Wahlström – gitarr, sång<br> Raine Kokkinen – trummor</p><p>Längd: 2 h, inkl. paus 20 min</p>",
                "en": "<p>Founded in 2009, Lena & The Slide Brothers serve up uncompromising blues and roots music with both a large heart and great talent.</p><p>With four critically acclaimed albums to their name, the band has attracted attention in music media and on radio waves around the world.</p><p>The stage will feature the band’s strong original material, as well as beloved blues and roots classics, seasoned with the band's own swinging twist. Lena & The Slide Brothers are a familiar sight at festivals, clubs and concert halls all over Finland – and also on international stages in Italy, France, Sweden, Estonia, Belgium, Switzerland and elsewhere.<br>The band is currently working on its fifth album, with its first single already having been released.</p><p>Lena Lindroos – vocals, bass<br> Matti Kettunen – guitars, vocals<br> Kristian Wahlström – guitars, vocals<br> Raine Kokkinen – drums</p><p>Duration: 2 hours, including a 20-minute intermission.</p>"
            },
            "name": {
                "fi": "Lena & The Slide Brothers feat Pepe Ahlqvist",
                "sv": "Lena & The Slide Brothers feat Pepe Ahlqvist",
                "en": "Lena & The Slide Brothers feat Pepe Ahlqvist"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67483/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67292",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/tallari-anna-morottaja-livden-lumo-kanneltalo-20937106/",
                        "sv": "https://www.lippu.fi/event/tallari-anna-morottaja-livden-lumo-kanneltalo-20937106/",
                        "en": "https://www.lippu.fi/event/tallari-anna-morottaja-livden-lumo-kanneltalo-20937106/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 12 €",
                        "sv": "15 € / 12 €",
                        "en": "15 € / 12 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493913,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-26T09:13:03.345519Z",
                    "last_modified_time": "2025-11-26T09:13:03.345535Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780848.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493913/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-26T09:13:03.232104Z",
            "last_modified_time": "2026-03-20T01:13:19.721390Z",
            "date_published": null,
            "start_time": "2026-02-27T16: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": "Anna Morottaja eli Karhu-Pekan Anna on inarinsaamelainen ja Inarissa asuva muusikko, joka livđaa, joikaa ja laulaa.",
                "sv": "Anna Morottaja eller Karhu-Pekan Anna är en enaresamisk musiker bosatt i Enare, som livđar, jojkar och sjunger.",
                "en": "Anna Morottaja aka Karhu-Pekan Anna is an Inari Saami musician from Inari, who sings livđe, joiks and sings."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3CCD4DAE8A6B4D3604ED487CF4AEE684/Anna_Morottaja_Tallari_Liv_en_lumo",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3CCD4DAE8A6B4D3604ED487CF4AEE684/Anna_Morottaja_Tallari_Liv_en_lumo",
                "en": "http://www.kanneltalo.fi/en/events/event/3CCD4DAE8A6B4D3604ED487CF4AEE684/Anna_Morottaja_Tallari_Liv_en_lumo"
            },
            "description": {
                "fi": "<p>Anna Morottaja eli Karhu-Pekan Anna on inarinsaamelainen ja Inarissa asuva muusikko, joka livđaa, joikaa ja laulaa.</p><p>Nykyisin alle tuhathenkisen inarinsaamelaisyhteisön oma musiikkiperinne livđe poikkeaa tunnetummasta pohjoissaamelaisesta joiusta. Inarinsaamen kielen tavoin livđe miltei kuoli 1900-luvun aikana, mutta 2000-luvun alussa arkistoista löytyi erityisesti Anna Morottajan isotädiltä Anna Briitta Mattukselta tallennettuja livđejä. Anna Morottaja paneutui niihin ja julkaisi työn tuloksena vuonna 2022 historian ensimmäisen livđe-levyn.</p><p>Livđessä piirretään koko ihmisen tai joskus eläimen muotokuva pikemmin äänenkäytön kuin sanallisen tarinan keinoin. Livđen lumo -konsertin ohjelma koostuu pääosin Anna Briitta Mattuksen livđeistä, joita taustoittavat tarinat niiden aiheina olevista ihmisistä. Perinteisesti livđet ovat säestyksettömiä, mutta Tallarin jäsenten laaja instrumenttiosaaminen ja tarkoin mietityt sovitukset tukevat upeasti perinteistä ilmaisua.</p><p>Anna Morottaja  livđe<br>Katri Haukilahti viulu, avainviulu, laulu<br>Arto Järvelä cittern, gogomarimba, basso, laulu<br>Esko Järvelä mandoliini, viulu, laulu<br>Sampo Korva nylonkielinen kitara, haitari, kantele, basso, laulu</p><p>Kesto: 70 min.</p>",
                "sv": "<p>Anna Morottaja eller Karhu-Pekan Anna är en enaresamisk musiker bosatt i Enare, som livđar, jojkar och sjunger.</p><p>Den numera mindre än tusen personer starka enaresamiska gemenskapens musiktradition livđe är annorlunda än den mer kända nordsamiska jojken. Precis som det enaresamiska språket dog livđe nästan ut under 1900-talet, men i början av 2000-talet hittades inspelade livđer i synnerhet av Anna Morottajas äldre släkting Anna Briitta Mattus i arkiven. Anna Morottaja fördjupade sig i dem, och resultatet blev historiens första livđe-skiva år 2022.</p><p>I livđe tecknar man ett porträtt av en människa eller ibland ett djur snarare genom röstanvändningen än genom en verbal berättelse. Programmet i konserten Livđen lumo består huvudsakligen av Anna Britta Mattus livđer, som tecknar en bakgrund till berättelser om de människor som de handlar om. Traditionellt har livđer framförts utan ackompanjemang, men Tallaris medlemmars breda instrumentala kunnande och noggrant uttänkta arrangemang stöder det traditionella uttrycket på ett fantastiskt sätt.</p><p>Anna Morottaja: livđe<br>Katri Haukilahti: violin, sång, nyckelharpa<br>Arto Järvelä: bl.a. violin, mandolin, esseharpa<br>Esko Järvelä: bl.a. violin, harmonium, tenorgitarr<br>Sampo Korva: bl.a. harmonium, dubbelhalsad gitarr</p><p>Längd: 70 min</p>",
                "en": "<p>Anna Morottaja aka Karhu-Pekan Anna is an Inari Saami musician from Inari, who sings livđe, joiks and sings.</p><p>Today, the Inari Saami community of less than a thousand people has its own musical tradition, livđe, which differs from the better-known North Saami joik. Like the Inari Saami language, livđe almost died out during the 20th century, but in the early 2000s, livđe recorded by Anna Morottaja's great-aunt Anna Briitta Mattunen was found in the archives. Anna Morottaja explored them and released the first livđe album in history in 2022.</p><p>Livđe paints a portrait of a whole person, or sometimes an animal, through the use of sound rather than a narrative. The ‘Livđen lumo’ (Enchantment of livđe) concert programme consists mainly of livđe by Anna Briitta Mattunen, which are accompanied by stories about the people they are about. Traditionally, livđes are unaccompanied, but the extensive instrumental expertise of the members of Tallari and carefully considered arrangements support the traditional expression beautifully.</p><p>Anna Morottaja: livđe<br>Katri Haukilahti: violin, vocals, keyed fiddle<br>Arto Järvelä: violin, mandolin, esseharpa, etc.<br>Esko Järvelä: violin, reed organ, tenor guitar, etc.<br>Sampo Korva: reed organ, guitar, 2-string, etc.</p><p>Duration: 70 min</p>"
            },
            "name": {
                "fi": "Anna Morottaja & Tallari: Livđen lumo",
                "sv": "Anna Morottaja & Tallari: Livđen lumo",
                "en": "Anna Morottaja & Tallari: Livđen lumo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67292/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67364",
            "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-epic-elvis-presley-in-concert-malmitalo-21299758/",
                        "sv": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299758/",
                        "en": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299758/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494739,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T13:14:03.210754Z",
                    "last_modified_time": "2026-02-05T13:14:03.210770Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781038.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T13:14:03.090717Z",
            "last_modified_time": "2026-03-20T01:13:19.600133Z",
            "date_published": null,
            "start_time": "2026-02-27T16: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": "EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E74AB7D2C0657C190CD4AD8E6AAFF569/_EPiC_Elvis_Presley_in_Concert",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E74AB7D2C0657C190CD4AD8E6AAFF569/_EPiC_Elvis_Presley_in_Concert",
                "en": "http://www.malmitalo.fi/en/events/event/E74AB7D2C0657C190CD4AD8E6AAFF569/_EPiC_Elvis_Presley_in_Concert"
            },
            "description": {
                "fi": "<p>EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi.</p><p>Baz Luhrmannin ainutlaatuisessa elokuvaelämyksessä Elvis laulaa ja kertoo tarinansa tavalla, jollaista ei ole koettu aiemmin.</p><p>Elokuva pohjautuu arkistoista löytyneeseen 68 laatikolliseen ennennäkemätöntä kuvamateriaalia. Ohjaaja Baz Luhrmannin tiimi on restauroinut ja synkronoinut mykät arkistolöydöt vastaamaan aitoja äänitallenteita. Elokuva yhdistää ikonisia lavatulkintoja, kuten vuoden 1957 Havaijin ”kultatakki”-esiintymisen, sekä harvinaisen 45-minuuttisen tallenteen, jolla Elvis kertoo itse omasta elämästään.</p><p>Ikäraja: ei tiedossa<br>Kesto: 96 min<br>Ensi-ilta: 27.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "EPiC: Elvis Presley in Concert – Kino Helios",
                "sv": "EPiC: Elvis Presley in Concert – Kino Helios",
                "en": "EPiC: Elvis Presley in Concert – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67364/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68006",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494608,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T15:13:34.819386Z",
                    "last_modified_time": "2026-01-22T15:13:34.819402Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774609.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494608/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-22T15:13:34.732193Z",
            "last_modified_time": "2026-03-20T01:13:19.493549Z",
            "date_published": null,
            "start_time": "2026-02-27T16: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": "Vuoluklubi esittelee Vuosaaren lukion nuorta voimaa ja nousevia kykyjä.",
                "sv": "Vuoluklubi presenterar ung energi och stigande stjärnor från gymnasiet Vuosaaren lukio.",
                "en": "Vuoluklubi showcases the young power and emerging talents of Vuosaari Upper Secondary School."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EEFF1DE3300FDC4DFACA6E0CFD86DB9D/Vuosaaren_lukion_konsertti",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/EEFF1DE3300FDC4DFACA6E0CFD86DB9D/Konsert_pa_Vuosaaren_lukio",
                "en": "http://www.vuotalo.fi/en/events/event/EEFF1DE3300FDC4DFACA6E0CFD86DB9D/Concert_at_Vuosaari_Upper_Secondary_School"
            },
            "description": {
                "fi": "<p>Vuoluklubi esittelee Vuosaaren lukion nuorta voimaa ja nousevia kykyjä.</p><p>Vuosaaren lukion musiikkilinjan ja yleislinjan nuoret esiintyvät omien bändiensä kanssa ja soolona. Lukiolaiset itse vastaavat ohjelman sisällön tuottamisesta. Luvassa on siis monipuolinen kattaus musiikkityylejä - tilutuksesta balladeihin. Lämpimästi tervetuloa seuraamaan Vuoluklubin musiikkimaratonia!</p><p>Kesto: noin 2 t</p><p>Vapaa pääsy</p><p>Myös Kultuksen kautta paikkoja:</p><p>https://kultus.hel.fi/fi/event/kultus:agnohfzxuy?additionalCriteria=kultus%3A5&returnPath=%2Fsearch</p>",
                "sv": "<p>Vuoluklubi presenterar ung energi och stigande stjärnor från gymnasiet Vuosaaren lukio.</p><p>Ungdomar från Vuosaaren lukios musiklinje och allmänna linje uppträder med sina band och solo. Gymnasisterna ansvarar själva för programmets innehåll. Här utlovas alltså ett mångsidigt urval av musikstilar – från shred till ballader. Varmt välkommen till Vuoluklubis musikmaraton!</p><p>Längd: ca 2 h</p><p>Fritt inträde</p>",
                "en": "<p>Vuoluklubi showcases the young power and emerging talents of Vuosaari Upper Secondary School.</p><p>Young people from Vuosaari Upper Secondary School’s music and general education lines will hit the stage to perform as bands and solo artists. The content of the programme is produced by the young people themselves. Accordingly, the event will feature a diverse range of musical styles – from shredding to ballads.</p><p>You are warmly invited to witness the Vuoluklubi music marathon!</p><p>Duration: roughly 2 h</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Vuosaaren lukion konsertti",
                "sv": "Konsert på Vuosaaren lukio",
                "en": "Concert at Vuosaari Upper Secondary School"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68006/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67920",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494380,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T14:13:09.733727Z",
                    "last_modified_time": "2026-01-05T14:13:09.733744Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780648.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T14:13:09.626646Z",
            "last_modified_time": "2026-03-20T01:13:19.384187Z",
            "date_published": null,
            "start_time": "2026-02-27T15: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": "Performanssi pakoon lähteneen henkilön kiitollisuuden painosta ja riittämättömyyden tunteista.",
                "sv": "En performance om tyngden av tacksamhet och känslor av otillräcklighet hos en flykting.",
                "en": "A performance about the weight of gratitude and feelings of inadequacy of a person who has fled."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9B6E17A7D21B87B802593037E7C29AEC/Saban_Ramadani_Ma_Lupaan_Ma_Vannon",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9B6E17A7D21B87B802593037E7C29AEC/Saban_Ramadani_Jag_lovar_jag_svar_",
                "en": "http://www.stoa.fi/en/events/event/9B6E17A7D21B87B802593037E7C29AEC/Saban_Ramadani_Ma_Lupaan_Ma_Vannon"
            },
            "description": {
                "fi": "<p>Performanssi pakoon lähteneen henkilön kiitollisuuden painosta ja riittämättömyyden tunteista.</p><p>Performanssiteoksessa nähdään henkilö pesemässä valkoisen tilan lattiaa lasisen sangon vedellä, katseen suunta on portaikon huipussa. Kertoja pyrkii ilmaisemaan kuuntelijalle kiitollisuutensa maahanmuutosta, siitä ihanasta uhrauksesta, jonka huostaan ottanut maa on tehnyt pakoon lähteneelle henkilölle. Narratiivissa kuitenkin piilee ihmisarvon toiseutta, tunteesta, että ei koskaan tule riittämään. Hän pesee, pesee, pesee lattiaa päänsä alas laittaa.</p><p>Kuin Sisyfoksen tavoin, kivi vierähtää alas ja kierre on loputon. Narraatiossa henkilö toivoisi sanovansa ääneen turhautumisensa riittämättömyydestä, mutta muistuttaa itseään kiitollisuudesta, sillä sitä toisen luokan kansalainen tekee, tai, ainakin näin oletetaan. Korottamalla ääntänsä hän saattaa vihdoinkin ottaa tilaa, mutta mitkä seuraamukset seuraavat perässä?</p><p>Kesto: n. 30 min, ei väliaikaa<br>Kieli: englanti</p><p>Vapaa pääsy</p><p><b>Työryhmä:</b><br>Taiteellinen työ, esiintyjä: Saban Ramadani<br>Tuottaja: Wisam Elfadl</p>",
                "sv": "<p>En performance om tyngden av tacksamhet och känslor av otillräcklighet hos en flykting.</p><p>I det här performanceverket får vi se en person som tvättar golvet i ett vitt rum med en vattenhink av glas, med blicken riktad mot trappans topp. Berättaren försöker uttrycka sin tacksamhet för migrationen, den underbara uppoffring som det mottagande landet har gjort för flyktingen. I narrativet döljer sig ändå ett utanförskap i människovärdet, en känsla av att aldrig kunna räcka till. Han tvättar, tvättar, tvättar golvet lägger ner sitt huvud.</p><p>Precis som för Sisyfos rullar stenen ner och spiralen är oändlig. Personen i berättelsen vill uttrycka sin frustration över otillräckligheten, men påminner sig själv om tacksamheten, för det gör en andra klassens medborgare, eller det är i alla fall vad man antar. Genom att höja sin röst kan han äntligen ta plats, men vilka konsekvenser får det?</p><p>Längd ca 30 min., ingen paus.<br>Språk: engelska</p><p>Fritt inträde</p><p>Arbetsgrupp:<br>Konstnärligt arbete, artist: Saban Ramadani<br>Producent: Wisam Elfadl</p>",
                "en": "<p>A performance about the weight of gratitude and feelings of inadequacy of a person who has fled.</p><p>In the performance, a person is washing the floor of a white space with water from a glass bucket, with their gaze directed at the top of a staircase. The narrator tries to express to the listener their gratitude for immigration, for the wonderful sacrifice made by the host country to the person who has fled. However, there is an otherness of human dignity in the narrative, a sense that they will never be enough. They wash, wash, wash the floor and put their head down.</p><p>The Sisyphean stone rolls down again and the spiral is endless. In the narrative, the person wishes they could express their frustration at their inadequacy out loud, but reminds themselves to be grateful, because that's what a second-class citizen does, or, at least, that's what is assumed. By raising their voice, they could finally make room for themselves, but what consequences would that have?</p><p>Duration approx. 30 min, no intermission<br>Language: English</p><p>Free entry!</p><p>Creative team:<br>Artistic work, performer: Saban Ramadani<br>Producer: Wisam Elfadl</p>"
            },
            "name": {
                "fi": "Saban Ramadani: Mä Lupaan, Mä Vannon",
                "sv": "Saban Ramadani: ”Jag lovar, jag svär”",
                "en": "Saban Ramadani: Mä Lupaan, Mä Vannon"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67920/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67363",
            "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-21299552/",
                        "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299552/",
                        "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299552/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494724,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T08:13:41.589857Z",
                    "last_modified_time": "2026-02-05T08:13:41.589881Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781037.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494724/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T08:13:41.469222Z",
            "last_modified_time": "2026-03-20T01:13:19.278703Z",
            "date_published": null,
            "start_time": "2026-02-27T13: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/4FF7C091875EC7A22248FFE74CAB0FF9/Luottomies-elokuva_Lepoloma_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4FF7C091875EC7A22248FFE74CAB0FF9/Luottomies-elokuva_Lepoloma_7_",
                "en": "http://www.malmitalo.fi/en/events/event/4FF7C091875EC7A22248FFE74CAB0FF9/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:67363/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67662",
            "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: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: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493953,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T16:13:00.636473Z",
                    "last_modified_time": "2025-11-28T16:13:00.636494Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782306.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493953/?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-11-28T16:13:00.531590Z",
            "last_modified_time": "2026-03-20T01:13:19.143957Z",
            "date_published": null,
            "start_time": "2026-02-27T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.",
                "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.",
                "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi",
                "en": "http://www.annantalo.fi/en/events/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi"
            },
            "description": {
                "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 6–12 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p><p>Esitys on suunnattu kouluryhmille, paikkavaraukset 27.1. klo 8 alkaen Kultuksesta: https://kultus.hel.fi/fi</p>",
                "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>",
                "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p><p>The performance is aimed at school groups, reservations are available from 8 am on January 27th: https://kultus.hel.fi/fi</p>"
            },
            "name": {
                "fi": "TaikaBox: Louhi – koululaisryhmille",
                "sv": "TaikaBox: Louhi – for skolgrupper",
                "en": "TaikaBox: Louhi – for school groups"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67662/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67661",
            "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: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: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T16:13:00.291451Z",
                    "last_modified_time": "2025-11-28T16:13:00.291472Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782305.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493952/?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-11-28T16:13:00.177412Z",
            "last_modified_time": "2026-03-20T01:13:18.974983Z",
            "date_published": null,
            "start_time": "2026-02-27T07: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": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.",
                "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.",
                "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi",
                "en": "http://www.annantalo.fi/en/events/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi"
            },
            "description": {
                "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 6–12 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p><p>Esitys on suunnattu kouluryhmille, paikkavaraukset 27.1. klo 8 alkaen Kultuksesta: https://kultus.hel.fi/fi</p>",
                "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>",
                "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p><p>The performance is aimed at school groups, reservations are available from 8 am on January 27th: https://kultus.hel.fi/fi</p>"
            },
            "name": {
                "fi": "TaikaBox: Louhi – koululaisryhmille",
                "sv": "TaikaBox: Louhi – för skolgrupper",
                "en": "TaikaBox: Louhi – for school groups"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67661/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68002",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494600,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T09:12:47.938907Z",
                    "last_modified_time": "2026-01-22T09:12:47.938920Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778723.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494600/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-22T09:12:47.750544Z",
            "last_modified_time": "2026-03-20T01:13:18.766066Z",
            "date_published": null,
            "start_time": "2026-02-27",
            "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": "Kalevalan päivän alla karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.",
                "sv": "Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.",
                "en": "At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1308161FFCAD7F99476F2A02906F7961/Karjalainen_taidehetki_lapsille",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1308161FFCAD7F99476F2A02906F7961/Kalevaladagens_karelska_konststund",
                "en": "http://www.vuotalo.fi/en/events/event/1308161FFCAD7F99476F2A02906F7961/Kalevala_Day_Karelian_Art_Moment"
            },
            "description": {
                "fi": "<p>Kalevalan päivän alla karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.</p><p>Opimme myös, mikä kumma on Kalevala ja miten se liittyy karjalaiseen kulttuuriin.</p><p>Työpajassa kuullaan sävelmiä jouhikolla karjalaiseen tapaan. Tarinoista ja musiikista inspiroituneena teemme yhdessä taidetta hiilellä maalaten. Työpajassa opimme valmistamaan itse oman metsäisen hiilimaalin, jota käytetään oman taideteoksen tekemisessä.</p><p>Työpajassa soittaa karjalainen kuvataideopettaja Verna Kuntsi.</p><p>Taidepajan opettajat: Seikkailutaidekoulu / Verna Kuntsi ja Satu Sipilä.</p><p>Kohderyhmä: 5-6-vuotiaat, oppilaat vuosiluokilta 1-2</p><p>Ryhmäkoko max.30</p><p>Tuokion kesto on noin 45 min.</p><p>klo 9.00–9.45 <br>klo 10.30–11.15 <br>klo 13.00–13.45</p><p>Ryhmille on ennakkoilmoittautuminen Kultuksen kautta:<br>https://kultus.hel.fi/fi/event/kultus:agnohdrz4e?places=tprek%3A7260&returnPath=%2Fsearch</p>",
                "sv": "<p>Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.</p><p>Vi får också veta vad Kalevala är för något och hur den hänger ihop med den karelska kulturen.</p><p>I verkstaden får vi höra Wilhelmiina Halonens melodier på en stråkharpa på karelskt vis. Inspirerade av berättelser och musik skapar vi tillsammans konst genom att måla med kol. I verkstaden lär vi oss själv tillverka målfärg av kol med skogskaraktär. Vi använder målfärgen när vi skapar våra egna konstverk.<br>I verkstaden lär ut och spelar den karelska bildkonstläraren Verna Kuntsi.</p><p>Stunden tar cirka 45 min.</p><p>Målgrupp: 5–6-åringar, elever på årskurserna 1–2</p><p>Gruppstorlek: max 30</p><p>klo 9.00–9.45 <br>klo 10.30–11.15 <br>klo 13.00–13.45</p><p>Förhandsanmälan för grupper på kultus.hel.fi</p>",
                "en": "<p>At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art.</p><p>We will also learn what Kalevala is and how it relates to Karelian culture.</p><p>In the workshop, we will hear Wilhelmiina Halonen’s melodies with a bowed harp, the Karelian way. Inspired by stories and music, we will make art together with charcoal. In the workshop, we will learn how to make our own woody charcoal paint, which we will use to make our own artwork.</p><p>The workshop is taught by Karelian art teacher Verna Kuntsi, who will also play music.</p><p>The duration of the art moment is approximately 45 minutes.</p><p>Target group: 5–6 years, grades 1–2</p><p>Group size: max 30</p><p>klo 9.00–9.45 <br>klo 10.30–11.15 <br>klo 13.00–13.45</p><p>Pre-registration for groups: kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Karjalainen taidehetki lapsille",
                "sv": "Kalevaladagens karelska konststund",
                "en": "Kalevala Day Karelian Art Moment"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67955",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T13:12:56.944177Z",
                    "last_modified_time": "2026-01-09T13:12:56.944191Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783769.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T13:12:56.800449Z",
            "last_modified_time": "2026-03-20T01:13:18.400864Z",
            "date_published": null,
            "start_time": "2026-02-26T16:00:00Z",
            "end_time": "2026-05-28T16: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 viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu kaikille yli 12 -vuotiaille nuorista senioreihin.",
                "sv": "Välkommen till en avkopplande stund med dans, lek och den lokala naturen!",
                "en": "Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8064A2C526238043DAC1D2E0FD83978A/Tanssi-_ja_luontotyopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8064A2C526238043DAC1D2E0FD83978A/Dans-_och_naturverkstader",
                "en": "http://www.vuotalo.fi/en/events/event/8064A2C526238043DAC1D2E0FD83978A/Dance_and_nature_workshops"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu kaikille yli 12 -vuotiaille nuorista senioreihin.</p><p>Arjen keskellä on välillä vaikea löytää hetkiä vain olla yhdessä ja leikkiä tai vaikkapa mennä tutustumaan lähimetsään. Työpajat tarjoavat mahdollisuuden eri-ikäisille ihmisille, aikuisille ja lapsille, viettää kiireetöntä ja vapaata aikaa ja olla yhdessä tanssin, leikin ja lähiluonnon parissa.</p><p>Työpajoissa keskitytään erityisesti leikkimiseen ja yhdessä liikkumiseen tanssillisten tehtävien kautta. Työpajojen aiheet kulkevat mielikuvitus leikeistä tarinoihin, peleihin, metsässä kulkemiseen ja tutkimiseen yhdessä.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa kehollisia, intuitiivisia ja kuvitteellisia tietämisen tapoja. Hanke kehittää demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi</p><p>Työpaja ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p>Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p>Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen<br>artofknowing2025@gmail.com</p><p>Ilmoittautumisen yhteydessä kerro:<br>Osallistujien nimi / nimet<br>Puhelinnumero<br>Ryhmä, johon osallistutaan</p><p>Vapaa pääsy</p><p>Työpajoja ohjaavat tanssitaiteilija-tanssipedagogi Jenni Koistinen ja tanssitaiteilija-koreografi Virva Talonen.</p><p>Tule mukaan torstaisin klo 18.30–19.45!<br>Päivämäärät: 26.2., 5.3., 12.3, 19.3, 26.3, 9.4, 16.4, 23.4, 7.5, 21.5, 28.5.2026</p><p>Järjestämme tanssi- ja luontotyöpajoja myös 7-12-vuotiaille lapsille oman aikuisen kanssa torstaisin 26.2.–28.5. klo 17.30–18.15 sekä 5-6 v. lapsille oman aikuisen kanssa kanssa lauantaisin 28.2.–6.6. klo 10.30-11.45.</p><p>HUOM! Kaikkien ryhmien yhteinen viimeinen kerta poikkeuksellisesti la 6.6.26 klo 10.30–12.<br>to 26.2.2026 klo 18.30 - to 28.5.2026 klo 19.45</p>",
                "sv": "<p>Välkommen till en avkopplande stund med dans, lek och den lokala naturen!</p><p>Mitt i vardagen kan det vara svårt att hitta stunder för att bara vara tillsammans och leka eller gå på upptäcktsfärd i den lokala skogen. Verkstäderna erbjuder en möjlighet för personer i olika åldrar, vuxna och barn, att umgås fritt och utan stress, dansa, leka och njuta av den lokala naturen.</p><p>I verkstäderna fokuserar vi särskilt på lek och att röra oss tillsammans genom dansuppgifter. Verkstädernas teman rör sig från fantasilekar till berättelser, spel, promenader i naturen och gemensamt utforskande.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Kone-stiftelsen och där vi utvecklar kroppsliga, intuitiva och tänkta sätt att veta i samarbete med forskare och danskonstnärer. Projektet utvecklar demokratiska och inkluderande metoder där lek, kroppslighet och natur är viktiga källor till kunskap.</p><p>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi</p><p>Kursen kräver ingen tidigare bakgrund inom dans eller erfarenhet av dans. Kursen leds på finska, och vid behov använder vi också svenska och engelska.</p><p>Verkstäderna hålls i Lilla salen i Nordhuset och i närliggande skogar i Nordsjö.</p><p>De anmälda till verkstäderna får närmare information om var de ska samlas innan kursen börjar.</p><p>LEDARE FÖR VERKSTÄDERNA: Verkstäderna leds av danskonstnären och -pedagogen Jenni Koistinen samt danskonstnären och koreografen Virva Talonen.</p><p><b>Anmälan sker via e-post till adressen:</b> artofknowing2025@gmail.com</p><p>I samband med anmälan, vänligen uppge:<br>Deltagarens namn / deltagarnas namn<br>Telefonnummer<br>Den grupp som man anmäler sig till</p><p>Vi ordnar dans- och naturworkshops även förvVuxna och barn 7–12 år på torsdagar 26.2.–28.5. kl. 17.00–18.15 samt för barn i åldern 5–6 år tillsammans med en egen vuxen på lördagar 28.2.–6.6. kl. 10.30–11.45.</p><p>OBS! Alla gruppers gemensamma sista träff hålls undantagsvis lördagen den 6.6.26 kl. 10.30–12.</p>",
                "en": "<p>Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!</p><p>In the busyness of everyday life, it can be hard to find moments to just be together and play, or perhaps go explore the local forest. These workshops offer an opportunity for people of all ages, adults and children alike, to spend some unhurried and free time together, dancing, playing and enjoying the local nature.</p><p>The workshops will focus particularly on playing and moving together through dance-related activities. The workshop themes range from imagination play to stories, games, walking in the woods and exploring things together.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop bodily, intuitive and imaginary ways of knowing. The project develops democratic and participatory methods in which play, bodiliness and nature are important sources of knowing.</p><p>If you participate in the workshops, you can also take part in a survey if you wish. For more information on the survey, please contact: anna.rainio@helsinki.fi</p><p>No previous dance background or experience is required for attending the course. The course is instructed in Finnish, and we also speak Swedish and English where necessary. <br>The workshops will be held in the Small Hall room of Vuotalo and in the nearby forests of Vuosaari.</p><p>Those registered for the workshops will receive more information about the assembly places before the course starts.</p><p>WORKSHOP INSTRUCTORS: The workshops will be instructed by dance artist and educator Jenni Koistinen and dance artist and choreographer Virva Talonen.</p><p><b>Registration takes place by email to the following address:</b><br>artofknowing2025@gmail.com<br>When registering, please provide:<br>Participant’s name / participants’ names<br>Phone number<br>The group you are registering for</p><p>We also organise dance and nature workshops for all ages on Thursdays from 26 Feb to 28 May, from 6:30 pm to 7:45 pm, as well as workshops for 5–6-year-old children together with their own adult on Saturdays from 28 Feb to 6 June, from 10:30 am to 11:45 am.</p><p>NOTE! The final session for all groups will exceptionally be held together on Saturday 6 June 2026, from 10:30 am to 12:00 pm.</p>"
            },
            "name": {
                "fi": "Tanssi- ja luontotyöpajat – Kaikille yli 12-vuotiaille",
                "sv": "Dans- och naturverkstäder – Åldersgruppen 12+",
                "en": "Dance and nature workshops – Suitable for everyone 12 yrs +"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67955/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67275",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3994678",
                        "sv": "https://www.lippu.fi/eventseries/name-3994678",
                        "en": "https://www.lippu.fi/eventseries/name-3994678"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80€/20€",
                        "sv": "24,80€/20€",
                        "en": "24,80€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493835,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-18T13:12:54.563586Z",
                    "last_modified_time": "2025-11-18T13:12:54.563599Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780809.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493835/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-18T13:12:54.450967Z",
            "last_modified_time": "2026-03-20T01:13:18.168688Z",
            "date_published": null,
            "start_time": "2026-02-26T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Klovnikaksikko Secret (Amira Khalifa) ja TikTak (Nora Raikamo) haluavat räjäyttää kaikkien tajunnan musikaalikentällä.",
                "sv": "Clownduon Secret (Amira Khalifa) och TikTak (Nora Raikamo) vill spränga allas medvetande på musikalfältet.",
                "en": "The clown duo Secret (Amira Khalifa) and TikTak (Nora Raikamo) want to blow everyone's minds in the musical scene."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E4BBC7A1BFBDD9D7C6055FFD6E8F5B9A/Red_Nose_Company_Taydellinen_musikaali_-_Matka_manalaan",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E4BBC7A1BFBDD9D7C6055FFD6E8F5B9A/Red_Nose_Company_Taydellinen_musikaali_matka_manalaan_Den_perfekta_musikalen_en_resa_till_underjorden_",
                "en": "http://www.kanneltalo.fi/en/events/event/E4BBC7A1BFBDD9D7C6055FFD6E8F5B9A/Red_Nose_Company_Taydellinen_musikaali_-_Matka_manalaan"
            },
            "description": {
                "fi": "<p>Klovnikaksikko Secret (Amira Khalifa) ja TikTak (Nora Raikamo) haluavat räjäyttää kaikkien tajunnan musikaalikentällä.</p><p>Nuoruuden toteutumatta jääneet haaveet ja kaikki uran aikana tekemättä jääneet musikaalien pääroolit mielessään he päättävät luoda yhdessä klovnimuusikko Delta Airwavesin (Jussu Pöyhönen) kanssa täydellisen musikaalin, jonka säveltäminen on Deltan suuri unelma. <br> <br>Hamutessaan kohti teatterikentän taivaita klovnit lipsahtelevat vääjäämättä kohti maallisten tomumajojensa rajallisuutta. Miten tavoitellaan täydellistä, kun jalka ei enää taivu spagaatiin eikä nouse korvien korkeudelle? Klovnit joutuvat kohtaamaan sen armottoman tosiasian, että ruumis rapistuu eikä elämä jatku ikuisesti. Onko heillä käsillään viimein se käännekohta, jonka jälkeen suunta on alaspäin, kohti luopumista ja kuolemaa, kohti manan majoja? <br> <br>Klovnitriomme etsii täydellisellä matkallaan opastusta niin Lemminkäisen äidin uroteoista kuin sumerilaisen rakkauden ja sodan jumalatar Inannan manalaan laskeutumisen myytistä. Heidän ainoa vaihtoehtonsa on laulaa sisäiset tuntonsa kertakaikkisen kuuluviksi ja tanssia ruumiinsa rajat näkyviksi. Eihän heillä ole enää muuta menetettävää kuin huumori. <br> <br>Täydellinen musikaali – matka manalaan on kotimainen kantaesitys. Secret ja TikTak ovat valloittaneet yleisön jo edellisessä valaistumista tavoittelevassa Mieletön-esityksessään. <br> <br>Työryhmä <br>Ohjaus: Niina Sillanpää <br>Näyttämöllä: Amira Khalifa, Nora Raikamo ja Jussu Pöyhönen<br>Musiikki ja äänisuunnittelu: Jussu Pöyhönen<br>Valosuunnittelu: Juha Tuisku <br>Pukusuunnittelu: Noora Salmi <br>Koreografia: Kaisa Niemi <br>Tuotanto: Red Nose Company ja Kanneltalo <br> <br>Ensi-ilta Kanneltalossa to 5.2.2026 klo 18.00 <br>Muut esitykset: la 7.2. klo 15, ti 24.2. klo 18, ke 25.2. klo 18, to 26.2.2026 klo 18 <br>Kesto: 2 h (sis. väliaika)<br>Ikäsuositus: 14+</p>",
                "sv": "<p>Clownduon Secret (Amira Khalifa) och TikTak (Nora Raikamo) vill spränga allas medvetande på musikalfältet.</p><p>De tänker på alla ouppfyllda ungdomsdrömmar och musikalhuvudroller som de inte gjort under sin karriär, och har nu tillsammans med clownmusikern Delta Airwaves (Jussu Pöyhönen) bestämt sig för att skapa den perfekta musikalen, som de är Deltas stora dröm att komponera. <br> <br>I sin strävan mot teaterfältets himlar halkar clownerna ohjälpligt mot det jordiska stoftets begränsningar. Hur strävar man efter perfektion när benen inte längre går ner i spagat eller går att lyfta till öronhöjd? Clownerna ställs inför det obönhörliga faktum att kroppen förfaller och att livet inte fortsätter för evigt. Står de till sist vid den vändpunkt där allting börjar gå neråt, mot slutet och döden, mot de sälla jaktmarkerna? <br> <br>På sin perfekta resa söker vår clowntrio vägledning såväl i Lemminkäinens mors stordåd som i myten om den sumeriska kärleks- och krigsgudinnan Inannas resa till dödsriket. Deras enda alternativ är att sjunga fram sina inre känslor så att de kan höras och att dansa sina kroppsliga gränser synliga. De har ju inte längre någonting annat än humorn att förlora. <br> <br>Täydellinen musikaali – matka manalaan är ett inhemskt uruppförande. Secret och TikTak har charmat publiken redan med sin tidigare föreställning Mieletön, där de strävade efter upplysning. <br> <br>Arbetsgrupp <br>Regi: Niina Sillanpää <br>På scenen: Amira Khalifa, Nora Raikamo och Jussu Pöyhönen<br>Musik och ljuddesign: Jussu Pöyhönen<br>Ljusdesign: Juha Tuisku <br>Kostym: Noora Salmi<br>Koreografi: Kaisa Niemi <br>Produktion: Red Nose Company och Gamlasgården <br> <br>Premiär på gamlasgården torsdag 5.2.2026 kl. 18.00 <br>Övriga föreställningar: lördag 7.2 kl. 15, tisdag 24.2 kl. 18, onsdag 25.2 kl. 18, torsdag 26.2.2026 kl. 18 <br> <br>Åldersrekommendation: 14+</p>",
                "en": "<p>The clown duo Secret (Amira Khalifa) and TikTak (Nora Raikamo) want to blow everyone's minds in the musical scene.</p><p>With the unfulfilled dreams of their youth and all the musical roles they have missed out on during their careers in mind, they decide to work together with clown musician Delta Airwaves (Jussu Pöyhönen) to create the perfect musical, which is Delta's dream composition. <br> <br>As the clowns clamber towards theatre heaven, they inevitably slip towards the confines of their earthly prisons. How can you aim for perfection when your legs no longer stretch into the splits or reach your ears? The clowns are faced with the brutal fact that the body decays and life does not go on forever. Are they finally at the point where the direction is taken downwards, towards abandonment and death, towards the underworld? <br> <br>On their perfect journey, our clown trio seeks guidance from both the feats of the mother of Lemminkäinen and the myth of the Sumerian goddess of love and war, Inanna, descending into the underworld. Their only option is to sing their inner feelings out loud and dance their body's limits into view. After all, they have nothing left to lose but humour. <br> <br>‘Täydellinen musikaali – matka manalaan’ (A perfect musical – the journey to the underworld) is a Finnish premiere. Secret and TikTak have already captivated audiences with their previous enlightenment-seeking performance, ‘Mieletön’ (Mindless). <br> <br>Creative team <br>Directed by: Niina Sillanpää <br>On stage: Amira Khalifa, Nora Raikamo and Jussu Pöyhönen<br>Music and sound design: Jussu Pöyhönen<br>Light design: Juha Tuisku <br>Costume design: Noora Salmi <br>Choreography: Kaisa Niemi <br>Production: Red Nose Company and Kanneltalo <br> <br>Premiere at Kanneltalo on Thu 5 February 2026 at 18.00 <br>Other performances: Sat 7 February at 15.00, Tue 24 February at 18.00, Wed 25 February at 18.00, Thu 26 February 2026 at 18.00 <br> <br>Recommended age: 14+</p>"
            },
            "name": {
                "fi": "Red Nose Company: Täydellinen musikaali - Matka manalaan",
                "sv": "Red Nose Company: Täydellinen musikaali – matka manalaan (Den perfekta musikalen – en resa till underjorden)",
                "en": "Red Nose Company: Täydellinen musikaali - Matka manalaan"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67275/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}