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

{
    "meta": {
        "count": 27763,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=11",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=9"
    },
    "data": [
        {
            "id": "kulke:67703",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494066,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:53.518695Z",
                    "last_modified_time": "2025-12-04T12:12:53.518711Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782448.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494066/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:53.442111Z",
            "last_modified_time": "2026-03-20T01:13:40.446126Z",
            "date_published": null,
            "start_time": "2026-03-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4987F49CEDA1F10B4F84AF1B34A94F72/Yleison_suosikit_Kesakirja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4987F49CEDA1F10B4F84AF1B34A94F72/Publikens_favoriter_Sommarboken_S_",
                "en": "http://www.malmitalo.fi/en/events/event/4987F49CEDA1F10B4F84AF1B34A94F72/Audience_Favourites_Summer_Book"
            },
            "description": {
                "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.<br>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa. Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br>Kesto: 95 min<br>Ikäraja: S<br>Kieli: englanti, tekstitetty suomeksi<br>Vapaa pääsy!</p>",
                "sv": "<p>Filmen som baserar sig på Tove Janssons älskade verk Sommarboken berättar en magisk och livsstigande historia om flickan Sophias (Emily Matthews) sommar tillsammans med mormor (Glenn Close) på en liten ö i Finska viken. När Sophias far (Anders Danielsen Lie) sörjer sin makas död smeker sjövågorna klippan, solen skiner och träden växer.</p><p>Sommarboken är en beskrivning av en liten flickas och en gammal kvinnas vänskap omgiven av en finländsk sommardröm, nära varandra och nära naturen. I filmen är Finlands sommar och skärgårdsnaturen som mest genuin och vacker.<br> <br>Åldersgräns: Tillåten<br>Längd: 95 min.</p><p>Baserar sig på Tove Janssons Sommarboken.</p>",
                "en": "<p>Based on Tove Jansson's beloved novel The Summer Book, the film tells a magical and life-enhancing story of a girl named Sophia (Emily Matthews) spending the summer with her grandmother (Glenn Close) on a tiny island in the Gulf of Finland. While Sophia's father (Anders Danielsen Lie) mourns the loss of his spouse, the waves gently caress the rocks, the sun shines and the trees grow.</p><p>The Summer Book is a depiction of the friendship between a little girl and an old woman surrounded by the Finnish summer dream, close to each other and nature. The film captures the Finnish summer and archipelago nature at their most authentic and beautiful.<br> <br>Age limit: Suitable for all ages<br>Length: 95 min</p><p>Based on Tove Jansson's Summer Book.</p>"
            },
            "name": {
                "fi": "Yleisön suosikit: Kesäkirja",
                "sv": "Publikens favoriter: Sommarboken (S)",
                "en": "Audience Favourites: Summer Book"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67703/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68210",
            "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: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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1600642,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-12T13:13:55.968123Z",
                    "last_modified_time": "2026-03-12T13:13:55.968138Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786237.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1600642/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-12T13:13:55.832220Z",
            "last_modified_time": "2026-03-20T01:13:40.160967Z",
            "date_published": null,
            "start_time": "2026-03-19T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5B124D93D00587C0AE2AA330692621A4/Art_Thinking_Workshop",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5B124D93D00587C0AE2AA330692621A4/Art_Thinking_Workshop",
                "en": "http://www.malmitalo.fi/en/events/event/5B124D93D00587C0AE2AA330692621A4/_Art_Thinking_Workshop"
            },
            "description": {
                "fi": "<p>Welcome to an art & thinking workshop where we will explore Alex Markwith’s exhibition “Intersections” at Malmitalo Gallery. The evening will start with a conversation about  one of the artworks, facilitated by philosophical practitioner Elizaveta Bomash. The dialogue continues in a form of a Q&A with the artist, Alex Markwith. During the session, we’ll think together about art and the themes it evokes in us by asking questions, examining answers, and interpreting like a group of art detectives.</p><p>What to expect:<br>- Guided discussion using Socratic questioning method<br>- Fun way to sharpen your thinking skills<br>- New way of interacting with art and your own thoughts</p><p>No experience needed, just curiosity and an open mind.</p><p>The gallery is open until 20.00 and after the workshop, you can continue exploring other pieces in the exhibition.</p><p>The workshop takes about one and a half hours, from 17:30 to 19:00.</p><p>Free admission. Please RSVP by e-mail: lisabomash (at) gmail.com Welcome!</p>",
                "en": "<p>Welcome to an art & thinking workshop where we will explore Alex Markwith’s exhibition “Intersections” at Malmitalo Gallery. The evening will start with a conversation about  one of the artworks, facilitated by philosophical practitioner Elizaveta Bomash. The dialogue continues in a form of a Q&A with the artist, Alex Markwith. During the session, we’ll think together about art and the themes it evokes in us by asking questions, examining answers, and interpreting like a group of art detectives.</p><p>What to expect:<br>- Guided discussion using Socratic questioning method<br>- Fun way to sharpen your thinking skills<br>- New way of interacting with art and your own thoughts</p><p>No experience needed, just curiosity and an open mind.</p><p>The gallery is open until 20.00 and after the workshop, you can continue exploring other pieces in the exhibition.</p><p>The workshop takes about one and a half hours, from 17:30 to 19:00.</p><p>Free admission. Please RSVP by e-mail: lisabomash (at) gmail.com Welcome!</p>"
            },
            "name": {
                "fi": "Art & Thinking Workshop",
                "sv": "Art & Thinking Workshop",
                "en": "Art & Thinking Workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68246",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1651741,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-17T09:13:04.296916Z",
                    "last_modified_time": "2026-03-17T09:13:04.296935Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786477.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1651741/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-17T09:13:04.136508Z",
            "last_modified_time": "2026-03-20T01:13:40.030909Z",
            "date_published": null,
            "start_time": "2026-03-19T12:00:00Z",
            "end_time": "2026-03-19T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson",
                "sv": "Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson",
                "en": "Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Artist_Talk",
                "sv": "http://www.caisa.fi/sv/evenemang/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Konstnarssamtal",
                "en": "http://www.caisa.fi/en/events/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Artist_Talk"
            },
            "description": {
                "fi": "<p>Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson</p><p>Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson</p><p>Tule kuulemaan, millaista on työskennellä taiteilijana erilaisissa ympäristöissä!</p><p>Tanssitaiteilija ja mehiläishoitaja Helena Krinal on syntynyt ja kasvanut Virossa. Hän muutti Palestiinaan vuonna 2013 ja asuu siellä perheensä kanssa. <br>Lue lisää Helenasta: www.helenakrinal.com</p><p>Ama Kyei on suomalais-ghana­lainen tanssija, tanssinopettaja, koreografi ja doula. Ama työskentelee esimerkiksi Ghanassa, Ruotsissa ja Suomessa. <br>Lue lisää Amasta: amakyei.se</p><p>Aude Busson, alun perin Ranskasta, on asunut Islannissa vuodesta 2005 ja työskentelee siellä esitystaiteilijana ja projektipäällikkönä.<br>Lue lisää Audesta: audebusson.cargo.site</p>",
                "sv": "<p>Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson</p><p>Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson</p><p>Kom och lyssna på hur det är att arbeta som konstnär i olika miljöer!</p><p>Danskonstnären och biodlaren Helena Krinal är född och uppvuxen i Estland. Hon flyttade till Palestina 2013 och bor där med sin familj. <br>Läs mer om Helena: www.helenakrinal.com</p><p>Ama Kyei är en finsk-ghanansk dansare, danslärare, koreograf och doula. Ama arbetar bland annat i Ghana, Sverige och Finland. <br>Läs mer om Ama: amakyei.se</p><p>Aude Busson, ursprungligen från Frankrike, har bott i Island sedan 2005, där hon arbetar som performancekonstnär och projektledare.<br>Läs mer om Aude: audebusson.cargo.site</p>",
                "en": "<p>Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival</p><p>Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival.</p><p>Come and hear what it's like to work as an artist in different environments!</p><p>Dance artist and beekeeper Helena Krinal was born and raised in Estonia. She moved to Palestine in 2013 and lives there with her family. <br>Read more about Helena: www.helenakrinal.com</p><p>Ama Kyei is a Finnish-Ghanaian dancer, dance teacher, choreographer, and doula. Ama works in Ghana, Sweden, and Finland, among other places. <br>Read more about Ama: amakyei.se</p><p>Aude Busson, originally from France, has lived in Iceland since 2005, where she works as a performance artist and project manager.<br>Read more about Aude: audebusson.cargo.site</p>"
            },
            "name": {
                "fi": "Bravo! Artist Talk – Bravo!-festivaalin taiteilijakeskustelu",
                "sv": "Bravo! Konstnärssamtal – Bravo! Festival artist discussion",
                "en": "Bravo! Artist Talk – Bravo! Artist Talk discussion event"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68246/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68130",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?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:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494901,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-19T10:12:54.257006Z",
                    "last_modified_time": "2026-02-19T10:12:54.257017Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785626.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494901/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-19T10:12:54.135358Z",
            "last_modified_time": "2026-03-20T01:13:39.910394Z",
            "date_published": null,
            "start_time": "2026-03-19T11:00:00Z",
            "end_time": "2026-03-19T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Satu ja Maima Tanin merellinen installaatio jossa yleisö pääsee tutustumaan mm. “varvaskieltä” puhuvaan Merivuokkoon."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1BC0B58D78F8A0BE102185CD004D14BD/Taiteilijaresidenssi_Bravo_Festivaalilla",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1BC0B58D78F8A0BE102185CD004D14BD/Taiteilijaresidenssi_Bravo_Festivaalilla",
                "en": "http://www.caisa.fi/en/events/event/1BC0B58D78F8A0BE102185CD004D14BD/Taiteilijaresidenssi_Bravo_Festivaalilla"
            },
            "description": {
                "fi": "<p>Satu ja Maima Tanin merellinen installaatio jossa yleisö pääsee tutustumaan mm. “varvaskieltä” puhuvaan Merivuokkoon.</p><p>Bravo!-festivaali järjestetään pääkaupunkiseudulla. Festivaali keskittyy pohjoismais-baltialaiseen esittävään taiteeseen lapsille ja nuorille.</p><p>Residenssissä työskentelevät taiteilijat Satu Tani ja Maima Tani. Residenssissä he kehittävät lapsille ja nuorille suunnatun esittävän taiteen muotoja omassa työssään. Yleisöllä on mahdollisuus kurkistaa residenssiin kahdessa  Avoimet ovet tuokiossa.</p><p>Satu ja Maima Tani ovat sisaruksia ja taiteilijatyöpari. Satu työskentelee eri rooleissa tuetun taiteen kentällä ja hänellä on kuvataiteen ylempi AMK-tutkinto. Maima on Invalidiopistolta valmistunut kulta-alan artesaani ja tehnyt kuvataidetta lapsesta saakka. Kun Maima ei ole virkkaamassa jättiläismeduusoja tai piirtämässä äärimmäisen tarkkoja teoksiaan, hän tekee Satun kanssa muun muassa performanssitaidetta ja lyhytelokuvia. Yhdessä Tanit tutkivat taidetta, kommunikaatiota ja erilaisia maailmassa olemisen moodeja. Molemmat kuuluvat neurovähemmistöön ja työskentelevät Helsingissä. <br> <br>Residenssi toteutetaan osana kansainvälistä Shifting the Stage -hanketta<br> <br>Suomen Assitejn tuottama Bravo!-festivaali, Ruotsin Assitejn ja Teatercentrumin omistama bibu-festivaali, Imaginate Edinburgh International Theatre Festival sekä norjalainen Showbox-festivaali ovat käynnistäneet yhteisen hankkeen, jossa festivaalit sitoutuvat tarjoamaan esiintymismahdollisuuksia ja tukemaan vammaisten ja vähemmistössä olevien taiteilijoiden taiteellista työskentelyä. Hankkeessa tarjotaan rahallista tukea, residenssitiloja, ammatillista ohjausta sekä verkostoitumismahdollisuuksia hankkeessa mukana oleville taiteilijoille.</p><p>Sopii kaiken ikäisille<br> <br>Vapaa pääsy</p><p>Lue lisää Taneista:<br>https://satutani.pb.gallery/tanitani<br> <br>Lue lisää Shifting the Stage -hankkeesta:<br>https://www.imaginate.org.uk/artists/projects/shifting-the-stage/<br> <br>Lue lisää Shifting the Stage -hankkeen laboratoriosta Skotlannissa:<br>https://www.imaginate.org.uk/artists/projects/shifting-the-stage-lab/</p>"
            },
            "name": {
                "fi": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet",
                "sv": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet",
                "en": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68130/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67807",
            "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: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/kulke:734/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494384,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T15:13:11.019280Z",
                    "last_modified_time": "2026-01-05T15:13:11.019292Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782913.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494384/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-01-05T15:13:10.909471Z",
            "last_modified_time": "2026-03-20T01:13:39.584051Z",
            "date_published": null,
            "start_time": "2026-03-19T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Je'vida on historian ensimmäinen koltansaamenkielinen elokuva.",
                "sv": "Je'vida, historiens första skoltsamiska film, berättar om en kvinna (Sanna-Kaisa Palo) som övergett sin bakgrund under tvångsförfinskningen.",
                "en": "Je'vida, the first ever film in the Skolt Sámi language."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7C614BCB5B04261112C00205BA4D6AC6/Ylakoulukino_Je_vida",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7C614BCB5B04261112C00205BA4D6AC6/Hogstadiekino_Je_vida",
                "en": "http://www.stoa.fi/en/events/event/7C614BCB5B04261112C00205BA4D6AC6/Ylakoulukino_Je_vida"
            },
            "description": {
                "fi": "<p>Je'vida on historian ensimmäinen koltansaamenkielinen elokuva.</p><p>Se kertoo pakkosuomalaistamisen paineessa taustansa hylänneestä naisesta (Sanna-Kaisa Palo), jonka tarina nähdään kolmessa aikatasossa. Iäkäs kolttasaamelainen nainen Iida joutuu vanhan kotitilan myymisen ja kulttuuriperimän salaamisen suhteen kahden vaiheille, sillä pois tukahdutettu luonnonläheinen maailma alkaa hiipiä takaisin.</p><p>Hienovarainen mustavalkokuvaus nostaa ympäröivän luonnon menetyksen ja sovinnon metaforaksi. Je’vida (2023) palkittiin kolmella Jussi-palkinnolla; musiikista, äänisuunnittelusta sekä pukusuunnittelusta.</p><p>Dokumenttielokuvien ohjaajana mainetta niittäneen Katja Gauriloffin toinen pitkä fiktio Je’vida on maailman ensimmäinen koltansaamenkielinen pitkä näytelmäelokuva. Gauriloff on itse äitinsä puolelta sukua kolttasaamelainen ja elokuva perustuu tarinoihin, joita ohjaaja on kuullut omilta sukulaisiltaan ja tuttaviltaan. Omaa saamelaistaustaansa ja -identiteettiään Gauriloff on käsitellyt myös dokumenttielokuvissaan Huuto tuuleen (2007) ja Kuun metsän Kaisa (2016).</p><p>Ohjaus: Katja Gauriloff<br>Näyttelijät: Agafia Niemenmaa, Heidi Juliana Gauriloff, Sanna-Kaisa Palo, Seidi Haarla<br>Käsikirjoitus: Katja Gauriloff, Niillas Holmberg<br>Tuotantomaa: Suomi<br> <br>Elokuvaan löytyy Koulukinon oppimateriaali: https://www.koulukino.fi/oppimateriaalit/jevida/</p><p>Oppimateriaalin teemoja: saamelaiset, alkuperäiskansat, kolttasaamelainen kulttuuri, asuntolakoulukokemukset, pakkosuomalaistaminen, kulttuuri-identiteetti, kielen menetys.</p><p>”Je’vida on vuoden parhaita kotimaisia elokuvia ja pelkällä olemassa­olollaan poliittinen teko” -HS<br> <br>Kesto: 103 min<br>Ikäsuositus: 12+ <br>Kieli: koltansaame, suomi</p><p>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>Je'vida, historiens första skoltsamiska film, berättar om en kvinna (Sanna-Kaisa Palo) som övergett sin bakgrund under tvångsförfinskningen.</p><p>Vi får ta del av hennes berättelse i tre tidsnivåer. Den äldre skoltsamiska kvinnan Iida hamnar i valet och kvalet i fråga om att sälja den gamla hemgården och dölja sitt kulturarv, för den naturnära värld som hon trängt undan börjar smyga sig på igen.</p><p>Det subtila svartvita fotot lyfter fram den omgivande naturen som en metafor för förlust och försoning. Je’vida (2023) belönades med tre Jussistatyetter: för musik, ljuddesign och kostymdesign.</p><p>Je’vida är den andra fiktiva långfilmen av Katja Gauriloff, som gjort sig ett namn som regissör av dokumentärfilmer, och världens första långa spelfilm på skoltsamiska. Gauriloff är själv av skoltsamisk släkt på sin mors sida och filmen baserar sig på berättelser som regissören har hört från släktingar och bekanta.</p><p>Gauriloff har behandlat sin samiska bakgrund och identitet även i dokumentärfilmerna Huuto tuuleen (2007) och Kuun metsän Kaisa (2016).</p><p>Regi: Katja Gauriloff<br>Medverkande: Agafia Niemenmaa, Heidi Juliana Gauriloff, Sanna-Kaisa Palo, Seidi Haarla<br>Manus: Katja Gauriloff, Niillas Holmberg<br>Produktionsland: Finland<br> <br>Läromedel från Koulukino finns för filmen: https://www.koulukino.fi/oppimateriaalit/jevida/<br>Läromedlens teman: samer, ursprungsfolk, skoltsamisk kultur, upplevelser från internatskolor, tvångsförfinskning, kulturell identitet, språkförlust.<br>”Je’vida är en av årets bästa inhemska filmer och en politisk handling genom sin blotta existens” -HS<br> <br>Längd: 103 min.<br>Åldersrekommendation: 12+ <br>Språk: skoltsamiska, finska<br>Fritt inträde, obligatorisk anmälan för grupper, kultus.hel.fi från 13.1 kl. 10.</p>",
                "en": "<p>Je'vida, the first ever film in the Skolt Sámi language.</p><p>Film tells the story of a woman (Sanna-Kaisa Palo) who has abandoned her background under the pressure of forced Finnicisation and whose story is told on three time planes.</p><p>Iida, an elderly Skolt Sámi woman, finds herself torn between selling her old homestead and hiding her cultural heritage, as the natural world she has suppressed begins to creep back in.</p><p>The subtle black and white cinematography elevates the surrounding nature as a metaphor for loss and reconciliation. Je'vida (2023) won three Jussi awards: for music, sound design and costume design.</p><p>Katja Gauriloff's second feature-length fiction film Je'vida is the world's first feature-length drama film in the Skolt Sámi language. Gauriloff herself is related to the Skolt Sámi on her mother's side, and the film is based on stories the director has heard from her own relatives and acquaintances.</p><p>Gauriloff has previously explored her own Sámi background and identity in her documentaries Huuto tuuleen (2007) and Kuun metsän Kaisa (2016).</p><p>Directed by: Katja Gauriloff<br>Cast: Agafia Niemenmaa, Heidi Juliana Gauriloff, Sanna-Kaisa Palo, Seidi Haarla<br>Script: Katja Gauriloff, Niillas Holmberg<br>Production country: Finland</p><p>Koulukino (School Cinema Association) learning materials for the film are available at: https://www.koulukino.fi/oppimateriaalit/jevida/<br>Themes of the learning material: the Sámi people, indigenous peoples, Skolt Sámi culture, boarding school experiences, forced Finnicisation, cultural identity, language loss.</p><p>\"Je'vida is one of the best Finnish films of the year and a political act by its very existence\" – HS<br> <br>Duration: 103 min<br>Recommended age: 12+ <br>Language: Skolt Sámi, Finnish<br>Free admission, groups are required to register in advance: kultus.hel.fi from 13 January from 10.00 onwards.</p>"
            },
            "name": {
                "fi": "Yläkoulukino: Je´vida",
                "sv": "Högstadiekino: Je´vida",
                "en": "Yläkoulukino: Je´vida"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67807/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67568",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:28.950473Z",
                    "last_modified_time": "2026-01-05T09:13:28.950486Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781747.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:28.774165Z",
            "last_modified_time": "2026-03-20T01:13:39.390019Z",
            "date_published": null,
            "start_time": "2026-03-19T09:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/AED19A8B2F42CBC3BD7A88AEA85971D6/Opi_suomea_laulaen_TAYNNA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/AED19A8B2F42CBC3BD7A88AEA85971D6/Lar_dig_finska_genom_att_sjunga",
                "en": "http://www.stoa.fi/en/events/event/AED19A8B2F42CBC3BD7A88AEA85971D6/Learn_Finnish_by_Singing"
            },
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min</p><p>Ryhmään on ilmoittauduttava etukäteen.  <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi  <br> <br><b>Kevään laulupajakerrat:</b>  <br>To 29.1. klo 10 ja 11.45 <br>To 19.3. klo 10 ja 11.45 <br>Ti 26.5. klo 10 ja 11.45</p><p>Vapaa pääsy</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand.  <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Sångverkstäder: </b><br>To 29.1. kl 10 och 11.45 <br>To 19.3. kl 10 och 11.45 <br>Ti 26.5. kl 10 och 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group.  <br> Ask for more information and register: sanna.nuutinen@hel.fi <br> <br><b>Spring singing workshops: </b><br>Thu 29.1. klo 10 and 11.45 <br>Thu 19.3. klo 10 and 11.45 <br>Tue 26.5. klo 10 and 11.45</p>"
            },
            "name": {
                "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67568/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67567",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494357,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:28.354055Z",
                    "last_modified_time": "2026-01-05T09:13:28.354067Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781746.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:28.181154Z",
            "last_modified_time": "2026-03-20T01:13:39.191854Z",
            "date_published": null,
            "start_time": "2026-03-19T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D82DB50A560F559E3DF3B5D71CFDA867/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D82DB50A560F559E3DF3B5D71CFDA867/Lar_dig_finska_genom_att_sjunga",
                "en": "http://www.stoa.fi/en/events/event/D82DB50A560F559E3DF3B5D71CFDA867/Learn_Finnish_by_Singing"
            },
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min</p><p>Ryhmään on ilmoittauduttava etukäteen.  <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi  <br> <br><b>Kevään laulupajakerrat:</b>  <br>To 29.1. klo 10 ja 11.45 <br>To 19.3. klo 10 ja 11.45 <br>Ti 26.5. klo 10 ja 11.45</p><p>Vapaa pääsy</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand.  <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Sångverkstäder: </b><br>To 29.1. kl 10 ja 11.45 <br>To 19.3. kl 10 ja 11.45 <br>Ti 26.5. kl 10 ja 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group.  <br> Ask for more information and register: sanna.nuutinen@hel.fi <br> <br><b>Spring singing workshops: </b><br>Thu 29.1. klo 10 ja 11.45 <br>Thu 19.3. klo 10 ja 11.45 <br>Tue 26.5. klo 10 ja 11.45</p>"
            },
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67567/?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,
                    "description": null,
                    "price": 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,
            "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."
            },
            "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"
            },
            "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>"
            },
            "name": {
                "fi": "Skidikino: Muumien maailma",
                "sv": "Skidikino: Mumintrollens värld",
                "en": "Skidikino: The world of Moomins"
            },
            "provider_contact_info": null,
            "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:67953",
            "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:33/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494435,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T13:13:00.548104Z",
                    "last_modified_time": "2026-01-09T13:13:00.548127Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779137.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494435/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T13:13:00.409325Z",
            "last_modified_time": "2026-03-20T01:13:37.938831Z",
            "date_published": null,
            "start_time": "2026-03-18T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "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!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/36D359BB18C6DAB33A94C2CE301BE497/Claire_Parsons_Co_Dust",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/36D359BB18C6DAB33A94C2CE301BE497/Claire_Parsons_Co_Dust",
                "en": "http://www.vuotalo.fi/en/events/event/36D359BB18C6DAB33A94C2CE301BE497/Claire_Parsons_Co_Dust"
            },
            "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<br>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<br>Kesto: n. 45 min<br>Ikäsuositus: 6+<br>Kieli: sanaton</p><p>koululaisryhmille, ilmoittautuminen kultus.hel.fi</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.</p><p>Det oväntade får huvudrollen.<br>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.</p><p>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<br>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?</p><p>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.<br>Premiere: 23 November 2023 at Lokstallarna, Karlshamn, in collaboration with Regionteatern Blekinge Kronoberg<br>Non-verbal</p><p>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>"
            },
            "name": {
                "fi": "Claire Parsons Co: Dust – Bravo! -festivaali",
                "sv": "Claire Parsons Co: Dust – Bravo! -festivaali",
                "en": "Claire Parsons Co: Dust – Bravo! -festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67953/?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,
                    "description": null,
                    "price": 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,
            "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!"
            },
            "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_"
            },
            "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>"
            },
            "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"
            },
            "provider_contact_info": null,
            "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,
                    "description": null,
                    "price": 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,
            "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!"
            },
            "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_"
            },
            "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>"
            },
            "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"
            },
            "provider_contact_info": null,
            "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:67602",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494082,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:59.276073Z",
                    "last_modified_time": "2025-12-04T13:12:59.276089Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782012.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494082/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:12:59.168743Z",
            "last_modified_time": "2026-03-20T01:13:36.922825Z",
            "date_published": null,
            "start_time": "2026-03-16T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjassa kahvilan stagella nähdään vieraileva muusikko Hannu Leiden.",
                "sv": "Börja veckan med sväng! I vårens serie av Juurilla-klubbar gästas caféscenen av musikern Hannu Leidén.",
                "en": "Start your week off with high energy! In the Juurilla clubs’ spring series, the café stage will feature guest musician Hannu Leiden."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1C995DB56675ADD480BC6A142B6195C0/Juurilla-klubi_Hannu_Leiden",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1C995DB56675ADD480BC6A142B6195C0/Juurilla-klubben_Hannu_Leiden",
                "en": "http://www.kanneltalo.fi/en/events/event/1C995DB56675ADD480BC6A142B6195C0/Juurilla_Club_Hannu_Leiden"
            },
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjassa kahvilan stagella nähdään vieraileva muusikko Hannu Leiden.</p><p>Pitkän linjan muusikko, laulaja ja tuottaja Hannu Leiden aloitti uransa 1970-luvun lopussa Sarcofagus-yhtyeessä, jota pidetään Suomen ensimmäisenä Heavy Rock -yhtyeenä. 80-luvun alussa toimineen Chapter One -yhtyeen kanssa Leiden ylsi Rock SM -kilpailussa hopealle.</p><p>1984 perustetussa HAVANA BLACK(S) yhtyeessä Hannu toimi biisintekijänä, solistina ja bändileaderina. Bändi sai laajaa kansainvälistä huomiota, ja oli parhaimmillaan Billboard-listalla sijalla neljä. 2000-luvulla Hannu on toiminut muun muassa Wolf Larsen ja New Maps Of Hell -yhtyeissä ja vieraillut useiden artistien levyillä, mm. Frozen - kappaleella Maria Hännisen ja Ken Hensleyn kanssa. Siinä sivussa Hannu on tuottanut useita satoja levyjä musiikin laidasta laitaan.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki.</p><p>Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso<br>Tommi Lievemaa – kitara<br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni<br>Kepa Kettunen – rummut</p><p>Kesto: 1 tunti</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.</p><p>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Börja veckan med sväng! I vårens serie av Juurilla-klubbar gästas caféscenen av musikern Hannu Leidén.</p><p>Den mångårige musikern, sångaren och producenten Hannu Leidén inledde sin karriär på 1970-talet i gruppen Sarcofagus, som anses vara Finlands första band inom Heavy Rock. Med Chapter One, som var verksamt i början av 80-talet, kom Leidén på en silverplats i Rock SM.</p><p>I bandet HAVANA BLACK(S), som grundades 1984, fungerade Hannu som låtskrivare, solist och bandledare. Bandet fick stor internationell uppmärksamhet och nådde som högst en fjärdeplats på Billboardlistan. Under 2000-talet har Hannu medverkat bland annat i grupperna Wolf Larsen och New Maps Of Hell och gästat flera artisters skivor, bland annat med låten Frozen med Maria Hänninen och Ken Hensley. Han har också producerat hundratals skivor i olika musikgenrer.</p><p>Jazz, blues, country, folk, rhythm and blues, bluegrass och americana hör alla till det rytmiska hjärtat på måndagskvällarnas favoritklubb.</p><p>Som värdar på Juurilla-klubben verkar i vanlig ordning Juki Välipakka och The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas<br>Tommi Lievemaa – gitarr<br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxofon<br>Kepa Kettunen – trummor</p><p>Längd: 1 timme</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Start your week off with high energy! In the Juurilla clubs’ spring series, the café stage will feature guest musician Hannu Leiden.</p><p>Experienced musician, singer and producer Hannu Leiden started his career in the late 1970s with Sarcofagus, considered to be Finland's first heavy rock band. With Chapter One in the early 80s, Leiden took silver in the Finnish Rock SM competition.</p><p>Hannu served as a songwriter, soloist and band leader in HAVANA BLACK(S), founded in 1984. The band received widespread international attention, peaking at number four on the Billboard charts. In the 2000s, Hannu played in bands such as Wolf Larsen and New Maps Of Hell and appeared on several artists' albums, including the song Frozen with Maria Hänninen and Ken Hensley. Along the way, Hannu has produced several hundred albums ranging from one end of the spectrum of genres to the other.</p><p>The beating heart of the Monday evening favourite club consists of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music.</p><p>The Juurilla club will be hosted by Juki Välipakka and The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass<br>Tommi Lievemaa – guitar<br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone<br>Kepa Kettunen – drums</p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "name": {
                "fi": "Juurilla-klubi: Hannu Leiden – Maksuttomat maanantait",
                "sv": "Juurilla-klubben: Hannu Leiden – Kostnadsfria måndagar",
                "en": "Juurilla Club: Hannu Leiden – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67602/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68017",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494622,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T09:12:51.565470Z",
                    "last_modified_time": "2026-01-26T09:12:51.565482Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777680.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494622/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T09:12:51.471201Z",
            "last_modified_time": "2026-03-20T01:13:36.816872Z",
            "date_published": null,
            "start_time": "2026-03-16T14:00:00Z",
            "end_time": "2026-03-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.",
                "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.",
                "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1C6C274B54E086B063A6C49E63B5A992/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1C6C274B54E086B063A6C49E63B5A992/Eftermiddagar_planerade_av_unga",
                "en": "http://www.vuotalo.fi/en/events/event/1C6C274B54E086B063A6C49E63B5A992/Afternoons_planned_by_young_people"
            },
            "description": {
                "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>",
                "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>",
                "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>"
            },
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi",
                "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi",
                "en": "Afternoons planned by young people – Operation Pulse!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68017/?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,
                    "description": null,
                    "price": 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,
            "short_description": {
                "fi": "Millaista on olla ihminen? Tai olla lapsi? Manndýr on osallistuttava esitys ihmiskunnasta ja lasten paikasta maailmassa.",
                "sv": "Hur är det att vara människa? Eller att vara ett barn? Manndýr är en inkluderande föreställning om mänskligheten och barnens plats i världen.",
                "en": "What is it like to be human? To be a child? Manndýr is a participatory performance about humankind and children’s role in the world."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/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"
            },
            "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>"
            },
            "name": {
                "fi": "Aude Busson: Manndýr – Bravo! -festivaali",
                "sv": "Aude Busson: Manndýr – Bravo!-festivalen",
                "en": "Aude Busson: Manndýr – Bravo! Festival"
            },
            "provider_contact_info": null,
            "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:67666",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493965,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T11:12:43.126018Z",
                    "last_modified_time": "2025-12-01T11:12:43.126033Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780671.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T11:12:43.032293Z",
            "last_modified_time": "2026-03-20T01:13:36.560938Z",
            "date_published": null,
            "start_time": "2026-03-16T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kaksi parkourtaitajaa ja valtava metalliputkista koostuva rakennelma… Uventa on tanssin, parkourin ja teknologian hurja symbioosi!",
                "sv": "Två parkourartister och en enorm struktur av metallrör ... Uventa är en vild symbios av dans, parkour och teknik!",
                "en": "A physical and visual performing arts experience – a fierce symbiosis between dance, parkour, technology and media."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4888BA042F6DF1A872B4910B7C190FD4/HeinCo_Uventa_koululaisnaytos",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4888BA042F6DF1A872B4910B7C190FD4/HeinCo_Uventa_koululaisnaytos",
                "en": "http://www.stoa.fi/en/events/event/4888BA042F6DF1A872B4910B7C190FD4/HeinCo_Uventa_koululaisnaytos"
            },
            "description": {
                "fi": "<p>Kaksi parkourtaitajaa ja valtava metalliputkista koostuva rakennelma… Uventa on tanssin, parkourin ja teknologian hurja symbioosi!</p><p>Uventa (suomeksi odottamaton) on yllätyksiä pursuava esitys. Kaksi parkouraajaa haastavat sekä painovoiman että toisensa. On löydettävä ote, autettava kaveria. Esiintyjien lisäksi valot, videot ja musiikki luovat Uventan oman maailman, jossa kaikki on mahdollista. Katsoja voi tuntea omassa kehossaan riskinoton, mutta myös leikin.</p><p>Suomalais-ruotsalainen Antero Hein on yksi Pohjoismaiden parkour-pioneereista ja Oslon parkourpuiston perustaja. Oslon Taideakatemiasta tanssijaksi valmistunut Hein on toiminut tanssijana ja koreografina niin asuinmaassaan Norjassa kuin kansainvälisestikin.</p><p>Kesto: n. 50 min.<br>Ikäsuositus: Kaikille yli 8–vuotiaille</p><p>Taiteellinen johtaja, koreografi, valosuunnittelu, pukusuunnittelu, tuotanto, valokuvat ja video, teknikko: Antero Hein<br>Tanssija, esiintyjä: Severin Romer Iversen<br>Esiintyjä: Nikolai Arnesen<br>Esiintyjä, säveltäjä:Tommy Jansen<br>Skenografia: Carl Nilssen Love<br>Yhteistuotanto: Dansens Hus, DansiT, Dansens Hus, Bærum Kulturhus/Sprang<br>Teoksen tukijat: Fond for lyd og bilde, Fond for utøvende kunstnere, Oslo kommune, SPENN, Kulturrådet, Viken fylkeskommune.</p><p>Vapaa pääsy 16.3., ryhmille pakolliset ennakkoilmoittautumiset: kultus.hel.fi 13.1. klo 10 alkaen. HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta.<br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Två parkourartister och en enorm struktur av metallrör ... Uventa är en vild symbios av dans, parkour och teknik!</p><p>Uventa (oväntat) är en föreställning full av överraskningar. Två parkourister utmanar både tyngdkraften och varandra. Man måste hitta ett grepp, hjälpa sin kompis. Förutom artisterna skapar ljuset, videor och musiken en egen värld i Uventa, där allt är möjligt. Åskådaren kan känna risken, men också leken, i sin kropp.</p><p>Svensk-finska Antero Hein är en nordisk parkourpionjär och grundare av parkourparken i Oslo. Hein har en examen som dansare från konstakademin i Oslo och har arbetar som dansare och koreograf såväl i Norge, där han är bosatt, som internationellt.<br>Längd: ca 50 min.<br>Åldersrekommendation: För alla över 8 år<br>Konstnärlig ledare, koreograf, ljusdesign, kostymdesign, produktion, foto och video, tekniker: Antero Hein<br>Dansare, artist: Severin Romer Iversen<br>På scenen: Nikolai Arnesen<br>Artist, kompositör: Tommy Jansen<br>Scenografi: Carl Nilssen Love<br>Samproduktion: Dansens Hus, DansiT, Dansens Hus, Bærum Kulturhus/Sprang<br>Sponsorer till verket: Fond for lyd og bilde, Fond for utøvende kunstnere, Oslo kommune, SPENN, Kulturrådet, Viken fylkeskommune.</p>",
                "en": "<p>A physical and visual performing arts experience – a fierce symbiosis between dance, parkour, technology and media.</p><p>Two parkour athletes balance on a massive structure of pipes and clamps. They have to negotiate weight and gravity, find grip or help each other. They take risks, get red and tired, sit on the cradle, climb, balance - or fall. Multiplying algorithms, staged identities, games, tracks and surveillance - everything becomes fluid and fleeting. Until the trajectories of parkour shift us back again, to the athletes, the real bodies and what they can incredibly accomplish.</p><p>Live projections of video and light create unexpected transitions between different layers of time and reality. It provides an experience of displacement, which is reinforced by the electronic soundscape. How we as humans are affected and influenced by visible and invisible networks - just as the performance also asks what it means to break with established patterns. The parkour shows extreme physics, but with a minimalist approach. It both overwhelms and delights - we recognize the risk in our own bodies, but also the play.<br>With 17 years of experience, Antero Hein is one of the first parkour practitioners in Scandinavia. The Uventa production is parkour with a quiet sincerity and sensuality between the performers and their surroundings, with a touch of the unexpected and unpredictable.<br>Duration: Approx. 50<br>Age recommendation: For ages 8 and up</p><p>Artistic director, Choreographer, Lighting design, Costume design, Producer, Photo/animation/film, Technician: Antero Hein<br>Dancer, Performer: Severin Romer Iversen<br>Performer, Other: Nikolai Arnesen<br>Performer, Composer: Tommy Jansen<br>Set design: Carl Nilssen Love<br>Co-producers: Dansens Hus, DansiT, Dansens Hus, Bærum Kulturhus/Sprang<br>Supported by: Fond for lyd og bilde, Fond for utøvende kunstnere, Oslo kommune, SPENN, Kulturrådet, Viken fylkeskommune.</p>"
            },
            "name": {
                "fi": "HeinCo: Uventa koululaisnäytös – Bravo! -festivaali",
                "sv": "HeinCo: Uventa koululaisnäytös – Bravo! -festivalen",
                "en": "HeinCo: Uventa koululaisnäytös – Bravo! -festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67666/?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,
                    "description": null,
                    "price": 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,
            "short_description": {
                "fi": "Millaista on olla ihminen? Tai olla lapsi? Manndýr on osallistuttava esitys ihmiskunnasta ja lasten paikasta maailmassa.",
                "sv": "Hur är det att vara människa? Eller att vara ett barn? Manndýr är en inkluderande föreställning om mänskligheten och barnens plats i världen.",
                "en": "What is it like to be human? To be a child? Manndýr is a participatory performance about humankind and children’s role in the world."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/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"
            },
            "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>"
            },
            "name": {
                "fi": "Aude Busson: Manndýr – Bravo! -festivaali",
                "sv": "Aude Busson: Manndýr – Bravo!-festivalen",
                "en": "Aude Busson: Manndýr – Bravo! Festival"
            },
            "provider_contact_info": null,
            "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:67677",
            "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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493979,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T13:14:17.623951Z",
                    "last_modified_time": "2025-12-01T13:14:17.623965Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782326.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T13:14:17.534296Z",
            "last_modified_time": "2026-03-20T01:13:34.485635Z",
            "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,
            "short_description": {
                "fi": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!",
                "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!",
                "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/945E99255DBCE5A324E689D53FCAD760/Kaikkien_lasten_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/945E99255DBCE5A324E689D53FCAD760/Danslektion_for_alla_barn",
                "en": "http://www.annantalo.fi/en/events/event/945E99255DBCE5A324E689D53FCAD760/All_children_s_dance_class"
            },
            "description": {
                "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>",
                "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>",
                "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>"
            },
            "name": {
                "fi": "Kaikkien lasten tanssitunti – kaikenikäisille",
                "sv": "Danslektion för alla barn – för alla åldrar",
                "en": "All children's dance class – for all ages"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67677/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68147",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494938,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-24T14:12:54.154382Z",
                    "last_modified_time": "2026-02-24T14:12:54.154397Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785809.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494938/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-24T14:12:54.009667Z",
            "last_modified_time": "2026-03-20T01:13:34.181834Z",
            "date_published": null,
            "start_time": "2026-03-14T10:00:00Z",
            "end_time": "2026-03-14T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FE27E47E83DC2EB709B779A49F6EEB29/Lasten_lauantai_-_BRAVO_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FE27E47E83DC2EB709B779A49F6EEB29/Lasten_lauantai_-_BRAVO_",
                "en": "http://www.kanneltalo.fi/en/events/event/FE27E47E83DC2EB709B779A49F6EEB29/Lasten_lauantai_-_BRAVO_"
            },
            "description": {
                "fi": "<p>Koko perheen lasten lauantaissa juhlitaan, leikitään ja taiteillaan! Kansainvälinen lasten ja nuorten esittävän taiteen Bravo!-festivaali avautuu. Lipunmyyntipisteemme on auki klo 12–15.</p><p>OHJELMA:<br>klo 12-15 GALLERIASSA Onni on olla -näyttely ja -työpaja<br>Lasten lauantaita vietetään Sanna Pelliccionin Onni-kirjojen maailmaan perustuvassa Onni on olla -näyttelyssä. Tarjolla on leikkinäyttelyn lisäksi non-stop-työpajoja, väritystehtäviä sekä Onni-tuote-myyntipiste. Kuvittaja-kirjailija Sanna Pelliccioni piirtää osallistujille onnimaisia muotokuvia. Näyttelyssä pääset tekemään myös pääsiäissuunnistuksen.  <br>  <br>Ohjelmassa non-stop-työpajoja: <br> <br>•\tPääsiäissuunnistus: Etsi ja löydä vihjeiden avulla näyttelyyn piilotetut pääsiäiseen liittyvät kuvat. <br>•\tOnnin rairuohopajassa voit koristella oman istutuskulhon ja kylvää multaan pääsiäisruohon. <br>•\tOnni-pöytäteatterisatuhetki<br>•\tOnni-kirja- ja -pehmokauppa on avoinna koko tapahtuman ajan.</p><p>Opetuskielet: suomi, englanti, italia.<br>Vapaa pääsy</p><p>Lastenlauantai: Eid-korttien askartelu</p><p>Tule mukaan Eid-korttityöpajaan Kanneltalossa Ramadanin viimeisellä viikolla 14.3. klo 12-15!</p><p>Tapahtuma on osa Kanneltalon lastenlauantaita ja se on kaikille avoin, erityisesti perheille ja lapsille. Osallistujat pääsevät askartelemaan kauniita kortteja, jotka välittävät hyviä ajatuksia ja onnen toivotuksia ystäville ja perheelle.<br>Työpajan aikana keskustellaan siitä, mitä Eid tarkoittaa ja osallistujat saavat mahdollisuuden oppia lisää Eidin perinteistä.<br>Työpaja tarjoaa tilaisuuden tutustua kulttuuriseen monimuotoisuuteen ja edistää yhteisöllisyyttä, jossa lapset ja vanhemmat voivat yhdessä luoda muistoja.</p><p>Tule mukaan luovaan askartelukokemukseen, joka on osa iloa ja riemua lastenlauantaina!</p><p>Työpajan ohjaaja: Samia Mohamud</p><p>klo 12-15 KANNELMÄEN KIRJASTOSSA Aarrejahti. \"Seikkaile kirjastossa aarrekartan avulla ja saat palkkioksi oman osasi aarteesta.\" <br>Vapaa pääsy.</p><p>klo 14-14.50 SALISSA Company Portmanteau: PYYKKI – Lost in Laundryland (Suomi)<br>Bravo!-festivaali www.bravofestivaali.fi</p><p>Kieli: sanaton<br>Ikäsuositus: koko perheelle<br>Kesto: noin 50 min<br>Liput: 6 € <br>https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997602/#tab=<br>Lue lisää: Company Portmanteau: PYYKKI – Lost in Laundryland (Suomi)</p>"
            },
            "name": {
                "fi": "Lasten lauantai - BRAVO!",
                "sv": "Lasten lauantai - BRAVO!",
                "en": "Lasten lauantai - BRAVO!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68147/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68030",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T15:13:17.338717Z",
                    "last_modified_time": "2026-01-26T15:13:17.338730Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780668.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494644/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-26T15:13:17.200743Z",
            "last_modified_time": "2026-03-20T01:13:33.971837Z",
            "date_published": null,
            "start_time": "2026-03-14T10:00:00Z",
            "end_time": "2026-03-14T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Bravo! -festivaali käynnistyy vauhdikkaasti Stoassa 14.3. järjestettävillä avajaisilla!",
                "sv": "Bravo!-festivalen inleds med en fartfylld invigning på Stoa den 14 mars.",
                "en": "The Bravo! festival kicks off with an opening ceremony at Stoa on 14 March!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D6F8EC5E14F1957FAE65F95E168429F8/Bravo_-festivaalin_avajaiset_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D6F8EC5E14F1957FAE65F95E168429F8/Oppning_av_Bravo_-festivalen_",
                "en": "http://www.stoa.fi/en/events/event/D6F8EC5E14F1957FAE65F95E168429F8/Bravo_festival_opening_ceremony_"
            },
            "description": {
                "fi": "<p>Bravo! -festivaali käynnistyy vauhdikkaasti Stoassa 14.3. järjestettävillä avajaisilla!</p><p>Bravo!-avajaisissa on luvassa hurjia ilmalentoja, veden jumalatar ja muita elämyksiä. Näe esitysmaistiaisia, osallistu työpajoihin tai kuuntele nostattavia avajaispuheita. Luvassa on paljon ohjelmaa koko perheelle!</p><p>Avajaiset juontaa näyttelijä Vilma Sippola.<br>  <br><b>Maksulliset näytökset Stoassa avajaispäivänä:</b><br> 13.00 Veden kuiskaus -esitys, 6€ musiikkisalissa (suomi)<br> 14.00 Uventa-esitys, 6€ teatterisalissa<br> 15.00 Veden kuiskaus -esitys, 6€ musiikkisalissa (ruotsi+suomi)<br> <br>Liput näytöksiin lippu.fi:stä.</p><p>https://www.lippu.fi/artist/bravo-festivaali/</p><p><b>Kaikki muu ohjelma on maksutonta.</b><br> <br><b>Ohjelma Stoan aulan stagella 12-16:</b><br> <br>12.00 Avajaispuheenvuoro: Tiede- ja kulttuuriministerin valtiosihteeri Kristiina Kokko ja Bravo!-festivaalin tervehdys<br> 12.10 Pieni maistiainen Uventa-esityksestä<br> 12.25 Lastenkulttuuripäällikkö Pirjetta Mularin avajaissanat<br> 12.40 Itä-Helsingin musiikkiopisto esiintyy<br> 13.35 Sirkustaiteilija Susanna Liinamaa esiintyy<br> 14.20  Itä-Helsingin musiikkiopisto esiintyy<br> 15.50  Itä-Helsingin musiikkiopisto esiintyy<br> Loppusanat Bravo!-festivaalilta</p><p><b>Kellarireivit klo 12.15-16 (kuntosali)</b><br>Tule tanssimaan koko perheen reiveihin!<br> <br><b>Bravo!-tatuointeja klo 12-16 (galleria)</b><br> <br><b>Kasvomaalausta klo 12-16 (galleria)</b><br> <br><b>Tutustu Bravomaattiin klo 12-16 (aula)</b><br> <br><b>Pinssipaja kello 13-15 (kirjasto)</b><br>Tule tekemään pinssi poistokirjoista kirjaston lastenosastolle.<br> <br><b>Henri Kangas: Herätä lelu eloon! -työpaja (terraario)</b><br> klo 12.30, 13.30, 14.30, 15.30 <br> Ikäsuositus: Perheille, yli 6-vuotiaille!<br>Sirkus- ja jongleerausviritteinen työpaja koko perheelle. Pajassa lasten omista, vanhoista ja ehkä hieman tylsäksi käyneistä leluista löydetään uusia puolia kokeilemalla, leikkimällä ja jongleeraamalla.<br>Ota oma lelu mukaan tai lainaa paikan päältä!  Ilmoittautuminen Stoassa klo 12 alkaen. <br> <br><b>Cécile Le Claire: Löytöretkeilijät – Bravo! Explorers</b><br>Perheille suunnatut työpajat päivän esityksiin liittyen! Huom. pajat pidetään englanniksi. Kesto 10-20 min. (kirjasto)<br> <br>12:30 Veden kuiskaus -esitykseen liittyvä lämmittelypaja<br>13:30 Uventa-esitykseen liittyvä lämmittelypaja<br>14:30 Veden kuiskaus -esitykseen liittyvä lämmittelypaja<br> <br><b>Pisara, lätäkkö, valtameri! -työpaja (kerhohuone)</b><br> klo 12.30-15.30<br>Tutkitaan ja tunnustellaan ihmeellistä ja kiehtovaa vettä. Taiteellisella tutkimusmatkalla  tarkastellaan veden matkaa jäästä pisaraksi, pisarasta puroksi ja purosta pesuvativaltamereksi. Mielikuvituksen meri kuljettaa rakentamaan vedenalaisia maailmoja, saaria, siltoja, jokia ja puroja. Koko perheelle sopivaan taidepajaan kannattaa varautua vaattein, joissa eivät pienet pisarat haittaa.  Ohjaaja: Jenni Vilander</p><p><b>Tasapainoilijaveistos-työpaja klo 12.30-15.30 (aulan tasanne)</b><br>Osaatko seistä yhdellä jalalla tai käsillä? Miltä tuntuisi tanssia nuoralla? Miten liikkuu parkourin taitaja? Pajassa inspiroidutaan tasapainoilusta ja luodaan muovailuvahasta pienikokoinen veistos. <br>Ohjaaja: Chloé Mahy-Hulkko.  Kielet: suomi, englanti ja ranska</p><p><b>Non-stop ulkopelejä 12-16 (Stoan aukio)</b><br> <br>Stoan aulan, kellarireivitilan ja pisarapajan värikkäästä sisustuksellisesta ilmeestä vastaavat <b>Stadin AO:n Roihupellon sisustaja- ja verhoilija -opiskelijat.</b></p><p>Päivän koko ohjelma aikatauluineen löytyy täältä:<br>https://www.assitej.fi/bravo/avajaiset</p>",
                "sv": "<p>Bravo!-festivalen inleds med en fartfylld invigning på Stoa den 14 mars.</p><p>Invigningen bjuder på fantastiska luftfärder, en vattengudinna och andra upplevelser samt gemensamma aktiviteter.</p><p>Läs mer:<br>https://www.assitej.fi/bravo/avajaiset</p>",
                "en": "<p>The Bravo! festival kicks off with an opening ceremony at Stoa on 14 March!</p><p>The opening will feature wild aerial flights, a water goddess and other experiences and shared activities.</p><p>Come face the rebellious alphabet, marvel at the blend of sports and art, or see dust with new eyes… A programme full of surprising performances for audiences of all ages!</p><p>The Bravo! Performing Arts Festival for young audiences takes over the cultural centres in the Helsinki metropolitan area from the 14th  to 22nd of March in 2026. Performances will also pop up in other urban spaces. The 2026 festival features a Nordic-Baltic Focus, and all performances, workshops, and other events will celebrate performing arts for children and young audiences from across the Nordic and Baltic countries.</p><p>There will be plenty to experience for audiences of all ages — from babies to teenagers. Dance, theatre, circus, workshops, and much more!</p><p>Bravo! Festival will be held for the 13th time, organised in collaboration between ASSITEJ Finland, the national organisation for performing arts for children and young people, and the municipalities of the Helsinki metropolitan area.</p><p>Read more (in Finnish) https://www.assitej.fi/bravo/avajaiset</p>"
            },
            "name": {
                "fi": "Bravo! -festivaalin avajaiset",
                "sv": "Öppning av Bravo!-festivalen",
                "en": "Bravo! festival opening ceremony"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68030/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67506",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494294,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-22T14:13:41.702341Z",
                    "last_modified_time": "2025-12-22T14:13:41.702356Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781614.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494294/?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-22T14:13:41.590534Z",
            "last_modified_time": "2026-03-20T01:13:33.876830Z",
            "date_published": null,
            "start_time": "2026-03-14T09:00:00Z",
            "end_time": "2026-03-14T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/32CD792B81F72AF0C4D3C2365500487E/Annantalon_taidelauantai_Poytateatterin_taikaa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/32CD792B81F72AF0C4D3C2365500487E/Annegardens_konstlordag_Bordsteaterns_magi",
                "en": "http://www.annantalo.fi/en/events/event/32CD792B81F72AF0C4D3C2365500487E/Annantalo_Art_Saturday_Magic_of_tabletop_theatre_"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Pöytäteatterin taikaa!</b></p><p>Mitä ihmettä? Linnan puutarha ja piha ovat tyhjillään. Missä kaikki asukkaat ovat? Tule piirtämään ja suunnittelemaan oma hahmosi. Lentääkö linnan puutarhassa perhoset ja linnut? Asuuko linnassa mörkö ja kana, vai joku muu?</p><p>Työpajan ohjaa Anne Lihavainen ja se on osa Bravo! -Festivaalin ohjelmaa Annantalossa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Bordsteaterns magi!</b><br>Men vad nu? Slottets gård och trädgård är helt tomma. Var är alla som brukar bo där? Kom med och rita och designa en egen figur. Flyger det fjärilar och fåglar i slottets trädgård? Bor det ett monster och en höna i slottet, eller kanske någon annan?</p><p>Välkommen att delta i workshoppar och skapa konst!</p><p>Ledare Anne Lihavainen<br>Workshoppen ingår i Bravo! -festivalens program.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Magic of tabletop theatre</b><br>What on earth? The castle garden and courtyard are all empty. Where are all the residents? Come along to design and draw your own character. Do birds and butterflies fly around the castle garden? Is the castle a home to a bogeyman and a chicken or to something else?</p><p>Join the workshop and make some art!</p><p>Hosted by Anne Lihavainen<br>The workshop is part of the programme of Sampo Festival.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Pöytäteatterin taikaa",
                "sv": "Annegårdens konstlördag: Bordsteaterns magi",
                "en": "Annantalo Art Saturday: Magic of tabletop theatre!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67506/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}