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

{
    "meta": {
        "count": 7509,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=38",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=36"
    },
    "data": [
        {
            "id": "kulke:67958",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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-vuotalo-21098312/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098312/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098312/"
                    },
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T14:13:01.677370Z",
                    "last_modified_time": "2026-01-09T14:13:01.677382Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779145.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494437/?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-09T14:13:01.587942Z",
            "last_modified_time": "2026-03-20T01:13:42.322357Z",
            "date_published": null,
            "start_time": "2026-03-21T13: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!-festivaali"
            },
            "short_description": {
                "fi": "Interaktiivinen tanssiteos veden viesteistä!",
                "sv": "Ett interaktivt dansverk om vattnets budskap!",
                "en": "Interactive dance performance about the world of water!"
            },
            "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. 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>",
                "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/svenska/engelska</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.</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<br>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Veden_kuiskaus_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Vattnet_viskar_",
                "en": "http://www.vuotalo.fi/en/events/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Waters_Whisper"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67958/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67969",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494460,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T08:13:37.437194Z",
                    "last_modified_time": "2026-01-13T08:13:37.437211Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779147.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494460/?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-13T08:13:37.342953Z",
            "last_modified_time": "2026-03-20T01:13:41.975664Z",
            "date_published": null,
            "start_time": "2026-03-21T10:00:00Z",
            "end_time": "2026-03-21T13: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": "Ilmiömäiset kevätkarkelot",
                "sv": "Fenomenala vårlekar",
                "en": "Phenomenal Spring Fest"
            },
            "short_description": {
                "fi": "Tule leikkimään kevät esiin!",
                "sv": "Kom och lek fram våren!",
                "en": "Come play with us to bring out the spring!"
            },
            "description": {
                "fi": "<p>Tule leikkimään kevät esiin!</p><p>Kevät puhkeaa kukkaan! Ilmiömäiset kevätkarkelot kutsuvat koko perheen viettämään päivää täynnä iloa, luovuutta ja yhteistä tekemistä.</p><p>Ohjelmassa on mm.<br>•\tTeatterileikkejä ja improvisaatiota: heittäydy mukaan ja päästä mielikuvitus valloilleen. <br>•\tKevättansseja ja pieniä esityksiä: nauti rytmistä, musiikista sekä Teatterikoulu ILMI Ö:n oppilaiden teatteriesityksistä.<br>•\tYhteisötaideteos \"Kevään kudelma\": luodaan yhdessä taideteos väreistä ja kevätmuistoista. <br>•\tKevääseen ja pääsiäiseen sopivaa askartelua koko perheelle!<br>Luvassa iloa, raikkaita yllätyksiä ja mukavia keväthetkiä. Tule sellaisena kuin olet ja tehdään tästä kevään hauskin päivä!</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Kom och lek fram våren!</p><p>Våren slår ut i blom! Fenomenala vårlekar bjuder in hela familjen till en dag fylld av glädje, kreativitet och gemensamma aktiviteter.</p><p>I programmet ingår bland annat<br>•\tTeaterlekar och improvisation: kasta dig in i leken och låt fantasin flöda. <br>•\tVårdans och små föreställningar: njut av rytm, musik och teaterföreställningar av Teatterikoulu ILMI Ö:s elever.<br>•\tSamhällskonstverket ”Kevään kudelma” (vårens väv): vi skapar tillsammans ett konstverk av färger och vårminnen. <br>•\tVår- och påskpyssel för hela familjen!</p><p>Här utlovas glädje, fräscha överraskningar och trevliga vårstunder. Kom som du är, vi gör dagen till vårens roligaste dag!</p><p>Fritt inträde</p>",
                "en": "<p>Come play with us to bring out the spring!</p><p>Spring is blooming! Phenomenal Spring Fest invites the whole family to spend a day full of fun, creativity and shared activities.</p><p>The programme includes activities such as:<br>•\tTheatre games and improvisation: immerse yourself in the games and let your imagination run wild. <br>•\tSpring dances and small performances: enjoy rhythm, music and theatre performances by students of Theatre School ILMI Ö.<br>•\tCommunity artwork Kevään kudelma (‘Spring Tapestry’): we will create an artwork together, featuring colours and memories of spring. <br>•\tSpring and Easter-themed arts and crafts for the whole family!</p><p>We will have fun, fresh surprises and pleasant spring moments. Come as you are, and let us make this the most fun day of the spring!</p><p>Free entry!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/ED6D4F88DA6510326FAF837F10EB58A8/Ilmiomaiset_kevatkarkelot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/ED6D4F88DA6510326FAF837F10EB58A8/Fenomenala_varlekar",
                "en": "http://www.vuotalo.fi/en/events/event/ED6D4F88DA6510326FAF837F10EB58A8/Phenomenal_Spring_Fest"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67969/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67603",
            "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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494083,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:59.794900Z",
                    "last_modified_time": "2025-12-04T13:12:59.794920Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782014.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494083/?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:59.701404Z",
            "last_modified_time": "2026-03-20T01:13:41.311299Z",
            "date_published": null,
            "start_time": "2026-03-20T16: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: Max Zenger & Antti Ahoniemi",
                "sv": "Jazz for Kids: Max Zenger & Antti Ahoniemi",
                "en": "Jazz for Kids: Max Zenger & Antti Ahoniemi"
            },
            "short_description": {
                "fi": "Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.",
                "sv": "Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.",
                "en": "Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby."
            },
            "description": {
                "fi": "<p>Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.</p><p>Mikko Hassinen Future Food Factory -yhtyeestä tutut muusikot, saksofonisti ja puupuhallinsoittaja Max Zenger sekä kontrabasisti Antti Ahoniemi, esittävät yhtyeen akustista ja hengittävää musiikkia. Sävellykset ovat Teosto-palkitun lyömäsoittajan Mikko Hassisen käsialaa ja kuvaavat hänen monimuotoista luontosuhdettaan. Tämän lisäksi kuullaan Zengerin ja Ahoniemen toisen yhtyeen, Jazzup!:in, niin ikään luonnon inspiroimia kappaleita.</p><p>Max Zenger on yksi maamme kysytyimmistä jazzmuusikoista. Omien yhtyeidensä lisäksi hän kuuluu UMO Helsinki Jazz Orchestran vakituiseen kokoonpanoon, toimii Porvoo Jazz Festivalin taiteellisena johtajana sekä pyörittää Flame Jazz Records -levy-yhtiötä. Antti Ahoniemi on puolestaan aktiivinen ja monipuolinen freelancemuusikko, joka on nuoresta iästään huolimatta ehtinyt esiintyä monien suomalaisen jazzin huippunimien, kuten Jukka Eskolan ja Timo Lassyn, kanssa sekä muun muassa Saimaa-yhtyeessä.</p><p>Tilaisuuden kesto on 45 min. Yhtye esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikoita ja soittimia.</p><p>Max Zenger – alttosaksofoni <br>Antti Ahoniemi – kontrabasso</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 aulatiloissa.<br>Suomen Jazzliiton ja Helsingin kulttuurikeskusten Jazz for Kids -toimintamalli pohjautuu samannimiseen konserttisarjaan, jota on järjestetty Espoon kulttuurikeskuksessa vuodesta 2015 yhteistyössä Espoon musiikkiopiston pop/jazzlinja Ebelin kanssa. Konseptin kehittäjä on Espoon musiikkiopiston pop/jazzlinja Ebeli.</p><p>Vuonna 2026 tulee kuluneeksi 100 vuotta siitä, kun jazz symbolisesti rantautui Andania-laivan mukana Suomeen. Vuosi on siten historiallinen kotimaisen jazzin juhlavuosi: Jazz Suomi 100 -juhlavuosi. Juhlavuosi nostaa esiin kotimaista jazzia ja sen tekijöitä niin Suomessa kuin ulkomailla, ja juhlii jazzia osana suomalaista kulttuuriperintöä. Jazz Suomi 100 -kampanjaa koordinoi Suomen Jazzliitto.</p><p>Kesto 45 min<br>Vapaa pääsy<br>Paikka: Kahvilan stage</p>",
                "sv": "<p>Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.</p><p>Musiker kända från gruppen Mikko Hassinen Future Food Factory, saxofonisten och träblåsinstrumentmusikern Max Zenger samt kontrabasisten Antti Ahoniemi, framför bandets akustiska och levande musik. Tonsättningarna är av den Teosto-belönade slagverkaren Mikko Hassinen och beskriver hans mångsidiga relation till naturen. Dessutom får vi höra låtar av Zengers och Ahoniemis andra band, Jazzup!, som också är inspirerade av naturen.<br>Max Zenger är en av Finlands mest efterfrågade jazzmusiker. Utöver sina egna grupper hör han till UMO Helsinki Jazz Orchestras permanenta sammansättning, är konstnärlig ledare för Porvoo Jazz Festival och driver skivbolaget Flame Jazz Records. Antti Ahoniemi är en aktiv och mångsidig frilansmusiker som trots sin unga ålder har uppträtt med många av den finska jazzens toppnamn, som Jukka Eskola och Timo Lassy, och bland annat i gruppen Saimaa.<br>Evenemanget varar i 45 minuter. Bandet spelar i ca 35 minuter, varefter publiken kan hälsa på musikerna och instrumenten.<br>Max Zenger – altsaxofon <br>Antti Ahoniemi – kontrabas<br>Jazz for Kids är en serie jazzkonserter på hög nivå där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga lobbyutrymmen.</p><p>Suomen Jazzliittos och Helsingfors kulturcenters verksamhetsmodell Jazz for Kids baserar sig på en konsertserie med samma namn som har ordnats på kulturcentren i Esbo sedan 2015 i samarbete med pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto. Konceptet har utvecklats av pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto.</p><p>År 2026 blir det 100 år sedan jazzen symboliskt landsteg i Finland med fartyget Andania. Året är alltså ett historiskt jubileumsår för den inhemska jazzen: Jubileumsåret Jazz Finland 100. Under jubileumsåret lyfter vi fram den finländska jazzen och dess artister både i Finland och utomlands samt firar jazzen som en del av det finländska kulturarvet. Kampanjen Jazz Suomi 100 samordnas av Suomen Jazzliitto.</p><p>Längd 45 min.<br>Fritt inträde<br>Plats: Café Stage</p>",
                "en": "<p>Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby.</p><p>Musicians familiar from Mikko Hassinen Future Food Factory, saxophonist and woodwind player Max Zenger and double bassist Antti Ahoniemi, will perform the band's acoustic and breathy music. The compositions are by Teosto-award-winning percussionist Mikko Hassinen and reflect his diverse relationship with nature. In addition to this, there will be songs inspired by nature by Zenger and Ahoniemi's other band, Jazzup!.<br>Max Zenger is one of the most sought-after jazz musicians in the country. In addition to his own ensembles, he is a permanent member of the UMO Helsinki Jazz Orchestra, artistic director of the Porvoo Jazz Festival and runs the Flame Jazz Records label. Antti Ahoniemi is an active and versatile freelance musician who, despite his young age, has performed with many of the top names in Finnish jazz, such as Jukka Eskola and Timo Lassy, and in Saimaa, among others.<br>The duration of the event is 45 minutes. The band will perform for about 35 minutes, after which the audience can greet the musicians and see the instruments.<br>Max Zenger – alto saxophone <br>Antti Ahoniemi – double bass<br>Jazz for Kids is a series of high-quality jazz concerts for everyone from babies to grandchildren! Professional musicians perform their work at child-friendly volumes in easily accessible lobbies in cultural centres.</p><p>The Jazz for Kids operating model of the Finnish Jazz Federation and City of Helsinki Cultural Centres is based on the concert series of the same name, which has been organised at the Espoo Cultural Centre since 2015 in cooperation with Espoo Music Institute's pop/jazz line Ebeli. The concept was developed by Ebeli, the pop/jazz line at Espoo Music Institute.</p><p>In 2026, it will be 100 years since jazz symbolically landed in Finland on the Andania ship. The year is, thus, a historic celebration of Finnish jazz: Jazz in Finland 100 centenary. The centenary will highlight Finnish jazz and its artists both in Finland and abroad, and celebrate jazz as part of the Finnish cultural heritage. The Jazz in Finland 100 campaign is coordinated by the Finnish Jazz Federation.</p><p>Duration 45 min<br>Free entry<br>Location: Café stage</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi",
                "en": "http://www.kanneltalo.fi/en/events/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67603/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68190",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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/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:p29865/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1586925,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T10:13:00.166799Z",
                    "last_modified_time": "2026-03-10T10:13:00.166812Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786124.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586925/?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-03-10T10:13:00.036095Z",
            "last_modified_time": "2026-03-20T01:13:40.994705Z",
            "date_published": null,
            "start_time": "2026-03-20T14:00:00Z",
            "end_time": "2026-03-20T17: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": "Nowruz – kevään juhla",
                "sv": "Nowruz – vårens fest",
                "en": "Nowruz – celebrating spring"
            },
            "short_description": {
                "fi": "Tervetuloa juhlistamaan kevään saapumista ja Nowruz-juhlaa Stoaan! Juhlaa vietetään musiikin, tiedon ja yhteisen tekemisen merkeissä.",
                "sv": "Välkommen att fira vårens ankomst och Nowruz på Stoa! Festen firas med musik, information och gemensamma aktiviteter.",
                "en": "Join us in celebrating the arrival of spring and Nowruz at Stoa! The event will feature music, information and shared activities."
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan kevään saapumista ja Nowruz-juhlaa Stoaan! Juhlaa vietetään musiikin, tiedon ja yhteisen tekemisen merkeissä.</p><p>Nowruz on kevätpäiväntasauksen juhla ja iranilaisen kalenterin uusivuosi. Sitä on juhlittu yli 3000 vuoden ajan Iranissa sekä laajasti Keski-Aasiassa, Kaukasuksella, Mustanmeren alueella ja kurdien keskuudessa.</p><p><b>Klo 16–17.45 Luova askartelupaja aulassa</b><br>Lapsiperheiden askartelupajassa tehdään kevätaiheinen postikortti Nowruzin symboleista inspiroituen. Työpaja kutsuu osallistujat pohtimaan kevään, luonnon ja uuden alun teemoja rennon tekemisen kautta. Työpajan ohjaa Sadaf Yazdizadeh. <br> <br><b>Klo 16–17 Tutkija Jonas Maristo kirjastossa</b><br>Suomalainen tutkija Jonas Maristo pitää luennon Nowruzin historiasta. Luento esittelee juhlan pitkää historiaa, zarathustralaisia juuria, perinteistä juhlapöytää (sofre-ye haft sin) sekä Nowruzin viettoa eri puolilla maailmaa.<br> <br><b>Klo 18–19 Road Ensemble aulassa</b><br>Illan päättää Road Ensemble, joka yhdistelee iranilaiskansojen, kurdien ja afgaanien kansanmusiikkia. Yhtyeessä soittavat Fardin Abbasi (perkussiot, laulu), Sheida Sanati (bass tar / moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santour, laulu, taiteellinen johtaja) sekä Mehrab (dombyra, laulu).<br> <br>Tilaisuus on maksuton ja avoin kaikille.</p>",
                "sv": "<p>Välkommen att fira vårens ankomst och Nowruz på Stoa! Festen firas med musik, information och gemensamma aktiviteter.</p><p>Nowruz är vårdagjämningens fest och den iranska kalenderns nyår. Den har firats i över 3 000 år i Iran och i stora delar av Centralasien, Kaukasus och Svartahavsregionen samt bland kurderna.</p><p><b>Kl. 16–17.45 Kreativ pysselverkstad i aulan</b><br>I pysselverkstaden för barnfamiljer får man göra ett vårligt vykort med inspiration från Nowruz symboler. Verkstaden bjuder in deltagarna att fundera kring våren, naturen och en ny början genom en avslappnad aktivitet. Verkstaden leds av Sadaf Yazdizadeh. <br> <br><b>Kl. 16–17 Forskaren Jonas Maristo på biblioteket</b><br>Den finländske forskaren Jonas Maristo håller en föreläsning om Nowruz historia. Föreläsningen berättar om högtidens långa historia, zarathustriska rötter och traditionella festbord (sofre-ye haft sin), samt hur Nowruz firas på olika håll i världen.<br> <br><b>Kl. 18–19 Road Ensemble i aulan</b><br>Kvällen avslutas med Road Ensemble, som kombinerar folkmusik från iranska folk, kurder och afghaner. I bandet spelar Fardin Abbasi (slagverk, sång), Sheida Sanati (bass tar/moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santour, sång, konstnärlig ledare) och Mehrab (dombyra, sång).<br> <br>Evenemanget är avgiftsfritt och öppet för alla.</p>",
                "en": "<p>Join us in celebrating the arrival of spring and Nowruz at Stoa! The event will feature music, information and shared activities.</p><p>Nowruz is the celebration of the spring equinox and the New Year in the Iranian calendar. It has been observed for more than 3,000 years in Iran and widely throughout Central Asia, the Caucasus, in the Black Sea area and among Kurds.</p><p><b>16.00–17.45 Creative crafts workshop in the lobby</b><br>Come to the crafts workshop for families with children and create a spring-themed postcard inspired by Nowruz symbols. The workshop encourages participants to think about the themes of spring, nature and new beginnings by participating in relaxed shared activities. The workshop is led by Sadaf Yazdizadeh.<br> <br><b>16.00–17.00 Lecture by researcher Jonas Maristo in the library</b><br>Finnish researcher Jonas Maristo will give a lecture on the history of Nowruz. The lecture will provide an overview of the long history of the celebration, its Zoroastrian roots, the traditional festive spread (Sofreh Haft Sin) as well as how Nowruz is observed around the world. <br> <br><b>18.00–19.00 Road Ensemble in the lobby</b><br>The evening will be closed by the Road Ensemble combining folk music by Iranian peoples, Kurds and Afghans. The line-up of the group includes Fardin Abbasi (percussion, vocals), Sheida Sanati (bass tar / moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santur, vocals, artistic direction) and Mehrab (dombyra, vocals).<br> <br>The event is free of charge and open to all.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_kevaan_juhla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_varens_fest",
                "en": "http://www.stoa.fi/en/events/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_celebrating_spring"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68190/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67968",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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-vuotalo-21098315/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098315/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098315/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494459,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T08:13:36.836781Z",
                    "last_modified_time": "2026-01-13T08:13:36.836796Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779245.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494459/?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-13T08:13:36.732459Z",
            "last_modified_time": "2026-03-20T01:13:40.704196Z",
            "date_published": null,
            "start_time": "2026-03-20T09: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": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja (Estonia) – Bravo!-festivaali"
            },
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "description": {
                "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p>",
                "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>",
                "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months. It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance. Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.vuotalo.fi/en/events/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja_Estonia_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67968/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67967",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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-vuotalo-21098314/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098314/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098314/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494458,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T07:13:36.536056Z",
                    "last_modified_time": "2026-01-13T07:13:36.536074Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779244.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494458/?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-13T07:13:36.358529Z",
            "last_modified_time": "2026-03-20T01:13:40.560090Z",
            "date_published": null,
            "start_time": "2026-03-20T07: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": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja (Estonia) – Bravo!-festivaali"
            },
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "description": {
                "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p>",
                "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>",
                "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months. It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance. Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.vuotalo.fi/en/events/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja_Estonia_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67967/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67562",
            "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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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"
                }
            ],
            "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-21076982",
                        "sv": "https://www.lippu.fi/event/name-21076982",
                        "en": "https://www.lippu.fi/event/name-21076982"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494307,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T10:13:56.964590Z",
                    "last_modified_time": "2025-12-23T10:13:56.964605Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781729.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494307/?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:56.821784Z",
            "last_modified_time": "2026-03-20T01:13:40.288723Z",
            "date_published": null,
            "start_time": "2026-03-19T15:30:00Z",
            "end_time": "2026-03-19T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festivaali",
                "sv": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festival",
                "en": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festival"
            },
            "short_description": {
                "fi": "Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!",
                "sv": "Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!",
                "en": "Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!"
            },
            "description": {
                "fi": "<p>Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!</p><p>Onko huonekaluilla tunteita? Voiko pölyn nähdä?</p><p>Dust (suomeksi pöly) on fiktiivinen tarina, joka yhdistää leikkisästi muistoja, maagista realismia, pehmeää sirkusta ja akrobatiaa. Näyttämö on toisinaan aivan ylösalaisin kun kolme esiintyjää matkustaa läpi maailman, jossa jotakin erikoista on tapahtunut; esineet liikkuvat omillaan ja musiikki tanssii. Seikkailu etenee ihastuttavan oudoilla ja ihmeellisillä tavoilla.</p><p>Koreografia ja näyttämöllepano: Claire Parsons ja ensemble<br>Esiintyjät 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel</p><p>Skenografia: Anna Nyberg<br>Pukusuunnittelu ja ompelu: Matilda Hyttsten<br>Ompelu: Pia Gyll, Bitte Palm<br>Valosuunnittelu: Christian Farcher<br>Musiikki ja äänisuunnittelu: Mikael Svanevik<br>Hiukset, peruukit, naamiointi: Angelica Ekeberg, Theresia Frisk<br>Tuottaja: Lena Yngvesson<br>Valokuvaus: Linda Himsel<br>Video: Marc Davin</p><p>Kesto: n. 45 min<br>Ikäsuositus: 6+<br>Kieli: sanaton</p>",
                "sv": "<p>Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!</p><p>Puder är sammanhang, minnen, förnimmelser och påminnelser. Magisk realism möter sång, dans, kropp och påståenden. PUDER är en utflykt till en plats där rummet rör sig och rörelsen sjunger. Det oväntade får huvudrollen.</p><p>Puder undersöker parallella verkligheter i en lekpark där dans, mim, akrobatik och det däremellan möts. En föreställning inspirerad av den franske filosofen Gaston Bachelards idéer om drömmar och rumslighet.<br> <br>En scenkonstupplevelse för alla från 6 år.</p><p>Premiär 23 november 2023 på Lokstallarna i Karlshamn, i samarbete med Regionteatern Blekinge Kronoberg.<br>Ordlös</p><p>För alla från 6 år.</p>",
                "en": "<p>Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!</p><p>Does furniture have feelings? Can you see the dust? Dust is a fictional tale in a playful mix of memory and tactility, magical realism, soft circus and acrobatics, in an upside and sometimes sideways viewed space. Three performers travel through a world where something has happened; objects move and music dances in an adventure that transfers in delightfully strange and wondrous ways.</p><p>A performance that challenges the fictional with a poetic truth or two, to see if this space is a true place, if furniture has feelings and if you can see the dust.</p><p>Premiere: 23 November 2023 at Lokstallarna, Karlshamn, in collaboration with Regionteatern Blekinge Kronoberg</p><p>Non-verbal<br>For everyone aged 6 and above!</p><p>Choreography & staging: Claire Parsons with ensemble<br>Performers 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel<br>Scenography: Anna Nyberg<br>Costumes and tailoring: Matilda Hyttsten<br>Tailoring: Pia Gyll, Bitte Palm<br>Lighting design: Christian Farcher<br>Music and sound design: Mikael Svanevik<br>Hair, wigs and makeup: Angelica Ekeberg, Theresia Frisk<br>Producer: Lena Yngvesson<br>Photo: Linda Himsel<br>Video: Marc Davin</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_",
                "en": "http://www.malmitalo.fi/en/events/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67562/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67806",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494383,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T15:13:10.503113Z",
                    "last_modified_time": "2026-01-05T15:13:10.503126Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782912.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494383/?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-05T15:13:10.374740Z",
            "last_modified_time": "2026-03-20T01:13:39.010954Z",
            "date_published": null,
            "start_time": "2026-03-19T07: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": "Skidikino: Muumien maailma",
                "sv": "Skidikino: Mumintrollens värld",
                "en": "Skidikino: The world of Moomins"
            },
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.",
                "sv": "Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.",
                "en": "Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them."
            },
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä 2026 nähdään rakastetun Muumiperheen seikkailuja restauroidun klassikko-nukkeanimaation muodossa. Maaliskuun Skidikinossa seurataan talvisia tarinoita, ja huhtikuussa ollaan jo keväisemmissä tunnelmissa.<br> <br>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. <br> <br>ikäsuositus: Päiväkoti-ikäisille  <br>Paikka: teatterisali<br>Kesto n. 35-40 min  <br>Kieli: suomi  <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: Kultus.hel.fi 13.1. klo 10 alkaen.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.</p><p>Våren 2026 får vi se den älskade muminfamiljens äventyr i form av en restaurerad klassisk dockanimation. På Skidikino i mars får vi ta del av vinterberättelser, och i april är det redan vårstämning.<br> <br>Till Skidikino hör Pikkukroko-läromedel, som kan laddas ner från Stoas webbplats. Biobesök är temat i det illustrerade materialet.</p><p>Åldersrekommendation: Barn i daghemsåldern  <br>Plats: teatersalen<br>Längd: cirka 35–40 min.  <br>Språk: finska  <br>Fri entré, obligatorisk anmälan för grupper: Kultus.hel.fi från 13.1 kl. 10.</p>",
                "en": "<p>Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them.</p><p>In spring 2026, the adventures of the beloved Moomin family will be presented in a restored classic puppet animation. In March, Skidikino will present winter stories, and in April, viewers will be treated to spring vibes.<br> <br>The Skidikino events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from the Stoa website. The illustrated material revolves around going to the cinema. <br> <br>Recommended age: For daycare-age children  <br>Location: theatre hall<br>Duration approx. 35–40 minutes  <br>Language: Finnish  <br>Free admission, registration required for groups: Kultus.hel.fi from 13 January from 10.00 onwards.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_Muumien_maailma",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_Mumintrollens_varld",
                "en": "http://www.stoa.fi/en/events/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_The_world_of_Moomins"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67806/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67426",
            "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-20997603/",
                        "sv": "https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997603/",
                        "en": "https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997603/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493936,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-27T13:13:25.552339Z",
                    "last_modified_time": "2025-11-27T13:13:25.552356Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781189.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493936/?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-27T13:13:25.355758Z",
            "last_modified_time": "2026-03-20T01:13:38.574857Z",
            "date_published": null,
            "start_time": "2026-03-18T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kompani Giraff: ABC - A Painters Alphabet – Bravo! -festivaali",
                "sv": "Kompani Giraff: ABC - A Painters Alphabet – Bravo! -festival",
                "en": "Kompani Giraff: ABC - A Painters Alphabet – Bravo! -festival"
            },
            "short_description": {
                "fi": "Hauska sirkusseikkailu vallattomien aakkosten matkassa!",
                "sv": "Humoristisk cirkusresa genom ett upproriskt alfabet!",
                "en": "Humorous circus journey through a rebellious alphabet!"
            },
            "description": {
                "fi": "<p>Hauska sirkusseikkailu vallattomien aakkosten matkassa!</p><p>Esityksessä yleisö kutsutaan seuraamaan kahden sirkustaiteilijan hurjaa tehtävää: käydä kaikki aakkosten 29 kirjainta läpi vain 35 minuutissa - kekseliäillä ja taikuutta vaativilla tavoilla tietenkin.</p><p>ABC-esityksessä lapsiyleisö toivotetaan tervetulleeksi aakkosstudioon, jossa kahdelle sirkustaiteilijalle on annettu haastava tehtävä selvittää aakkosten 29 kirjainta vain 35 minuutissa. Tästä alkaa kekseliäs sirkusmatka vallattomien aakkosten läpi. Kurittomat kirjaimet kulkevat eteenpäin, kun monenkirjavat hahmot astuvat auttamaan.</p><p>Huimaava matka aakkosten läpi tarjoaa humoristisen ja nerokkaan sirkus- ja taikashown, joka takuulla herättää uteliaisuutta lukutaitoa kohtaan. Kompani Giraffin rakastetut esitykset ovat valloittaneet yleisöä niin kotimaassaan Ruotsissa kuin muuallakin maailmassa.</p><p>Ohjaus: Viktoria Dalborg<br>Yhteistyötaiteilijat: Jenny Soddu, Petter Wadsten<br>Lavastus ja pukusuunnittelu: Sus Soddu<br>Musiikki: Isak Elwin<br>Taikuuskonsultti: Axel Adlercreutz<br>Naamiointisuunnittelu: Tuija Valén<br>Äänisuunnittelu: Joakim Björklund<br>Tekninen tuotannon suunnittelu: Stefan Karlström<br>Tuottaja: Mette Klouman<br>Valokuvat: Sören Vilks</p><p>Kesto: 35 min.<br>Kieli: sanaton<br>Ikäsuositus: 3–9-vuotiaat</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>Humoristisk cirkusresa genom ett upproriskt alfabet!</p><p>I Giraffens ABC välkomnas den yngsta publiken in i en fantasieggande alfabetsateljé, där två cirkuskonstnärer fått det halsbrytande uppdraget att ta sig igenom alfabetets 29 bokstäver på bara 35 minuter. Det blir startskottet på en uppfinningsrik och akrobatisk cirkusresa genom ett bångstyrigt alfabet.</p><p>Vilda versaler faller uppåt medan prinsar och svanar kliver ut ur sina ramar för att hjälpa till. Giraffens ABC är en svindlande resa genom alfabetet där bokstäverna till sist bestämmer sig för att dansa en balett högt uppe bland molnen. Med Giraffens ABC vill Kompani Giraff bjuda på en humoristisk och underfundig cirkus- och magiföreställning som väcker nyfikenhet och kreativ läsförståelse för barn i fyra- till sexårsåldern.</p><p>Regi: Viktoria Dalborg <br>Medskapande artister: Jenny Soddu, Petter Wadsten <br>Scenografi och kostym: Sus Soddu <br>Musik: Isak Elwin Magikonsult: Axel Adlercreutz <br>Mask: Tuija Valén <br>Ljuddesign: Joakim Björklund <br>Teknisk producent: Stefan Karlström <br>Producent: Mette Klouman <br>Foto: Sören Vilks</p><p>Längd: 35 min</p>",
                "en": "<p>Humorous circus journey through a rebellious alphabet!</p><p>In ABC, the youngest audience is welcomed into an amazing alphabet studio, where two circus artists have been given the daunting task of getting through the 29 letters of the alphabet in just 35 minutes.</p><p>In ABC, the youngest audience is welcomed into an amazing alphabet studio, where two circus artists have been given the daunting task of getting through the 29 letters of the alphabet in just 35 minutes. It will be the start of an inventive and acrobatic circus journey through a rebellious alphabet. Wild capitals tumble upward as princes and swans step out of their frames to help. ABC is a dizzying journey through the alphabet where the letters finally decide to dance a ballet high up in the clouds.</p><p>With ABC - A Painters Alphabet, Kompani Giraff wants to offer a humorous and ingenious circus and magic show that arouses curiosity and creative reading comprehension for children aged three to nine.</p><p>Length: 35 min<br>Age: 3-9 years old</p><p>Directed by: Viktoria Dalborg<br>Co creative artists: Jenny Soddu, Petter Wadsten<br>Set & costume design: Sus Soddu<br>Music: Isak Elwin<br>Magic consultant: Axel Adlercreutz<br>Mask design: Tuija Valén<br>Sound design: Joakim Björklund<br>Technical production manager: Stefan Karlström<br>Production manager: Mette Klouman<br>Photography: Sören Vilks</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!</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.<br>www.bravofestivaali.fi</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B3816E6BFEB3149228A89B5D06948795/Kompani_Giraff_ABC_-_A_Painters_Alphabet",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B3816E6BFEB3149228A89B5D06948795/Kompani_Giraff_ABC_-_A_Painters_Alphabet",
                "en": "http://www.kanneltalo.fi/en/events/event/B3816E6BFEB3149228A89B5D06948795/Kompani_Giraff_ABC_-_A_Painters_Alphabet"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67426/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67947",
            "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:350/?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: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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494455,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-12T12:13:40.453418Z",
                    "last_modified_time": "2026-01-12T12:13:40.453433Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783757.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494455/?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-12T12:13:40.298811Z",
            "last_modified_time": "2026-03-20T01:13:37.795042Z",
            "date_published": null,
            "start_time": "2026-03-18T08: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": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "sv": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "en": "Aaben Dans: What is that? (Denmark) – Bravo!-festivaali"
            },
            "short_description": {
                "fi": "Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!",
                "sv": "Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!",
                "en": "A performance about the driving force of curiosity!"
            },
            "description": {
                "fi": "<p>Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!</p><p>Uteliaisuus on yksi mahtavimpia voimia, kun pieni lapsi tutkii maailmaa. Hilpeitä yllätyksiä täynnä olevassa esityksessä tanssijat tutkivat liikkeen ja tanssin avulla sekä kehoja että tilaa pitämättä mitään itsestäänselvyytenä.</p><p>Aaben Dans on Tanskan tunnetuimpia tanssiryhmiä. Ryhmän teokset tuovat nykytanssia lapsiyleisöille lämminhenkisellä tavalla. Tasokkaat, aistilliset ja yllättävät esitykset ajankohtaisista aiheista ovat ryhmän omien sanojen mukaan “populaaria avantgardea”.<br> <br>“Teoksellaan ’What is that?’ Aaben Dans on luonut kiehtovan esityksen, joka rikkoo kaikki säännöt ja löytää maailman uudelleen.”<br>- Børneteatervisen</p><p>Sanaton.<br>Kesto: 45 min.<br>Ikäsuositus: 0,5–5 -vuotiaat</p><p>Konsepti, koreografia ja näyttämöllepano: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Tanssijat: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Skenografia ja puvustus: KASPERSOPHIE<br>Säveltäjä: Fredrik Lundin<br>Valokuvaus: Ditte Valente<br>Valosuunnittelu / Kiertuetuotanto: Elke Laleman<br>Tuotantosuunnittelija: Madeleine Lind Hoppe<br>Grafiikat: Line Thornberg<br>Ompelu: Cynthia Coussieu, Gunilla Nordby<br>Tuotanto Aaben Dans<br>Ensi-ilta September 2020</p><p>18.3. klo 9 ja 10.30 esitykset ovat maksuttomia varhaiskasvatuksen ryhmille. Paikat arvotaan kultus.hel.fi:ssä ilmoittautuneiden ryhmien kanssa. Ilmoittautuminen 12.1. alkaen kultus.hel.fi.</p>",
                "sv": "<p>Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!</p><p>Nyfikenhet är en av de mäktigaste krafterna när ett litet barn utforskar världen. I en föreställning full av lustiga överraskningar utforskar dansare både kroppar och rum genom rörelse och dans, utan att ta något för givet.</p><p>Aaben Dans är en av Danmarks mest kända dansgrupper. Gruppens verk förmedlar samtida dans till barnpubliker på ett varmhjärtat sätt. De högklassiga, sensoriska och överraskande föreställningarna om aktuella ämnen beskrivs av gruppen själv som ”populärt avantgarde”.</p><p>”Med verket What is that? har Aaben Dans skapat en fascinerande föreställning som bryter mot alla regler och återupptäcker världen.”<br>- Børneteatervisen</p><p>Koncept, koreografi och iscensättning: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dansare: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenografi och kostym: KASPERSOPHIE<br>Kompositör: Fredrik Lundin<br>Fotografering: Ditte Valente<br>Ljusdesign / Turnéproduktion: Elke Laleman<br>Produktionsplanerare: Madeleine Lind Hoppe<br>Grafik: Line Thornberg<br>Sömmare: Cynthia Coussieu, Gunilla Nordby<br>Produktion: Aaben Dans</p>",
                "en": "<p>A performance about the driving force of curiosity!</p><p>Curiosity is the strongest drive as a small child discovers the world. A drive that can last for a lifetime. Through movement and dance, the dancers explore both the body and the space without taking anything for granted.<br> <br>“We want to move our audiences in entertaining, relevant and thought-provoking ways. We believe in the power of art to bring new perspectives to our lives. We want to create good, sensuous and surprising performances about current issues that communicate to a wide audience. With open eyes, we explore what dance can and will do in our time. We work to create new and relevant forms of performing arts. We make popular avant-garde.” - Aaben Dans<br> <br>“With ‘What is that?’, Aaben Dans has created an intriguing performance piece that breaks all the rules and concepts and rediscovers the world.”<br> - Børneteateravisen</p><p>Non-verbal<br> Duration: 45 min<br> Age recommendation: 05,-5 years<br> <br>Concept, choreography and staging Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dancers Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenography and costumes KASPERSOPHIE<br>Composer Fredrik Lundin<br>Photography Ditte Valente<br>Light Design / Tour Production Elke Laleman<br>Production management Madeleine Lind Hoppe<br>Graphics Line Thornberg<br>Tailors Cynthia Coussieu, Gunilla Nordby<br>Produced by Aaben Dans<br>Premiere September 2020</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E132FC9D3A906C556E0F99941EC88527/Aaben_Dans_What_is_that_Tanska_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E132FC9D3A906C556E0F99941EC88527/Aaben_Dans_What_is_that_Tanska_",
                "en": "http://www.annantalo.fi/en/events/event/E132FC9D3A906C556E0F99941EC88527/Aaben_Dans_What_is_that_Denmark_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67947/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67946",
            "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:350/?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: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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494454,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-12T12:13:39.951949Z",
                    "last_modified_time": "2026-01-12T12:13:39.951965Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783756.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494454/?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-12T12:13:39.788957Z",
            "last_modified_time": "2026-03-20T01:13:37.663057Z",
            "date_published": null,
            "start_time": "2026-03-18T07: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": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "sv": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "en": "Aaben Dans: What is that? (Denmark) – Bravo!-festivaali"
            },
            "short_description": {
                "fi": "Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!",
                "sv": "Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!",
                "en": "A performance about the driving force of curiosity!"
            },
            "description": {
                "fi": "<p>Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!</p><p>Uteliaisuus on yksi mahtavimpia voimia, kun pieni lapsi tutkii maailmaa. Hilpeitä yllätyksiä täynnä olevassa esityksessä tanssijat tutkivat liikkeen ja tanssin avulla sekä kehoja että tilaa pitämättä mitään itsestäänselvyytenä.</p><p>Aaben Dans on Tanskan tunnetuimpia tanssiryhmiä. Ryhmän teokset tuovat nykytanssia lapsiyleisöille lämminhenkisellä tavalla. Tasokkaat, aistilliset ja yllättävät esitykset ajankohtaisista aiheista ovat ryhmän omien sanojen mukaan “populaaria avantgardea”.<br> <br>“Teoksellaan ’What is that?’ Aaben Dans on luonut kiehtovan esityksen, joka rikkoo kaikki säännöt ja löytää maailman uudelleen.”<br>- Børneteatervisen</p><p>Sanaton.<br>Kesto: 45 min.<br>Ikäsuositus: 0,5–5 -vuotiaat</p><p>Konsepti, koreografia ja näyttämöllepano: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Tanssijat: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Skenografia ja puvustus: KASPERSOPHIE<br>Säveltäjä: Fredrik Lundin<br>Valokuvaus: Ditte Valente<br>Valosuunnittelu / Kiertuetuotanto: Elke Laleman<br>Tuotantosuunnittelija: Madeleine Lind Hoppe<br>Grafiikat: Line Thornberg<br>Ompelu: Cynthia Coussieu, Gunilla Nordby<br>Tuotanto Aaben Dans<br>Ensi-ilta September 2020</p><p>18.3. klo 9 ja 10.30 esitykset ovat maksuttomia varhaiskasvatuksen ryhmille. Paikat arvotaan kultus.hel.fi:ssä ilmoittautuneiden ryhmien kanssa. Ilmoittautuminen 12.1. alkaen kultus.hel.fi.</p>",
                "sv": "<p>Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!</p><p>Nyfikenhet är en av de mäktigaste krafterna när ett litet barn utforskar världen. I en föreställning full av lustiga överraskningar utforskar dansare både kroppar och rum genom rörelse och dans, utan att ta något för givet.</p><p>Aaben Dans är en av Danmarks mest kända dansgrupper. Gruppens verk förmedlar samtida dans till barnpubliker på ett varmhjärtat sätt. De högklassiga, sensoriska och överraskande föreställningarna om aktuella ämnen beskrivs av gruppen själv som ”populärt avantgarde”.</p><p>”Med verket What is that? har Aaben Dans skapat en fascinerande föreställning som bryter mot alla regler och återupptäcker världen.”<br>- Børneteatervisen</p><p>Koncept, koreografi och iscensättning: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dansare: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenografi och kostym: KASPERSOPHIE<br>Kompositör: Fredrik Lundin<br>Fotografering: Ditte Valente<br>Ljusdesign / Turnéproduktion: Elke Laleman<br>Produktionsplanerare: Madeleine Lind Hoppe<br>Grafik: Line Thornberg<br>Sömmare: Cynthia Coussieu, Gunilla Nordby<br>Produktion: Aaben Dans</p>",
                "en": "<p>A performance about the driving force of curiosity!</p><p>Curiosity is the strongest drive as a small child discovers the world. A drive that can last for a lifetime. Through movement and dance, the dancers explore both the body and the space without taking anything for granted.<br> <br>“We want to move our audiences in entertaining, relevant and thought-provoking ways. We believe in the power of art to bring new perspectives to our lives. We want to create good, sensuous and surprising performances about current issues that communicate to a wide audience. With open eyes, we explore what dance can and will do in our time. We work to create new and relevant forms of performing arts. We make popular avant-garde.” - Aaben Dans<br> <br>“With ‘What is that?’, Aaben Dans has created an intriguing performance piece that breaks all the rules and concepts and rediscovers the world.”<br> - Børneteateravisen</p><p>Non-verbal<br> Duration: 45 min<br> Age recommendation: 05,-5 years<br> <br>Concept, choreography and staging Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dancers Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenography and costumes KASPERSOPHIE<br>Composer Fredrik Lundin<br>Photography Ditte Valente<br>Light Design / Tour Production Elke Laleman<br>Production management Madeleine Lind Hoppe<br>Graphics Line Thornberg<br>Tailors Cynthia Coussieu, Gunilla Nordby<br>Produced by Aaben Dans<br>Premiere September 2020</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1A377189BF4EB3BF288B09C35840FE97/Aaben_Dans_What_is_that_Tanska_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/1A377189BF4EB3BF288B09C35840FE97/Aaben_Dans_What_is_that_Tanska_",
                "en": "http://www.annantalo.fi/en/events/event/1A377189BF4EB3BF288B09C35840FE97/Aaben_Dans_What_is_that_Denmark_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67946/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67945",
            "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:350/?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: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/aaben-dans-what-is-that-mika-tama-on-annantalo-21179138/",
                        "sv": "https://www.lippu.fi/event/aaben-dans-what-is-that-mika-tama-on-annantalo-21179138/",
                        "en": "https://www.lippu.fi/event/aaben-dans-what-is-that-mika-tama-on-annantalo-21179138/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494451,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-12T10:13:06.263011Z",
                    "last_modified_time": "2026-01-12T10:13:06.263038Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783755.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494451/?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-12T10:13:06.154323Z",
            "last_modified_time": "2026-03-20T01:13:37.094763Z",
            "date_published": null,
            "start_time": "2026-03-17T15: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": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "sv": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "en": "Aaben Dans: What is that? (Denmark) – Bravo!-festivaali"
            },
            "short_description": {
                "fi": "Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!",
                "sv": "Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!",
                "en": "A performance about the driving force of curiosity!"
            },
            "description": {
                "fi": "<p>Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!</p><p>Uteliaisuus on yksi mahtavimpia voimia, kun pieni lapsi tutkii maailmaa. Hilpeitä yllätyksiä täynnä olevassa esityksessä tanssijat tutkivat liikkeen ja tanssin avulla sekä kehoja että tilaa pitämättä mitään itsestäänselvyytenä.</p><p>Aaben Dans on Tanskan tunnetuimpia tanssiryhmiä. Ryhmän teokset tuovat nykytanssia lapsiyleisöille lämminhenkisellä tavalla. Tasokkaat, aistilliset ja yllättävät esitykset ajankohtaisista aiheista ovat ryhmän omien sanojen mukaan “populaaria avantgardea”.<br> <br>“Teoksellaan ’What is that?’ Aaben Dans on luonut kiehtovan esityksen, joka rikkoo kaikki säännöt ja löytää maailman uudelleen.”<br>- Børneteatervisen</p><p>Sanaton.<br>Kesto: 45 min.<br>Ikäsuositus: 0,5–5 -vuotiaat</p><p>Konsepti, koreografia ja näyttämöllepano: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Tanssijat: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Skenografia ja puvustus: KASPERSOPHIE<br>Säveltäjä: Fredrik Lundin<br>Valokuvaus: Ditte Valente<br>Valosuunnittelu / Kiertuetuotanto: Elke Laleman<br>Tuotantosuunnittelija: Madeleine Lind Hoppe<br>Grafiikat: Line Thornberg<br>Ompelu: Cynthia Coussieu, Gunilla Nordby<br>Tuotanto Aaben Dans<br>Ensi-ilta September 2020</p>",
                "sv": "<p>Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!</p><p>Nyfikenhet är en av de mäktigaste krafterna när ett litet barn utforskar världen. I en föreställning full av lustiga överraskningar utforskar dansare både kroppar och rum genom rörelse och dans, utan att ta något för givet.</p><p>Aaben Dans är en av Danmarks mest kända dansgrupper. Gruppens verk förmedlar samtida dans till barnpubliker på ett varmhjärtat sätt. De högklassiga, sensoriska och överraskande föreställningarna om aktuella ämnen beskrivs av gruppen själv som ”populärt avantgarde”.</p><p>”Med verket What is that? har Aaben Dans skapat en fascinerande föreställning som bryter mot alla regler och återupptäcker världen.”<br>- Børneteatervisen</p><p>Koncept, koreografi och iscensättning: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dansare: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenografi och kostym: KASPERSOPHIE<br>Kompositör: Fredrik Lundin<br>Fotografering: Ditte Valente<br>Ljusdesign / Turnéproduktion: Elke Laleman<br>Produktionsplanerare: Madeleine Lind Hoppe<br>Grafik: Line Thornberg<br>Sömmare: Cynthia Coussieu, Gunilla Nordby<br>Produktion: Aaben Dans</p>",
                "en": "<p>A performance about the driving force of curiosity!</p><p>Curiosity is the strongest drive as a small child discovers the world. A drive that can last for a lifetime. Through movement and dance, the dancers explore both the body and the space without taking anything for granted.<br> <br>“We want to move our audiences in entertaining, relevant and thought-provoking ways. We believe in the power of art to bring new perspectives to our lives. We want to create good, sensuous and surprising performances about current issues that communicate to a wide audience. With open eyes, we explore what dance can and will do in our time. We work to create new and relevant forms of performing arts. We make popular avant-garde.” - Aaben Dans<br> <br>“With ‘What is that?’, Aaben Dans has created an intriguing performance piece that breaks all the rules and concepts and rediscovers the world.”<br> - Børneteateravisen</p><p>Non-verbal<br> Duration: 45 min<br> Age recommendation: 05,-5 years<br> <br>Concept, choreography and staging Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dancers Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenography and costumes KASPERSOPHIE<br>Composer Fredrik Lundin<br>Photography Ditte Valente<br>Light Design / Tour Production Elke Laleman<br>Production management Madeleine Lind Hoppe<br>Graphics Line Thornberg<br>Tailors Cynthia Coussieu, Gunilla Nordby<br>Produced by Aaben Dans<br>Premiere September 2020</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/896A14F79A2AA1C62EC66AB40E91175B/Aaben_Dans_What_is_that_Tanska_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/896A14F79A2AA1C62EC66AB40E91175B/Aaben_Dans_What_is_that_Tanska_",
                "en": "http://www.annantalo.fi/en/events/event/896A14F79A2AA1C62EC66AB40E91175B/Aaben_Dans_What_is_that_Denmark_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67945/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67660",
            "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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494425,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T10:12:58.555865Z",
                    "last_modified_time": "2026-01-09T10:12:58.555880Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782304.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494425/?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-09T10:12:58.440059Z",
            "last_modified_time": "2026-03-20T01:13:36.683662Z",
            "date_published": null,
            "start_time": "2026-03-16T11: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!-festivalen",
                "en": "Aude Busson: Manndýr – Bravo! Festival"
            },
            "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."
            },
            "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. Lavalla esiintyjä Aude Busson seuraa lasten ääniä ja jäljittää tarinaa ihmiskunnasta ja sen suhteesta maailmaan.</p><p>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>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: 5–10-vuotiaat</p><p>Tekijät:<br>Konsepti, esiintyjä: Aude Busson<br>Lavastus: Sigríður Sunna Reynisdóttir<br>Musiikki: Björn Kristjánsson (Borko)</p><p>Päiväkodeille ja kouluille, paikkavaraukset arvontaan kultus.hel.fi 12.1.-10.2.2026 Arvonta on suoritettu!</p><p>Kiitos: Teatteriryhmä 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.</p><p>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: 5–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: 5-10-years</p><p>Thank you: Theatre group Linnunrata, Marjut Maristo and Juha-Matti Kauppinen</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6430AFA43DD4F6DDD9D0431F7BEC13DA/Aude_Busson_Mannd_r",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6430AFA43DD4F6DDD9D0431F7BEC13DA/Aude_Busson_Mannd_r",
                "en": "http://www.annantalo.fi/en/events/event/6430AFA43DD4F6DDD9D0431F7BEC13DA/Aude_Busson_Mannd_r"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67660/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67659",
            "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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494424,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T10:12:57.903594Z",
                    "last_modified_time": "2026-01-09T10:12:57.903608Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782303.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494424/?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-09T10:12:57.787914Z",
            "last_modified_time": "2026-03-20T01:13:36.411869Z",
            "date_published": null,
            "start_time": "2026-03-16T07: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": "Aude Busson: Manndýr – Bravo! -festivaali",
                "sv": "Aude Busson: Manndýr – Bravo!-festivalen",
                "en": "Aude Busson: Manndýr – Bravo! Festival"
            },
            "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."
            },
            "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. Lavalla esiintyjä Aude Busson seuraa lasten ääniä ja jäljittää tarinaa ihmiskunnasta ja sen suhteesta maailmaan.</p><p>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>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: 5–10-vuotiaat</p><p>Tekijät:<br>Konsepti, esiintyjä: Aude Busson<br>Lavastus: Sigríður Sunna Reynisdóttir<br>Musiikki: Björn Kristjánsson (Borko)</p><p>Päiväkodeille ja kouluille, paikkavaraukset arvontaan kultus.hel.fi 12.1.-10.2.2026 Arvonta on suoritettu!</p><p>Kiitos: Teatteriryhmä 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.</p><p>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: 5–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: 5-10-years</p><p>Thank you: Theatre group Linnunrata, Marjut Maristo and Juha-Matti Kauppinen</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5604EA0CB42DF7EC3CAACFE9F0123BE4/Aude_Busson_Mannd_r",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5604EA0CB42DF7EC3CAACFE9F0123BE4/Aude_Busson_Mannd_r",
                "en": "http://www.annantalo.fi/en/events/event/5604EA0CB42DF7EC3CAACFE9F0123BE4/Aude_Busson_Mannd_r"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67659/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67658",
            "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/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493957,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T16:13:02.460918Z",
                    "last_modified_time": "2025-11-28T16:13:02.460934Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782302.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493957/?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:02.359795Z",
            "last_modified_time": "2026-03-20T01:13:36.284863Z",
            "date_published": null,
            "start_time": "2026-03-15T13: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": "Aude Busson: Manndýr – Bravo! -festivaali",
                "sv": "Aude Busson: Manndýr – Bravo! Festival",
                "en": "Aude Busson: Manndýr – Bravo! Festival"
            },
            "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."
            },
            "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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F04CB45FB4D36ADA5F02767CE4732051/Aude_Busson_Mannd_r",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/F04CB45FB4D36ADA5F02767CE4732051/Aude_Busson_Mannd_r",
                "en": "http://www.annantalo.fi/en/events/event/F04CB45FB4D36ADA5F02767CE4732051/Aude_Busson_Mannd_r"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67658/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "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/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "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"
            },
            "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."
            },
            "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,
            "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"
            },
            "location_extra_info": null,
            "provider": 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/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "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"
            },
            "short_description": {
                "fi": "Interaktiivinen tanssiteos veden viesteistä.",
                "sv": "Ett interaktivt dansverk om vattnets budskap.",
                "en": "Interactive dance performance about the world of water."
            },
            "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,
            "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"
            },
            "location_extra_info": null,
            "provider": 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"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "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"
            },
            "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."
            },
            "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,
            "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_"
            },
            "location_extra_info": null,
            "provider": 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="
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "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"
            },
            "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."
            },
            "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,
            "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_"
            },
            "location_extra_info": null,
            "provider": 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/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "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"
            },
            "short_description": {
                "fi": "Interaktiivinen tanssiteos veden viesteistä.",
                "sv": "Ett interaktivt dansverk om vattnets budskap.",
                "en": "Interactive dance performance about the world of water."
            },
            "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,
            "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"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67985/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}