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&keyword=yso%3Ap4354&page=38
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 7514,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=39",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=37"
    },
    "data": [
        {
            "id": "kulke:67657",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/aude-busson-manndyr-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21026982/",
                        "sv": "https://www.lippu.fi/event/aude-busson-manndyr-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21026982/",
                        "en": "https://www.lippu.fi/event/aude-busson-manndyr-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21026982/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493956,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T16:13:02.098085Z",
                    "last_modified_time": "2025-11-28T16:13:02.098099Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782301.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493956/?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.991498Z",
            "last_modified_time": "2026-03-20T01:13:36.024368Z",
            "date_published": null,
            "start_time": "2026-03-15T11: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,
            "name": {
                "fi": "Aude Busson: Manndýr – Bravo! -festivaali",
                "sv": "Aude Busson: Manndýr – Bravo! Festival",
                "en": "Aude Busson: Manndýr – Bravo! Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Millaista on olla ihminen? Tai olla lapsi? Manndýr on osallistuttava esitys ihmiskunnasta ja lasten paikasta maailmassa.",
                "sv": "Hur är det att vara människa? Eller att vara ett barn? Manndýr är en inkluderande föreställning om mänskligheten och barnens plats i världen.",
                "en": "What is it like to be human? To be a child? Manndýr is a participatory performance about humankind and children’s role in the world."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C8A1972D865C53935A588FC4736FA41F/Aude_Busson_Mannd_r",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/C8A1972D865C53935A588FC4736FA41F/Aude_Busson_Mannd_r",
                "en": "http://www.annantalo.fi/en/events/event/C8A1972D865C53935A588FC4736FA41F/Aude_Busson_Mannd_r"
            },
            "description": {
                "fi": "<p>Millaista on olla ihminen? Tai olla lapsi? Manndýr on osallistuttava esitys ihmiskunnasta ja lasten paikasta maailmassa.</p><p>Aude Bussonin kollaasimaisessa teoksessa kuullaan lasten omia ajatuksia liittyen elämän suuriin kysymyksiin.<br> <br>Lasten ajatukset ja Borkon musiikki muodostavat esityksen äänimaailman ja luovat intiimin ja pohdiskelevan tunnelman.</p><p>Lavalla esiintyjä Aude Busson seuraa lasten ääniä ja jäljittää tarinaa ihmiskunnasta ja sen suhteesta maailmaan. Manndýrissä yleisö kutsutaan astumaan maailmaan, jossa lapset itse kertovat koko tarinan ja monet kysymykset jäävät vastaamatta. Esitys on paikka leikille ja herkälle tutkimiselle.<br> <br>Manndýriä on esitetty yli 60 kertaa teattereissa ja kouluissa Islannissa, Ranskassa ja Norjassa.</p><p>Kesto n. 45 min<br>Esityskieli: suomi<br>Ikäsuositus: 3–10-vuotiaat</p><p>Konsepti, esiintyjä: Aude Busson<br>Lavastus: Sigríður Sunna Reynisdóttir<br>Musiikki: Björn Kristjánsson (Borko)</p><p>Kiitos: Taetteriryhmä Linnunrata, Marjut Maristo ja Juha-Matti Kauppinen</p>",
                "sv": "<p>Hur är det att vara människa? Eller att vara ett barn? Manndýr är en inkluderande föreställning om mänskligheten och barnens plats i världen.</p><p>I Aude Bussons kollageliknande verk får vi höra barnens egna tankar om livets stora frågor.<br> <br>Barnens tankar och Borkos musik bildar föreställningens ljudlandskap och skapar en intim och reflekterande stämning. På scenen följer Aude Busson barnens röster och spårar berättelsen om mänskligheten och dess relation till världen. I Manndýr bjuds publiken in till en värld där barnen själva berättar hela historien och många frågor förblir obesvarade. Föreställningen är en plats för lek och känsligt utforskande. <br>Manndýr har framförts mer än 60 gånger på teatrar och skolor på Island, i Frankrike och i Norge.</p><p>Längd: ca 45 minuter<br>Föreställningens språk: finska<br>Åldersrekommendation: 3–10-åringar</p><p>Skapare:<br>Koncept, artist: Aude Busson<br>Iscensättning: Sigríður Sunna Reynisdóttir<br>Musik: Björn Kristjánsson (Borko)</p><p>Tack : Teatergruppen Linnunrata, Marjut Maristo och Juha-Matti Kauppinen</p>",
                "en": "<p>What is it like to be human? To be a child? Manndýr is a participatory performance about humankind and children’s role in the world.</p><p>Manndýr is a participatory performance about humankind and children’s role in the world.</p><p>“A child is here to support the world, to have new ideas, new projects that no one has had, ideas that do not come from before but come from now for later.” (Excerpts from the french soundtrack of the performance)</p><p>Children’s thoughts and Borko’s music compose the soundtrack and creates an intimate and contemplative atmosphere. On stage, Aude Busson follows the voices of children and traces a story of mankind and its relationship to the world. In Manndýr, guests are invited to dwell in a world where children tell the whole story and many questions will stay unanswered. They are invited to a world where playing and sensitive exploration are fully part of the experience.</p><p>Manndýr has been shown already 60 times in theaters and schools in Iceland, France and Norway.</p><p>Duration: approx. 45 min.<br>Language: Finnish<br>Age recommendation: 3-10-years<br>Thank you: Theatre Group Linnunrata, Marjut Maristo and Juha-Matti Kauppinen</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67657/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67986",
            "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: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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-stoa-21220867/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-stoa-21220867/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-stoa-21220867/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494527,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T16:13:37.597441Z",
                    "last_modified_time": "2026-01-16T16:13:37.597458Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780667.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494527/?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-16T16:13:37.503295Z",
            "last_modified_time": "2026-03-20T01:13:35.480095Z",
            "date_published": null,
            "start_time": "2026-03-14T13: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,
            "name": {
                "fi": "Ama Kyei: Vattnet viskar – Bravo! -festivaali",
                "sv": "Ama Kyei: Vattnet viskar – Bravo!-festivalen",
                "en": "Ama Kyei: Vattnet viskar – Bravo! Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Interaktiivinen tanssiteos veden viesteistä.",
                "sv": "Ett interaktivt dansverk om vattnets budskap.",
                "en": "Interactive dance performance about the world of water."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3B60682D3EBA9CBF691FA8D8318E7C79/Ama_Kyei_Vattnet_viskar",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3B60682D3EBA9CBF691FA8D8318E7C79/Ama_Kyei_Vattnet_viskar",
                "en": "http://www.stoa.fi/en/events/event/3B60682D3EBA9CBF691FA8D8318E7C79/Ama_Kyei_Vattnet_viskar"
            },
            "description": {
                "fi": "<p>Interaktiivinen tanssiteos veden viesteistä.</p><p>Mytologiasta ammentava teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Veden kuiskaus on interaktiivinen tanssiteos 3–7-vuotiaille lapsille ja erityislapsille ala-asteikään asti. Teos on saanut inspiraationsa vesitutkija M. Emoton kirjasta ”The hidden messages of water”, jossa tutkija kertoo, kuinka hänen tutkimuksissaan vesi muodosti kauniita jääkristalleja, kun se kuuli kauniita ja rohkaisevia sanoja, rukouksia tai musiikkia.</p><p>Teoksen inspiraatioina ovat myös Mami Wata ja Vellamo. Mami Wata on Länsi-Afrikan veden jumalatar, joka muistuttaa meitä veden pyhästä ja elämää antavasta voimasta. Vellamo on suomalaisessa mytologiassa veden jumalatar. Teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Teoksen koreografin ja esiintyjän Kyein tanssitausta on katutansseissa sekä perinteisissä länsiafrikkalaisissa tansseissa. Kyei on opiskellut tanssia Tukholman taideyliopistossa (Ruotsi), Åsan kansanopistossa (Ruotsi) sekä École des sables´ssa (Senegal). Tämän lisäksi Kyei on opiskellut tanssia sosiaalisissa tanssikonteksteissa Ghanassa, Beninissä ja Brasiliassa.</p><p>Teoksen tanssi pohjautuu Kyein liikekieleen. Lavastuksen on toteuttanut monialainen taiteilija Wanda Holopainen. Lavastukseen kuuluu tekstiiliteos, joka on saanut inspiraationsa vesikristalleista sekä Mami Watan ja Vellamon mytologiasta. Teoksen musiikin ovat säveltäneet Sophia Mitiku, Saban Ramadani ja Diva Cruz. Teoksen on rahoittanut Konstnärsnämnden (Ruotsi).</p><p>Kesto n. 30 min.<br>Ikäsuositus: 3-7-v<br>Esityskieli: ruotsi</p><p>Koreografi, esiintyjä: Ama Kyei<br>Lavastus: Wanda Holopainen<br>Musiikki: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>",
                "sv": "<p>Ett interaktivt dansverk om vattnets budskap.</p><p>Verket är inspirerat av mytologi och bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Veden kuiskaus är ett interaktivt dansverk för barn i åldern 3–7 år och specialbarn upp till lågstadieåldern. Verket är inspirerat av boken ”The hidden messages of water” av vattenforskaren M. Emoto, där forskaren berättar hur vattnet i hans forskning bildade vackra iskristaller när det fick höra vackra och uppmuntrande ord, böner och musik. Verket är också inspirerat av Mami Wata och Vellamo. Mami Wata är en västafrikansk vattengudinna som påminner oss om vattnets heliga och livgivande kraft. Vellamo är vattengudinnan i den finska mytologin. Verket bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Koreografen och artisten Kyei har en bakgrund inom streetdance och traditionella västafrikanska danser. Kyei har studerat dans vid Stockholms konstnärliga högskola (Sverige), Åsa Folkhögskola (Sverige) och École des sables (Senegal). Dessutom har Kyei studerat dans i sociala danssammanhang i Ghana, Benin och Brasilien.</p><p>Dansen är baserad på Kyeis rörelsespråk. Scenografin är skapad av den mångsidiga konstnären Wanda Holopainen. I scenografin ingår ett textilverk som är inspirerat av vattenkristaller och av myterna om Mami Wata och Vellamo. Musiken är komponerad av Sophia Mitiku, Saban Ramadani och Diva Cruz. Arbetet har finansierats av Konstnärsnämnden (Sverige).</p><p>Längd ca 30 min.<br>Åldersrekommendation: 3–7 år<br>Föreställningens språk: svenska</p><p>Koreograf, artist: Ama Kyei<br>Iscensättning: Wanda Holopainen<br>Musik: Sophia Mitiku, Saban Ramadani och Diva Cruz</p>",
                "en": "<p>Interactive dance performance about the world of water.</p><p>Inspired by mythologies, Waters Whisper carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common.</p><p>Waters Whisper is a dance performance for 3-7 years old children and children with special needs up to elementary school. The performance is inspired by water researcher Emoto's book called \"The hidden messages of water`, in which he observed that water formed beautiful icecrystals when it heard beautiful and encouraging words, prayers, or music. Another source of inspiration for the work is Mami Wata, the water goddess with roots in West Africa, who reminds us of waters sacred and life giving power. The work carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common. In the performance, dancer Kyei seeks a channel of communication with water through various dances, in collaboration with the audience.</p><p>The choreography and perfoming of the piece is done by Ama Kyei. Kyeis background is in dance traditions stemming from the African continent (adwoa, kete & kpanlogo) and diaspora (house, hip hop, salsa). Kyei has done her official dance studies in Western contemporary dance ( Stockholm Uniarts) and in street styles (Åsa folkhögskola). The dance language in the piece will stem from these dance traditions and from the dances of the children.</p><p>Scenography is done by multidisciplinary artist Wanda Holopainen. The scenography involves textile works inspired by mythologies of Mami wata.<br>Music of the piece is done by Sophia Mitiku, Saban Ramadani and Diva Cruz. The music is a blend of electronic music with traces of latin american percussion and soundscapes inspired by water and afrodiasporic ancestry.</p><p>Duration approx. 30 min<br>Age recommendation: 3-7-years<br>Language: Swedish</p><p>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67986/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67561",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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"
                }
            ],
            "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/name-21076663",
                        "sv": "https://www.lippu.fi/event/name-21076663",
                        "en": "https://www.lippu.fi/event/name-21076663"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494306,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T10:13:55.786625Z",
                    "last_modified_time": "2025-12-23T10:13:55.786641Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781727.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494306/?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-23T10:13:55.649846Z",
            "last_modified_time": "2026-03-20T01:13:34.898698Z",
            "date_published": null,
            "start_time": "2026-03-14T13: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,
            "name": {
                "fi": "No Shoes Theatre: Which one? (Liettua) – Bravo! -festivaali",
                "sv": "No Shoes Theatre: Which one? (Litauen) – Bravo!-festivalen",
                "en": "No Shoes Theatre: Which one?(Lithuania) – Bravo! festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Ilmassa on suuren urheilujuhlan tuntua! Tässä teatteri- ja tanssiesityksessä lapset pääsevät mukaan leikkimieliseen kisailuun.",
                "sv": "Stämningen är som på ett stort idrottsevenemang! I denna teater- och dansföreställning kan barnen delta i en lekfull tävling.",
                "en": "A sense of a great sporting event is in the air! This theatre and dance performance allows children to join a playful competition."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/08B8A1D39DC9DC106CD21B7490C6F943/No_Shoes_Theatre_Which_one_Liettua_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/08B8A1D39DC9DC106CD21B7490C6F943/No_Shoes_Theatre_Which_one_Litauen_",
                "en": "http://www.malmitalo.fi/en/events/event/08B8A1D39DC9DC106CD21B7490C6F943/No_Shoes_Theatre_Which_one_Lithuania_"
            },
            "description": {
                "fi": "<p>Ilmassa on suuren urheilujuhlan tuntua! Tässä teatteri- ja tanssiesityksessä lapset pääsevät mukaan leikkimieliseen kisailuun.</p><p>Kuka on fani, kuka tuomari, kuka osallistuu kisaan? Urheilun ja tanssin maailmaa yhdistävä hauska esitys pohtii keskinäistä kilpailua, tappion hyväksymistä, ystävyyttä ja toivon ylläpitämistä lempeillä tavoilla. Hulvaton livemusiikki takaa, että tunnelma on katossa.<br> <br>Liettualainen No Shoes Theatre on perustettu 2020 ja tunnettu interaktiivisista, moniaistisista liiketeatteriesityksistään. Teatterin esityksissä yleisö on valokeilassa ja kutsuttu mukaan toimintaan.</p><p>Ohjaaja: Ieva Jackevičiūtė<br>Esiintyjät: Raimondas Klezys, Sebastiano Geronimo<br>Musiikki: Matas Saladžius<br>Musiikot / orkesteri: Kedrostuburas<br>Skenografia, puvustus: Indrė Pačėsaitė</p><p>Kesto: n. 45 min<br>Ikäsuositus: 6–12 v. perheineen<br>Kieli: sanaton</p><p>Bravo! -festivaali<br>Bravo! Kansainvälinen esittävän taiteen festivaali lapsille ja nuorille valloittaa pääkaupunkiseudun kulttuurikeskukset 14.-22.3.2026. Esityksiä nähdään myös muussa kaupunkitilassa. Vuoden 2026 festivaalilla on Nordic-Baltic Focus ja kaikki esitykset, työpajat ja muu ohjelmisto juhlistavat Pohjois- ja Baltian maiden esittävää taidetta lapsille ja nuorille.</p>",
                "sv": "<p>Stämningen är som på ett stort idrottsevenemang! I denna teater- och dansföreställning kan barnen delta i en lekfull tävling.</p><p>Vem är åskådare, vem är domare, vem deltar i tävlingen? Denna roliga föreställning, som kombinerar sport och dans, utforskar tävlande, acceptans av förlust, vänskap och att upprätthålla hoppet på skonsamma sätt. Fantastisk livemusik garanterar att stämningen är på topp.</p><p>Litauiska No Shoes Theatre, som grundades 2020, är känd för sina interaktiva och multisensoriska rörelseteaterföreställningar. I teaterföreställningarna står publiken i ljuskäglan och bjuds in att delta i verksamheten.</p><p>Regi: Ieva Jackevičiūtė<br>På scenen: Raimondas Klezys, Sebastiano Geronimo<br>Musik: Matas Saladžius<br>Musiker/orkester: Kedrostuburas<br>Scenografi, kostymering: Indrė Pačėsaitė</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 6–12 år med familj<br>Språk: ordlös</p><p>Bravo!-festivalen<br>Bravo! En internationell scenkonstfestival för barn och unga intar huvudstadsregionens kulturcenter 14–22.3.2026. Föreställningar kommer också att visas på andra platser i stadsrummet. År 2026 har festivalen Nordic-Baltic Focus och alla föreställningar, verkstäder och andra programpunkter uppmärksammar scenkonst för barn och unga från de nordiska och baltiska länderna.</p>",
                "en": "<p>A sense of a great sporting event is in the air! This theatre and dance performance allows children to join a playful competition.</p><p>Who is the fan, who is the judge and who is taking part in the competition? Combining the worlds of sport and dance, this fun show applies gentle methods in exploring the themes of competitiveness, accepting defeat, building friendships and maintaining hope. The great live music ensures that the atmosphere is through the roof.</p><p>Founded in 2020, the Lithuanian No Shoes Theatre is known for its interactive, multi-sensory theatre performances that also incorporate movement. The audience has the spotlight in the performances of this theatre group and it is invited to participate.</p><p>Director: Ieva Jackevičiūtė<br>Performers: Raimondas Klezys, Sebastiano Geronimo<br>Music: Matas Saladžius<br>Musicians / orchestra: Kedrostuburas<br>Scenography, costume design: Indrė Pačėsaitė</p><p>Duration: approx. 45 min<br>Recommended ages: 6–12 year-olds and their families<br>Language: non-verbal</p><p>Bravo! festival<br>Bravo! An international performing arts festival for children and young people will take over the cultural centres of the Helsinki Metropolitan Area from 14 to 22 March 2026. Performances will also take place in other urban spaces. The 2026 festival will have a Nordic-Baltic focus and all performances, workshops and other elements of the programme will celebrate the performing arts for children and young people from the Nordic and Baltic countries.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67561/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67424",
            "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:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/event/bravo-festivaali-kanneltalo-20997602/#tab=",
                        "sv": "https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997602/#tab=",
                        "en": "https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997602/#tab="
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494038,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T07:12:52.927632Z",
                    "last_modified_time": "2025-12-04T07:12:52.927644Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781185.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494038/?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-04T07:12:52.829368Z",
            "last_modified_time": "2026-03-20T01:13:34.730944Z",
            "date_published": null,
            "start_time": "2026-03-14T12: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,
            "name": {
                "fi": "Company Portmanteau: PYYKKI – Lost in Laundryland (Suomi) – Bravo!-festivaali",
                "sv": "Company Portmanteau: PYYKKI – Lost in Laundryland (Suomi) – Bravo!-festivalen",
                "en": "Company Portmanteau: PYYKKI – Lost in Laundryland (Suomi) – Bravo!-festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "PYYKKI - Lost in Laundryland on Company Portmanteaun uusi koko perheen esitys, joka on tehty yhteistyössä kuvataiteilija Helga Stentzelin kanssa.",
                "sv": "PYYKKI – Lost in Laundryland är ett nytt verk av Company Portmanteau, skapat i samarbete med den prisbelönta bildkonstnären Helga Stentzel.",
                "en": "“Pyykki – Lost in Laundryland” is a new performance for children and families by the company Portmanteau, in collaboration with the award-winning visual artist Helga Stentzel."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A47AB6648E7A927EA7BA935EA54A48C1/Company_Portmanteau_PYYKKI_Lost_in_Laundryland_Suomi_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A47AB6648E7A927EA7BA935EA54A48C1/Company_Portmanteau_PYYKKI_Lost_in_Laundryland_Suomi_",
                "en": "http://www.kanneltalo.fi/en/events/event/A47AB6648E7A927EA7BA935EA54A48C1/Company_Portmanteau_PYYKKI_Lost_in_Laundryland_Suomi_"
            },
            "description": {
                "fi": "<p>PYYKKI - Lost in Laundryland on Company Portmanteaun uusi koko perheen esitys, joka on tehty yhteistyössä kuvataiteilija Helga Stentzelin kanssa.</p><p>Esitys sukeltaa kodin surrealismin kekseliääseen ja maagiseen maailmaan. Teos etsii taikuutta arkipäiväisistä asioista inspiraationaan Stentzelin “Clothing Line Animals” valokuvasarja. Optisia illuusioita hyödyntämällä esitys muuntaa jokapäiväisiä esineitä ja vaatteita leikkisiksi hahmoiksi ja eläimiksi yhdistäen sirkusta, tanssia, nukketeatteria ja uutta taikuutta.</p><p>Esitys kertoo tarinan kahdesta ystävästä, jotka selvittääkseen pyykätessä kadonneen sukan mysteerin matkaavat surrealistiseen maailmaan, jossa he kohtaavat pyykkinaruilla roikkuvia mielikuvituksellisia hahmoja. Se, mikä alkoi arkipäiväisenä askareena muuntuu pikkuhiljaa pienten visuaalisten ilonaiheiden maagiseksi universumiksi.</p><p>Koko perheelle sopiva teos on vuoden 2025 Pikku ITU esitys.</p><p>Kieli: sanaton<br>Ikäsuositus: koko perheelle<br>Kesto: noin 50 min</p><p>OHJAUS: Luis Sartori do Vale<br>ESIINTYMINEN: Luis Sartori do Vale, Mira Ravald<br>HAHMOJEN SUUNNITTELU: Helga Stentzel<br>VALOSUUNNITTELU: Jere Mönkkönen<br>ÄÄNISUUNNITTELU: Petteri Rajanti<br>TAIKAKONSULTTI: Kalle Nio</p><p>TUOTANTO: WHS, Portmanteau<br>TUKI: Arts Promotion Centre Finland, Finnish Cultural Foundation, WHS Teatteri Union, Cirko, Stoa, ITU lastenteatterin ideahautomo</p><p><b>Bravo!-festivaali</b><br>Kohtaa kurittomat aakkoset, ihmettele urheilujuhlaa tai näe pöly uusin silmin… Luvassa yllättäviä esityksiä kaiken ikäisille!<br>Bravo! Kansainvälinen esittävän taiteen festivaali lapsille ja nuorille valloittaa pääkaupunkiseudun kulttuurikeskukset 14.-22.3.2026. Esityksiä nähdään myös muussa kaupunkitilassa. Vuoden 2026 festivaalilla on Nordic-Baltic Focus ja kaikki esitykset, työpajat ja muu ohjelmisto juhlistavat Pohjois- ja Baltian maiden esittävää taidetta lapsille ja nuorille.</p><p>Koettavaa löytyy eri-ikäisille katsojille aina vauvoista teini-ikäisiin. Tanssia, teatteria, sirkusta, työpajoja ja paljon muuta!</p><p>Bravo!-festivaali järjestetään nyt 13. kerran yhteistyössä lapsille ja nuorille suunnatun esittävän taiteen järjestön Suomen Assitejn sekä pääkaupunkiseudun kuntien kanssa.<br>www.bravofestivaali.fi</p>",
                "sv": "<p>PYYKKI – Lost in Laundryland är ett nytt verk av Company Portmanteau, skapat i samarbete med den prisbelönta bildkonstnären Helga Stentzel.</p><p>PYYKKI som förenar cirkus, dans, dockteater och ny slags magi följer två vänner som har beslutat lösa mysteriet över vart försvunna sockor ur byket har hamnat. Uppgiften leder dem till ett livskraftigt och surrealistiskt rike som är fullt av fantastiska figurer och lekfulla formförändringar.</p><p>Inspirerad av fotoserien Clothing Line Animals dyker föreställningen i ”hushållssurrealismens” underliga värld för att söka magin i vardagen. Föreställningen bjuder in publiken i visuella läckerheters magiska universum, där kläder och vanliga föremål med hjälp av optiska illusioner ändras till lekfulla figurer och varelser.</p><p>Föreställningen, som passar hela familjen, belönades med Pikku ITU-priset år 2025.</p><p>Språk: ordlös<br>Längd: cirka 50 min.</p><p>REGI: Luis Sartori do Vale<br>SKAPANDE & FRAMFÖRANDE: Luis Sartori do Vale, Mira Ravald<br>KARAKTÄRSDESIGN & SCENOGRAFI: Helga Stentzel<br>LJUSDESIGN: Jere Mönkkönen<br>LJUDDESIGN: Petteri Rajanti<br>MAGIKONSULT: Kalle Nio</p><p>PRODUKTION: WHS, Portmanteau<br>STÖD: Arts Promotion Centre Finland, Finnish Cultural Foundation, WHS Teatteri Union, Cirko, Stoa, ITU lastenteatterin ideahautomo</p>",
                "en": "<p>“Pyykki – Lost in Laundryland” is a new performance for children and families by the company Portmanteau, in collaboration with the award-winning visual artist Helga Stentzel.</p><p>Inspired by Stentzel’s photographic series Clothing Line Animals, the performance explores the whimsical world of “Household Surrealism”, looking for magic in the everyday. Using optical illusions to transform clothes and common objects into playful characters and creatures, it invites audiences into a magical universe of little visual delights.</p><p>Blending circus, dance, puppeteering, and new magic, PYYKKI follows two friends determined to solve the mystery of where missing socks go. A quest that leads them into a vibrant, surrealist realm filled with fantastical characters and playful transformations.</p><p>Performance is for the whole family.<br>Non-verbal<br>Duration: 50 min</p><p>DIRECTION<br>Luis Sartori do Vale<br>CREATION & PERFORMANCE<br>Luis Sartori do Vale<br>Mira Ravald<br>CHARACTERS CONCEPT & DESIGN<br>Helga Stentzel<br>LIGHT DESIGN<br>Jere Mönkkönen<br>SOUND DESIGN<br>Petteri Rajanti<br>MAGIC CONSULTANT<br>Kalle Nio<br>PRODUCTION<br>WHS / Portmanteau<br>SUPPORT<br>Arts Promotion Centre Finland<br>Finnish Cultural Foundation<br>WHS Teatteri Union<br>Cirko<br>Stoa<br>ITU lastenteatterin ideahautomo</p><p><b>Bravo!-festival</b><br>Come face the rebellious alphabet, marvel at the blend of sports and art, or see dust with new eyes… A programme full of surprising performances for audiences of all ages! <br>The Bravo! Performing Arts Festival for young audiences takes over the cultural centres in the Helsinki metropolitan area from the 14th  to 22nd of March in 2026. Performances will also pop up in other urban spaces. The 2026 festival features a Nordic-Baltic Focus, and all performances, workshops, and other events will celebrate performing arts for children and young audiences from across the Nordic and Baltic countries.<br>There will be plenty to experience for audiences of all ages — from babies to teenagers. Dance, theatre, circus, workshops, and much more!</p><p>Bravo! Festival will be held for the 13th time, organised in collaboration between ASSITEJ Finland, the national organisation for performing arts for children and young people, and the municipalities of the Helsinki metropolitan area.<br>www.bravofestivaali.fi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67424/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67985",
            "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: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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-stoa-21220557/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-stoa-21220557/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-stoa-21220557/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494526,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T16:13:37.041548Z",
                    "last_modified_time": "2026-01-16T16:13:37.041565Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780666.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494526/?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-16T16:13:36.947195Z",
            "last_modified_time": "2026-03-20T01:13:34.343879Z",
            "date_published": null,
            "start_time": "2026-03-14T11: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,
            "name": {
                "fi": "Ama Kyei: Veden kuiskaus – Bravo! -festivaali",
                "sv": "Ama Kyei: Vattnet viskar – Bravo!-festivalen",
                "en": "Ama Kyei: Waters Whisper – Bravo! Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Interaktiivinen tanssiteos veden viesteistä.",
                "sv": "Ett interaktivt dansverk om vattnets budskap.",
                "en": "Interactive dance performance about the world of water."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/49A5D72D8215E1905CE720F80E0039EF/Ama_Kyei_Veden_kuiskaus",
                "sv": "http://www.stoa.fi/sv/evenemang/event/49A5D72D8215E1905CE720F80E0039EF/Ama_Kyei_Vattnet_viskar",
                "en": "http://www.stoa.fi/en/events/event/49A5D72D8215E1905CE720F80E0039EF/Ama_Kyei_Waters_Whisper"
            },
            "description": {
                "fi": "<p>Interaktiivinen tanssiteos veden viesteistä.</p><p>Mytologiasta ammentava teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Veden kuiskaus on interaktiivinen tanssiteos 3–7-vuotiaille lapsille ja erityislapsille ala-asteikään asti. Teos on saanut inspiraationsa vesitutkija M. Emoton kirjasta ”The hidden messages of water”, jossa tutkija kertoo, kuinka hänen tutkimuksissaan vesi muodosti kauniita jääkristalleja, kun se kuuli kauniita ja rohkaisevia sanoja, rukouksia tai musiikkia.</p><p>Teoksen inspiraatioina ovat myös Mami Wata ja Vellamo. Mami Wata on Länsi-Afrikan veden jumalatar, joka muistuttaa meitä veden pyhästä ja elämää antavasta voimasta. Vellamo on suomalaisessa mytologiassa veden jumalatar. Teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Teoksen koreografin ja esiintyjän Kyein tanssitausta on katutansseissa sekä perinteisissä länsiafrikkalaisissa tansseissa. Kyei on opiskellut tanssia Tukholman taideyliopistossa (Ruotsi), Åsan kansanopistossa (Ruotsi) sekä École des sables´ssa (Senegal). Tämän lisäksi Kyei on opiskellut tanssia sosiaalisissa tanssikonteksteissa Ghanassa, Beninissä ja Brasiliassa.</p><p>Teoksen tanssi pohjautuu Kyein liikekieleen. Lavastuksen on toteuttanut monialainen taiteilija Wanda Holopainen. Lavastukseen kuuluu tekstiiliteos, joka on saanut inspiraationsa vesikristalleista sekä Mami Watan ja Vellamon mytologiasta. Teoksen musiikin ovat säveltäneet Sophia Mitiku, Saban Ramadani ja Diva Cruz. Teoksen on rahoittanut Konstnärsnämnden (Ruotsi).</p><p>Kesto n. 30 min.<br>Ikäsuositus: 3-7-v<br>Esityskieli: suomi</p><p>Koreografi, esiintyjä: Ama Kyei<br>Lavastus: Wanda Holopainen<br>Musiikki: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>",
                "sv": "<p>Ett interaktivt dansverk om vattnets budskap.</p><p>Verket är inspirerat av mytologi och bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Veden kuiskaus är ett interaktivt dansverk för barn i åldern 3–7 år och specialbarn upp till lågstadieåldern. Verket är inspirerat av boken ”The hidden messages of water” av vattenforskaren M. Emoto, där forskaren berättar hur vattnet i hans forskning bildade vackra iskristaller när det fick höra vackra och uppmuntrande ord, böner och musik. Verket är också inspirerat av Mami Wata och Vellamo. Mami Wata är en västafrikansk vattengudinna som påminner oss om vattnets heliga och livgivande kraft. Vellamo är vattengudinnan i den finska mytologin. Verket bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Koreografen och artisten Kyei har en bakgrund inom streetdance och traditionella västafrikanska danser. Kyei har studerat dans vid Stockholms konstnärliga högskola (Sverige), Åsa Folkhögskola (Sverige) och École des sables (Senegal). Dessutom har Kyei studerat dans i sociala danssammanhang i Ghana, Benin och Brasilien.</p><p>Dansen är baserad på Kyeis rörelsespråk. Scenografin är skapad av den mångsidiga konstnären Wanda Holopainen. I scenografin ingår ett textilverk som är inspirerat av vattenkristaller och av myterna om Mami Wata och Vellamo. Musiken är komponerad av Sophia Mitiku, Saban Ramadani och Diva Cruz. Arbetet har finansierats av Konstnärsnämnden (Sverige).</p><p>Längd ca 30 min.<br>Åldersrekommendation: 3–7 år<br>Föreställningens språk: finska</p><p>Koreograf, artist: Ama Kyei<br>Iscensättning: Wanda Holopainen<br>Musik: Sophia Mitiku, Saban Ramadani och Diva Cruz</p>",
                "en": "<p>Interactive dance performance about the world of water.</p><p>Inspired by mythologies, Waters Whisper carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common.</p><p>Waters Whisper is a dance performance for 3-7 years old children and children with special needs up to elementary school. The performance is inspired by water researcher Emoto's book called \"The hidden messages of water`, in which he observed that water formed beautiful icecrystals when it heard beautiful and encouraging words, prayers, or music. Another source of inspiration for the work is Mami Wata, the water goddess with roots in West Africa, who reminds us of waters sacred and life giving power. The work carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common. In the performance, dancer Kyei seeks a channel of communication with water through various dances, in collaboration with the audience.</p><p>The choreography and perfoming of the piece is done by Ama Kyei. Kyeis background is in dance traditions stemming from the African continent (adwoa, kete & kpanlogo) and diaspora (house, hip hop, salsa). Kyei has done her official dance studies in Western contemporary dance ( Stockholm Uniarts) and in street styles (Åsa folkhögskola). The dance language in the piece will stem from these dance traditions and from the dances of the children.</p><p>Scenography is done by multidisciplinary artist Wanda Holopainen. The scenography involves textile works inspired by mythologies of Mami wata.<br>Music of the piece is done by Sophia Mitiku, Saban Ramadani and Diva Cruz. The music is a blend of electronic music with traces of latin american percussion and soundscapes inspired by water and afrodiasporic ancestry.</p><p>Duration approx. 30 min<br>Age recommendation: 3-7-years<br>Language: Finnish</p><p>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67985/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68147",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@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:p5088/?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": 1494938,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-24T14:12:54.154382Z",
                    "last_modified_time": "2026-02-24T14:12:54.154397Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785809.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494938/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-24T14:12:54.009667Z",
            "last_modified_time": "2026-03-20T01:13:34.181834Z",
            "date_published": null,
            "start_time": "2026-03-14T10:00:00Z",
            "end_time": "2026-03-14T13: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,
            "name": {
                "fi": "Lasten lauantai - BRAVO!",
                "sv": "Lasten lauantai - BRAVO!",
                "en": "Lasten lauantai - BRAVO!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FE27E47E83DC2EB709B779A49F6EEB29/Lasten_lauantai_-_BRAVO_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FE27E47E83DC2EB709B779A49F6EEB29/Lasten_lauantai_-_BRAVO_",
                "en": "http://www.kanneltalo.fi/en/events/event/FE27E47E83DC2EB709B779A49F6EEB29/Lasten_lauantai_-_BRAVO_"
            },
            "description": {
                "fi": "<p>Koko perheen lasten lauantaissa juhlitaan, leikitään ja taiteillaan! Kansainvälinen lasten ja nuorten esittävän taiteen Bravo!-festivaali avautuu. Lipunmyyntipisteemme on auki klo 12–15.</p><p>OHJELMA:<br>klo 12-15 GALLERIASSA Onni on olla -näyttely ja -työpaja<br>Lasten lauantaita vietetään Sanna Pelliccionin Onni-kirjojen maailmaan perustuvassa Onni on olla -näyttelyssä. Tarjolla on leikkinäyttelyn lisäksi non-stop-työpajoja, väritystehtäviä sekä Onni-tuote-myyntipiste. Kuvittaja-kirjailija Sanna Pelliccioni piirtää osallistujille onnimaisia muotokuvia. Näyttelyssä pääset tekemään myös pääsiäissuunnistuksen.  <br>  <br>Ohjelmassa non-stop-työpajoja: <br> <br>•\tPääsiäissuunnistus: Etsi ja löydä vihjeiden avulla näyttelyyn piilotetut pääsiäiseen liittyvät kuvat. <br>•\tOnnin rairuohopajassa voit koristella oman istutuskulhon ja kylvää multaan pääsiäisruohon. <br>•\tOnni-pöytäteatterisatuhetki<br>•\tOnni-kirja- ja -pehmokauppa on avoinna koko tapahtuman ajan.</p><p>Opetuskielet: suomi, englanti, italia.<br>Vapaa pääsy</p><p>Lastenlauantai: Eid-korttien askartelu</p><p>Tule mukaan Eid-korttityöpajaan Kanneltalossa Ramadanin viimeisellä viikolla 14.3. klo 12-15!</p><p>Tapahtuma on osa Kanneltalon lastenlauantaita ja se on kaikille avoin, erityisesti perheille ja lapsille. Osallistujat pääsevät askartelemaan kauniita kortteja, jotka välittävät hyviä ajatuksia ja onnen toivotuksia ystäville ja perheelle.<br>Työpajan aikana keskustellaan siitä, mitä Eid tarkoittaa ja osallistujat saavat mahdollisuuden oppia lisää Eidin perinteistä.<br>Työpaja tarjoaa tilaisuuden tutustua kulttuuriseen monimuotoisuuteen ja edistää yhteisöllisyyttä, jossa lapset ja vanhemmat voivat yhdessä luoda muistoja.</p><p>Tule mukaan luovaan askartelukokemukseen, joka on osa iloa ja riemua lastenlauantaina!</p><p>Työpajan ohjaaja: Samia Mohamud</p><p>klo 12-15 KANNELMÄEN KIRJASTOSSA Aarrejahti. \"Seikkaile kirjastossa aarrekartan avulla ja saat palkkioksi oman osasi aarteesta.\" <br>Vapaa pääsy.</p><p>klo 14-14.50 SALISSA Company Portmanteau: PYYKKI – Lost in Laundryland (Suomi)<br>Bravo!-festivaali www.bravofestivaali.fi</p><p>Kieli: sanaton<br>Ikäsuositus: koko perheelle<br>Kesto: noin 50 min<br>Liput: 6 € <br>https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997602/#tab=<br>Lue lisää: Company Portmanteau: PYYKKI – Lost in Laundryland (Suomi)</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68147/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68030",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T15:13:17.338717Z",
                    "last_modified_time": "2026-01-26T15:13:17.338730Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780668.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494644/?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-26T15:13:17.200743Z",
            "last_modified_time": "2026-03-20T01:13:33.971837Z",
            "date_published": null,
            "start_time": "2026-03-14T10:00:00Z",
            "end_time": "2026-03-14T14: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,
            "name": {
                "fi": "Bravo! -festivaalin avajaiset",
                "sv": "Öppning av Bravo!-festivalen",
                "en": "Bravo! festival opening ceremony"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Bravo! -festivaali käynnistyy vauhdikkaasti Stoassa 14.3. järjestettävillä avajaisilla!",
                "sv": "Bravo!-festivalen inleds med en fartfylld invigning på Stoa den 14 mars.",
                "en": "The Bravo! festival kicks off with an opening ceremony at Stoa on 14 March!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D6F8EC5E14F1957FAE65F95E168429F8/Bravo_-festivaalin_avajaiset_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D6F8EC5E14F1957FAE65F95E168429F8/Oppning_av_Bravo_-festivalen_",
                "en": "http://www.stoa.fi/en/events/event/D6F8EC5E14F1957FAE65F95E168429F8/Bravo_festival_opening_ceremony_"
            },
            "description": {
                "fi": "<p>Bravo! -festivaali käynnistyy vauhdikkaasti Stoassa 14.3. järjestettävillä avajaisilla!</p><p>Bravo!-avajaisissa on luvassa hurjia ilmalentoja, veden jumalatar ja muita elämyksiä. Näe esitysmaistiaisia, osallistu työpajoihin tai kuuntele nostattavia avajaispuheita. Luvassa on paljon ohjelmaa koko perheelle!</p><p>Avajaiset juontaa näyttelijä Vilma Sippola.<br>  <br><b>Maksulliset näytökset Stoassa avajaispäivänä:</b><br> 13.00 Veden kuiskaus -esitys, 6€ musiikkisalissa (suomi)<br> 14.00 Uventa-esitys, 6€ teatterisalissa<br> 15.00 Veden kuiskaus -esitys, 6€ musiikkisalissa (ruotsi+suomi)<br> <br>Liput näytöksiin lippu.fi:stä.</p><p>https://www.lippu.fi/artist/bravo-festivaali/</p><p><b>Kaikki muu ohjelma on maksutonta.</b><br> <br><b>Ohjelma Stoan aulan stagella 12-16:</b><br> <br>12.00 Avajaispuheenvuoro: Tiede- ja kulttuuriministerin valtiosihteeri Kristiina Kokko ja Bravo!-festivaalin tervehdys<br> 12.10 Pieni maistiainen Uventa-esityksestä<br> 12.25 Lastenkulttuuripäällikkö Pirjetta Mularin avajaissanat<br> 12.40 Itä-Helsingin musiikkiopisto esiintyy<br> 13.35 Sirkustaiteilija Susanna Liinamaa esiintyy<br> 14.20  Itä-Helsingin musiikkiopisto esiintyy<br> 15.50  Itä-Helsingin musiikkiopisto esiintyy<br> Loppusanat Bravo!-festivaalilta</p><p><b>Kellarireivit klo 12.15-16 (kuntosali)</b><br>Tule tanssimaan koko perheen reiveihin!<br> <br><b>Bravo!-tatuointeja klo 12-16 (galleria)</b><br> <br><b>Kasvomaalausta klo 12-16 (galleria)</b><br> <br><b>Tutustu Bravomaattiin klo 12-16 (aula)</b><br> <br><b>Pinssipaja kello 13-15 (kirjasto)</b><br>Tule tekemään pinssi poistokirjoista kirjaston lastenosastolle.<br> <br><b>Henri Kangas: Herätä lelu eloon! -työpaja (terraario)</b><br> klo 12.30, 13.30, 14.30, 15.30 <br> Ikäsuositus: Perheille, yli 6-vuotiaille!<br>Sirkus- ja jongleerausviritteinen työpaja koko perheelle. Pajassa lasten omista, vanhoista ja ehkä hieman tylsäksi käyneistä leluista löydetään uusia puolia kokeilemalla, leikkimällä ja jongleeraamalla.<br>Ota oma lelu mukaan tai lainaa paikan päältä!  Ilmoittautuminen Stoassa klo 12 alkaen. <br> <br><b>Cécile Le Claire: Löytöretkeilijät – Bravo! Explorers</b><br>Perheille suunnatut työpajat päivän esityksiin liittyen! Huom. pajat pidetään englanniksi. Kesto 10-20 min. (kirjasto)<br> <br>12:30 Veden kuiskaus -esitykseen liittyvä lämmittelypaja<br>13:30 Uventa-esitykseen liittyvä lämmittelypaja<br>14:30 Veden kuiskaus -esitykseen liittyvä lämmittelypaja<br> <br><b>Pisara, lätäkkö, valtameri! -työpaja (kerhohuone)</b><br> klo 12.30-15.30<br>Tutkitaan ja tunnustellaan ihmeellistä ja kiehtovaa vettä. Taiteellisella tutkimusmatkalla  tarkastellaan veden matkaa jäästä pisaraksi, pisarasta puroksi ja purosta pesuvativaltamereksi. Mielikuvituksen meri kuljettaa rakentamaan vedenalaisia maailmoja, saaria, siltoja, jokia ja puroja. Koko perheelle sopivaan taidepajaan kannattaa varautua vaattein, joissa eivät pienet pisarat haittaa.  Ohjaaja: Jenni Vilander</p><p><b>Tasapainoilijaveistos-työpaja klo 12.30-15.30 (aulan tasanne)</b><br>Osaatko seistä yhdellä jalalla tai käsillä? Miltä tuntuisi tanssia nuoralla? Miten liikkuu parkourin taitaja? Pajassa inspiroidutaan tasapainoilusta ja luodaan muovailuvahasta pienikokoinen veistos. <br>Ohjaaja: Chloé Mahy-Hulkko.  Kielet: suomi, englanti ja ranska</p><p><b>Non-stop ulkopelejä 12-16 (Stoan aukio)</b><br> <br>Stoan aulan, kellarireivitilan ja pisarapajan värikkäästä sisustuksellisesta ilmeestä vastaavat <b>Stadin AO:n Roihupellon sisustaja- ja verhoilija -opiskelijat.</b></p><p>Päivän koko ohjelma aikatauluineen löytyy täältä:<br>https://www.assitej.fi/bravo/avajaiset</p>",
                "sv": "<p>Bravo!-festivalen inleds med en fartfylld invigning på Stoa den 14 mars.</p><p>Invigningen bjuder på fantastiska luftfärder, en vattengudinna och andra upplevelser samt gemensamma aktiviteter.</p><p>Läs mer:<br>https://www.assitej.fi/bravo/avajaiset</p>",
                "en": "<p>The Bravo! festival kicks off with an opening ceremony at Stoa on 14 March!</p><p>The opening will feature wild aerial flights, a water goddess and other experiences and shared activities.</p><p>Come face the rebellious alphabet, marvel at the blend of sports and art, or see dust with new eyes… A programme full of surprising performances for audiences of all ages!</p><p>The Bravo! Performing Arts Festival for young audiences takes over the cultural centres in the Helsinki metropolitan area from the 14th  to 22nd of March in 2026. Performances will also pop up in other urban spaces. The 2026 festival features a Nordic-Baltic Focus, and all performances, workshops, and other events will celebrate performing arts for children and young audiences from across the Nordic and Baltic countries.</p><p>There will be plenty to experience for audiences of all ages — from babies to teenagers. Dance, theatre, circus, workshops, and much more!</p><p>Bravo! Festival will be held for the 13th time, organised in collaboration between ASSITEJ Finland, the national organisation for performing arts for children and young people, and the municipalities of the Helsinki metropolitan area.</p><p>Read more (in Finnish) https://www.assitej.fi/bravo/avajaiset</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68030/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67817",
            "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: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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@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": 1494525,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T16:13:36.462967Z",
                    "last_modified_time": "2026-01-16T16:13:36.462983Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782929.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494525/?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-16T16:13:36.339808Z",
            "last_modified_time": "2026-03-20T01:13:32.834477Z",
            "date_published": null,
            "start_time": "2026-03-13T08:30:00Z",
            "end_time": "2026-03-13T09: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,
            "name": {
                "fi": "Ama Kyei: Veden kuiskaus – Bravo! -festivaali",
                "sv": "Ama Kyei: Vattnet viskar – Bravo!-festivalen",
                "en": "Ama Kyei: Waters Whisper – Bravo! Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "TÄYTEEN VARATTU! Interaktiivinen tanssiteos veden viesteistä!",
                "sv": "FULLBOKAT! Ett interaktivt dansverk om vattnets budskap!",
                "en": "FULLY BOOKED! Interactive dance performance about the world of water!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EEBCC8C4A1C4F77D89E36111162682C1/Ama_Kyei_Veden_kuiskaus",
                "sv": "http://www.stoa.fi/sv/evenemang/event/EEBCC8C4A1C4F77D89E36111162682C1/Ama_Kyei_Vattnet_viskar",
                "en": "http://www.stoa.fi/en/events/event/EEBCC8C4A1C4F77D89E36111162682C1/Ama_Kyei_Waters_Whisper"
            },
            "description": {
                "fi": "<p>TÄYTEEN VARATTU! Interaktiivinen tanssiteos veden viesteistä!</p><p>Mytologiasta ammentava teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Veden kuiskaus on interaktiivinen tanssiteos 3–7-vuotiaille lapsille ja erityislapsille ala-asteikään asti. Teos on saanut inspiraationsa vesitutkija M. Emoton kirjasta ”The hidden messages of water”, jossa tutkija kertoo, kuinka hänen tutkimuksissaan vesi muodosti kauniita jääkristalleja, kun se kuuli kauniita ja rohkaisevia sanoja, rukouksia tai musiikkia. Teoksen inspiraatioina ovat myös Mami Wata ja Vellamo. Mami Wata on Länsi-Afrikan veden jumalatar, joka muistuttaa meitä veden pyhästä ja elämää antavasta voimasta. Vellamo on suomalaisessa mytologiassa veden jumalatar. Teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Teoksen koreografin ja esiintyjän Kyein tanssitausta on katutansseissa sekä perinteisissä länsiafrikkalaisissa tansseissa. Kyei on opiskellut tanssia Tukholman taideyliopistossa (Ruotsi), Åsan kansanopistossa (Ruotsi) sekä École des sables´ssa (Senegal). Tämän lisäksi Kyei on opiskellut tanssia sosiaalisissa tanssikonteksteissa Ghanassa, Beninissä ja Brasiliassa.</p><p>Teoksen tanssi pohjautuu Kyein liikekieleen. Lavastuksen on toteuttanut monialainen taiteilija Wanda Holopainen. Lavastukseen kuuluu tekstiiliteos, joka on saanut inspiraationsa vesikristalleista sekä Mami Watan ja Vellamon mytologiasta. Teoksen musiikin ovat säveltäneet Sophia Mitiku, Saban Ramadani ja Diva Cruz. Teoksen on rahoittanut Konstnärsnämnden (Ruotsi).</p><p>Kesto n. 30 min.<br>Ikäsuositus: 3-7-v<br>Esityskieli: suomi / ruotsi / englanti</p><p>Koreografi, esiintyjä: Ama Kyei<br>Lavastus: Wanda Holopainen<br>Musiikki: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p><p>Ryhmille pakolliset ennakkoilmoittautumiset: kultus.hel.fi 13.1. klo 10 alkaen. HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta. Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>FULLBOKAT! Ett interaktivt dansverk om vattnets budskap!</p><p>Verket är inspirerat av mytologi och bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Veden kuiskaus är ett interaktivt dansverk för barn i åldern 3–7 år och specialbarn upp till lågstadieåldern. Verket är inspirerat av boken ”The hidden messages of water” av vattenforskaren M. Emoto, där forskaren berättar hur vattnet i hans forskning bildade vackra iskristaller när det fick höra vackra och uppmuntrande ord, böner och musik. Verket är också inspirerat av Mami Wata och Vellamo. Mami Wata är en västafrikansk vattengudinna som påminner oss om vattnets heliga och livgivande kraft. Vellamo är vattengudinnan i den finska mytologin. Verket bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Koreografen och artisten Kyei har en bakgrund inom streetdance och traditionella västafrikanska danser. Kyei har studerat dans vid Stockholms konstnärliga högskola (Sverige), Åsa Folkhögskola (Sverige) och École des sables (Senegal). Dessutom har Kyei studerat dans i sociala danssammanhang i Ghana, Benin och Brasilien.</p><p>Dansen är baserad på Kyeis rörelsespråk. Scenografin är skapad av den mångsidiga konstnären Wanda Holopainen. I scenografin ingår ett textilverk som är inspirerat av vattenkristaller och av myterna om Mami Wata och Vellamo. Musiken är komponerad av Sophia Mitiku, Saban Ramadani och Diva Cruz. Arbetet har finansierats av Konstnärsnämnden (Sverige).</p><p>Längd ca 30 min.<br>Åldersrekommendation: 3–7 år<br>Föreställningens språk: finska/svenska/engelska</p><p>Koreograf, artist: Ama Kyei<br>Iscensättning: Wanda Holopainen<br>Musik: Sophia Mitiku, Saban Ramadani och Diva Cruz</p><p>Obligatorisk förhandsanmälan för grupper: kultus.hel.fi från 13.1 kl. 10. OBS! Deltagarna lottas ut bland dem som anmält sig.</p>",
                "en": "<p>FULLY BOOKED! Interactive dance performance about the world of water!</p><p>Inspired by mythologies, Waters Whisper carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common.</p><p>Waters Whisper is a dance performance for 3-7 years old children and children with special needs up to elementary school. The performance is inspired by water researcher Emoto's book called \"The hidden messages of water`, in which he observed that water formed beautiful icecrystals when it heard beautiful and encouraging words, prayers, or music.</p><p>Another source of inspiration for the work is Mami Wata, the water goddess with roots in West Africa, who reminds us of waters sacred and life giving power. The work carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common. In the performance, dancer Kyei seeks a channel of communication with water through various dances, in collaboration with the audience.</p><p>The choreography and perfoming of the piece is done by Ama Kyei. Kyeis background is in dance traditions stemming from the African continent (adwoa, kete & kpanlogo) and diaspora (house, hip hop, salsa). Kyei has done her official dance studies in Western contemporary dance ( Stockholm Uniarts) and in street styles (Åsa folkhögskola). The dance language in the piece will stem from these dance traditions and from the dances of the children.</p><p>Scenography is done by multidisciplinary artist Wanda Holopainen. The scenography involves textile works inspired by mythologies of Mami wata.</p><p>Music of the piece is done by Sophia Mitiku, Saban Ramadani and Diva Cruz. The music is a blend of electronic music with traces of latin american percussion and soundscapes inspired by water and afrodiasporic ancestry.</p><p>Duration approx. 30 min<br>Age recommendation: 3-7-years<br>Language: Finnish / Swedish / English</p><p>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67817/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67818",
            "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: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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@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": 1494524,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T16:13:35.961221Z",
                    "last_modified_time": "2026-01-16T16:13:35.961237Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782930.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494524/?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-16T16:13:35.741511Z",
            "last_modified_time": "2026-03-20T01:13:32.697559Z",
            "date_published": null,
            "start_time": "2026-03-13T07: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,
            "name": {
                "fi": "Ama Kyei: Veden kuiskaus – Bravo! -festivaali",
                "sv": "Ama Kyei: Vattnet viskar – Bravo!-festivalen",
                "en": "Ama Kyei: Waters Whisper – Bravo! Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "TÄYTEEN VARATTU! Interaktiivinen tanssiteos veden viesteistä.",
                "sv": "FULLBOKAT! Ett interaktivt dansverk om vattnets budskap.",
                "en": "FULLY BOOKED! Interactive dance performance about the world of water."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A3DF1C7140906EA3E863723DBE89C3B6/Ama_Kyei_Veden_kuiskaus",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A3DF1C7140906EA3E863723DBE89C3B6/Ama_Kyei_Vattnet_viskar",
                "en": "http://www.stoa.fi/en/events/event/A3DF1C7140906EA3E863723DBE89C3B6/Ama_Kyei_Waters_Whisper"
            },
            "description": {
                "fi": "<p>TÄYTEEN VARATTU! Interaktiivinen tanssiteos veden viesteistä.</p><p>Mytologiasta ammentava teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Veden kuiskaus on interaktiivinen tanssiteos 3–7-vuotiaille lapsille ja erityislapsille ala-asteikään asti. Teos on saanut inspiraationsa vesitutkija M. Emoton kirjasta ”The hidden messages of water”, jossa tutkija kertoo, kuinka hänen tutkimuksissaan vesi muodosti kauniita jääkristalleja, kun se kuuli kauniita ja rohkaisevia sanoja, rukouksia tai musiikkia. Teoksen inspiraatioina ovat myös Mami Wata ja Vellamo. Mami Wata on Länsi-Afrikan veden jumalatar, joka muistuttaa meitä veden pyhästä ja elämää antavasta voimasta. Vellamo on suomalaisessa mytologiassa veden jumalatar. Teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Teoksen koreografin ja esiintyjän Kyein tanssitausta on katutansseissa sekä perinteisissä länsiafrikkalaisissa tansseissa. Kyei on opiskellut tanssia Tukholman taideyliopistossa (Ruotsi), Åsan kansanopistossa (Ruotsi) sekä École des sables´ssa (Senegal). Tämän lisäksi Kyei on opiskellut tanssia sosiaalisissa tanssikonteksteissa Ghanassa, Beninissä ja Brasiliassa.</p><p>Teoksen tanssi pohjautuu Kyein liikekieleen. Lavastuksen on toteuttanut monialainen taiteilija Wanda Holopainen. Lavastukseen kuuluu tekstiiliteos, joka on saanut inspiraationsa vesikristalleista sekä Mami Watan ja Vellamon mytologiasta. Teoksen musiikin ovat säveltäneet Sophia Mitiku, Saban Ramadani ja Diva Cruz. Teoksen on rahoittanut Konstnärsnämnden (Ruotsi).</p><p>Kesto n. 30 min.<br>Ikäsuositus: 3-7-v<br>Esityskieli: suomi / ruotsi / englanti</p><p>Koreografi, esiintyjä: Ama Kyei<br>Lavastus: Wanda Holopainen<br>Musiikki: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p><p>Ryhmille pakolliset ennakkoilmoittautumiset: kultus.hel.fi 13.1. klo 10 alkaen. HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta. Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>FULLBOKAT! Ett interaktivt dansverk om vattnets budskap.</p><p>Verket är inspirerat av mytologi och bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Veden kuiskaus är ett interaktivt dansverk för barn i åldern 3–7 år och specialbarn upp till lågstadieåldern. Verket är inspirerat av boken ”The hidden messages of water” av vattenforskaren M. Emoto, där forskaren berättar hur vattnet i hans forskning bildade vackra iskristaller när det fick höra vackra och uppmuntrande ord, böner och musik. Verket är också inspirerat av Mami Wata och Vellamo. Mami Wata är en västafrikansk vattengudinna som påminner oss om vattnets heliga och livgivande kraft. Vellamo är vattengudinnan i den finska mytologin. Verket bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Koreografen och artisten Kyei har en bakgrund inom streetdance och traditionella västafrikanska danser. Kyei har studerat dans vid Stockholms konstnärliga högskola (Sverige), Åsa Folkhögskola (Sverige) och École des sables (Senegal). Dessutom har Kyei studerat dans i sociala danssammanhang i Ghana, Benin och Brasilien.</p><p>Dansen är baserad på Kyeis rörelsespråk. Scenografin är skapad av den mångsidiga konstnären Wanda Holopainen. I scenografin ingår ett textilverk som är inspirerat av vattenkristaller och av myterna om Mami Wata och Vellamo. Musiken är komponerad av Sophia Mitiku, Saban Ramadani och Diva Cruz. Arbetet har finansierats av Konstnärsnämnden (Sverige).</p><p>Längd ca 30 min.<br>Åldersrekommendation: 3–7 år<br>Föreställningens språk: finska/svenska/engelska</p><p>Koreograf, artist: Ama Kyei<br>Iscensättning: Wanda Holopainen<br>Musik: Sophia Mitiku, Saban Ramadani och Diva Cruz</p><p>Obligatorisk förhandsanmälan för grupper: kultus.hel.fi från 13.1 kl. 10. OBS! Deltagarna lottas ut bland dem som anmält sig.</p>",
                "en": "<p>FULLY BOOKED! Interactive dance performance about the world of water.</p><p>Inspired by mythologies, Waters Whisper carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common.</p><p>Waters Whisper is a dance performance for 3-7 years old children and children with special needs up to elementary school. The performance is inspired by water researcher Emoto's book called \"The hidden messages of water`, in which he observed that water formed beautiful icecrystals when it heard beautiful and encouraging words, prayers, or music.</p><p>Another source of inspiration for the work is Mami Wata, the water goddess with roots in West Africa, who reminds us of waters sacred and life giving power. The work carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common. In the performance, dancer Kyei seeks a channel of communication with water through various dances, in collaboration with the audience.</p><p>The choreography and perfoming of the piece is done by Ama Kyei. Kyeis background is in dance traditions stemming from the African continent (adwoa, kete & kpanlogo) and diaspora (house, hip hop, salsa). Kyei has done her official dance studies in Western contemporary dance ( Stockholm Uniarts) and in street styles (Åsa folkhögskola). The dance language in the piece will stem from these dance traditions and from the dances of the children.</p><p>Scenography is done by multidisciplinary artist Wanda Holopainen. The scenography involves textile works inspired by mythologies of Mami wata.</p><p>Music of the piece is done by Sophia Mitiku, Saban Ramadani and Diva Cruz. The music is a blend of electronic music with traces of latin american percussion and soundscapes inspired by water and afrodiasporic ancestry.</p><p>Duration approx. 30 min<br>Age recommendation: 3-7-years<br>Language: Finnish / Swedish / English</p><p>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67818/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67452",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1494080,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:58.218768Z",
                    "last_modified_time": "2025-12-04T13:12:58.218782Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781405.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494080/?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:58.160862Z",
            "last_modified_time": "2026-03-20T01:13:31.196730Z",
            "date_published": null,
            "start_time": "2026-03-11T16: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,
            "name": {
                "fi": "Ympäri maailmaa — lauluja kuudesta maanosasta",
                "sv": "Ympäri maailmaa — lauluja kuudesta maanosasta (Jorden runt – sånger från sex kontinenter)",
                "en": "Around the world – songs from six continents"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lähde kanssamme musiikkimatkalle Etelä-Afrikkaan, Nigeriaan, Viroon, Kreikkaan, Thaimaahan, Filippiineille, Kanadaan, Chileen ja Tongaan!",
                "sv": "Följ med på en musikalisk resa till Sydafrika, Nigeria, Estland, Grekland, Thailand, Filippinerna, Kanada, Chile och Tonga!",
                "en": "Join us on a musical journey to South Africa, Nigeria, Estonia, Greece, Thailand, the Philippines, Canada, Chile and Tonga!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B7311390772D7F14822085F5CDC79E73/Ympari_maailmaa_lauluja_kuudesta_maanosasta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B7311390772D7F14822085F5CDC79E73/Ympari_maailmaa_lauluja_kuudesta_maanosasta_Jorden_runt_sanger_fran_sex_kontinenter_",
                "en": "http://www.kanneltalo.fi/en/events/event/B7311390772D7F14822085F5CDC79E73/Around_the_world_songs_from_six_continents"
            },
            "description": {
                "fi": "<p>Lähde kanssamme musiikkimatkalle Etelä-Afrikkaan, Nigeriaan, Viroon, Kreikkaan, Thaimaahan, Filippiineille, Kanadaan, Chileen ja Tongaan!</p><p>Tässä koko perheen konsertissa kuullaan lauluja peräti 11 eri kielellä Luoteis-Helsingin musiikkiopiston maailmanmusiikkiorkesteri esittämänä.</p><p>Maailmanmusiikkiorkesterissa on mukana 60 nuorta muusikkoa; musiikkiopiston kuorot ja pianisteja sekä Vilisevät jouset ja Dibidabi-yhtye. Laulut on sovitettu opetushallituksen tuella.  <br> <br>Kesto: 35 min, ei väliaikaa<br>Paikka: Kanneltalon konserttisali<br> <br>Vapaa pääsy!</p>",
                "sv": "<p>Följ med på en musikalisk resa till Sydafrika, Nigeria, Estland, Grekland, Thailand, Filippinerna, Kanada, Chile och Tonga!</p><p>I den här konserten för hela familjen får vi höra sånger på hela elva olika språk, framförda av Luoteis-Helsingin musiikkiopistos världsmusikorkester.</p><p>I världsmusikorkestern deltar 60 unga musiker, musikinstitutets körer och pianister samt grupperna Vilisevät jouset och Dibidabi. Sångerna har arrangerats med stöd från Utbildningsstyrelsen.</p><p>Längd: 35 minuter, ingen paus<br>Plats: Gamlasgårdens konsertsal</p><p>Fritt inträde!</p>",
                "en": "<p>Join us on a musical journey to South Africa, Nigeria, Estonia, Greece, Thailand, the Philippines, Canada, Chile and Tonga!</p><p>This concert for the whole family features songs in no less than 11 different languages performed by the Northwest Helsinki Music Institute (LUHMO) world music orchestra.</p><p>The world music orchestra will include 60 young musicians; choirs and pianists from LUHMO, the Vilisevät jouset and the Dibidabi band. The songs have been arranged with support from the Finnish National Agency for Education.  <br> <br>Duration: 35 min, no intermission<br>Location: Kanneltalo Concert Hall<br> <br>Free entry!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67452/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67451",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1494079,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:57.980227Z",
                    "last_modified_time": "2025-12-04T13:12:57.980242Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781404.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494079/?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:57.916477Z",
            "last_modified_time": "2026-03-20T01:13:30.848854Z",
            "date_published": null,
            "start_time": "2026-03-11T15: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,
            "name": {
                "fi": "Ympäri maailmaa — lauluja kuudesta maanosasta",
                "sv": "Ympäri maailmaa — lauluja kuudesta maanosasta (Jorden runt – sånger från sex kontinenter)",
                "en": "Around the world – songs from six continents"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lähde kanssamme musiikkimatkalle Etelä-Afrikkaan, Nigeriaan, Viroon, Kreikkaan, Thaimaahan, Filippiineille, Kanadaan, Chileen ja Tongaan!",
                "sv": "Följ med på en musikalisk resa till Sydafrika, Nigeria, Estland, Grekland, Thailand, Filippinerna, Kanada, Chile och Tonga!",
                "en": "Join us on a musical journey to South Africa, Nigeria, Estonia, Greece, Thailand, the Philippines, Canada, Chile and Tonga!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4CE4A59A56EF05124DDAF91594A92716/Ympari_maailmaa_lauluja_kuudesta_maanosasta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4CE4A59A56EF05124DDAF91594A92716/Ympari_maailmaa_lauluja_kuudesta_maanosasta_Jorden_runt_sanger_fran_sex_kontinenter_",
                "en": "http://www.kanneltalo.fi/en/events/event/4CE4A59A56EF05124DDAF91594A92716/Around_the_world_songs_from_six_continents"
            },
            "description": {
                "fi": "<p>Lähde kanssamme musiikkimatkalle Etelä-Afrikkaan, Nigeriaan, Viroon, Kreikkaan, Thaimaahan, Filippiineille, Kanadaan, Chileen ja Tongaan!</p><p>Tässä koko perheen konsertissa kuullaan lauluja peräti 11 eri kielellä Luoteis-Helsingin musiikkiopiston maailmanmusiikkiorkesteri esittämänä.</p><p>Maailmanmusiikkiorkesterissa on mukana 60 nuorta muusikkoa; musiikkiopiston kuorot ja pianisteja sekä Vilisevät jouset ja Dibidabi-yhtye. Laulut on sovitettu opetushallituksen tuella.  <br> <br>Kesto: 35 min, ei väliaikaa<br>Paikka: Kanneltalon konserttisali<br> <br>Vapaa pääsy!</p>",
                "sv": "<p>Följ med på en musikalisk resa till Sydafrika, Nigeria, Estland, Grekland, Thailand, Filippinerna, Kanada, Chile och Tonga!</p><p>I den här konserten för hela familjen får vi höra sånger på hela elva olika språk, framförda av Luoteis-Helsingin musiikkiopistos världsmusikorkester.</p><p>I världsmusikorkestern deltar 60 unga musiker, musikinstitutets körer och pianister samt grupperna Vilisevät jouset och Dibidabi. Sångerna har arrangerats med stöd från Utbildningsstyrelsen.</p><p>Längd: 35 minuter, ingen paus<br>Plats: Gamlasgårdens konsertsal</p><p>Fritt inträde!</p>",
                "en": "<p>Join us on a musical journey to South Africa, Nigeria, Estonia, Greece, Thailand, the Philippines, Canada, Chile and Tonga!</p><p>This concert for the whole family features songs in no less than 11 different languages performed by the Northwest Helsinki Music Institute (LUHMO) world music orchestra.</p><p>The world music orchestra will include 60 young musicians; choirs and pianists from LUHMO, the Vilisevät jouset and the Dibidabi band. The songs have been arranged with support from the Finnish National Agency for Education.  <br> <br>Duration: 35 min, no intermission<br>Location: Kanneltalo Concert Hall<br> <br>Free entry!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67451/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67873",
            "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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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": 1494507,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T12:13:30.586782Z",
                    "last_modified_time": "2026-01-16T12:13:30.586800Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780526.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494507/?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-16T12:13:30.463283Z",
            "last_modified_time": "2026-03-20T01:13:23.673349Z",
            "date_published": null,
            "start_time": "2026-03-04T08:00:00Z",
            "end_time": "2026-03-04T10: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,
            "name": {
                "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa",
                "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen",
                "en": "Art games – a space for play – Children aged 0–3 with an adult"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!",
                "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!",
                "en": "In these imaginatively modified play environments, play gets to run wild!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/88CD7CA5441838461183F2283A084BC4/Taideleikit_leikin_oma_tila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/88CD7CA5441838461183F2283A084BC4/Konstlekar_en_egen_plats_for_lek",
                "en": "http://www.annantalo.fi/en/events/event/88CD7CA5441838461183F2283A084BC4/Art_games_a_space_for_play"
            },
            "description": {
                "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin. Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen   <br>Aika: 10–12 (nonstop)  <br>Ikäryhmä: 0-3v<br>Kieli: suomi    <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>",
                "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen.  <br>Regi: Noora Puranen   <br>Tid: kl. 10–12 (non-stop)  <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>",
                "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor. <br>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen   <br>Time: 10.00–12.00 (non-stop)  <br>Age group: 0–3<br>Language: Finnish</p><p>Free of charge</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67873/?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,
            "name": {
                "fi": "Jazz for Kids: Nemat Battah",
                "sv": "Jazz for Kids: Nemat Battah",
                "en": "Jazz for Kids: Nemat Battah"
            },
            "location_extra_info": null,
            "provider": 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>"
            },
            "provider_contact_info": 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,
            "name": {
                "fi": "TaikaBox: Louhi",
                "sv": "TaikaBox: Louhi",
                "en": "TaikaBox: Louhi"
            },
            "location_extra_info": null,
            "provider": 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>"
            },
            "provider_contact_info": 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,
            "name": {
                "fi": "TaikaBox: Louhi",
                "sv": "TaikaBox: Louhi",
                "en": "TaikaBox: Louhi"
            },
            "location_extra_info": null,
            "provider": 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>"
            },
            "provider_contact_info": 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,
            "name": {
                "fi": "HELsign 2026 – Viittomakielinen kulttuuritapahtuma",
                "sv": "HELsign 2026 – Ett kulturevenemang på teckenspråk",
                "en": "HELsign 2026 – Cultural event in sign language"
            },
            "location_extra_info": null,
            "provider": 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>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67449/?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,
            "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"
            },
            "location_extra_info": null,
            "provider": 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>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67957/?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,
            "name": {
                "fi": "TaikaBox: Louhi – koululaisryhmille",
                "sv": "TaikaBox: Louhi – for skolgrupper",
                "en": "TaikaBox: Louhi – for school groups"
            },
            "location_extra_info": null,
            "provider": 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>"
            },
            "provider_contact_info": 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,
            "name": {
                "fi": "TaikaBox: Louhi – koululaisryhmille",
                "sv": "TaikaBox: Louhi – för skolgrupper",
                "en": "TaikaBox: Louhi – for school groups"
            },
            "location_extra_info": null,
            "provider": 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>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67661/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67251",
            "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: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/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "10 € / 6 €",
                        "sv": "10 € / 6 €",
                        "en": "10 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494286,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-22T12:14:09.348503Z",
                    "last_modified_time": "2025-12-22T12:14:09.348518Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778836.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494286/?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-22T12:14:09.196791Z",
            "last_modified_time": "2026-03-20T01:13:13.262884Z",
            "date_published": null,
            "start_time": "2026-02-21T12: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,
            "name": {
                "fi": "Teatteri Rollo: Köpöttäjät",
                "sv": "Teatteri Rollo: Köpöttäjät",
                "en": "Theatre Rollo Köpöttäjät – Plodders"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Teatteri Rollon Köpöttäjät vievät yleisön ihmettelemään köpöttelyä, höpöttelyä, kököttelyä ja housujen lököttelyä!",
                "sv": "I Teateri Rollos Köpöttäjät får publiken träffa Traskarna!",
                "en": "Köpöttäjät by Theatre Rollo lets the audience experience plodding, yapping, squatting and plenty of baggy trousers!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8D5CECB0AB82C009164F3999261E8852/Teatteri_Rollo_Kopottajat",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8D5CECB0AB82C009164F3999261E8852/Teatteri_Rollo_Kopottajat",
                "en": "http://www.annantalo.fi/en/events/event/8D5CECB0AB82C009164F3999261E8852/Theatre_Rollo_Kopottajat_Plodders"
            },
            "description": {
                "fi": "<p>Teatteri Rollon Köpöttäjät vievät yleisön ihmettelemään köpöttelyä, höpöttelyä, kököttelyä ja housujen lököttelyä!</p><p>Köpöttäjät köpöttää ja toisillensa höpöttää. Välil joutuu kököttää, kun housut aina lököttää.<br>Jos köpöttäjä nököttää, niin toiset silloin mököttää.<br>Mistä tulee, minne menee Köpöttäjät nää?<br>Se kyllä sulle selviää, vaik köpö oli loru tää!</p><p>TULE MUKAAN KÖKÖTTÄMÄÄN!</p><p>Ohjaus: Sanna Monto<br>Käsikirjoitus: työryhmä<br>Esiintyjät: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Musiikki: Janne Immonen<br>Lavastus: Kati Lamppu<br>Puvustus: Niina Huovinen<br>Tekniikka: Juha Skukin<br> <br>Teatteri Rollon sanaton esitys<br>Ikäsuositus: 3–9-vuotiaat<br>Esityksen kesto:  35 minuuttia</p><p>Huomaattehan, että Annantalon Taidelauantain avoin paja on auki klo 11-14. Ehkä haluatte tulla hyvissä ajoin taiteilemaan ja katsomaan esitystä?</p><p>Liput: 10 € / 6 €<br>Lippuvaraukset ennakkoon: rollo@rollo.fi sekä puoli tunti ennen esitystä ovelta.</p>",
                "sv": "<p>I Teateri Rollos Köpöttäjät får publiken träffa Traskarna!</p><p>Traskarna traskar och snaskar och plaskar. Slänger och dänger och byxorna hänger.<br> Tar traskaren en lur kan någon snart bli sur.<br> Var kommer traskarna ifrån och vart är de på väg?<br> Det får du snart veta!<br>KOM MED OCH TRASKA!<br> <br>Regi: Sanna Monto<br>Manus: arbetsgrupp<br>På scenen: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Musik: Janne Immonen<br>Iscensättning: Kati Lamppu<br>Kostymering: Niina Huovinen<br>Teknik: Juha Skukin<br>  <br>Ordlös föreställning av Teatteri Rollo<br>Åldersrekommendation: 3–9-åringar<br>Föreställningens längd: cirka 30 minuter<br> <br>Biljetter: 10 € / 6 €<br> Boka biljett: rollo@rollo.fi och vid dörren en halv timme före föreställningen.</p><p>Obs! På Annegården organiseras Öpnna för alla Konstlördagar kl. 11-14. kanske vill skapa konst och sen titta på teater?</p>",
                "en": "<p>Köpöttäjät by Theatre Rollo lets the audience experience plodding, yapping, squatting and plenty of baggy trousers!</p><p>“Plodders keep plodding and mouths keep flapping. Sometimes you gotta squat to keep your trousers up.<br> If a plodder keeps still, others feel ill.<br> Where do these Plodders come from and where do they go?<br> This little ditty was nonsense, but we’ll let you know!”<br>JOIN THE FUN AND PLOD WITH US!<br> <br>Directed by: Sanna Monto<br>Manuscript: working group<br>Performers: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Music: Janne Immonen<br>Staging: Kati Lamppu<br>Costume design: Niina Huovinen<br>Tech: Juha Skukin<br>  <br>Non-verbal performance by Theatre Rollo<br>Recommended age: 3-9-year-olds<br>Duration: approximately 30 minutes<br> <br>Tickets: €10/€6<br> Advance booking of tickets: rollo@rollo.fi and at the door thirty minutes before the show.</p><p>Note! In Annantalo there is an Art Saturday open for all. Maybe you´d like to come earlier, work in a workshop and then watch the performance?</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67251/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}