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

{
    "meta": {
        "count": 27771,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=18",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=16"
    },
    "data": [
        {
            "id": "kulke:67927",
            "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: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: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:p1235/?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: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": 1494401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-08T10:12:53.226816Z",
                    "last_modified_time": "2026-01-08T10:12:53.226832Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783532.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494401/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-08T10:12:53.110680Z",
            "last_modified_time": "2026-03-20T01:12:54.469120Z",
            "date_published": null,
            "start_time": "2026-02-03T16: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": "Mitä elämiseen tarvitaan?",
                "sv": "Vad behöver man för att leva?",
                "en": "What does it take to live?"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/F882BB5F365C8EB4BE769E01C2025435/Kino_Caisa_Kaikkein_heikoimmille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/F882BB5F365C8EB4BE769E01C2025435/Kino_Caisa_Kaikkein_heikoimmille",
                "en": "http://www.caisa.fi/en/events/event/F882BB5F365C8EB4BE769E01C2025435/Kino_Caisa_Kaikkein_heikoimmille"
            },
            "description": {
                "fi": "<p>Mitä elämiseen tarvitaan?</p><p>Henkilökuva-dokumentti kertoo varjoteatteri- ja yhteisötaiteilija Elviira Davidowista, joka on pitkään työskennellyt eriarvoisuuden vähentämisen ja rasismin ehkäisemisen puolesta.  <br>Hän on yhteisötaiteen keinoin pyrkinyt antamaan Itä-Euroopan romaneille vaihtoehtoisia tapoja elättää itsensä, jotta heidän ei tarvitsisi kerjätä.</p><p>Pelkällä hyvällä tahdolla ei voi muuttaa maailmaa, tarvitaan myös tekoja. Elokuva seuraa Davidowia ja avaa näkymiä siihen, miten taiteella voi muuttaa maailmaa. Davidowin sanoin: ”Tärkeintä kuitenkin on rikkoa ennakkoluuloja romaniyhteisöistä ja antaa tietoa, jonka kautta ihmiset voivat luoda omat, vähemmän värittyneet mielikuvat yhteisön tilanteesta.” Toisen tarinan kuunteleminen on ensimmäinen askel toimintaan, koska elämiseen tarvitaan vähän enemmän kuin pelkkä tahto.</p><p>Kaikkein heikoimmille on pieni elokuva isolla sydämellä ❤️.</p><p>Dokumentissa on englanninkielinen tekstitys suomen ja romaninkielisen äänen lisäksi.</p><p>Ensi-illassa 3.2. dokumentin tekijät Anu Lehtonen ja Janica Grönqvist kertovat elokuvan taustoista. Tilaisuudessa esiintyy Elviira Davidow yhdessä muusikoiden Murat Ermutlu ja Meri-Sofia Lakos kanssa. Lisäksi Diakonissalaitoksen ja Yhteiset Lapsemme ry:n edustajat kertovat ajankohtaisista vaikuttamismahdollisuuksista.</p><p>Varmista paikkasi ensi-illassa ilmoittautumalla etukäteen sähköpostitse: caisa.tiedotus@hel.fi</p><p>Elokuva on nähtävissä myös ti 24.2. klo 17, klo 17:30, klo 18 ja klo 18:30. Nämäkin näytökset ovat maksuttomia, niihin ei ole ennakkoilmoittautumista.</p>",
                "sv": "<p>Vad behöver man för att leva?</p><p>Denna dokumentär i form av ett personporträtt berättar om skuggteater- och samhällskonstnären Elviira Davidow, som länge har arbetat mot ojämlikhet och rasism.  Genom samhällskonsten har hon försökt ge romerna alternativa sätt att försörja sig, så att de inte behöver tigga.</p><p>Man kan inte förändra världen bara genom god vilja, det behövs också handlingar. Filmen följer Davidow och öppnar upp perspektiv på hur man kan förändra världen genom konsten. Med Davidows ord: ”Det viktigaste är ändå att krossa fördomar om romerna och ge information så att människor kan skapa sig egna, mindre vinklade uppfattningar om gruppens situation.” Att lyssna på en annans berättelse är det första steget mot agerande, för man behöver lite mer för att leva än bara vilja.</p><p>Kaikkein heikoimmille är en liten film med stort hjärta ❤️.</p><p>Dokumentären har textning på engelska, utöver talet på finska och romani.</p><p>Vid premiären den 3 februari 2026 medverkar filmskaparna för att berätta om filmens bakgrund. På plats finns också Elviira Davidow, romska musiker samt en representant för en organisation som berättar om vilka möjligheter att påverka som finns just nu.</p><p>Säkra din plats på premiären 3.2 kl. 18 genom att anmäla dig i förväg per e-post: caisa.tiedotus@hel.fi</p><p>Filmen visas också tisdagen den 24 februari kl. 17, 17.30, 18 och 18.30. Även dessa visningar har fritt inträde, men ingen förhandsanmälan behövs.</p>",
                "en": "<p>What does it take to live?</p><p>This documentary is about shadow theatre and community artist Elviira Davidow, who has been working to reduce inequality and prevent racism for a long time.  Through community art, she has sought to give Roma people alternative ways of supporting themselves so that they do not have to beg.</p><p>Goodwill alone cannot change the world – actions are needed as well. The film follows Davidow and opens a window into how art can change the world. In Davidow’s words: “The most important thing is to break down prejudices about Roma communities and provide information that allows people to create their own, less prejudices notions of the situation of the community.” Listening to someone else’s story is the first step towards action, as living takes a little more than just a will to live.</p><p>Kaikkein heikoimmille (‘For the Most Vulnerable’) is a small film with a big heart ❤️.</p><p>The documentary has English subtitles in addition to Finnish and Romanian audio.</p><p>At the premiere on 3 February 2026, the makers of the documentary will talk about the background of the film. The event will also be attended by Elviira Davidow, Roma musicians and an organisation representative who will talk about current opportunities to influence matters.</p><p>Secure your seat at the premiere on 3 February at 18.00 by registering in advance by email: caisa.tiedotus@hel.fi</p><p>The film will also be screened on Tuesday 24 February at 17.00, 17.30, 18.00 and 18.30. These screenings are also free of charge, but there is no advance registration required for them.</p>"
            },
            "name": {
                "fi": "Kino Caisa: Kaikkein heikoimmille – Ensi-ilta",
                "sv": "Kino Caisa: Kaikkein heikoimmille – Premiär",
                "en": "Kino Caisa: Kaikkein heikoimmille – Premiere"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67927/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67466",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494006,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:05.493425Z",
                    "last_modified_time": "2025-12-03T08:13:05.493440Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781430.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494006/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:05.386455Z",
            "last_modified_time": "2026-03-20T01:12:54.251519Z",
            "date_published": null,
            "start_time": "2026-02-03T15: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": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!",
                "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!",
                "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A5CF351D35F61480B2A667F264F2CF71/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A5CF351D35F61480B2A667F264F2CF71/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/A5CF351D35F61480B2A667F264F2CF71/Singalongs"
            },
            "description": {
                "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>",
                "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Allsång",
                "en": "Singalongs"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67466/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67450",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 1494891,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-18T10:13:14.799924Z",
                    "last_modified_time": "2026-02-18T10:13:14.799942Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781394.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494891/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-18T10:13:14.685487Z",
            "last_modified_time": "2026-03-20T01:12:54.120434Z",
            "date_published": null,
            "start_time": "2026-02-03T08: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": "Eliökuntalaisten manifesti kutsuu kaikenikäiset mukaan maksuttomiin tapahtumiin, esityksiin ja kohtaamisiin eri puolilla kaupunkia."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/00B1DDE8C0B430C2461D92222C231F4B/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/00B1DDE8C0B430C2461D92222C231F4B/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla",
                "en": "http://www.kanneltalo.fi/en/events/event/00B1DDE8C0B430C2461D92222C231F4B/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla"
            },
            "description": {
                "fi": "<p>Eliökuntalaisten manifesti kutsuu kaikenikäiset mukaan maksuttomiin tapahtumiin, esityksiin ja kohtaamisiin eri puolilla kaupunkia.</p><p>Tule mukaan seuraamaan Eliökuntalaisten manifestin julkistuskiertueen lähtöohjelmaa Mätäjoen Mutterilaiturille! Mutterilaituri sijaitsee noin 10 minuutin kävelymatkan päässä Kanneltalosta, osoitteessa Polkkakuja.</p><p><b>3.3.klo 10 Mätäjoen Mutterilaituri</b><br>Tervetulosanat, liito-oravat Papana ja Norkko <br>Eliökuntalaisten manifesti, kirjailija <b>Anni Kytömäki</b> <br>Apulaispormestari <b>Paavo Arhinmäen</b> tervehdys.</p><p>Lisäksi paikalla on Seikkailutaidekoulun työpaja, jossa tehdään postikortteja eliökuntalaisille. <br> <br>Manifesti jatkaa matkaansa apulaispormestari Arhinmäen mukana Malmille bussilla 553.</p><p><b>Eliökuntalaisten manifesti</b><br><u><a href=\"https://tapahtumat.hel.fi/fi/articles/kulttuuri-ja-taide/eliokuntalaisten-manifesti-kulkee-halki-helsingin-maailman-luontopaivana-3-3-luvassa-maksuttomia-tapahtumia-kaikenikaisille\">Lue lisää Eliökuntalaisten manifestista ja katso koko tapahtumapäivän ohjelma</a></u></p>"
            },
            "name": {
                "fi": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla",
                "sv": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla",
                "en": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67450/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67276",
            "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: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": 1494058,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:48.476823Z",
                    "last_modified_time": "2025-12-04T12:12:48.476839Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780811.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494058/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:48.390407Z",
            "last_modified_time": "2026-03-20T01:12:54.002158Z",
            "date_published": null,
            "start_time": "2026-02-02T16: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": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9D393E589AFD4548FA0862DF802347EA/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9D393E589AFD4548FA0862DF802347EA/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/9D393E589AFD4548FA0862DF802347EA/Let_us_sing_"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko Mari Kätkä.</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 h</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</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><p>Längd: 1 h</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</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><p>Duration: 1 h</p>"
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67276/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68041",
            "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:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 1494665,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T14:13:55.706100Z",
                    "last_modified_time": "2026-01-28T14:13:55.706112Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785094.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494665/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2026-01-28T14:13:55.574951Z",
            "last_modified_time": "2026-03-20T01:12:53.882993Z",
            "date_published": null,
            "start_time": "2026-02-02T08: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": "Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.",
                "sv": "Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.",
                "en": "Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E6C1DDC1BB37A86ABBD6958D5ADF993B/Stolgymnastik_for_seniorer_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E6C1DDC1BB37A86ABBD6958D5ADF993B/Stolgymnastik_for_seniorer_",
                "en": "http://www.vuotalo.fi/en/events/event/E6C1DDC1BB37A86ABBD6958D5ADF993B/Stolgymnastik_for_seniorer_"
            },
            "description": {
                "fi": "<p>Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.</p><p>Maksutonta tuolijumppaa ruotsiksi.</p><p>Gruppen hålls på måndagar kl. 10 med uppehåll för sportlov och påsk. Verksamheten leds av en idrottsledare.</p><p>Du behöver inte binda dig till alla gånger, kom när det passar dig, men vi samlar in uppgifter om deltagande, anmäl dig enkelt på webben: folkhalsan_ostra_helsingfors.fi</p><p>Vi tar också emot din anmälan på plats om du vill!</p><p>Arr. Folkhälsan i östra Helsingfors i samarbete med Nordhuset.</p>",
                "sv": "<p>Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.</p><p>Gruppen hålls på måndagar kl. 10 med uppehåll för sportlov och påsk. Verksamheten leds av en idrottsledare. <br>Du behöver inte binda dig till alla gånger, kom när det passar dig, men vi samlar in uppgifter om deltagande, anmäl dig enkelt på webben: folkhalsan_ostra_helsingfors.fi<br>Vi tar också emot din anmälan på plats om du vill!<br>Arr. Folkhälsan i östra Helsingfors i samarbete med Nordhuset.</p>",
                "en": "<p>Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.</p><p>Gruppen hålls på måndagar kl. 10 med uppehåll för sportlov och påsk. Verksamheten leds av en idrottsledare.</p><p>Du behöver inte binda dig till alla gånger, kom när det passar dig, men vi samlar in uppgifter om deltagande, anmäl dig enkelt på webben: folkhalsan_ostra_helsingfors.fi</p><p>Vi tar också emot din anmälan på plats om du vill!</p><p>Arr. Folkhälsan i östra Helsingfors i samarbete med Nordhuset.</p>"
            },
            "name": {
                "fi": "Stolgymnastik för seniorer!",
                "sv": "Stolgymnastik för seniorer!",
                "en": "Stolgymnastik för seniorer!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68041/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67987",
            "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: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:596/?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"
                }
            ],
            "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": 1494589,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T12:14:10.601885Z",
                    "last_modified_time": "2026-01-21T12:14:10.601902Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784266.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494589/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-21T12:14:10.477282Z",
            "last_modified_time": "2026-03-20T01:12:53.769201Z",
            "date_published": null,
            "start_time": "2026-02-02",
            "end_time": "2026-02-28",
            "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": "Tylsän harmaat asennuskaapit ovat erinomainen pohja taideteoksille ja valokuville."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_",
                "en": "http://www.kanneltalo.fi/en/events/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_"
            },
            "description": {
                "fi": "<p>Tylsän harmaat asennuskaapit ovat erinomainen pohja taideteoksille ja valokuville.</p><p>Taide piristää kaupunkikuvaa ja auttaa havainnoimaan ympäristöä uudella tavalla. Samalla ne antavat taiteilijoille ja kuvaajille hyviä kohteita tuoda esille tuotoksiaan.</p><p>Haagan Taideseura ry on Helsingissä vuodesta 1966 toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot Haagan Taideseura ry<br> <br>Kahvilan vitriinit</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa",
                "sv": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa",
                "en": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67987/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67264",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 1494057,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:48.064732Z",
                    "last_modified_time": "2025-12-04T12:12:48.064749Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780782.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494057/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:47.957190Z",
            "last_modified_time": "2026-03-20T01:12:52.511662Z",
            "date_published": null,
            "start_time": "2026-01-31T12: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": "Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.",
                "sv": "Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.",
                "en": "Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/14452DF750112BA8C4A29118248E962B/LOPPUUNVARATTU_Wilma-Emilia_Kuosa_Company_Instinct",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/14452DF750112BA8C4A29118248E962B/FULLBOKAT_Wilma-Emilia_Kuosa_Company_Instinct",
                "en": "http://www.kanneltalo.fi/en/events/event/14452DF750112BA8C4A29118248E962B/FULLY_BOOKED_Wilma-Emilia_Kuosa_Company_Instinct"
            },
            "description": {
                "fi": "<p>Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.</p><p>Esitys on yhteisöllinen ja turvallinen rituaali, jossa tanssitaiteilija Wilma-Emilia Kuosa johdattaa yleisön jazztanssin keinoin läpi moniulotteisten aistikokemuksien. Inspiraationa ovat Kuosan tutkimusmatkat Beninissä ja Togossa Länsi-Afrikassa. Esitystapahtuma sisältää soolo- ja yhteistansseja, äänimaailmoja, videoita ja runoja sekä erilaisia haju- ja makuelämyksiä.</p><p>Instinct tapahtuu Kanneltalon galleriatilassa, jossa on samanaikaisesti esillä Wilma-Emilia Kuosan ja työryhmän näyttely Sensation/Aistimus/Sensation. Esityksen näyttämönä toimiva näyttely herää henkiin kolmen esiintyjän ja yleisön vuorovaikutuksessa. Yleisö voi liikkua galleriatilassa esityksen aikana ja valita vapaasti ne aistikokemukset, joille antautua. Esitys on ympäristöystävällinen matka kohti jazztanssin juuria.</p><p>Esitys herkistää hiljentymään aistien äärelle ja havainnoimaan maailmaa yhdessä, yksi aisti kerrallaan. Jokainen tanssi perustuu yhteen aistielämykseen, josta näytetään video tai kuullaan äänimaailma tai runo. Tansseissa heijastuu Wilma-Emilian tutkimat rituaalitanssit ja kansantanssit suhteessa aisteihin. Yleisölle annetaan aististimulantteja eli samanlaisia hajuja, maistettavaa tai materiaalia kokemuksen jakamiseksi.</p><p>Instinct on helsinkiläisen jazztanssiryhmän Wilma-Emilia Kuosa Companyn kantaesitys. Teos konsepti on koreografi Wilma-Emilia Kuosan kuudes ja hänen työparinaan on tanssitaiteilija Tarja Rinne. Wilma-Emiliaa ja Tarjaa kiehtoo tutkia tässä esityksessä sitä, mitä jazztanssi tänä päivänä on. Wilma-Emilia on aiemmissa teoksissaan käyttänyt monimediallisia elementtejä – nykyrunoutta, improvisaatiota ja valokuvaa – joita tässä esityksessä yhdistetään uudenlaisiin aistikokemuksiin.</p><p>Instinct on kokemus, jonka Wilma-Emilia haluaa jakaa yhdessä yleisön ja esiintyjien kanssa. Esityksissä luodaan turvallinen tila, jossa jokainen voi valita roolinsa todistajana tai osallistujana esityksen edetessä vaiheesta toiseen. Roolia voi vapaasti vaihdella esityksen kulussa.</p><p><b>Työryhmä</b><br>Koreografia ja runot: Wilma-Emilia Kuosa <br>Tanssin tukena tanssitaiteilija: Tarja Rinne <br>Käsikirjoitus: Wilma-Emilia Kuosa ja Henry Hanikka <br>Esiintyjät: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Äänisuunnittelu: Wilma-Emilia Kuosa <br>Valosuunnittelu: Jaakko Kettunen <br>Musiikki: Ilpo Jauhiainen, Noel Saizonou ja työryhmä</p><p>Tuotanto: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Kesto: 1 t</p><p>Kieli Suomi/englanti/ranska <br>Suosittelemme ottamaan mukaan omat villasukat tai tohvelit, sillä näyttelytilassa ollaan ilman ulkokenkiä</p><p>Maksuton. Katsomokoko on rajallinen. Varaa paikkasi: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p><p>Suosittelemme ottamaan mukaan omat villasukat tai tohvelit, sillä näyttelytilassa ollaan ilman ulkokenkiä</p>",
                "sv": "<p>Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.</p><p>Föreställningen är en gemensam och trygg ritual, där danskonstnären Wilma-Emilia Kuosa leder publiken genom en mångdimensionell sinnesupplevelse med hjälp av jazzdans. Inspirationen kommer från Kuosas forskningsresor i Benin och Togo och Västafrika. I föreställningen ingår solodanser och danser med flera medverkande, ljudvärldar, videor och dikter samt olika doft- och smakupplevelser.</p><p>Föreställningen är trespråkig och innehåller finska, engelska och franska.</p><p>Instinct äger rum i Kanneltalos gallerilokal, där utställningen Sensation/Aistimus/Sensation av Wilma-Emilia Kuosa och hennes arbetsgrupp visas samtidigt. Utställningen, som fungerar som scen för föreställningen, väcks till liv genom samspelet mellan de tre artisterna och publiken. Publiken kan röra sig i gallerirummet under föreställningen och fritt välja vilka sinnesupplevelser de vill ge sig hän åt. Föreställningen är en miljövänlig resa till jazzdansens rötter.</p><p>Föreställningen uppmuntrar oss att stanna upp inför våra sinnen och observera världen tillsammans, med ett sinne i taget. Varje dans baserar sig på en enda sinnesupplevelse, som vi får se en video eller höra ett ljudlandskap eller en dikt om. Danserna återspeglar de rituella danser och folkdanser som Wilma-Emilia studerat i relation till sinnena. Publiken får sensoriska stimuli, dvs. liknande dofter, smaker eller material för att dela upplevelsen.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte och hennes arbetspar är danskonstnären Tarja Rinne. I den här föreställningen fascineras Wilma-Emilia och Tarja av att utforska vad jazzdans är i dag. I sina tidigare verk har Wilma-Emilia använt sig av multimediaelement – samtida poesi, improvisation och fotografi – som i denna föreställning kombineras med nya sinnesupplevelser.</p><p>Instinct är en upplevelse som Wilma-Emilia vill dela med sig av till publiken och artisterna. I föreställningarna skapas ett tryggt rum där var och en kan välja sin roll som vittne eller deltagare när föreställningen framskrider från ett skede till nästa. Man kan fritt byta roll under föreställningens gång.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte.</p><p><b>Arbetsgrupp</b><br>Koreografi och dikter: Wilma-Emilia Kuosa <br>Danskonstnär som stöd för dansen: Tarja Rinne <br>Manus: Wilma-Emilia Kuosa och Henry Hanikka <br>På scenen: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Ljusdesign: Jaakko Kettunen <br>Ljuddesign: Wilma-Emilia Kuosa <br>Musik: Ilpo Jauhiainen, Noel Saizonou och en arbetsgrupp <br>Produktion: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Längd: 1 h<br>Språk finska/engelska/franska</p><p>Fritt inträde. Begränsat antal publikplatser. Boka plats: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>",
                "en": "<p>Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance.</p><p>The performance is a communal and safe ritual in which dance artist Wilma-Emilia Kuosa leads the audience on a multidimensional sensory journey through jazz dance. Kuosa has been inspired by her expeditions to Benin and Togo in West Africa. The performance event will include solo and collaborative dances, soundscapes, videos and poems, as well as a variety of smell and taste experiences.</p><p>The performance is in three languages: Finnish, English and French.</p><p>Instinct takes place in the Kanneltalo gallery space, where the exhibition Sensation/Aistimus/Sensation by Wilma-Emilia Kuosa and her work group is displayed at the same time. The exhibition, which serves as the stage for the performance, comes to life through the interaction between the three performers and the audience. The audience can move around the gallery space during the performance and freely choose the sensory experiences to which to surrender. The performance is an eco-friendly journey towards the roots of jazz dance.</p><p>The performance encourages us to keep still, become aware of our senses and observe the world together, one sense at a time. Each dance is based on a single sensory experience, from which a video is shown or a soundscape or poem is heard. The dances reflect the ritual and folk dances studied by Wilma-Emilia in relation to the senses. The audience is given sensory stimuli, i.e. similar smells, tastes or materials to share the experience.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. This is the sixth concept by choreographer Wilma-Emilia Kuosa. She works with dance artist Tarja Rinne. In this performance, Wilma-Emilia and Tarja are fascinated to explore what jazz dance is today. In her previous works, Wilma-Emilia has used multimedia elements – contemporary poetry, improvisation and photography – which, in this performance, are combined with new sensory experiences.</p><p>Instinct is an experience that Wilma-Emilia wants to share with the audience and the performers. The presentations create a safe space where everyone can choose their role as a witness or participant as the presentation progresses from one phase to the next. You can freely change your role during the course of the performance.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. The work concept is the sixth by choreographer Wilma-Emilia Kuosa.</p><p><b>Creative team</b><br>Choreography and poems: Wilma-Emilia Kuosa <br>Supporting dance artist: Tarja Rinne <br>Script: Wilma-Emilia Kuosa and Henry Hanikka <br>Performers: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa  <br>Lighting design: Jaakko Kettunen <br>Sound design: Wilma-Emilia Kuosa <br>Music: Ilpo Jauhiainen, Noel Saizonou and team <br>Production: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Duration: 1 h</p><p>Language Finnish/English/French <br>We recommend that you bring your own woolen socks or slippers, as shoes will be left outside the gallery space.</p><p>Free of charge. The size of the auditorium is limited. Book your seat: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>"
            },
            "name": {
                "fi": "LOPPUUNVARATTU: Wilma-Emilia Kuosa Company: Instinct",
                "sv": "FULLBOKAT: Wilma-Emilia Kuosa Company: Instinct",
                "en": "FULLY BOOKED: Wilma-Emilia Kuosa Company: Instinct"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67264/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67981",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": 1494488,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-15T09:13:49.086112Z",
                    "last_modified_time": "2026-01-15T09:13:49.086140Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783058.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494488/?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-15T09:13:48.965851Z",
            "last_modified_time": "2026-03-20T01:12:51.879401Z",
            "date_published": null,
            "start_time": "2026-01-31T10:00:00Z",
            "end_time": "2026-01-31T15: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": "Ramadanrieha palaa taas, jo 4. kertaa! Se on tunnelmallinen, perhe-tapahtuma, joka kokoaa yhteen Ramadanin odotuksen hengessä. Luvassa ainutlaatuinen bazaarialue ja monipuolinen kattaus erilaisia pajoja ja pisteitä lapsille ja nuorille.",
                "sv": "Ramadanrieha är tillbaka igen, för 4. gången! Det är ett stämningsfullt familjeevenemang som samlar mänskor i väntan på Ramadan. På programmet finns ett unikt bazaarområde och ett mångsidigt utbud av olika verkstäder och stationer för barn och unga.",
                "en": "Ramadanrieha is back again for the 4th time! It’s a warm, family-friendly event that brings people together in the spirit of anticipating Ramadan. The event features a unique bazaar area and a wide variety of workshops and activity stations for children and young people."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1686FB31FD1308BE93C62FE0C81DA8DC/Ramadanrieha",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1686FB31FD1308BE93C62FE0C81DA8DC/Ramadanrieha",
                "en": "http://www.vuotalo.fi/en/events/event/1686FB31FD1308BE93C62FE0C81DA8DC/Ramadanrieha"
            },
            "description": {
                "fi": "<p>Ramadanrieha palaa taas, jo 4. kertaa! Se on tunnelmallinen, perhe-tapahtuma, joka kokoaa yhteen Ramadanin odotuksen hengessä. Luvassa ainutlaatuinen bazaarialue ja monipuolinen kattaus erilaisia pajoja ja pisteitä lapsille ja nuorille.</p><p>OHJELMA:</p><p>ULKONA VUOTORILLA:<br>Klo 12-17 Hevoskärry- ja poniajelu, Töyryhiekan tila (maksullinen piste)<br>Klo 12-17 Ruokarekka, Falafel Box (maksullinen piste)<br>Klo 12-15 Paloauto ja kattilapalorasti, Vuosaaren VPK</p><p>AULA, K-KERROS:<br>Klo 12-17 Vaunuparkki, rajoitetusti tilaa joten suosittelemme että vaunut ja rattaat jätetään kotiin tai autoon jos mahdollista</p><p>MONITOIMITILA, K-KERROS:<br>Klo 12-17 Perhekahvila (teetä ja pientä askartelua perheille), Mannerheimin Lastensuojeluliitto</p><p>PIKKUSALI, K-KERROS: <br>Klo 12-17 Virtuaalilasipiste, Nuorten Musliimien Foorumi<br>Klo 12-17 Animointityöpajaa/koodauspiste, Helsingin Kuvataidekoulu</p><p>VUOSALI, 1. KERROS:<br>Klo 12-17 Bazaari, Summa ry ja lukuisat muut myyjät</p><p>VUOTALON AULA, 1. KERROS:<br>Klo 12-17 Valokuvauspiste<br>Klo 12-17 Ruokailualue</p><p>KIRJASTON LASTENOSASTO, 1. KERROS:<br>Klo 12-17 Värityspiste, Vuosaaren kirjasto</p><p>KIRJASTON KOKOUSHUONE JYRKI, 1. KERROS:<br>Klo 12-17 Ramadan-korttien askartelupiste, Lasten kirjastoauto</p><p>KAHVILA POKKARI, 1. KERROS:<br>Klo 10.30-17 Kahvila palvelee, HUOM! Kahvilassa voi ainoastaan syödä ja juoda kahvilan tuotteita.</p><p>KUVATAIDELUOKKA, 2. KERROS:<br>Klo 12-15 Iloiset rannekorut (5-8-vuotiaat), non-stop, Kulttuurin kummilapset<br>Klo 12.30-13.30, 14-15, 15.30-16.30 Maalausta luonnonväreillä (10+vuotiaat, 20 hlöä/sessio), Operaatio Pulssi<br>Klo 12.30-13.30, 14-15, 15.30-16.30 Postikortti piirtäen ja maalaten, Ateneum</p><p>MUSIIKKILUOKKA, 2. KERROS:<br>Klo 12.45-13.30, 13.45-14.30, 14.45-15.30, 15.45-16.30 Ihmevekottimet (10+vuotiaat, 16 hlöä/sessiot), Aalto Junior</p><p>KERAMIIKKALUOKKA, 2. KERROS: <br>Klo 12-17 Hennauspiste, eri toimijoita (maksullinen piste)</p><p>Kaikkiin ohjelmiin on vapaa pääsy ellei lue \"maksullinen piste\". Oikeudet muutoksiin pidetään.</p>",
                "sv": "<p>Ramadanrieha är tillbaka igen, för 4. gången! Det är ett stämningsfullt familjeevenemang som samlar mänskor i väntan på Ramadan. På programmet finns ett unikt bazaarområde och ett mångsidigt utbud av olika verkstäder och stationer för barn och unga.</p><p>PROGRAM:</p><p>UTOMHUS VID NORTORGET:<br>Kl. 12–17 Hästkärra och ponnyridning, Töyryhiekan tila (avgiftsbelagd aktivitet)<br>Kl. 12–17 Matvagn, Falafel Box (avgiftsbelagd aktivitet)<br>Kl. 12–15 Brandbil och kastrullbrandsstation, Nordsjö FBK</p><p>AULAN, VÅNING K:<br>Kl. 12–17 Barnvagnsparkering, begränsat utrymme – vi rekommenderar att barnvagnar lämnas hemma eller i bilen om möjligt</p><p>MULTIKONSTLOKALEN, VÅNING K:<br>Kl. 12–17 Familjecafé (te och lätt pyssel för familjer), Mannerheims Barnskyddsförbund</p><p>LILLA SALEN, VÅNING K:<br>Kl. 12–17 Virtualglasögonstation, Unga Muslimers Forum<br>Kl. 12–17 Animeringsverkstad/kodningspunkt, Helsingfors Bildkonstskola</p><p>NORSALEN, VÅNING 1:<br>Kl. 12–17 Basar, Summa rf och många andra försäljare<br>NORDHUSETS AULA, VÅNING 1:<br>Kl. 12–17 Fotograferingsstation<br>Kl. 12–17 Matplats</p><p>BIBLIOTEKETS BARNAVDELNING, VÅNING 1:<br>Kl. 12–17 Färgläggningsstation, Nordsjö bibliotek</p><p>BIBLIOTEKETS MÖTESRUM JYRKI, VÅNING 1:<br>Kl. 12–17 Pysselstation för Ramadan-kort, Barnens bokbuss</p><p>CAFÉ POKKARI, VÅNING 1:<br>Kl. 10.30–17 Caféet är öppet. OBS! I caféet får man endast äta och dricka caféets egna produkter.</p><p>BILDKONSTATELJÉN, VÅNING 2:<br>Kl. 12–15 Glada armband (5–8-åringar), non-stop, Kulturens fadderbarn<br>Kl. 12.30–13.30, 14–15, 15.30–16.30 Målning med naturfärger (10+ år, 20 personer/session), Operaatio Pulssi<br>Kl. 12.30–13.30, 14–15, 15.30–16.30 Rita och måla vykort, Ateneum</p><p>MUSIKKLASSEN, VÅNING 2:<br>Kl. 12.45–13.30, 13.45–14.30, 14.45–15.30, 15.45–16.30 Fantasifulla instrument (10+ år, 16 personer/session), Aalto Junior</p><p>KERAMIKATELJÉN, VÅNING 2:<br>Kl. 12–17 Henna-station, olika aktörer (avgiftsbelagd aktivitet)</p><p>Alla programpunkter är gratis om inget annat anges. Rätten till ändringar förbehålls.</p>",
                "en": "<p>Ramadanrieha is back again for the 4th time! It’s a warm, family-friendly event that brings people together in the spirit of anticipating Ramadan. The event features a unique bazaar area and a wide variety of workshops and activity stations for children and young people.</p><p>This multilingual event for families with children will celebrate Ramadan.</p><p>PROGRAM:</p><p>OUTDOORS AT VUOTORI:<br>12:00–17:00 Horse-drawn carriage and pony rides, Töyryhiekan tila (paid activity)<br>12:00–17:00 Food truck, Falafel Box (paid activity)<br>12:00–15:00 Fire engine and cooking-pot fire safety station, Vuosaari VPK (Volunteer Fire Brigade)</p><p>LOBBY, BASEMENT LEVEL (K):<br>12:00–17:00 Stroller parking. Limited space available, so we recommend leaving strollers at home or in the car if possible.</p><p>MULTI-ARTS SPACE, BASEMENT LEVEL (K):<br>12:00–17:00 Family café (tea and light crafts for families), MLL (Mannerheim League for Child Welfare)</p><p>SMALL HALL, BASEMENT LEVEL (K):<br>12:00–17:00 Virtual reality station, Young Muslims Forum<br>12:00–17:00 Animation workshop/coding station, Helsinki Art School</p><p>VUOSALI HALL, 1ST FLOOR:<br>12:00–17:00 Bazaar, Summa Association and many other vendors</p><p>VUOTALO LOBBY, 1ST FLOOR:<br>12:00–17:00 Photography station<br>12:00–17:00 Dining area</p><p>CHILDREN’S SECTION OF THE LIBRARY, 1ST FLOOR:<br>12:00–17:00 Coloring station, Vuosaari Library</p><p>LIBRARY MEETING ROOM JYRKI, 1ST FLOOR:<br>12:00–17:00 Ramadan card craft station, Children’s Library Bus</p><p>CAFÉ POKKARI, 1ST FLOOR:<br>10:30–17:00 Café open. NOTE! Only food and drinks purchased from the café may be consumed in the café area</p><p>ART CLASSROOM, 2ND FLOOR:<br>12:00–15:00 Happy bracelets (ages 5–8), non-stop, Kulttuurin Kummilapset <br>12:30–13:30, 14:00–15:00, 15:30–16:30 Painting with natural colors (ages 10+, 20 participants/session), Operaatio Pulssi<br>12:30–13:30, 14:00–15:00, 15:30–16:30 Drawing and painting postcards, Ateneum</p><p>MUSIC CLASSROOM, 2ND FLOOR:<br>12:45–13:30, 13:45–14:30, 14:45–15:30, 15:45–16:30 Amazing contraptions (ages 10+, 16 participants/session), Aalto Junior</p><p>CERAMICS CLASSROOM, 2ND FLOOR:<br>12:00–17:00 Henna station, various organizers (paid activity)</p><p>All activities are free of charge unless otherwise stated. Changes reserved.</p>"
            },
            "name": {
                "fi": "Ramadanrieha – Koko perheen tapahtuma",
                "sv": "Ramadanrieha – Evenemang för hela familjen",
                "en": "Ramadanrieha – An event for the whole family"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67981/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67472",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494005,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:04.915899Z",
                    "last_modified_time": "2025-12-03T08:13:04.915914Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781442.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494005/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:04.814280Z",
            "last_modified_time": "2026-03-20T01:12:51.094159Z",
            "date_published": null,
            "start_time": "2026-01-30T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa Sointi Jazz Orchestran järjestämiin big band -jameihin Malmitaloon!",
                "sv": "Välkommen till Sointi Jazz Orchestras big band-jam på Malms kulturhus!",
                "en": "Join us for big band jam sessions organised by Sointi Jazz Orchestra at Malmitalo!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7DA670C93EED264E30805E4CB05B58F0/Big_Band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7DA670C93EED264E30805E4CB05B58F0/Big_Band_-jam",
                "en": "http://www.malmitalo.fi/en/events/event/7DA670C93EED264E30805E4CB05B58F0/Big_band_jam_sessions"
            },
            "description": {
                "fi": "<p>Tervetuloa Sointi Jazz Orchestran järjestämiin big band -jameihin Malmitaloon!</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.</p><p>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!</p><p>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com</p><p>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.</p><p><b>House bandit:</b><br>Ebeli Big Band<br>Sibelius-lukion Big Band</p><p>Kesto: 2 t<br>Vapaa pääsy!</p>",
                "sv": "<p>Välkommen till Sointi Jazz Orchestras big band-jam på Malms kulturhus!</p><p>Efter korta framträdanden av husbanden är alla saxofonister, trumpetare, trombonister, ackompanjerare och sångare välkomna att delta i musiken! På plats finns trumset, piano, bas- och gitarrförstärkare, notställ och noter. Ta gärna med de instrument och trumpinnar du behöver.</p><p>Till jammen har vi valt ut material som är bekvämt och passar olika nivåer av musiker – vi väljer ut de låtar som spelas med tanke på de musiker som kommer för att jamma!</p><p>Det är också möjligt få se noterna till låtarna på förhand på begäran. Vänligen skicka begäran till: info@sointijazzorchestra.com</p><p>Kom ensam eller med en vän för att skapa musik tillsammans! Du kan också bara komma och lyssna och njuta av big band-musiken.</p><p>Husbanden:<br>Ebeli Big Band<br>Sibelius-lukios Big Band</p><p>Längd: 2 h<br>Fritt inträde!</p>",
                "en": "<p>Join us for big band jam sessions organised by Sointi Jazz Orchestra at Malmitalo!</p><p>After short performances by the house bands, all saxophonists, trumpetists, trombonists, band players and singers are welcome to join in with the music! On site you will find a drum kit, a piano, bass and guitar amplifiers, music stands and sheet music. Please bring any other instruments and drumsticks that you need.</p><p>For the jams, we have selected material that is comfortable and suitable for different levels of musicianship – the tunes to be played will be chosen at the jams in accordance with the musicians who show up!</p><p>You can also request to see the sheet music of the songs in advance. Please send your request to: info@sointijazzorchestra.com</p><p>Come and bring a friend to make music together! You can also just come to listen and enjoy some big band music.</p><p>House bands:<br>Ebeli Big Band<br>Sibelius-lukio Upper Secondary School Big Band</p><p>Duration: 2 h<br>Free entry!</p>"
            },
            "name": {
                "fi": "Big Band -jamit",
                "sv": "Big Band -jam",
                "en": "Big band jam sessions"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67472/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67263",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 1494056,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:47.599670Z",
                    "last_modified_time": "2025-12-04T12:12:47.599686Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780780.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494056/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:47.500423Z",
            "last_modified_time": "2026-03-20T01:12:50.920896Z",
            "date_published": null,
            "start_time": "2026-01-30T16: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": "Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.",
                "sv": "Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.",
                "en": "Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F25BC385F6187AC4A7E8C6BC8B992796/LOPPUUNVARATTU_Wilma-Emilia_Kuosa_Company_Instinct",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F25BC385F6187AC4A7E8C6BC8B992796/FULLBOKAT_Wilma-Emilia_Kuosa_Company_Instinct",
                "en": "http://www.kanneltalo.fi/en/events/event/F25BC385F6187AC4A7E8C6BC8B992796/FULLY_BOOKED_Wilma-Emilia_Kuosa_Company_Instinct"
            },
            "description": {
                "fi": "<p>Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.</p><p>Esitys on yhteisöllinen ja turvallinen rituaali, jossa tanssitaiteilija Wilma-Emilia Kuosa johdattaa yleisön jazztanssin keinoin läpi moniulotteisten aistikokemuksien. Inspiraationa ovat Kuosan tutkimusmatkat Beninissä ja Togossa Länsi-Afrikassa. Esitystapahtuma sisältää soolo- ja yhteistansseja, äänimaailmoja, videoita ja runoja sekä erilaisia haju- ja makuelämyksiä.</p><p>Instinct tapahtuu Kanneltalon galleriatilassa, jossa on samanaikaisesti esillä Wilma-Emilia Kuosan ja työryhmän näyttely Sensation/Aistimus/Sensation. Esityksen näyttämönä toimiva näyttely herää henkiin kolmen esiintyjän ja yleisön vuorovaikutuksessa. Yleisö voi liikkua galleriatilassa esityksen aikana ja valita vapaasti ne aistikokemukset, joille antautua. Esitys on ympäristöystävällinen matka kohti jazztanssin juuria.</p><p>Esitys herkistää hiljentymään aistien äärelle ja havainnoimaan maailmaa yhdessä, yksi aisti kerrallaan. Jokainen tanssi perustuu yhteen aistielämykseen, josta näytetään video tai kuullaan äänimaailma tai runo. Tansseissa heijastuu Wilma-Emilian tutkimat rituaalitanssit ja kansantanssit suhteessa aisteihin. Yleisölle annetaan aististimulantteja eli samanlaisia hajuja, maistettavaa tai materiaalia kokemuksen jakamiseksi.</p><p>Instinct on helsinkiläisen jazztanssiryhmän Wilma-Emilia Kuosa Companyn kantaesitys. Teos konsepti on koreografi Wilma-Emilia Kuosan kuudes ja hänen työparinaan on tanssitaiteilija Tarja Rinne. Wilma-Emiliaa ja Tarjaa kiehtoo tutkia tässä esityksessä sitä, mitä jazztanssi tänä päivänä on. Wilma-Emilia on aiemmissa teoksissaan käyttänyt monimediallisia elementtejä – nykyrunoutta, improvisaatiota ja valokuvaa – joita tässä esityksessä yhdistetään uudenlaisiin aistikokemuksiin.</p><p>Instinct on kokemus, jonka Wilma-Emilia haluaa jakaa yhdessä yleisön ja esiintyjien kanssa. Esityksissä luodaan turvallinen tila, jossa jokainen voi valita roolinsa todistajana tai osallistujana esityksen edetessä vaiheesta toiseen. Roolia voi vapaasti vaihdella esityksen kulussa.</p><p><b>Työryhmä</b><br>Koreografia ja runot: Wilma-Emilia Kuosa <br>Tanssin tukena tanssitaiteilija: Tarja Rinne <br>Käsikirjoitus: Wilma-Emilia Kuosa ja Henry Hanikka <br>Esiintyjät: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Äänisuunnittelu: Wilma-Emilia Kuosa <br>Valosuunnittelu: Jaakko Kettunen <br>Musiikki: Ilpo Jauhiainen, Noel Saizonou ja työryhmä</p><p>Tuotanto: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Kesto: 1 t</p><p>Kieli Suomi/englanti/ranska <br>Suosittelemme ottamaan mukaan omat villasukat tai tohvelit, sillä näyttelytilassa ollaan ilman ulkokenkiä</p><p>Maksuton. Katsomokoko on rajallinen. Varaa paikkasi: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>",
                "sv": "<p>Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.</p><p>Föreställningen är en gemensam och trygg ritual, där danskonstnären Wilma-Emilia Kuosa leder publiken genom en mångdimensionell sinnesupplevelse med hjälp av jazzdans. Inspirationen kommer från Kuosas forskningsresor i Benin och Togo och Västafrika. I föreställningen ingår solodanser och danser med flera medverkande, ljudvärldar, videor och dikter samt olika doft- och smakupplevelser.</p><p>Föreställningen är trespråkig och innehåller finska, engelska och franska.</p><p>Instinct äger rum i Kanneltalos gallerilokal, där utställningen Sensation/Aistimus/Sensation av Wilma-Emilia Kuosa och hennes arbetsgrupp visas samtidigt. Utställningen, som fungerar som scen för föreställningen, väcks till liv genom samspelet mellan de tre artisterna och publiken. Publiken kan röra sig i gallerirummet under föreställningen och fritt välja vilka sinnesupplevelser de vill ge sig hän åt. Föreställningen är en miljövänlig resa till jazzdansens rötter.</p><p>Föreställningen uppmuntrar oss att stanna upp inför våra sinnen och observera världen tillsammans, med ett sinne i taget. Varje dans baserar sig på en enda sinnesupplevelse, som vi får se en video eller höra ett ljudlandskap eller en dikt om. Danserna återspeglar de rituella danser och folkdanser som Wilma-Emilia studerat i relation till sinnena. Publiken får sensoriska stimuli, dvs. liknande dofter, smaker eller material för att dela upplevelsen.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte och hennes arbetspar är danskonstnären Tarja Rinne. I den här föreställningen fascineras Wilma-Emilia och Tarja av att utforska vad jazzdans är i dag. I sina tidigare verk har Wilma-Emilia använt sig av multimediaelement – samtida poesi, improvisation och fotografi – som i denna föreställning kombineras med nya sinnesupplevelser.</p><p>Instinct är en upplevelse som Wilma-Emilia vill dela med sig av till publiken och artisterna. I föreställningarna skapas ett tryggt rum där var och en kan välja sin roll som vittne eller deltagare när föreställningen framskrider från ett skede till nästa. Man kan fritt byta roll under föreställningens gång.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte.</p><p><b>Arbetsgrupp</b><br>Koreografi och dikter: Wilma-Emilia Kuosa <br>Danskonstnär som stöd för dansen: Tarja Rinne <br>Manus: Wilma-Emilia Kuosa och Henry Hanikka <br>På scenen: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Ljusdesign: Jaakko Kettunen <br>Ljuddesign: Wilma-Emilia Kuosa <br>Musik: Ilpo Jauhiainen, Noel Saizonou och en arbetsgrupp <br>Produktion: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Längd: 1 h<br>Språk finska/engelska/franska</p><p>Fritt inträde. Begränsat antal publikplatser. Boka plats: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>",
                "en": "<p>Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance.</p><p>The performance is a communal and safe ritual in which dance artist Wilma-Emilia Kuosa leads the audience on a multidimensional sensory journey through jazz dance. Kuosa has been inspired by her expeditions to Benin and Togo in West Africa. The performance event will include solo and collaborative dances, soundscapes, videos and poems, as well as a variety of smell and taste experiences.</p><p>The performance is in three languages: Finnish, English and French.</p><p>Instinct takes place in the Kanneltalo gallery space, where the exhibition Sensation/Aistimus/Sensation by Wilma-Emilia Kuosa and her work group is displayed at the same time. The exhibition, which serves as the stage for the performance, comes to life through the interaction between the three performers and the audience. The audience can move around the gallery space during the performance and freely choose the sensory experiences to which to surrender. The performance is an eco-friendly journey towards the roots of jazz dance.</p><p>The performance encourages us to keep still, become aware of our senses and observe the world together, one sense at a time. Each dance is based on a single sensory experience, from which a video is shown or a soundscape or poem is heard. The dances reflect the ritual and folk dances studied by Wilma-Emilia in relation to the senses. The audience is given sensory stimuli, i.e. similar smells, tastes or materials to share the experience.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. This is the sixth concept by choreographer Wilma-Emilia Kuosa. She works with dance artist Tarja Rinne. In this performance, Wilma-Emilia and Tarja are fascinated to explore what jazz dance is today. In her previous works, Wilma-Emilia has used multimedia elements – contemporary poetry, improvisation and photography – which, in this performance, are combined with new sensory experiences.</p><p>Instinct is an experience that Wilma-Emilia wants to share with the audience and the performers. The presentations create a safe space where everyone can choose their role as a witness or participant as the presentation progresses from one phase to the next. You can freely change your role during the course of the performance.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. The work concept is the sixth by choreographer Wilma-Emilia Kuosa.</p><p><b>Creative team</b><br>Choreography and poems: Wilma-Emilia Kuosa <br>Supporting dance artist: Tarja Rinne <br>Script: Wilma-Emilia Kuosa and Henry Hanikka <br>Performers: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa  <br>Lighting design: Jaakko Kettunen <br>Sound design: Wilma-Emilia Kuosa <br>Music: Ilpo Jauhiainen, Noel Saizonou and team <br>Production: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Duration: 1 h<br>Language Finnish/English/French</p><p>Free of charge. The size of the auditorium is limited. Book your seat: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p><p>We recommend that you bring your own woolen socks or slippers, as shoes will be left outside the gallery space.</p>"
            },
            "name": {
                "fi": "LOPPUUNVARATTU: Wilma-Emilia Kuosa Company: Instinct",
                "sv": "FULLBOKAT: Wilma-Emilia Kuosa Company: Instinct",
                "en": "FULLY BOOKED: Wilma-Emilia Kuosa Company: Instinct"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67263/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67652",
            "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": 1494503,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T09:13:14.002868Z",
                    "last_modified_time": "2026-01-16T09:13:14.002883Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782295.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494503/?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-15T16:13:32.112121Z",
            "last_modified_time": "2026-03-20T01:12:50.454323Z",
            "date_published": null,
            "start_time": "2026-01-30T09:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "TÄYTEEN VARATTU! Päiväkotiryhmille. Sanaton, humoristinen ja lämmin teatteriesitys erilaisista perheistä.",
                "sv": "FULLBOKAD!",
                "en": "FULLY BOOKED!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/44AE6DA42D6A98EB8F0A92A8931F2B4F/La_Baracca_Le_Famiglie_-_Families",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/44AE6DA42D6A98EB8F0A92A8931F2B4F/La_Baracca_Le_Famiglie_-_Families",
                "en": "http://www.annantalo.fi/en/events/event/44AE6DA42D6A98EB8F0A92A8931F2B4F/La_Baracca_Le_Famiglie_-_Families"
            },
            "description": {
                "fi": "<p>TÄYTEEN VARATTU! Päiväkotiryhmille. Sanaton, humoristinen ja lämmin teatteriesitys erilaisista perheistä.</p><p>Tämä esitys on omistettu lapsille, jotka alkavat pohtia perheen käsitettä omasta näkökulmastaan kokemuksensa pohjalta. Esitys tarjoaa tilaisuuden omille ajatuksille ja kysymyksille ilman, että se pyrkii antamaan tai johdattelemaan vastauksia. Esitys kannustaa tutkimaan omaa näkemystä ja laajentamaan katsetta kohti muita mahdollisia todellisuuksia.</p><p>Mikä on perhe? <br>Kuka on perhe? <br>Onko perhe sitä, että on lapsia?<br>Onko perhe sitä, että on äiti ja isä?<br>Kuuluvatko isovanhemmat perheeseen?<br>Täytyykö perheen asua samassa paikassa?<br>Voivatko perheenjäsenet kuulua myös toisiin perheisiin?<br>Onko eläimillä perhe?</p><p>Kesto: noin 35 minuuttia<br>Kieli: sanaton<br>Ikäsuositus: 2 +</p><p>Tekijä: Andrea Buzzetti<br>Ohjausyhteistyö: Enrico Montalbani ja Carlotta Zini<br>Esiintyjät: Andrea Buzzetti ja Lorenzo Monti<br>Liikkeet: Andra Burcâ<br>Puvut: Tanja Eick<br>Erityiskiitos: Francesca Nerattini yhteistyöstä</p><p>Esitys on suunnattu päiväkotiryhmille. Varaa ryhmällesi paikka kultus.hel.fi-palvelun kautta.</p><p>Vuosittainen Small size Days –tapahtuma muistuttaa kaikkein pienimpien lasten oikeudesta taiteeseen ja kulttuuriin. Tapahtuma järjestetään samanaikaisesti eri puolilla maailmaa: Meksikossa, Serbiassa, Kuubassa, Saksassa, Australiassa... ja Suomessa.</p><p>Tapahtuman järjestävät teatterit ja kulttuurilaitokset, jotka ovat osa Small size network- verkostoa. Vuonna 2026 Small size Days on 30.1.–1.2.2026.  Juhlaviikonloppuna sosiaalinen media on täynnä tervehdyksiä ja keskusteluja small size kumppaneiltamme. <br>Facebook: https://www.facebook.com/smallsizenetwork/ <br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Eläköön pienokaiset ja elävä taide!</p>",
                "sv": "<p>FULLBOKAD!</p><p>Den här föreställningen är tillägnad barn som börjar reflektera över begreppet familj ur sitt eget perspektiv, utifrån det som de upplevt. Föreställningen ger utrymme för egna tankar och frågor utan att försöka ge eller leda till vissa svar. Föreställningen uppmuntrar till att utforska sina egna synsätt och vidga blicken mot andra möjliga verkligheter.</p><p>Vad är en familj? <br>Vem är en familj? <br>Betyder familj att man har barn?<br>Betyder familj att det finns en mamma och en pappa?<br>Är mor- och farföräldrar en del av familjen?<br>Måste alla i familjen bo på samma ställe?<br>Kan familjemedlemmar också höra till andra familjer?<br>Har djur en familj?</p><p>Längd: cirka 35 minuter<br>Språk: ordlös<br>Åldersrekommendation: 2 +</p><p>Skapare: Andrea Buzzetti<br>Regisamarbete: Enrico Montalbani och Carlotta Zini<br>På scenen: Andrea Buzzetti och Lorenzo Monti<br>Rörelser: Andra Burcâ<br>Dräkter: Tanja Eick<br>Särskilt tack till: Francesca Nerattini för samarbetet</p><p>Årliga Small size days uppmärksammar de yngsta barnens rätt till konst och kultur. Evenemanget kommer att äga rum samtidigt runt om i världen: I Mexiko, Serbien, Kuba, Tyskland, Australien... och i Finland.</p><p>Evenemanget arrangeras av teatrar och kulturinstitutioner som ingår i nätverket Small size network. År 2026 kommer Small size days att äga rum mellan den 30 januari och den 1 februari 2026. Under festveckoslutet är de sociala medierna fulla av hälsningar och diskussioner av våra small size-partner.<br>Facebook: https://www.facebook.com/smallsizenetwork/<br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Länge leve de små och den levande konsten!</p>",
                "en": "<p>FULLY BOOKED!</p><p>This is a show dedicated to children who begin to approach the idea of family, according to their point of view and their personal experience. A show that can suggest reflections and stimulate questions, without wanting to provide or influence answers. An opportunity to investigate one's own vision and broaden one's gaze to other possible realities.</p><p>What is a family? <br>Who is a family? <br>Is a family having children? <br>Is a family having a mom and dad? <br>Are grandparents part of the family? <br>Does a family have to live in the same place? <br>Can family members be part of other families? <br>Do animals have a family?</p><p>Duration: 30 mins<br>Age: for 2-5 years<br>Language: non-verbal</p><p>by Andrea Buzzetti <br>collaboration for the direction Enrico Montalbani and Carlotta Zini <br>with Andrea Buzzetti and Lorenzo Monti <br>movements by Andra Burcâ <br>costumes by Tanja Eick <br>special thanks to Francesca Nerattini for the collaboration</p><p>The annual Small Size Days event serves as a reminder of very young children’s right to art and culture. The event takes place simultaneously in different parts of the world: Mexico, Serbia, Cuba, Germany, Australia... and Finland.</p><p>The event is organised by theatres and cultural institutions that are part of the Small Size network. In 2026, Small Size Days will take place from 30 January to 1 February 2026. Over the festive weekend, social media will be full of greetings from and conversations with our Small Size partners.<br>Facebook: https://www.facebook.com/smallsizenetwork/<br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Long live the little ones and living art!</p>"
            },
            "name": {
                "fi": "La Baracca: Le Famiglie - Families – Small size days",
                "sv": "La Baracca: Le Famiglie - Families – Small size days",
                "en": "La Baracca: Le Famiglie - Families – Small size days"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67652/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67897",
            "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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494317,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T12:13:48.713120Z",
                    "last_modified_time": "2025-12-23T12:13:48.713143Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782909.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494317/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-23T12:13:48.552646Z",
            "last_modified_time": "2026-03-20T01:12:50.313156Z",
            "date_published": null,
            "start_time": "2026-01-30T08:15:00Z",
            "end_time": "2026-01-30T09: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": "Sydäntalven kolmen tapaamiskerran seikkailutaidekurssilla retkeillään Karhukalliolla ja tutkitaan mitä kaikkea mielenkiintoista talvisesta luonnosta voi löytää.",
                "sv": "Äventyrskonstkursen omfattar tre tillfällen och tar deltagarna ut på en vandring på Björnklippan och utforskar alla de intressanta saker som vi kan hitta i vinternaturen.",
                "en": "This three-meeting, mid-winter adventure art course will take us on a hike on Karhukallio to explore all kinds of interesting things that you can find in winter nature."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/018AFB61E88E8C3A5D41852EEC965213/Talventorrottajat_eskareiden_seikkailutaidekurssi_Karhukalliolla_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/018AFB61E88E8C3A5D41852EEC965213/Vinterstandarna_en_aventyrskonstkurs_for_forskolebarn_pa_Bjornklippan",
                "en": "http://www.stoa.fi/en/events/event/018AFB61E88E8C3A5D41852EEC965213/Winter-dried_Plants_adventure_art_course_for_preschoolers_on_Karhukallio"
            },
            "description": {
                "fi": "<p>Sydäntalven kolmen tapaamiskerran seikkailutaidekurssilla retkeillään Karhukalliolla ja tutkitaan mitä kaikkea mielenkiintoista talvisesta luonnosta voi löytää.</p><p>Näemmekö huurteiset jäkälät, talventörröttäjät tai eläimen jäljet lumessa? Löydämmekö talvisen metsän sitkeimmät pienet eliöt ihasteltavaksi? Teemme tarkkojen luontohavaintojen pohjalta taideteoksia ja pidämme viimeisellä kurssikerralla taidenäyttelyn avajaisjuhlan metsässä. Olemme ulkona säässä kuin säässä, kuin talventörröttäjät konsanaan.<br> <br>Ohjaaja: Satu Sipilä / Seikkailutaidekoulu.<br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br> <br>Kesto: 3x45 min  <br>Ikäsuositus: eskarit<br>Kieli: suomi  <br>Vapaa pääsy. Pakollinen ennakkoilmoittautuminen kultus.hel.fi 8.12.25 alkaen.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Äventyrskonstkursen omfattar tre tillfällen och tar deltagarna ut på en vandring på Björnklippan och utforskar alla de intressanta saker som vi kan hitta i vinternaturen.</p><p>Ser vi frostiga lavar, vinterståndare eller djurspår i snön? Kommer vi att hitta och få beundra de mest tåliga små varelserna i vinterskogen? Vi kommer att skapa konstverk baserade på exakta observationer av naturen och under kursens sista gång ordnar vi vernissage för konstutställningen i skogen. Vi är ute i alla väder, precis som vinterståndarna.</p><p>Regi: Satu Sipilä / Seikkailutaidekoulu.<br>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats (linje 15): Handelskvarnsvägen <br> <br>Längd: 3 x 45 min. <br>Åldersrekommendation: förskolebarn<br>Språk: finska <br>Fritt inträde. Obligatorisk förhandsanmälan på kultus.hel.fi från och med 8 december 2025.</p><p>Mer information: hanna.westerholm@hel.fi</p>",
                "en": "<p>This three-meeting, mid-winter adventure art course will take us on a hike on Karhukallio to explore all kinds of interesting things that you can find in winter nature.</p><p>Will we see frosty lichens, winter-dried plants or animal tracks in the snow? Will we find the hardiest little creatures of the winter forest to look at? We will create artworks based on accurate nature observations and hold an art exhibition opening ceremony in the forest during the last course meeting. We will be outside regardless of the weather, like winter-dried plants.<br> <br>Instructor: Satu Sipilä / Adventure Art School.<br>The location will be the Karhukallio forest in Roihupelto. Our meeting point will be the junction of Viilarintie and Holkkitie. Jokeri Light Rail stop (line 15): Kauppamyllyntie. <br> <br>Duration: 3 x 45 min <br>Age recommendation: preschool children<br>Language: Finnish <br>Free entry. Compulsory advance registration at kultus.hel.fi from 8 December 2025 onwards.</p><p>Enquiries: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Talventörröttäjät – eskareiden seikkailutaidekurssi Karhukalliolla – Ryhmä 2",
                "sv": "Vinterståndarna – en äventyrskonstkurs för förskolebarn på Björnklippan – Grupp 2",
                "en": "Winter-dried Plants – adventure art course for preschoolers on Karhukallio – Group 2"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67897/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67651",
            "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": 1494502,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T09:13:13.683280Z",
                    "last_modified_time": "2026-01-16T09:13:13.683301Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782294.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494502/?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-15T14:13:22.258429Z",
            "last_modified_time": "2026-03-20T01:12:50.147747Z",
            "date_published": null,
            "start_time": "2026-01-30T07: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": "TÄYTEEN VARATTU! Päiväkotiryhmille. Sanaton, humoristinen ja lämmin teatteriesitys erilaisista perheistä.",
                "sv": "FULLBOKAD!",
                "en": "FULLY BOOKED!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5D249AE8EEA6640084C1F042F58103DC/La_Baracca_Le_Famiglie_-_Families",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5D249AE8EEA6640084C1F042F58103DC/La_Baracca_Le_Famiglie_-_Families",
                "en": "http://www.annantalo.fi/en/events/event/5D249AE8EEA6640084C1F042F58103DC/La_Baracca_Le_Famiglie_-_Families"
            },
            "description": {
                "fi": "<p>TÄYTEEN VARATTU! Päiväkotiryhmille. Sanaton, humoristinen ja lämmin teatteriesitys erilaisista perheistä.</p><p>Tämä esitys on omistettu lapsille, jotka alkavat pohtia perheen käsitettä omasta näkökulmastaan kokemuksensa pohjalta. Esitys tarjoaa tilaisuuden omille ajatuksille ja kysymyksille ilman, että se pyrkii antamaan tai johdattelemaan vastauksia. Esitys kannustaa tutkimaan omaa näkemystä ja laajentamaan katsetta kohti muita mahdollisia todellisuuksia.</p><p>Mikä on perhe? <br>Kuka on perhe? <br>Onko perhe sitä, että on lapsia?<br>Onko perhe sitä, että on äiti ja isä?<br>Kuuluvatko isovanhemmat perheeseen?<br>Täytyykö perheen asua samassa paikassa?<br>Voivatko perheenjäsenet kuulua myös toisiin perheisiin?<br>Onko eläimillä perhe?</p><p>Kesto: noin 35 minuuttia<br>Kieli: sanaton<br>Ikäsuositus: 2 +</p><p>Tekijä: Andrea Buzzetti<br>Ohjausyhteistyö: Enrico Montalbani ja Carlotta Zini<br>Esiintyjät: Andrea Buzzetti ja Lorenzo Monti<br>Liikkeet: Andra Burcâ<br>Puvut: Tanja Eick<br>Erityiskiitos: Francesca Nerattini yhteistyöstä</p><p>Esitys on suunnattu päiväkotiryhmille. Varaa ryhmällesi paikka kultus.hel.fi-palvelun kautta.</p><p>Vuosittainen Small size Days –tapahtuma muistuttaa kaikkein pienimpien lasten oikeudesta taiteeseen ja kulttuuriin. Tapahtuma järjestetään samanaikaisesti eri puolilla maailmaa: Meksikossa, Serbiassa, Kuubassa, Saksassa, Australiassa... ja Suomessa.</p><p>Tapahtuman järjestävät teatterit ja kulttuurilaitokset, jotka ovat osa Small size network- verkostoa. Vuonna 2026 Small size Days on 30.1.–1.2.2026.  Juhlaviikonloppuna sosiaalinen media on täynnä tervehdyksiä ja keskusteluja small size kumppaneiltamme. <br>Facebook: https://www.facebook.com/smallsizenetwork/ <br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Eläköön pienokaiset ja elävä taide!</p>",
                "sv": "<p>FULLBOKAD!</p><p>Den här föreställningen är tillägnad barn som börjar reflektera över begreppet familj ur sitt eget perspektiv, utifrån det som de upplevt. Föreställningen ger utrymme för egna tankar och frågor utan att försöka ge eller leda till vissa svar. Föreställningen uppmuntrar till att utforska sina egna synsätt och vidga blicken mot andra möjliga verkligheter.</p><p>Vad är en familj? <br>Vem är en familj? <br>Betyder familj att man har barn?<br>Betyder familj att det finns en mamma och en pappa?<br>Är mor- och farföräldrar en del av familjen?<br>Måste alla i familjen bo på samma ställe?<br>Kan familjemedlemmar också höra till andra familjer?<br>Har djur en familj?</p><p>Längd: cirka 35 minuter<br>Språk: ordlös<br>Åldersrekommendation: 2 +</p><p>Skapare: Andrea Buzzetti<br>Regisamarbete: Enrico Montalbani och Carlotta Zini<br>På scenen: Andrea Buzzetti och Lorenzo Monti<br>Rörelser: Andra Burcâ<br>Dräkter: Tanja Eick<br>Särskilt tack till: Francesca Nerattini för samarbetet</p><p>Årliga Small size days uppmärksammar de yngsta barnens rätt till konst och kultur. Evenemanget kommer att äga rum samtidigt runt om i världen: I Mexiko, Serbien, Kuba, Tyskland, Australien... och i Finland.</p><p>Evenemanget arrangeras av teatrar och kulturinstitutioner som ingår i nätverket Small size network. År 2026 kommer Small size days att äga rum mellan den 30 januari och den 1 februari 2026. Under festveckoslutet är de sociala medierna fulla av hälsningar och diskussioner av våra small size-partner.<br>Facebook: https://www.facebook.com/smallsizenetwork/<br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Länge leve de små och den levande konsten!</p>",
                "en": "<p>FULLY BOOKED!</p><p>This is a show dedicated to children who begin to approach the idea of family, according to their point of view and their personal experience. A show that can suggest reflections and stimulate questions, without wanting to provide or influence answers. An opportunity to investigate one's own vision and broaden one's gaze to other possible realities.</p><p>What is a family? <br>Who is a family? <br>Is a family having children? <br>Is a family having a mom and dad? <br>Are grandparents part of the family? <br>Does a family have to live in the same place? <br>Can family members be part of other families? <br>Do animals have a family?</p><p>Duration: 30 mins<br>Age: for 2-5 years<br>Language: non-verbal</p><p>by Andrea Buzzetti <br>collaboration for the direction Enrico Montalbani and Carlotta Zini <br>with Andrea Buzzetti and Lorenzo Monti <br>movements by Andra Burcâ <br>costumes by Tanja Eick <br>special thanks to Francesca Nerattini for the collaboration</p><p>The annual Small Size Days event serves as a reminder of very young children’s right to art and culture. The event takes place simultaneously in different parts of the world: Mexico, Serbia, Cuba, Germany, Australia... and Finland.</p><p>The event is organised by theatres and cultural institutions that are part of the Small Size network. In 2026, Small Size Days will take place from 30 January to 1 February 2026. Over the festive weekend, social media will be full of greetings from and conversations with our Small Size partners.<br>Facebook: https://www.facebook.com/smallsizenetwork/<br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Long live the little ones and living art!</p>"
            },
            "name": {
                "fi": "La Baracca: Le Famiglie - Families – Small size days",
                "sv": "La Baracca: Le Famiglie - Families – Small size days",
                "en": "La Baracca: Le Famiglie - Families – Small size days"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67651/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67896",
            "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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494316,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T12:13:48.217730Z",
                    "last_modified_time": "2025-12-23T12:13:48.217748Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782906.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494316/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-23T12:13:48.008888Z",
            "last_modified_time": "2026-03-20T01:12:50.014083Z",
            "date_published": null,
            "start_time": "2026-01-30T07:15:00Z",
            "end_time": "2026-01-30T08: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": "Sydäntalven kolmen tapaamiskerran seikkailutaidekurssilla retkeillään Karhukalliolla ja tutkitaan mitä kaikkea mielenkiintoista talvisesta luonnosta voi löytää.",
                "sv": "Äventyrskonstkursen omfattar tre tillfällen och tar deltagarna ut på en vandring på Björnklippan och utforskar alla de intressanta saker som vi kan hitta i vinternaturen.",
                "en": "This three-meeting, mid-winter adventure art course will take us on a hike on Karhukallio to explore all kinds of interesting things that you can find in winter nature."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/39E0DDC081F30A9590313D7042F54F6A/Talventorrottajat_eskareiden_seikkailutaidekurssi_Karhukalliolla_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/39E0DDC081F30A9590313D7042F54F6A/Vinterstandarna_en_aventyrskonstkurs_for_forskolebarn_pa_Bjornklippan",
                "en": "http://www.stoa.fi/en/events/event/39E0DDC081F30A9590313D7042F54F6A/Winter-dried_Plants_adventure_art_course_for_preschoolers_on_Karhukallio"
            },
            "description": {
                "fi": "<p>Sydäntalven kolmen tapaamiskerran seikkailutaidekurssilla retkeillään Karhukalliolla ja tutkitaan mitä kaikkea mielenkiintoista talvisesta luonnosta voi löytää.</p><p>Näemmekö huurteiset jäkälät, talventörröttäjät tai eläimen jäljet lumessa? Löydämmekö talvisen metsän sitkeimmät pienet eliöt ihasteltavaksi? Teemme tarkkojen luontohavaintojen pohjalta taideteoksia ja pidämme viimeisellä kurssikerralla taidenäyttelyn avajaisjuhlan metsässä. Olemme ulkona säässä kuin säässä, kuin talventörröttäjät konsanaan.<br> <br>Ohjaaja: Satu Sipilä / Seikkailutaidekoulu.<br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br> <br>Kesto: 3x45 min  <br>Ikäsuositus: eskarit<br>Kieli: suomi  <br>Vapaa pääsy. Pakollinen ennakkoilmoittautuminen kultus.hel.fi 8.12.25 alkaen.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Äventyrskonstkursen omfattar tre tillfällen och tar deltagarna ut på en vandring på Björnklippan och utforskar alla de intressanta saker som vi kan hitta i vinternaturen.</p><p>Ser vi frostiga lavar, vinterståndare eller djurspår i snön? Kommer vi att hitta och få beundra de mest tåliga små varelserna i vinterskogen? Vi kommer att skapa konstverk baserade på exakta observationer av naturen och under kursens sista gång ordnar vi vernissage för konstutställningen i skogen. Vi är ute i alla väder, precis som vinterståndarna.<br> <br>Regi: Satu Sipilä / Seikkailutaidekoulu.<br>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats (linje 15): Handelskvarnsvägen <br> <br>Längd: 3 x 45 min. <br>Åldersrekommendation: förskolebarn<br>Språk: finska <br>Fritt inträde. Obligatorisk förhandsanmälan på kultus.hel.fi från och med 8 december 2025.</p><p>Mer information: hanna.westerholm@hel.fi</p>",
                "en": "<p>This three-meeting, mid-winter adventure art course will take us on a hike on Karhukallio to explore all kinds of interesting things that you can find in winter nature.</p><p>Will we see frosty lichens, winter-dried plants or animal tracks in the snow? Will we find the hardiest little creatures of the winter forest to look at? We will create artworks based on accurate nature observations and hold an art exhibition opening ceremony in the forest during the last course meeting. We will be outside regardless of the weather, like winter-dried plants.<br> <br>Instructor: Satu Sipilä / Adventure Art School.<br>The location will be the Karhukallio forest in Roihupelto. Our meeting point will be the junction of Viilarintie and Holkkitie. Jokeri Light Rail stop (line 15): Kauppamyllyntie. <br> <br>Duration: 3 x 45 min <br>Age recommendation: preschool children<br>Language: Finnish <br>Free entry. Compulsory advance registration at kultus.hel.fi from 8 December 2025 onwards.</p><p>Enquiries: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Talventörröttäjät – eskareiden seikkailutaidekurssi Karhukalliolla – Ryhmä 1",
                "sv": "Vinterståndarna – en äventyrskonstkurs för förskolebarn på Björnklippan – Grupp 1",
                "en": "Winter-dried Plants – adventure art course for preschoolers on Karhukallio – Group 1"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67896/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67988",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p1278/?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:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494570,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T13:14:03.964424Z",
                    "last_modified_time": "2026-01-20T13:14:03.964441Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782654.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494570/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-20T13:14:03.790983Z",
            "last_modified_time": "2026-03-20T01:12:49.434459Z",
            "date_published": null,
            "start_time": "2026-01-29T14: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": "Tapaa tekijä Stoan aulassa kutsuu yleisön kohtaamaan taiteilijoita ja muita tekijöitä, joiden teoksia nähdään Stoassa tulevan kuukauden aikana.",
                "sv": "Träffa skaparna i Stoas lobby bjuder in publiken att möta konstnärer och andra kreatörer vars verk visas på Stoa under kommande månad.",
                "en": "Meet the Maker at Stoa’s lobby invites the audience to encounter artists and other creators whose works will be presented at Stoa in the coming month."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BB71FBB5202FC7FF7DC9DCF4E6ABDB3F/Tapaa_tekija_Stoan_aulassa",
                "sv": "http://www.stoa.fi/sv/evenemang/event/BB71FBB5202FC7FF7DC9DCF4E6ABDB3F/Traffa_skaparna_i_Stoas_lobby",
                "en": "http://www.stoa.fi/en/events/event/BB71FBB5202FC7FF7DC9DCF4E6ABDB3F/Meet_the_Maker_at_Stoa_s_lobby"
            },
            "description": {
                "fi": "<p>Tapaa tekijä Stoan aulassa kutsuu yleisön kohtaamaan taiteilijoita ja muita tekijöitä, joiden teoksia nähdään Stoassa tulevan kuukauden aikana.</p><p>Stoa on teatterin, tapahtumien ja kuvataiteen kohtaamispaikka, jossa taide syntyy, näkyy ja herättää keskustelua. Tilaisuus on rento ja vuorovaikutteinen keskustelu, jossa tekijät esittelevät itsensä ja tulevat projektinsa Stoassa. Keskustelua moderoivat Stoan tuottajat <b>Sara Hirn</b> ja <b>Ahmed Al-Nawas.</b></p><p>Yleisö on lämpimästi tervetullut esittämään kysymyksiä ja osallistumaan keskusteluun. Tapaa tekijä Stoan aulassa järjestetään kuun viimeisenä torstaina (huhtikuussa poikkeuksellisesti toiseksi viimeisenä torstaina) ja se on avoin kaikille taiteesta kiinnostuneille – myös ensikertalaisille.</p><p>Tilaisuus on maksuton ja kaksikielinen (suomi–englanti). Kysymyksiä voi esittää myös tekijöiden äidinkielellä.</p><p><b>Tammikuun tilaisuuden tekijät 29.1. klo 16.30:</b></p><p><b>Shadows of the Mind – Wonderground Company (Roser Tutusaus, Tom Weksler, Misa Lommi ja Janne Aspvik)</b><br>Sanaton tanssiteos ihmisestä ja hänen varjostaan – tai ehkä varjosta ja hänen ihmisestään. Teoksen kokonaisuuden viimeistelevät äänisuunnittelija Miki Brunou ja valosuunnittelija Anttoni Halonen. Tapaa tekijä Stoan aulassa -tilaisuudessa kaksi työryhmän jäsentä.</p><p><b>The Chronicles of a Sidequest Addict & The Madness of Infinite Potential – Kheba Touray</b><br>Raju ja tunteikas sooloesitys amerikkalaisen unelman etsinnästä, jossa teatteri ja spoken word yhdistyvät. Tapaa tekijä Stoan aulassa, Kheba Touray.</p><p><b>The Strength of the Sun – Luis Bustamante & Sebastián González Ruiz</b><br>Näyttely tarjoaa visuaalisen ja esteettisen tulkinnan Arican karnevaalista, jossa historia, geopoliittiset kysymykset ja kehoon liittyvä tietämys kohtaavat. Tapaa tekijä Stoan aulassa, Luis Bustamante.</p><p><b>Mä Lupaan, Mä Vannon – Saban Ramadani</b><br>Performanssi pohtii kiitollisuuden ja riittämättömyyden tunteita ihmisen kohtalossa, joka on lähtenyt pakoon kotimaastaan. Tapaa tekijä Stoan aulassa, Saban Ramadani.</p><p>Tilaisuutta juontavat ja tekijöitä haastattelevat Sara Hirn ja Ahmed Al-Nawas.</p><p>Sara on Stoan kulttuurituottaja ja Ahmed Stoan yhteisötuottaja. Molemmilla on pitkä kokemus taiteen kentältä – tekijöinä, tuottajina ja monipuolisina taiteen ammattilaisina.</p>",
                "sv": "<p>Träffa skaparna i Stoas lobby bjuder in publiken att möta konstnärer och andra kreatörer vars verk visas på Stoa under kommande månad.</p><p>Stoa är en mötesplats för teater, evenemang och bildkonst, där konst skapas, visas och väcker diskussion. Evenemanget är en avslappnad och interaktiv diskussion där konstnärerna presenterar sig själva och sina kommande projekt på Stoa. Producenterna Sara Hirn och Ahmed Al-Nawas modererar samtalet. Vi gör vårt bästa för att svara även på svenska vid behov.</p><p>Publiken är varmt välkommen att ställa frågor och delta i diskussionen. Träffa skaparna i Stoas lobby hålls den sista torsdagen i månaden (förutom i april, då det hålls den näst sista torsdagen) och är öppet för alla som är intresserade av konst – även för förstabesökare.</p><p>Evenemanget är kostnadsfritt och tvåspråkigt (finska–engelska). Frågor kan även ställas på konstnärernas modersmål.</p><p><b>Januaris evenemangskonstnärer:</b></p><p><b>Shadows of the Mind – Wonderground Company (Roser Tutusaus, Tom Weksler, Misa Lommi, Janne Aspvik)</b><br>En ordlös dansföreställning om en människa och hennes skugga – eller kanske skuggan och hennes människa. Komplett med ljuddesigner Miki Brunou och ljusdesigner Anttoni Halonen. Träffa två medlemmar av arbetsgruppen i Stoa-lobbyn.</p><p><b>The Chronicles of a Sidequest Addict & The Madness of Infinite Potential – Kheba Touray</b><br>En intensiv och känslosam soloföreställning om jakten på den amerikanska drömmen, där teater och spoken word möts. Träffa Kheba Touray i Stoa-lobbyn.</p><p><b>The Strength of the Sun – Luis Bustamante & Sebastián González Ruiz</b><br>Utställningen erbjuder en visuell och estetisk tolkning av Arica-karnevalen, där historia, geopolitik och kroppslig kunskap möts. Träffa Luis Bustamante i Stoa-lobbyn.</p><p><b>Mä Lupaan, Mä Vannon – Saban Ramadani</b> <br>En föreställning som reflekterar över tacksamhet och känslor av otillräcklighet hos en person som flytt sitt hemland. Träffa Saban Ramadani i Stoa-lobbyn.</p><p>Evenemanget leds och konstnärerna intervjuas av Sara Hirn och Ahmed Al-Nawas. Sara är Stoas kulturproducent och Ahmed Stoas community-producent. Båda har lång erfarenhet inom konstfältet som konstnärer, producenter och mångsidiga kulturproffs.</p>",
                "en": "<p>Meet the Maker at Stoa’s lobby invites the audience to encounter artists and other creators whose works will be presented at Stoa in the coming month.</p><p>Stoa is a meeting place for theatre, events, and visual arts, where art is created, displayed, and sparks conversation. The event is a relaxed, interactive discussion in which the artists introduce themselves and their upcoming projects at Stoa. The conversation is moderated by Sara Hirn and Ahmed Al-Nawas.<br> <br>The audience is warmly invited to ask questions and join the conversation. Meet the Maker at Stoa’s lobby takes place on the last Thursday of each month (except in April, when it is held on the second-to-last Thursday) and is open to everyone interested in art – including first-time visitors.</p><p>The event is free and bilingual (Finnish–English). Questions can be asked in the artists’ mother tongue as well.</p><p><b>January event artists:</b><br><b>Shadows of the Mind – Wonderground Company (Roser Tutusaus, Tom Weksler, Misa Lommi, Janne Aspvik)</b><br>A dance performance about a person and their shadow – or perhaps a shadow and its person. Completed by sound designer Miki Brunou and lighting designer Anttoni Halonen. Meet two members of the artistic team at Stoa’s lobby.</p><p><b>The Chronicles of a Sidequest Addict & The Madness of Infinite Potential – Kheba Touray</b><br>A fierce and soulful solo performance on the road to the American Dream, blending theatre and spoken word. Meet Kheba Touray at Stoa’s lobby.</p><p><b>The Strength of the Sun – Luis Bustamante & Sebastián González Ruiz</b><br>The exhibition offers a visual and aesthetic reading of the Arica Carnival, where history, geopolitics, and embodied knowledge converge. Meet Luis Bustamante at Stoa’s lobby.</p><p><b>Mä Lupaan, Mä Vannon – Saban Ramadani </b><br>A performance exploring gratitude and feelings of insufficiency experienced by a person who has fled their home. Meet Saban Ramadani at Stoa’s lobby.</p><p>The event is hosted by Sara Hirn and Ahmed Al-Nawas. <br>Sara is Stoa’s Cultural Producer and Ahmed Stoa’s Community Producer. Both have a long history in the arts as artists, producers, and versatile cultural professionals.</p>"
            },
            "name": {
                "fi": "Tapaa tekijä Stoan aulassa",
                "sv": "Träffa skaparna i Stoas lobby",
                "en": "Meet the Maker at Stoa’s lobby"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67988/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67566",
            "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": 1494355,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:20.962100Z",
                    "last_modified_time": "2026-01-05T09:13:20.962132Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781744.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494355/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:20.785686Z",
            "last_modified_time": "2026-03-20T01:12:49.239510Z",
            "date_published": null,
            "start_time": "2026-01-29T09: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/F82C746E707BF439B33E1DB669036DBC/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F82C746E707BF439B33E1DB669036DBC/Lar_dig_finska_genom_att_sjunga",
                "en": "http://www.stoa.fi/en/events/event/F82C746E707BF439B33E1DB669036DBC/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 – 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:67566/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67565",
            "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": 1494354,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:20.365584Z",
                    "last_modified_time": "2026-01-05T09:13:20.365599Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781743.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:20.181850Z",
            "last_modified_time": "2026-03-20T01:12:49.048149Z",
            "date_published": null,
            "start_time": "2026-01-29T08: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/1CB027B58EED22350F5B6D4AFD937FE4/Opi_suomea_laulaen_TAYNNA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/1CB027B58EED22350F5B6D4AFD937FE4/Lar_dig_finska_genom_att_sjunga",
                "en": "http://www.stoa.fi/en/events/event/1CB027B58EED22350F5B6D4AFD937FE4/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 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:67565/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67270",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p39492/?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": 1494055,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:47.080946Z",
                    "last_modified_time": "2025-12-04T12:12:47.080960Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780799.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494055/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:46.960107Z",
            "last_modified_time": "2026-03-20T01:12:48.737549Z",
            "date_published": null,
            "start_time": "2026-01-28T15:00:00Z",
            "end_time": "2026-01-28T17: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": "Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.",
                "sv": "Kantsun kahvit är en öppen mötesplats där vi tillsammans ordnar varierande program.",
                "en": "Coffee events at Kantsu are open meeting places, where a programme of events is organised together."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/088B450D0D804DE072BD8ED8838DB08D/Kantsun_kahvit",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/088B450D0D804DE072BD8ED8838DB08D/Kantsun_kahvit",
                "en": "http://www.kanneltalo.fi/en/events/event/088B450D0D804DE072BD8ED8838DB08D/Kantsun_kahvit"
            },
            "description": {
                "fi": "<p>Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.</p><p>Tule tapaamaan ihmisiä ja keskustelemaan ajankohtaisista asioista kahvittelun lomassa. Tarjoamme kahvia, teetä ja pientä syötävää. Lapset ovat tervetulleita vanhempiensa kanssa.</p><p>Kantsun kahvien sisällöt suunnitellaan yhdessä asukasaktiivien kanssa. Osallistu keskusteluun Kantsun kahvit -Facebook-ryhmässä: https://www.facebook.com/groups/875036451503848</p><p>Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.<br>Paikka: Kanneltalon kahvilan stage</p>",
                "sv": "<p>Kantsun kahvit är en öppen mötesplats där vi tillsammans ordnar varierande program.</p><p>Kom och träffa människor och diskutera aktuella frågor över en kopp kaffe. Vi bjuder på kaffe, te och något smått att äta. Barn är välkomna tillsammans med sina föräldrar. <br>Innehållet i kaffestunderna Kantsun kahvit planeras tillsammans med aktiva invånare. Delta i diskussionen i Facebookgruppen Kantsun kahvit: https://www.facebook.com/groups/875036451503848<br>Kantsun kahvit ordnas som ett samarbete mellan invånare i området, D-asema i Gamlas och Helsingfors stad</p><p>Du behöver inte anmäla dig till evenemanget på förhand och det är gratis.</p><p>Plats: Gamlasgården kafé stage</p>",
                "en": "<p>Coffee events at Kantsu are open meeting places, where a programme of events is organised together.</p><p>Come and meet people and discuss current issues over coffee. We offer coffee, tea and snacks. Children are welcome with their parents. <br>The content of Kantsu coffee events is planned together with resident activists. Join the discussion in the ‘Kantsun kahvit’ Facebook group: https://www.facebook.com/groups/875036451503848<br>Coffee at Kantsu is organised in cooperation by local residents, D-asema in Kannelmäki and the City of Helsinki.</p><p>No advance registration is required and the event is free of charge.</p><p>Location: Kanneltalo café stage</p>"
            },
            "name": {
                "fi": "Kantsun kahvit",
                "sv": "Kantsun kahvit",
                "en": "Kantsun kahvit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67270/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67262",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 1494054,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:46.690559Z",
                    "last_modified_time": "2025-12-04T12:12:46.690575Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780778.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494054/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:46.564631Z",
            "last_modified_time": "2026-03-20T01:12:48.460915Z",
            "date_published": null,
            "start_time": "2026-01-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.",
                "sv": "Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.",
                "en": "Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F3F3B0EE7980A7E995055F658102CA0B/Wilma-Emilia_Kuosa_Company_Instinct_ENSI-ILTA",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F3F3B0EE7980A7E995055F658102CA0B/Wilma-Emilia_Kuosa_Company_Instinct",
                "en": "http://www.kanneltalo.fi/en/events/event/F3F3B0EE7980A7E995055F658102CA0B/Wilma-Emilia_Kuosa_Company_Instinct"
            },
            "description": {
                "fi": "<p>Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.</p><p>Esitys on yhteisöllinen ja turvallinen rituaali, jossa tanssitaiteilija Wilma-Emilia Kuosa johdattaa yleisön jazztanssin keinoin läpi moniulotteisten aistikokemuksien. Inspiraationa ovat Kuosan tutkimusmatkat Beninissä ja Togossa Länsi-Afrikassa. Esitystapahtuma sisältää soolo- ja yhteistansseja, äänimaailmoja, videoita ja runoja sekä erilaisia haju- ja makuelämyksiä.</p><p>Instinct tapahtuu Kanneltalon galleriatilassa, jossa on samanaikaisesti esillä Wilma-Emilia Kuosan ja työryhmän näyttely Sensation/Aistimus/Sensation. Esityksen näyttämönä toimiva näyttely herää henkiin kolmen esiintyjän ja yleisön vuorovaikutuksessa. Yleisö voi liikkua galleriatilassa esityksen aikana ja valita vapaasti ne aistikokemukset, joille antautua. Esitys on ympäristöystävällinen matka kohti jazztanssin juuria.</p><p>Esitys herkistää hiljentymään aistien äärelle ja havainnoimaan maailmaa yhdessä, yksi aisti kerrallaan. Jokainen tanssi perustuu yhteen aistielämykseen, josta näytetään video tai kuullaan äänimaailma tai runo. Tansseissa heijastuu Wilma-Emilian tutkimat rituaalitanssit ja kansantanssit suhteessa aisteihin. Yleisölle annetaan aististimulantteja eli samanlaisia hajuja, maistettavaa tai materiaalia kokemuksen jakamiseksi.</p><p>Instinct on helsinkiläisen jazztanssiryhmän Wilma-Emilia Kuosa Companyn kantaesitys. Teos konsepti on koreografi Wilma-Emilia Kuosan kuudes ja hänen työparinaan on tanssitaiteilija Tarja Rinne. Wilma-Emiliaa ja Tarjaa kiehtoo tutkia tässä esityksessä sitä, mitä jazztanssi tänä päivänä on. Wilma-Emilia on aiemmissa teoksissaan käyttänyt monimediallisia elementtejä – nykyrunoutta, improvisaatiota ja valokuvaa – joita tässä esityksessä yhdistetään uudenlaisiin aistikokemuksiin.</p><p>Instinct on kokemus, jonka Wilma-Emilia haluaa jakaa yhdessä yleisön ja esiintyjien kanssa. Esityksissä luodaan turvallinen tila, jossa jokainen voi valita roolinsa todistajana tai osallistujana esityksen edetessä vaiheesta toiseen. Roolia voi vapaasti vaihdella esityksen kulussa.</p><p><b>Työryhmä</b><br>Koreografia ja runot: Wilma-Emilia Kuosa <br>Tanssin tukena tanssitaiteilija: Tarja Rinne <br>Käsikirjoitus: Wilma-Emilia Kuosa ja Henry Hanikka <br>Esiintyjät: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Äänisuunnittelu: Wilma-Emilia Kuosa <br>Valosuunnittelu: Jaakko Kettunen <br>Musiikki: Ilpo Jauhiainen, Noel Saizonou ja työryhmä <br>Tuotanto: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Kesto: 1 t<br>Kieli Suomi/englanti/ranska<br>Suosittelemme ottamaan mukaan omat villasukat tai tohvelit, sillä näyttelytilassa ollaan ilman ulkokenkiä</p><p><b>Maksuton<b/>. Katsomokoko on rajallinen.  <br><b>Varaa paikkasi<b/> linkin kautta: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>",
                "sv": "<p>Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.</p><p>Föreställningen är en gemensam och trygg ritual, där danskonstnären Wilma-Emilia Kuosa leder publiken genom en mångdimensionell sinnesupplevelse med hjälp av jazzdans. Inspirationen kommer från Kuosas forskningsresor i Benin och Togo och Västafrika. I föreställningen ingår solodanser och danser med flera medverkande, ljudvärldar, videor och dikter samt olika doft- och smakupplevelser.</p><p>Föreställningen är trespråkig och innehåller finska, engelska och franska.</p><p>Instinct äger rum i Kanneltalos gallerilokal, där utställningen Sensation/Aistimus/Sensation av Wilma-Emilia Kuosa och hennes arbetsgrupp visas samtidigt. Utställningen, som fungerar som scen för föreställningen, väcks till liv genom samspelet mellan de tre artisterna och publiken. Publiken kan röra sig i gallerirummet under föreställningen och fritt välja vilka sinnesupplevelser de vill ge sig hän åt. Föreställningen är en miljövänlig resa till jazzdansens rötter.</p><p>Föreställningen uppmuntrar oss att stanna upp inför våra sinnen och observera världen tillsammans, med ett sinne i taget. Varje dans baserar sig på en enda sinnesupplevelse, som vi får se en video eller höra ett ljudlandskap eller en dikt om. Danserna återspeglar de rituella danser och folkdanser som Wilma-Emilia studerat i relation till sinnena. Publiken får sensoriska stimuli, dvs. liknande dofter, smaker eller material för att dela upplevelsen.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte och hennes arbetspar är danskonstnären Tarja Rinne. I den här föreställningen fascineras Wilma-Emilia och Tarja av att utforska vad jazzdans är i dag. I sina tidigare verk har Wilma-Emilia använt sig av multimediaelement – samtida poesi, improvisation och fotografi – som i denna föreställning kombineras med nya sinnesupplevelser.</p><p>Instinct är en upplevelse som Wilma-Emilia vill dela med sig av till publiken och artisterna. I föreställningarna skapas ett tryggt rum där var och en kan välja sin roll som vittne eller deltagare när föreställningen framskrider från ett skede till nästa. Man kan fritt byta roll under föreställningens gång.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte.</p><p><b>Arbetsgrupp</b><br>Koreografi och dikter: Wilma-Emilia Kuosa <br>Danskonstnär som stöd för dansen: Tarja Rinne <br>Manus: Wilma-Emilia Kuosa och Henry Hanikka <br>På scenen: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Ljusdesign: Jaakko Kettunen <br>Ljuddesign:Wilma-Emilia Kuosa <br>Musik: Ilpo Jauhiainen, Noel Saizonou och en arbetsgrupp <br>Produktion: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Längd: 1 h<br>Språk finska/engelska/franska</p><p>Fritt inträde. Begränsat antal publikplatser. Boka plats: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>",
                "en": "<p>Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance.</p><p>The performance is a communal and safe ritual in which dance artist Wilma-Emilia Kuosa leads the audience on a multidimensional sensory journey through jazz dance. Kuosa has been inspired by her expeditions to Benin and Togo in West Africa. The performance event will include solo and collaborative dances, soundscapes, videos and poems, as well as a variety of smell and taste experiences.</p><p>The performance is in three languages: Finnish, English and French.</p><p>Instinct takes place in the Kanneltalo gallery space, where the exhibition Sensation/Aistimus/Sensation by Wilma-Emilia Kuosa and her work group is displayed at the same time. The exhibition, which serves as the stage for the performance, comes to life through the interaction between the three performers and the audience. The audience can move around the gallery space during the performance and freely choose the sensory experiences to which to surrender. The performance is an eco-friendly journey towards the roots of jazz dance.</p><p>The performance encourages us to keep still, become aware of our senses and observe the world together, one sense at a time. Each dance is based on a single sensory experience, from which a video is shown or a soundscape or poem is heard. The dances reflect the ritual and folk dances studied by Wilma-Emilia in relation to the senses. The audience is given sensory stimuli, i.e. similar smells, tastes or materials to share the experience.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. This is the sixth concept by choreographer Wilma-Emilia Kuosa. She works with dance artist Tarja Rinne. In this performance, Wilma-Emilia and Tarja are fascinated to explore what jazz dance is today. In her previous works, Wilma-Emilia has used multimedia elements – contemporary poetry, improvisation and photography – which, in this performance, are combined with new sensory experiences.</p><p>Instinct is an experience that Wilma-Emilia wants to share with the audience and the performers. The presentations create a safe space where everyone can choose their role as a witness or participant as the presentation progresses from one phase to the next. You can freely change your role during the course of the performance.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. The work concept is the sixth by choreographer Wilma-Emilia Kuosa.</p><p><b>Creative team</b><br>Choreography and poems: Wilma-Emilia Kuosa <br>Supporting dance artist: Tarja Rinne <br>Script: Wilma-Emilia Kuosa and Henry Hanikka <br>Performers: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa  <br>Lighting design: Jaakko Kettunen <br>Sound design: Viliina Kettunen and Wilma-Emilia Kuosa <br>Music: Ilpo Jauhiainen, Noel Saizonou and team <br>Production: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Duration: 1 h<br>Language Finnish/English/French</p><p>We recommend that you bring your own woolen socks or slippers, as shoes will be left outside the gallery space.</p><p>Free of charge. The size of the auditorium is limited. Book your seat: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>"
            },
            "name": {
                "fi": "Wilma-Emilia Kuosa Company: Instinct ENSI-ILTA",
                "sv": "Wilma-Emilia Kuosa Company: Instinct",
                "en": "Wilma-Emilia Kuosa Company: Instinct"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67262/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67915",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1494353,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:19.814726Z",
                    "last_modified_time": "2026-01-05T09:13:19.814739Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783139.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494353/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:19.705671Z",
            "last_modified_time": "2026-03-20T01:12:48.363798Z",
            "date_published": null,
            "start_time": "2026-01-27T12: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": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/2AE2D11E212294C770EC4F48287BBF09/Paivatanssit_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/2AE2D11E212294C770EC4F48287BBF09/Paivatanssit_",
                "en": "http://www.stoa.fi/en/events/event/2AE2D11E212294C770EC4F48287BBF09/Paivatanssit_"
            },
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>"
            },
            "name": {
                "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Päivätanssit",
                "en": "Päivätanssit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67915/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}