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

{
    "meta": {
        "count": 27763,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=14",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=12"
    },
    "data": [
        {
            "id": "kulke:67909",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494595,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T14:12:55.084754Z",
                    "last_modified_time": "2026-01-21T14:12:55.084768Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777733.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-21T14:12:54.928362Z",
            "last_modified_time": "2026-03-20T01:13:20.147658Z",
            "date_published": null,
            "start_time": "2026-02-28",
            "end_time": "2026-05-23",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Helsingin kaupunginmuseon kierrätysnäyttely keikauttaa käsityksesi roskasta.",
                "sv": "Helsingfors stadsmuseums återvunna utställning utmanar uppfattningen om skräp.",
                "en": "The Helsinki City Museum recycled exhibition will challenge your notions on waste."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Roskaa_-_Mita_jatamme_jalkeemme",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Skrap_Det_vi_lamnar_efter_oss",
                "en": "http://www.vuotalo.fi/en/events/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Trash_What_we_leave_behind"
            },
            "description": {
                "fi": "<p>Helsingin kaupunginmuseon kierrätysnäyttely keikauttaa käsityksesi roskasta.</p><p>Mistä helsinkiläisten roskat muodostuvat, mihin ne päätyvät ja miten ne vaikuttavat ympäristöön?</p><p>Vuotaloon saapuu näyttely, joka haastaa pohtimaan omia kulutustottumuksia ja kannustaa kestävämpiin valintoihin. Kaupunginmuseon kierrätetty näyttely Roskaa! kutsuu kaupunkilaiset ihmettelemään kotitalousjätteiden kiertokulkua ja ympäristövastuun merkityksiä eri aikoina.</p><p>Näyttely esittelee Helsingin jätehuollon historiaa ja nykyhetkeä leikkimielisten tehtävien ja erilaisten teemojen avulla. Koti havainnollistaa kuluttamisen muutoksia, Viemäri paljastaa putkistojen salaisuudet, Jätehuolto näyttää jätteiden reitit kaupungissa ja Kierrätyspajassa vanha saa uuden elämän.</p><p>Pöntöt, pytyt ja putket, sekä Riku Ounaslehdon näyttelyä varten kuvittamat maskottihahmot – Herra Sumppi, Lörö, Voda, Kara ja Rööperi-Rotta – saavat kaikenikäiset hymyilemään.</p><p>Roskaa! toteutetaan yhteistyössä Helsingin seudun ympäristöpalvelujen kanssa. Näyttelyn tuottaja on museolehtori Magnus Rask.</p><p>Roskaa! – Mitä jätämme jälkeemme<br>28.2.–23.5.2026<br>Vuotalo <br>Vapaa pääsy</p>",
                "sv": "<p>Helsingfors stadsmuseums återvunna utställning utmanar uppfattningen om skräp.</p><p>Till Nordhuset kommer en utställning som utmanar till att tänka på ens egna konsumtionsvanor och uppmuntrar till hållbarare val. Stadsmuseets återvunna utställning Skräp! handlar om hushållsavfallets kretslopp i staden och människors miljöansvar under olika tidsperioder.</p><p>Hur uppstår helsingforsarnas avfall, vart hamnar det och hur påverkar det miljön?</p><p>Utställningen presenterar avfallshanteringens historia och nuläge i Helsingfors med hjälp av olika skojiga uppgifter och teman; Hemmet åskådliggör förändringar i konsumtionen, Avloppet avslöjar rörsystemens hemligheter, Avfallshanteringen visar avfallets rutter i staden och i Återvinningsverkstaden ger gamla saker ett nytt liv.</p><p>Pottor, byttor och rör, samt maskotarna Herr Sump, Klumpen, Vatu, Skrottet och råttan Rööperi designade av Riku Ounaslehto får vem som helst att dra på smilbanden</p><p>Utställningen Skräp! är ett samarbete mellan Helsingfors stadsmuseum och Helsingforsregionens miljötjänster. Utställningen produceras av museilektor Magnus Rask.</p><p>Skräp! – Det vi lämnar efter oss<br>28.2–23.5.2026<br>Nordhuset<br>Fritt inträde</p>",
                "en": "<p>The Helsinki City Museum recycled exhibition will challenge your notions on waste.</p><p>What does the trash of Helsinki residents consist of, where does it end up, and how does it impact the environment?</p><p>An exhibition is coming to Vuotalo, that challenges visitors to reflect on their own consumption habits and encourages to make more sustainable choices. The Helsinki City Museum recycled exhibition Trash! digs into the journey of household waste in the city and the significance of environmental responsibility in different times.</p><p>The exhibition showcases the history and present of waste management in Helsinki through playful tasks and diverse themes. Home illustrates changes in consumption, Sewer reveals the secrets of pipelines, Waste Management shows the routes of different waste types in the city, and Recycling Shop gives new life to old items.</p><p>Potties, bins and pipes, along with the mascot characters illustrated by Riku Ounaslehto for the exhibition – Mr. Sumppi, Lörö, Voda, Kara, and Rööperi the Rat – are sure to bring smiles to visitors of all ages.</p><p>Trash! is produced in collaboration with Helsinki Region Environmental Services Authority HSY. The exhibition is produced by museum educator Magnus Rask.</p><p>Trash! – What we leave behind<br>28.2–23.5.2026<br>Vuotalo<br>Free entry</p>"
            },
            "name": {
                "fi": "Roskaa! - Mitä jätämme jälkeemme – Helsingin kaupunginmuseon kierrätysnäyttely",
                "sv": "Skräp! – Det vi lämnar efter oss – Helsingfors stadsmuseums återvunna utställning",
                "en": "Trash! – What we leave behind – A recycled exhibition by the Helsinki City Museum"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67909/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68006",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494608,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T15:13:34.819386Z",
                    "last_modified_time": "2026-01-22T15:13:34.819402Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774609.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494608/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-22T15:13:34.732193Z",
            "last_modified_time": "2026-03-20T01:13:19.493549Z",
            "date_published": null,
            "start_time": "2026-02-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vuoluklubi esittelee Vuosaaren lukion nuorta voimaa ja nousevia kykyjä.",
                "sv": "Vuoluklubi presenterar ung energi och stigande stjärnor från gymnasiet Vuosaaren lukio.",
                "en": "Vuoluklubi showcases the young power and emerging talents of Vuosaari Upper Secondary School."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EEFF1DE3300FDC4DFACA6E0CFD86DB9D/Vuosaaren_lukion_konsertti",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/EEFF1DE3300FDC4DFACA6E0CFD86DB9D/Konsert_pa_Vuosaaren_lukio",
                "en": "http://www.vuotalo.fi/en/events/event/EEFF1DE3300FDC4DFACA6E0CFD86DB9D/Concert_at_Vuosaari_Upper_Secondary_School"
            },
            "description": {
                "fi": "<p>Vuoluklubi esittelee Vuosaaren lukion nuorta voimaa ja nousevia kykyjä.</p><p>Vuosaaren lukion musiikkilinjan ja yleislinjan nuoret esiintyvät omien bändiensä kanssa ja soolona. Lukiolaiset itse vastaavat ohjelman sisällön tuottamisesta. Luvassa on siis monipuolinen kattaus musiikkityylejä - tilutuksesta balladeihin. Lämpimästi tervetuloa seuraamaan Vuoluklubin musiikkimaratonia!</p><p>Kesto: noin 2 t</p><p>Vapaa pääsy</p><p>Myös Kultuksen kautta paikkoja:</p><p>https://kultus.hel.fi/fi/event/kultus:agnohfzxuy?additionalCriteria=kultus%3A5&returnPath=%2Fsearch</p>",
                "sv": "<p>Vuoluklubi presenterar ung energi och stigande stjärnor från gymnasiet Vuosaaren lukio.</p><p>Ungdomar från Vuosaaren lukios musiklinje och allmänna linje uppträder med sina band och solo. Gymnasisterna ansvarar själva för programmets innehåll. Här utlovas alltså ett mångsidigt urval av musikstilar – från shred till ballader. Varmt välkommen till Vuoluklubis musikmaraton!</p><p>Längd: ca 2 h</p><p>Fritt inträde</p>",
                "en": "<p>Vuoluklubi showcases the young power and emerging talents of Vuosaari Upper Secondary School.</p><p>Young people from Vuosaari Upper Secondary School’s music and general education lines will hit the stage to perform as bands and solo artists. The content of the programme is produced by the young people themselves. Accordingly, the event will feature a diverse range of musical styles – from shredding to ballads.</p><p>You are warmly invited to witness the Vuoluklubi music marathon!</p><p>Duration: roughly 2 h</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Vuosaaren lukion konsertti",
                "sv": "Konsert på Vuosaaren lukio",
                "en": "Concert at Vuosaari Upper Secondary School"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68006/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67920",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494380,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T14:13:09.733727Z",
                    "last_modified_time": "2026-01-05T14:13:09.733744Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780648.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T14:13:09.626646Z",
            "last_modified_time": "2026-03-20T01:13:19.384187Z",
            "date_published": null,
            "start_time": "2026-02-27T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Performanssi pakoon lähteneen henkilön kiitollisuuden painosta ja riittämättömyyden tunteista.",
                "sv": "En performance om tyngden av tacksamhet och känslor av otillräcklighet hos en flykting.",
                "en": "A performance about the weight of gratitude and feelings of inadequacy of a person who has fled."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9B6E17A7D21B87B802593037E7C29AEC/Saban_Ramadani_Ma_Lupaan_Ma_Vannon",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9B6E17A7D21B87B802593037E7C29AEC/Saban_Ramadani_Jag_lovar_jag_svar_",
                "en": "http://www.stoa.fi/en/events/event/9B6E17A7D21B87B802593037E7C29AEC/Saban_Ramadani_Ma_Lupaan_Ma_Vannon"
            },
            "description": {
                "fi": "<p>Performanssi pakoon lähteneen henkilön kiitollisuuden painosta ja riittämättömyyden tunteista.</p><p>Performanssiteoksessa nähdään henkilö pesemässä valkoisen tilan lattiaa lasisen sangon vedellä, katseen suunta on portaikon huipussa. Kertoja pyrkii ilmaisemaan kuuntelijalle kiitollisuutensa maahanmuutosta, siitä ihanasta uhrauksesta, jonka huostaan ottanut maa on tehnyt pakoon lähteneelle henkilölle. Narratiivissa kuitenkin piilee ihmisarvon toiseutta, tunteesta, että ei koskaan tule riittämään. Hän pesee, pesee, pesee lattiaa päänsä alas laittaa.</p><p>Kuin Sisyfoksen tavoin, kivi vierähtää alas ja kierre on loputon. Narraatiossa henkilö toivoisi sanovansa ääneen turhautumisensa riittämättömyydestä, mutta muistuttaa itseään kiitollisuudesta, sillä sitä toisen luokan kansalainen tekee, tai, ainakin näin oletetaan. Korottamalla ääntänsä hän saattaa vihdoinkin ottaa tilaa, mutta mitkä seuraamukset seuraavat perässä?</p><p>Kesto: n. 30 min, ei väliaikaa<br>Kieli: englanti</p><p>Vapaa pääsy</p><p><b>Työryhmä:</b><br>Taiteellinen työ, esiintyjä: Saban Ramadani<br>Tuottaja: Wisam Elfadl</p>",
                "sv": "<p>En performance om tyngden av tacksamhet och känslor av otillräcklighet hos en flykting.</p><p>I det här performanceverket får vi se en person som tvättar golvet i ett vitt rum med en vattenhink av glas, med blicken riktad mot trappans topp. Berättaren försöker uttrycka sin tacksamhet för migrationen, den underbara uppoffring som det mottagande landet har gjort för flyktingen. I narrativet döljer sig ändå ett utanförskap i människovärdet, en känsla av att aldrig kunna räcka till. Han tvättar, tvättar, tvättar golvet lägger ner sitt huvud.</p><p>Precis som för Sisyfos rullar stenen ner och spiralen är oändlig. Personen i berättelsen vill uttrycka sin frustration över otillräckligheten, men påminner sig själv om tacksamheten, för det gör en andra klassens medborgare, eller det är i alla fall vad man antar. Genom att höja sin röst kan han äntligen ta plats, men vilka konsekvenser får det?</p><p>Längd ca 30 min., ingen paus.<br>Språk: engelska</p><p>Fritt inträde</p><p>Arbetsgrupp:<br>Konstnärligt arbete, artist: Saban Ramadani<br>Producent: Wisam Elfadl</p>",
                "en": "<p>A performance about the weight of gratitude and feelings of inadequacy of a person who has fled.</p><p>In the performance, a person is washing the floor of a white space with water from a glass bucket, with their gaze directed at the top of a staircase. The narrator tries to express to the listener their gratitude for immigration, for the wonderful sacrifice made by the host country to the person who has fled. However, there is an otherness of human dignity in the narrative, a sense that they will never be enough. They wash, wash, wash the floor and put their head down.</p><p>The Sisyphean stone rolls down again and the spiral is endless. In the narrative, the person wishes they could express their frustration at their inadequacy out loud, but reminds themselves to be grateful, because that's what a second-class citizen does, or, at least, that's what is assumed. By raising their voice, they could finally make room for themselves, but what consequences would that have?</p><p>Duration approx. 30 min, no intermission<br>Language: English</p><p>Free entry!</p><p>Creative team:<br>Artistic work, performer: Saban Ramadani<br>Producer: Wisam Elfadl</p>"
            },
            "name": {
                "fi": "Saban Ramadani: Mä Lupaan, Mä Vannon",
                "sv": "Saban Ramadani: ”Jag lovar, jag svär”",
                "en": "Saban Ramadani: Mä Lupaan, Mä Vannon"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67920/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67662",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493953,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T16:13:00.636473Z",
                    "last_modified_time": "2025-11-28T16:13:00.636494Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782306.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493953/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-11-28T16:13:00.531590Z",
            "last_modified_time": "2026-03-20T01:13:19.143957Z",
            "date_published": null,
            "start_time": "2026-02-27T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.",
                "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.",
                "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi",
                "en": "http://www.annantalo.fi/en/events/event/00EC701CB875C5E24665F7CCB6AC4279/TaikaBox_Louhi"
            },
            "description": {
                "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 6–12 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p><p>Esitys on suunnattu kouluryhmille, paikkavaraukset 27.1. klo 8 alkaen Kultuksesta: https://kultus.hel.fi/fi</p>",
                "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>",
                "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p><p>The performance is aimed at school groups, reservations are available from 8 am on January 27th: https://kultus.hel.fi/fi</p>"
            },
            "name": {
                "fi": "TaikaBox: Louhi – koululaisryhmille",
                "sv": "TaikaBox: Louhi – for skolgrupper",
                "en": "TaikaBox: Louhi – for school groups"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67662/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67661",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T16:13:00.291451Z",
                    "last_modified_time": "2025-11-28T16:13:00.291472Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782305.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-11-28T16:13:00.177412Z",
            "last_modified_time": "2026-03-20T01:13:18.974983Z",
            "date_published": null,
            "start_time": "2026-02-27T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.",
                "sv": "Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.",
                "en": "Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi",
                "en": "http://www.annantalo.fi/en/events/event/D4E3A0CC8406FC87A191124B527C0F06/TaikaBox_Louhi"
            },
            "description": {
                "fi": "<p>Louhi on tanssiteos ystävyydestä, voimasta ja selviytymisestä – kertomus pienestä tytöstä, joka ei taipunut kohtalolle vaan loi sen itse.</p><p>Ikääntynyt Louhi-mummo palaa muistoissaan lapsuuteen ja aikaan, jolloin hänestä tuli Pohjolan peloton suojelija ja taikavoimien haltija. Tanssin, musiikin, laulujen, loitsujen ja interaktiivisen projisoinnin siivin avautuvat tarut Tuonelan Joutsenesta, Hiiden Hirvestä ja Suomuhauesta – kolmesta maagisesta olennosta, jotka palkitsivat Louhi-tytön rohkeuden voimilla, joilla hän kohosi lopulta Pohjolan kansan johtajaksi.<br> <br>Kalevalaisten myyttien sykkeestä kumpuava esitys elävöittää ikiaikaisen perinteen ja tuo sen lähelle nykypäivän katsojaa.</p><p>Kieli: suomi <br>Kesto: 35min<br>Ikäsuositus: 6–12 v<br> <br>Koreografia ja ohjaus: Tanja Råman<br>Tanssi, tarinankerronta ja laulut: Marjo Kiukaanniemi<br>Ääni-, valo- ja interaktiivinen toteutus: John Collingswood<br>Tuotanto: TaikaBox ry<br>Teos on luotu Pohjois-Pohjanmaan rahaston tuella</p><p>Esitys on suunnattu kouluryhmille, paikkavaraukset 27.1. klo 8 alkaen Kultuksesta: https://kultus.hel.fi/fi</p>",
                "sv": "<p>Louhi är ett dansverk om vänskap, styrka och överlevnad – berättelsen om en liten flicka som inte böjde sig för ödet utan skapade det själv.</p><p>Gamla mormor Louhi återvänder i sina minnen till barndomen och den tid när hon blev Pohjolas orädda beskyddare och bärare av magiska krafter. Med hjälp av dans, musik, sånger, trollformler och interaktiva projektioner berättas historierna om Tuonelas svan, Hiisis älg och jättegäddan – tre magiska varelser som belönade flickan Louhis mod med krafter som till slut gjorde henne till ledare för Pohjolas folk.<br> <br>Föreställningen, som är inspirerad av Kalevala-myterna, väcker den gamla traditionen till liv och för den nära den moderna publiken.</p><p>Språk: finska <br>Längd: 35 min.<br>Åldersrekommendation: 6–12 år<br> <br>Koreografi och regi: Tanja Råman<br>Dans, berättelser och sånger: Marjo Kiukaanniemi<br>Ljud, ljus och interaktiv implementering: John Collingswood<br>Produktion: TaikaBox ry<br>Verket har skapats med stöd av Norra Österbottens fond</p>",
                "en": "<p>Louhi is a dance performance about friendship, strength, and survival – the story of a little girl who did not bow to fate but shaped it herself.</p><p>A grandmother revisits her childhood and tells us about the time when she was gifted with magical powers that would change her life forever. Through dance, music, songs, spells, and interactive projections, she shares stories of the Swan of Tuonela, the Elk of the Forest, and the Finnish Pike – three magical beings who rewarded young Louhi’s courage with powers that would ultimately help her rise to become the leader of the people of Pohjola.</p><p>Inspired by characters from the epic Kalevala, and pulsing with mythic energy, the performance brings ancient traditions to life and makes them resonate for today’s audience.</p><p>Language: Finnish<br>Duration: 35 min<br>Age recommendation: 6-12</p><p>Choreography & Direction: Tanja Råman<br>Dance, Storytelling & Singing: Marjo Kiukaanniemi<br>Sound, Lighting & Interactive Design: John Collingswood<br>Production: TaikaBox ry<br>The work was created with support from Finnish Cultural Foundation – Northern Ostrobothnia</p><p>The performance is aimed at school groups, reservations are available from 8 am on January 27th: https://kultus.hel.fi/fi</p>"
            },
            "name": {
                "fi": "TaikaBox: Louhi – koululaisryhmille",
                "sv": "TaikaBox: Louhi – för skolgrupper",
                "en": "TaikaBox: Louhi – for school groups"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67661/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68002",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494600,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T09:12:47.938907Z",
                    "last_modified_time": "2026-01-22T09:12:47.938920Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778723.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494600/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-22T09:12:47.750544Z",
            "last_modified_time": "2026-03-20T01:13:18.766066Z",
            "date_published": null,
            "start_time": "2026-02-27",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kalevalan päivän alla karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.",
                "sv": "Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.",
                "en": "At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1308161FFCAD7F99476F2A02906F7961/Karjalainen_taidehetki_lapsille",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1308161FFCAD7F99476F2A02906F7961/Kalevaladagens_karelska_konststund",
                "en": "http://www.vuotalo.fi/en/events/event/1308161FFCAD7F99476F2A02906F7961/Kalevala_Day_Karelian_Art_Moment"
            },
            "description": {
                "fi": "<p>Kalevalan päivän alla karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.</p><p>Opimme myös, mikä kumma on Kalevala ja miten se liittyy karjalaiseen kulttuuriin.</p><p>Työpajassa kuullaan sävelmiä jouhikolla karjalaiseen tapaan. Tarinoista ja musiikista inspiroituneena teemme yhdessä taidetta hiilellä maalaten. Työpajassa opimme valmistamaan itse oman metsäisen hiilimaalin, jota käytetään oman taideteoksen tekemisessä.</p><p>Työpajassa soittaa karjalainen kuvataideopettaja Verna Kuntsi.</p><p>Taidepajan opettajat: Seikkailutaidekoulu / Verna Kuntsi ja Satu Sipilä.</p><p>Kohderyhmä: 5-6-vuotiaat, oppilaat vuosiluokilta 1-2</p><p>Ryhmäkoko max.30</p><p>Tuokion kesto on noin 45 min.</p><p>klo 9.00–9.45 <br>klo 10.30–11.15 <br>klo 13.00–13.45</p><p>Ryhmille on ennakkoilmoittautuminen Kultuksen kautta:<br>https://kultus.hel.fi/fi/event/kultus:agnohdrz4e?places=tprek%3A7260&returnPath=%2Fsearch</p>",
                "sv": "<p>Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.</p><p>Vi får också veta vad Kalevala är för något och hur den hänger ihop med den karelska kulturen.</p><p>I verkstaden får vi höra Wilhelmiina Halonens melodier på en stråkharpa på karelskt vis. Inspirerade av berättelser och musik skapar vi tillsammans konst genom att måla med kol. I verkstaden lär vi oss själv tillverka målfärg av kol med skogskaraktär. Vi använder målfärgen när vi skapar våra egna konstverk.<br>I verkstaden lär ut och spelar den karelska bildkonstläraren Verna Kuntsi.</p><p>Stunden tar cirka 45 min.</p><p>Målgrupp: 5–6-åringar, elever på årskurserna 1–2</p><p>Gruppstorlek: max 30</p><p>klo 9.00–9.45 <br>klo 10.30–11.15 <br>klo 13.00–13.45</p><p>Förhandsanmälan för grupper på kultus.hel.fi</p>",
                "en": "<p>At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art.</p><p>We will also learn what Kalevala is and how it relates to Karelian culture.</p><p>In the workshop, we will hear Wilhelmiina Halonen’s melodies with a bowed harp, the Karelian way. Inspired by stories and music, we will make art together with charcoal. In the workshop, we will learn how to make our own woody charcoal paint, which we will use to make our own artwork.</p><p>The workshop is taught by Karelian art teacher Verna Kuntsi, who will also play music.</p><p>The duration of the art moment is approximately 45 minutes.</p><p>Target group: 5–6 years, grades 1–2</p><p>Group size: max 30</p><p>klo 9.00–9.45 <br>klo 10.30–11.15 <br>klo 13.00–13.45</p><p>Pre-registration for groups: kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Karjalainen taidehetki lapsille",
                "sv": "Kalevaladagens karelska konststund",
                "en": "Kalevala Day Karelian Art Moment"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67955",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T13:12:56.944177Z",
                    "last_modified_time": "2026-01-09T13:12:56.944191Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783769.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T13:12:56.800449Z",
            "last_modified_time": "2026-03-20T01:13:18.400864Z",
            "date_published": null,
            "start_time": "2026-02-26T16:00:00Z",
            "end_time": "2026-05-28T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu kaikille yli 12 -vuotiaille nuorista senioreihin.",
                "sv": "Välkommen till en avkopplande stund med dans, lek och den lokala naturen!",
                "en": "Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8064A2C526238043DAC1D2E0FD83978A/Tanssi-_ja_luontotyopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8064A2C526238043DAC1D2E0FD83978A/Dans-_och_naturverkstader",
                "en": "http://www.vuotalo.fi/en/events/event/8064A2C526238043DAC1D2E0FD83978A/Dance_and_nature_workshops"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu kaikille yli 12 -vuotiaille nuorista senioreihin.</p><p>Arjen keskellä on välillä vaikea löytää hetkiä vain olla yhdessä ja leikkiä tai vaikkapa mennä tutustumaan lähimetsään. Työpajat tarjoavat mahdollisuuden eri-ikäisille ihmisille, aikuisille ja lapsille, viettää kiireetöntä ja vapaata aikaa ja olla yhdessä tanssin, leikin ja lähiluonnon parissa.</p><p>Työpajoissa keskitytään erityisesti leikkimiseen ja yhdessä liikkumiseen tanssillisten tehtävien kautta. Työpajojen aiheet kulkevat mielikuvitus leikeistä tarinoihin, peleihin, metsässä kulkemiseen ja tutkimiseen yhdessä.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa kehollisia, intuitiivisia ja kuvitteellisia tietämisen tapoja. Hanke kehittää demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi</p><p>Työpaja ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p>Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p>Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen<br>artofknowing2025@gmail.com</p><p>Ilmoittautumisen yhteydessä kerro:<br>Osallistujien nimi / nimet<br>Puhelinnumero<br>Ryhmä, johon osallistutaan</p><p>Vapaa pääsy</p><p>Työpajoja ohjaavat tanssitaiteilija-tanssipedagogi Jenni Koistinen ja tanssitaiteilija-koreografi Virva Talonen.</p><p>Tule mukaan torstaisin klo 18.30–19.45!<br>Päivämäärät: 26.2., 5.3., 12.3, 19.3, 26.3, 9.4, 16.4, 23.4, 7.5, 21.5, 28.5.2026</p><p>Järjestämme tanssi- ja luontotyöpajoja myös 7-12-vuotiaille lapsille oman aikuisen kanssa torstaisin 26.2.–28.5. klo 17.30–18.15 sekä 5-6 v. lapsille oman aikuisen kanssa kanssa lauantaisin 28.2.–6.6. klo 10.30-11.45.</p><p>HUOM! Kaikkien ryhmien yhteinen viimeinen kerta poikkeuksellisesti la 6.6.26 klo 10.30–12.<br>to 26.2.2026 klo 18.30 - to 28.5.2026 klo 19.45</p>",
                "sv": "<p>Välkommen till en avkopplande stund med dans, lek och den lokala naturen!</p><p>Mitt i vardagen kan det vara svårt att hitta stunder för att bara vara tillsammans och leka eller gå på upptäcktsfärd i den lokala skogen. Verkstäderna erbjuder en möjlighet för personer i olika åldrar, vuxna och barn, att umgås fritt och utan stress, dansa, leka och njuta av den lokala naturen.</p><p>I verkstäderna fokuserar vi särskilt på lek och att röra oss tillsammans genom dansuppgifter. Verkstädernas teman rör sig från fantasilekar till berättelser, spel, promenader i naturen och gemensamt utforskande.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Kone-stiftelsen och där vi utvecklar kroppsliga, intuitiva och tänkta sätt att veta i samarbete med forskare och danskonstnärer. Projektet utvecklar demokratiska och inkluderande metoder där lek, kroppslighet och natur är viktiga källor till kunskap.</p><p>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi</p><p>Kursen kräver ingen tidigare bakgrund inom dans eller erfarenhet av dans. Kursen leds på finska, och vid behov använder vi också svenska och engelska.</p><p>Verkstäderna hålls i Lilla salen i Nordhuset och i närliggande skogar i Nordsjö.</p><p>De anmälda till verkstäderna får närmare information om var de ska samlas innan kursen börjar.</p><p>LEDARE FÖR VERKSTÄDERNA: Verkstäderna leds av danskonstnären och -pedagogen Jenni Koistinen samt danskonstnären och koreografen Virva Talonen.</p><p><b>Anmälan sker via e-post till adressen:</b> artofknowing2025@gmail.com</p><p>I samband med anmälan, vänligen uppge:<br>Deltagarens namn / deltagarnas namn<br>Telefonnummer<br>Den grupp som man anmäler sig till</p><p>Vi ordnar dans- och naturworkshops även förvVuxna och barn 7–12 år på torsdagar 26.2.–28.5. kl. 17.00–18.15 samt för barn i åldern 5–6 år tillsammans med en egen vuxen på lördagar 28.2.–6.6. kl. 10.30–11.45.</p><p>OBS! Alla gruppers gemensamma sista träff hålls undantagsvis lördagen den 6.6.26 kl. 10.30–12.</p>",
                "en": "<p>Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!</p><p>In the busyness of everyday life, it can be hard to find moments to just be together and play, or perhaps go explore the local forest. These workshops offer an opportunity for people of all ages, adults and children alike, to spend some unhurried and free time together, dancing, playing and enjoying the local nature.</p><p>The workshops will focus particularly on playing and moving together through dance-related activities. The workshop themes range from imagination play to stories, games, walking in the woods and exploring things together.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop bodily, intuitive and imaginary ways of knowing. The project develops democratic and participatory methods in which play, bodiliness and nature are important sources of knowing.</p><p>If you participate in the workshops, you can also take part in a survey if you wish. For more information on the survey, please contact: anna.rainio@helsinki.fi</p><p>No previous dance background or experience is required for attending the course. The course is instructed in Finnish, and we also speak Swedish and English where necessary. <br>The workshops will be held in the Small Hall room of Vuotalo and in the nearby forests of Vuosaari.</p><p>Those registered for the workshops will receive more information about the assembly places before the course starts.</p><p>WORKSHOP INSTRUCTORS: The workshops will be instructed by dance artist and educator Jenni Koistinen and dance artist and choreographer Virva Talonen.</p><p><b>Registration takes place by email to the following address:</b><br>artofknowing2025@gmail.com<br>When registering, please provide:<br>Participant’s name / participants’ names<br>Phone number<br>The group you are registering for</p><p>We also organise dance and nature workshops for all ages on Thursdays from 26 Feb to 28 May, from 6:30 pm to 7:45 pm, as well as workshops for 5–6-year-old children together with their own adult on Saturdays from 28 Feb to 6 June, from 10:30 am to 11:45 am.</p><p>NOTE! The final session for all groups will exceptionally be held together on Saturday 6 June 2026, from 10:30 am to 12:00 pm.</p>"
            },
            "name": {
                "fi": "Tanssi- ja luontotyöpajat – Kaikille yli 12-vuotiaille",
                "sv": "Dans- och naturverkstäder – Åldersgruppen 12+",
                "en": "Dance and nature workshops – Suitable for everyone 12 yrs +"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67955/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68105",
            "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: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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": 1494850,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-12T12:13:55.695509Z",
                    "last_modified_time": "2026-02-12T12:13:55.695527Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782650.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494850/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-12T12:13:55.551435Z",
            "last_modified_time": "2026-03-20T01:13:18.043108Z",
            "date_published": null,
            "start_time": "2026-02-26T14: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/31A4DCAE743508AC0CBF58C3A6B77E5B/Tapaa_tekija_Stoan_aulassa",
                "sv": "http://www.stoa.fi/sv/evenemang/event/31A4DCAE743508AC0CBF58C3A6B77E5B/Traffa_skaparna_i_Stoas_lobby",
                "en": "http://www.stoa.fi/en/events/event/31A4DCAE743508AC0CBF58C3A6B77E5B/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 Sara Hirn ja Ahmed Al-Nawas.</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>",
                "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>",
                "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.</p><p>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>"
            },
            "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:68105/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68110",
            "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: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494859,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-13T10:13:19.046815Z",
                    "last_modified_time": "2026-02-13T10:13:19.046841Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785414.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494859/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-13T10:13:18.841819Z",
            "last_modified_time": "2026-03-20T01:13:17.678388Z",
            "date_published": null,
            "start_time": "2026-02-25T16: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": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C22EEFF0B18BAB6BA3D79552AF1228EC/Amos_A_-_en_tolkning_av_en_framgangssaga",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C22EEFF0B18BAB6BA3D79552AF1228EC/Amos_A_-_en_tolkning_av_en_framgangssaga",
                "en": "http://www.vuotalo.fi/en/events/event/C22EEFF0B18BAB6BA3D79552AF1228EC/Amos_A_-_en_tolkning_av_en_framgangssaga"
            },
            "description": {
                "fi": "<p>Arvoituksellinen Amos Anderson (1878–1961) on 1900-luvun suomalaisen yhteiskunnan kiistämätön merkkihenkilö. Hänen elämäänsä voi tarkastella monen historiallisen kehityskulun näkökulmasta: taiteen tukemisen, queer-elämän, teatterin, bisnesmaailman, lehdistön, suomenruotsalaisen kaupunkikulttuurin, politiikan.</p><p>Vaatimattomista oloista lähtenyt Andersonin kerrytti huomattavan omaisuuden, jota hän käytti suomalaisen yhteiskunnan rakentamiseen. Anna Blomin dokumenttielokuva käy läpi Andersonin julkisen elämän eri puolia, mutta on ennen kaikkea kiinnostunut sosiaalisesta, mutta yksityisyyttään suojelleesta Amoksesta ja hänen ihmissuhteistaan. “Tiedämme paljon Amos Andersonista, mutta hän on silti arvoitus”, elokuvan alussa todetaan.</p><p>Ikkunan Andersonin persoonaan tuo Gunilla Hemmingin kirjoittama näytelmä Amos A, joka sai syyskuussa ensi-iltansa Svenska teaternissa Kari Heiskasen ohjaamana. Elokuvassa seurataan näytelmän harjoituksia, tekijöiden pohdintoja roolihahmoista sekä puvustuksen, maskeerauksen ja lavasteiden valmistumista. Amos ei mennyt koskaan naimisiin tai saanut lapsia, ja viime aikoina on avattu keskustelua hänen mahdollisesta homo- tai biseksuaalisuudestaan.</p><p>Näytelmän valmistuminen limittyy luontevasti elokuvassa arkistomateriaalien ja asiantuntijahaastattelujen lomaan. Lisäksi kuvin tutustutaan Andersonin koteihin Helsingin Yrjönkadulla ja Kemiönsaaren Söderlångvikissa – molemmat museoituja kohteita, joissa Amoksen monipuolinen ja arvokas perintö elää yhä.<br>Marjo Pipinen/Doc Point<br> <br>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa. Elokuvan on tuottanut Jamedia Production/Amos Andersonin kulttuurirahasto.</p>",
                "sv": "<p>En finsk dokumentärfilm och teaterpjäs från 2025 av Anna Blom som utforskar den gåtfulla, framgångsrika affärsmannen och konstmecenaten Amos Andersons liv, genom att följa repetitionerna av en pjäs om honom på Svenska Teatern och avslöja motsägelserna mellan hans offentliga framgång och hans privata ensamhet. Filmen ger en bild av Anderson (1878–1961) som en centralfigur i 1900-talets finska kultur, känd för sin förmögenhet från fastighetsaffärer och tidningsverksamhet men också för sitt stöd till konsten, vilket resulterade i Konstsamfundet.</p><p>Regi: Anna Blom. Språk: svenska. Text: finska. Längd: 63 min.</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset. Filmen är producerad av Jamedia Production/Amos Andersons fond.</p>",
                "en": "<p>The enigmatic Amos Anderson (1878–1961) is an undisputed dignitary of 20th-century Finnish society. His life can be viewed from the perspectives of many historical developments: support for the arts, queer life, theater, the business world, the press, Finnish-Swedish urban culture, politics.</p><p>Hailing from modest settings, Anderson amassed a considerable fortune, which he used to build Finnish society. Anna Blom‘s documentary film explores various aspects of Anderson’s public life, but is primarily interested in the social yet private Amos and his relationships. “We know a lot about Amos Anderson, but he is still an enigma”, the film states at the beginning.</p><p>A window into Anderson’s personality is brought by Gunilla Hemming‘s play Amos A, which premiered in September at the Svenska Teatern under the direction of Kari Heiskanen. The film follows the rehearsals for the play, the creators’ reflections on the characters, and the completion of the costumes, makeup, and sets. Amos never married or had children, and recently there has been discussion about his possible homo- or bisexuality.</p><p>The completion of the play is smoothly interwoven with archival material and expert interviews in the film. In addition, the film introduces Anderson’s homes on Yrjönkatu in Helsinki and in Söderlångvik on Kimitoön Island – both of which are now museums where Amos’s diverse and valuable legacy lives on.<br>Marjo Pipinen (translated by Moritz Müller)/Doc.Point</p><p>Arr. Finlandssvenskt filmcentrum in cooperation with Vuotalo. The film is procuced byrokratian Jamedia Production/Amos Andersons fond.</p>"
            },
            "name": {
                "fi": "Amos A - en tolkning av en framgångssaga – Onsdagsbio",
                "sv": "Amos A - en tolkning av en framgångssaga – Onsdagsbio",
                "en": "Amos A - en tolkning av en framgångssaga – Onsdagsbio"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68110/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68005",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494607,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T15:13:33.820547Z",
                    "last_modified_time": "2026-01-22T15:13:33.820564Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784311.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494607/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-22T15:13:33.628400Z",
            "last_modified_time": "2026-03-20T01:13:16.803939Z",
            "date_published": null,
            "start_time": "2026-02-25T09: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": "Pulpettikinon lyhytelokuvanäytös esittelee hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville.",
                "sv": "Pulppettikinos kortfilmsvisning visar ett charmigt urval av europeiska animationer för små filmvänner.",
                "en": "Pulpettikino’s short film screening event will present a charming selection of European animated shorts for young film lovers."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D7EC8FC3D0879FDC9DB030C8C8FBC05B/Pulpettikinon_lyhytelokuvanaytos",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D7EC8FC3D0879FDC9DB030C8C8FBC05B/Pulppettikinos_kortfilmsvisning",
                "en": "http://www.vuotalo.fi/en/events/event/D7EC8FC3D0879FDC9DB030C8C8FBC05B/Short_film_screening_by_Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikinon lyhytelokuvanäytös esittelee hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville.</p><p>Näytöksessä tavataan värikäs joukko erilaisia tyyppejä monenlaisissa tilanteissa: esittämässä hassunhauskaa musikaalia, liitelemässä öisen meren yllä, kaivamassa tunnelia maapallon toiselle puolelle ja seikkailemassa avaruudessa asti!</p><p>Näytöksen elokuvat esitysjärjestyksessä:</p><p>Yötunneli (Le Tunnel de la nuit / The Night Tunnel)<br>Ohj. Annechien Strouven / Belgia / 9 min / 2024</p><p>Tyttö ja ruutusilmät (A Menina com os Olhos Ocupados / The Girl with the Occupied Eyes) <br>Ohj. André Carrilho / Portugali / 8 min / 2024</p><p>Animanimusikaali (Animanimusical)<br>Ohj. Julia Ocker / Saksa / 4 min / 2024</p><p>Filante <br>Ohj. Marion Jamault / Ranska / 9 min / 2024</p><p>Kohderyhmä: 4-v. ylöspäin - päiväkoti-ikäiset, eskarit, 1.–2. lk</p><p>Vapaa pääsy, ryhmille ennakkoilmoittautuminen kultus.hel.fi.</p><p>https://kultus.hel.fi/fi/event/kultus:agnog6pw5a?places=tprek%3A7260&returnPath=%2Fsearch</p>",
                "sv": "<p>Pulppettikinos kortfilmsvisning visar ett charmigt urval av europeiska animationer för små filmvänner.</p><p>Under föreställningen får vi träffa en färggrann grupp av olika typer i många slags situationer: de framför en tokrolig musikal, glider fram över ett nattligt hav, gräver en tunnel till andra sidan jorden och åker på äventyr ända ut i rymden!</p><p>Filmerna i visningsordning:</p><p>Nattunneln (Le Tunnel de la nuit / The Night Tunnel)<br>Regi Annechien Strouven / Belgien / 9 min / 2024</p><p>Flickan med de upptagna ögonen (A Menina com os Olhos Ocupados / The Girl with the Occupied Eyes) <br>Regi André Carrilho / Portugal / 8 min / 2024</p><p>Animanimusikalen (Animanimusical)<br>Regi Julia Ocker / Tyskland / 4 min / 2024</p><p>Filante <br>Regi Marion Jamault / Frankrike / 9 min / 2024</p><p>Målgrupp: 4 år och uppåt, barn i daghemsåldern, förskolebarn, åk 1–2<br>Fritt inträde,</p><p>förhandsanmälan för grupper kultus.hel.fi.</p>",
                "en": "<p>Pulpettikino’s short film screening event will present a charming selection of European animated shorts for young film lovers.</p><p>The event will present a colourful cast of characters in a variety of situations: performing a whimsical musical, gliding over the sea at night, digging a tunnel to the other side of the globe and adventuring in space!</p><p>Films in the order of screening:</p><p>Yötunneli (Le Tunnel de la nuit / The Night Tunnel)<br>Dir. Annechien Strouven / Belgium / 9 min / 2024</p><p>Tyttö ja ruutusilmät (A Menina com os Olhos Ocupados / The Girl with the Occupied Eyes) <br>Dir. André Carrilho / Portugal / 8 min / 2024</p><p>Animanimusikaali (Animanimusical)<br>Dir. Julia Ocker / Germany / 4 min / 2024</p><p>Filante <br>Dir. Marion Jamault / France / 9 min / 2024</p><p>Target group: ages 4 and over – children in daycare, preschool and grades 1–2 <br>Free entry,<br>advance registration for groups at kultus.hel.fi.</p>"
            },
            "name": {
                "fi": "Pulpettikinon lyhytelokuvanäytös – Rakkautta & Anarkiaa -kiertue",
                "sv": "Pulppettikinos kortfilmsvisning – Kärlek & Anarki-turnén",
                "en": "Short film screening by Pulpettikino – Love & Anarchy tour"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68005/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68004",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494606,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T15:13:33.170354Z",
                    "last_modified_time": "2026-01-22T15:13:33.170372Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784310.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494606/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-22T15:13:32.936620Z",
            "last_modified_time": "2026-03-20T01:13:16.598407Z",
            "date_published": null,
            "start_time": "2026-02-25T07: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": "Pulpettikinon lyhytelokuvanäytös esittelee hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville.",
                "sv": "Pulppettikinos kortfilmsvisning visar ett charmigt urval av europeiska animationer för små filmvänner.",
                "en": "Pulpettikino’s short film screening event will present a charming selection of European animated shorts for young film lovers."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E0FAFE6D16B1EAFD165D8EF75B94B168/Pulpettikinon_lyhytelokuvanaytos",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E0FAFE6D16B1EAFD165D8EF75B94B168/Pulppettikinos_kortfilmsvisning",
                "en": "http://www.vuotalo.fi/en/events/event/E0FAFE6D16B1EAFD165D8EF75B94B168/Short_film_screening_by_Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikinon lyhytelokuvanäytös esittelee hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville.</p><p>Näytöksessä tavataan värikäs joukko erilaisia tyyppejä monenlaisissa tilanteissa: esittämässä hassunhauskaa musikaalia, liitelemässä öisen meren yllä, kaivamassa tunnelia maapallon toiselle puolelle ja seikkailemassa avaruudessa asti!</p><p>Näytöksen elokuvat esitysjärjestyksessä:</p><p>Yötunneli (Le Tunnel de la nuit / The Night Tunnel)<br>Ohj. Annechien Strouven / Belgia / 9 min / 2024</p><p>Tyttö ja ruutusilmät (A Menina com os Olhos Ocupados / The Girl with the Occupied Eyes) <br>Ohj. André Carrilho / Portugali / 8 min / 2024</p><p>Animanimusikaali (Animanimusical)<br>Ohj. Julia Ocker / Saksa / 4 min / 2024</p><p>Filante <br>Ohj. Marion Jamault / Ranska / 9 min / 2024</p><p>Kohderyhmä: 4-v. ylöspäin - päiväkoti-ikäiset, eskarit, 1.–2. lk   <br>Vapaa pääsy, ryhmille ennakkoilmoittautuminen kultus.hel.fi.</p><p>https://kultus.hel.fi/fi/event/kultus:agnog6pw5a?places=tprek%3A7260&returnPath=%2Fsearch</p>",
                "sv": "<p>Pulppettikinos kortfilmsvisning visar ett charmigt urval av europeiska animationer för små filmvänner.</p><p>Under föreställningen får vi träffa en färggrann grupp av olika typer i många slags situationer: de framför en tokrolig musikal, glider fram över ett nattligt hav, gräver en tunnel till andra sidan jorden och åker på äventyr ända ut i rymden!</p><p>Filmerna i visningsordning:</p><p>Nattunneln (Le Tunnel de la nuit / The Night Tunnel)<br>Regi Annechien Strouven / Belgien / 9 min / 2024</p><p>Flickan med de upptagna ögonen (A Menina com os Olhos Ocupados / The Girl with the Occupied Eyes) <br>Regi André Carrilho / Portugal / 8 min / 2024</p><p>Animanimusikalen (Animanimusical)<br>Regi Julia Ocker / Tyskland / 4 min / 2024</p><p>Filante <br>Regi Marion Jamault / Frankrike / 9 min / 2024<br>Målgrupp: 4 år och uppåt, barn i daghemsåldern, förskolebarn, åk 1–2<br>Fritt inträde, förhandsanmälan för grupper kultus.hel.fi.</p>",
                "en": "<p>Pulpettikino’s short film screening event will present a charming selection of European animated shorts for young film lovers.</p><p>The event will present a colourful cast of characters in a variety of situations: performing a whimsical musical, gliding over the sea at night, digging a tunnel to the other side of the globe and adventuring in space!</p><p>Films in the order of screening:</p><p>Yötunneli (Le Tunnel de la nuit / The Night Tunnel)<br>Dir. Annechien Strouven / Belgium / 9 min / 2024</p><p>Tyttö ja ruutusilmät (A Menina com os Olhos Ocupados / The Girl with the Occupied Eyes) <br>Dir. André Carrilho / Portugal / 8 min / 2024</p><p>Animanimusikaali (Animanimusical)<br>Dir. Julia Ocker / Germany / 4 min / 2024</p><p>Filante <br>Dir. Marion Jamault / France / 9 min / 2024</p><p>Target group: ages 4 and over – children in daycare, preschool and grades 1–2</p><p>Free entry, advance registration for groups at kultus.hel.fi.</p>"
            },
            "name": {
                "fi": "Pulpettikinon lyhytelokuvanäytös – Rakkautta & Anarkiaa -kiertue",
                "sv": "Pulppettikinos kortfilmsvisning – Kärlek & Anarki-turnén",
                "en": "Short film screening by Pulpettikino – Love & Anarchy tour"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68004/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67934",
            "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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494420,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T08:12:55.832007Z",
                    "last_modified_time": "2026-01-09T08:12:55.832025Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783597.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494420/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T08:12:55.765569Z",
            "last_modified_time": "2026-03-20T01:13:16.503213Z",
            "date_published": null,
            "start_time": "2026-02-24T16: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": "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/5FCAD1B5B8430D65EE6D5A40CF1C2A53/_Kino_Caisa_Kaikkein_heikoimmille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/5FCAD1B5B8430D65EE6D5A40CF1C2A53/_Kino_Caisa_Kaikkein_heikoimmille",
                "en": "http://www.caisa.fi/en/events/event/5FCAD1B5B8430D65EE6D5A40CF1C2A53/_Kino_Caisa_For_Those_Most_in_Need"
            },
            "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 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>Vapaa pääsy, ei 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 ❤️.<br>Dokumentären har textning på engelska, utöver talet på finska och romani.</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>"
            },
            "name": {
                "fi": "Kino Caisa: Kaikkein heikoimmille",
                "sv": "Kino Caisa: Kaikkein heikoimmille",
                "en": "Kino Caisa: For Those Most in Need"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67934/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67933",
            "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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494419,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T08:12:55.518581Z",
                    "last_modified_time": "2026-01-09T08:12:55.518595Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783596.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494419/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T08:12:55.453334Z",
            "last_modified_time": "2026-03-20T01:13:16.041095Z",
            "date_published": null,
            "start_time": "2026-02-24T16: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/D838EA920A582189688A11133118963B/_Kino_Caisa_Kaikkein_heikoimmille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D838EA920A582189688A11133118963B/_Kino_Caisa_Kaikkein_heikoimmille",
                "en": "http://www.caisa.fi/en/events/event/D838EA920A582189688A11133118963B/_Kino_Caisa_For_Those_Most_in_Need"
            },
            "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 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>Vapaa pääsy, ei 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 ❤️.<br>Dokumentären har textning på engelska, utöver talet på finska och romani.</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>"
            },
            "name": {
                "fi": "Kino Caisa: Kaikkein heikoimmille",
                "sv": "Kino Caisa: Kaikkein heikoimmille",
                "en": "Kino Caisa: For Those Most in Need"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67933/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67932",
            "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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494418,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T08:12:55.248859Z",
                    "last_modified_time": "2026-01-09T08:12:55.248868Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783595.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494418/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T08:12:55.178664Z",
            "last_modified_time": "2026-03-20T01:13:15.820354Z",
            "date_published": null,
            "start_time": "2026-02-24T15: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": "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/EF44F22687AF68A44A53F3B9075951FE/_Kino_Caisa_Kaikkein_heikoimmille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EF44F22687AF68A44A53F3B9075951FE/_Kino_Caisa_Kaikkein_heikoimmille",
                "en": "http://www.caisa.fi/en/events/event/EF44F22687AF68A44A53F3B9075951FE/_Kino_Caisa_For_Those_Most_in_Need"
            },
            "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 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>Vapaa pääsy, ei 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 ❤️.<br>Dokumentären har textning på engelska, utöver talet på finska och romani.</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>"
            },
            "name": {
                "fi": "Kino Caisa: Kaikkein heikoimmille",
                "sv": "Kino Caisa: Kaikkein heikoimmille",
                "en": "Kino Caisa: For Those Most in Need"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67932/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67931",
            "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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494417,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T08:12:54.949498Z",
                    "last_modified_time": "2026-01-09T08:12:54.949510Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783594.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494417/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T08:12:54.836311Z",
            "last_modified_time": "2026-03-20T01:13:15.722052Z",
            "date_published": null,
            "start_time": "2026-02-24T15: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/A11FD76C64A767E0AD451E3D790ECBF8/_Kino_Caisa_Kaikkein_heikoimmille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A11FD76C64A767E0AD451E3D790ECBF8/_Kino_Caisa_Kaikkein_heikoimmille",
                "en": "http://www.caisa.fi/en/events/event/A11FD76C64A767E0AD451E3D790ECBF8/_Kino_Caisa_For_Those_Most_in_Need"
            },
            "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 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>Vapaa pääsy, ei 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 ❤️.<br>Dokumentären har textning på engelska, utöver talet på finska och romani.</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>"
            },
            "name": {
                "fi": "Kino Caisa: Kaikkein heikoimmille",
                "sv": "Kino Caisa: Kaikkein heikoimmille",
                "en": "Kino Caisa: For Those Most in Need"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67931/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67916",
            "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": 1494356,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:25.140239Z",
                    "last_modified_time": "2026-01-05T09:13:25.140264Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783140.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494356/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:25.067744Z",
            "last_modified_time": "2026-03-20T01:13:15.501531Z",
            "date_published": null,
            "start_time": "2026-02-24T12: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/FE86211482A59C5B4126361A83EBCB90/Paivatanssit_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/FE86211482A59C5B4126361A83EBCB90/Paivatanssit_",
                "en": "http://www.stoa.fi/en/events/event/FE86211482A59C5B4126361A83EBCB90/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:67916/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68102",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1494844,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-11T09:12:56.660143Z",
                    "last_modified_time": "2026-02-11T09:12:56.660157Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785517.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-11T09:12:56.512298Z",
            "last_modified_time": "2026-03-20T01:13:15.367569Z",
            "date_published": null,
            "start_time": "2026-02-24",
            "end_time": "2026-03-16",
            "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": "Nyky-Suomessa yhä useamman juuret ulottuvat maan rajojen ulkopuolelle."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/115E37041ABF377D6CD6E3C6E9D77AE2/_Ikaantymisen_monet_kasvot",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/115E37041ABF377D6CD6E3C6E9D77AE2/_Ikaantymisen_monet_kasvot",
                "en": "http://www.malmitalo.fi/en/events/event/115E37041ABF377D6CD6E3C6E9D77AE2/_Ikaantymisen_monet_kasvot"
            },
            "description": {
                "fi": "<p>Nyky-Suomessa yhä useamman juuret ulottuvat maan rajojen ulkopuolelle.</p><p>Suomessa asuu noin 54 500 yli 55-vuotiasta vieraskielistä ihmistä ja määrä kasvaa merkittävästi lähivuosina. Mutta, kuinka he ovat löytäneet paikkansa, millainen on heidän arkensa, ja mistä he unelmoivat? Tämä näyttely esittää ikääntyvän Suomen monenlaiset kasvot.</p><p>Ihmisillä voi olla monenlaisia sisäkkäisiä ja rinnakkaisia kansallisia, kulttuurisia ja muita identiteettejä. Elämme entistä pirstoutuneemmassa maailmassa ja harvalla on yhtenäistä näkemystä tavoista, arvoista ja uskonnosta ympäröivän yhteisön kanssa. Identiteetit sisällämme muuttuvat ja elävät eri tilanteissa ja eri aikoina matkamme varrella. Vanhenemisen identiteettiin kuuluu monenlaiset kerrokset, eletty elämä, muistot, tämä hetki ja tuleva. Vanheneminen yhdistää meitä kaikkia.</p><p>Eri syistä ja eri ikäisinä Suomeen muuttaneet iäkkäämmät ihmiset eivät muodosta yhtenäistä ryhmää. He jäävät usein suomalaisessa yhteiskunnassa näkymättömiksi ja yhteisen tekemisen ulkopuolelle, vaikka jaettavana olisi rikasta elämänkokemusta, osaamista ja toimeliaisuutta yhteiskunnassa. Näyttelyn yhtenä tavoitteena on lisätä Suomeen muualta muuttaneiden ikääntyvien ihmisten näkyvyyttä.</p><p>Osalle ulkomaalaistaustaisista ikääntyvistä henkilöistä on haasteellista hakeutua palveluiden piiriin. Suomen vanhuspalvelukentällä ei ole vielä sisäistetty ikääntyvän väestön moninaistumista ja sen aiheuttamaa palveluiden kehittämistarvetta. Palveluissa tulisi nykyistä enemmän ottaa huomioon kieli- ja kulttuurivähemmistöjen lähtökohtia ja tarpeita sekä varmistaa palveluiden saavutettavuutta. Näyttelyn toisena tavoitteena on nostaa julkiseen keskusteluun epätasa-arvoa synnyttäviä rakenteita vähemmistöihin kuuluvien ikääntyvien ihmisten osalta.</p><p>Näyttely syntyi kuvataiteilija Satu Juvosen ja monikulttuurista vanhustyötä tekevien järjestöjen yhteistyönä. Mukana ovat Eläkeläiset ry, Suomen monikulttuurinen muistikeskus ry, Jade yhteisö ry, Pääkaupunkiseudun omaishoitajat ry, Monikko ry ja Palvelutaloyhdistys Koskenrinne ry.</p><p>Mukana olevat järjestöt edistävät Suomeen muuttaneiden ikääntyvien osallisuutta ja hyvinvointia sekä toteuttavat ikääntyville suunnattua vertaisryhmätoimintaa ja henkilökohtaista neuvontaa. Järjestöjen yhteisellä rintamalla teemme lisäksi vaikuttamistyötä niiden hyväksi, joiden oma ääni jää suomalaisessa yhteiskunnassa heikoksi. Yhteistyössä on syntynyt käsillä oleva valokuvien kokonaisuus, jossa kohtaatte järjestöjen toimintaan osallistuneita aktiivisia kävijöitä.</p><p>Näe ihminen ja kohtaa kanssakulkija, lähimmäinen. Toivomme, että nämä kuvat madaltavat ennakkoluuluoja ja pelkoja kohdata toisemme.</p>"
            },
            "name": {
                "fi": "Ikääntymisen monet kasvot",
                "sv": "Ikääntymisen monet kasvot",
                "en": "Ikääntymisen monet kasvot"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68102/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67434",
            "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: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/kulke:755/?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: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": 1494072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:54.861018Z",
                    "last_modified_time": "2025-12-04T13:12:54.861040Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781250.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:12:54.764374Z",
            "last_modified_time": "2026-03-20T01:13:15.195572Z",
            "date_published": null,
            "start_time": "2026-02-23T16: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": "Kolme saarta – isä, äiti ja minä (Siltala 2025) on huima tarina perheestä, hiljaisuuden hinnasta ja kertomisen vapauttavasta voimasta.",
                "sv": "Tre öar – mamma, pappa och jag (Förlaget M 2025) är en halsbrytande berättelse om en familj, tystnadens pris och berättandets befriande kraft.",
                "en": "‘Kolme saarta – isä, äiti ja minä’ (Siltala 2025) (Three Islands – Father, Mother and Me) is a stunning story about family, the price of silence and the liberating power of storytelling."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5C9EDFEF401BA14B1200856D22E80BBB/Kirjailijavieraana_Sophia_Jansson_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5C9EDFEF401BA14B1200856D22E80BBB/Forfattarbesok_Sophia_Jansson_",
                "en": "http://www.kanneltalo.fi/en/events/event/5C9EDFEF401BA14B1200856D22E80BBB/Guest_author_Sophia_Jansson_"
            },
            "description": {
                "fi": "<p>Kolme saarta – isä, äiti ja minä (Siltala 2025) on huima tarina perheestä, hiljaisuuden hinnasta ja kertomisen vapauttavasta voimasta.</p><p>Sophia Janssonin omaelämäkerrassa on kolme saarta: Tonga, jonne Janssonin sisarukset Tove ja Lars olisivat halunneet 1940-luvulla muuttaa, Ibiza, jossa Sophia asui varhaislapsuudessaan, sekä Pellingin saari, jossa Janssonit ovat viettäneet aikaa sukupolvien ajan.</p><p>Sophian isä Larsin ja äiti Nitan suhde ei perustunut intohimoiseen rakkauteen, mutta he jakoivat elämänsä tärkeimmän asian: lapsen. Nita kuoli varhain. Isä ja tytär joutuivat pärjäämään ilman häntä.</p><p>Isä edusti turvallisuutta ja huolenpitoa, mutta myös läpitunkematonta hiljaisuutta. Mitä äidille tapahtui? Ja oliko isä-Lars se pyhimys, jollaisena Sophia häntä aina piti? Koko Janssonin perhe tulee lukijalle tutuksi: isoisä Viktor kärsii masennuksesta ja ”saksalaisvillityksestä”, hänen vaimonsa Ham piirtää ja pärjää. Tove ja Lars lähtevät kotoa itsenäistymään.</p><p>Sophia Janssonia haastattelee FT, kirjallisuudentutkija Hanna Karhu.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Tre öar – mamma, pappa och jag (Förlaget M 2025) är en halsbrytande berättelse om en familj, tystnadens pris och berättandets befriande kraft.</p><p>I Sophia Janssons självbiografi finns tre öar: Tonga, dit syskonen Tove och Lars Jansson ville flytta på 1940-talet, Ibiza, där Sophia bodde som liten och Pellinge, där familjen Jansson har vistats i generationer.</p><p>Förhållandet mellan Sophias pappa Lars och mamma Nita byggde inte på en passionerad kärlek, men de delade det viktigaste i livet: ett barn. Nita dog tidigt. Fadern och dottern fick klara sig utan henne.</p><p>Fadern stod för trygghet och omsorg, men också för en ogenomtränglig tystnad. Vad hände med mamman? Och var pappa Lars det helgon som Sophia alltid hade trott att han var? Läsaren får lära känna hela familjen Jansson, farfar Viktor lider av depression och ”tyskmani”, hans hustru Ham tecknar och står ut. Tove och Lars lämnar hemmet för att bli självständiga.</p><p>Sophia Jansson intervjuas av litteraturforskaren FD Hanna Karhu.</p><p>Fritt inträde</p>",
                "en": "<p>‘Kolme saarta – isä, äiti ja minä’ (Siltala 2025) (Three Islands – Father, Mother and Me) is a stunning story about family, the price of silence and the liberating power of storytelling.</p><p>Sophia Jansson's autobiography features three islands: Tonga, where the Jansson siblings Tove and Lars would have wanted to move to in the 1940s, Ibiza, where Sophia lived as a young child, and the island of Pelling, where the Janssons have spent time for generations.</p><p>The relationship between Sophia's father Lars and mother Nita was not based on passionate love, but they shared the most important thing in their lives: a child. Nita died young. The father and daughter had to manage without her.</p><p>The father represented security and care, but also impenetrable silence. What happened to mum? And was Lars, the father, the saint that Sophia always thought he was? The whole Jansson family becomes familiar to the reader: grandfather Viktor suffers from depression and “fascination with Germany\", his wife Ham draws and gets by. Tove and Lars leave home to become independent.</p><p>Sophia Jansson is interviewed by Hanna Karhu, PhD, literary researcher.</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Sophia Jansson – Maksuttomat maanantait",
                "sv": "Författarbesök: Sophia Jansson – Avgiftsfria måndagar",
                "en": "Guest author Sophia Jansson – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67434/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67997",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494584,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T10:13:37.191432Z",
                    "last_modified_time": "2026-01-21T10:13:37.191449Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784297.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494584/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-01-21T10:13:37.001148Z",
            "last_modified_time": "2026-03-20T01:13:15.004107Z",
            "date_published": null,
            "start_time": "2026-02-22T15: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 kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.",
                "sv": "Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).",
                "en": "Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible)."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/96E3A5002D3BA3C38C9F265A0CCEACBA/Nakyvat_nakymattomat_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/96E3A5002D3BA3C38C9F265A0CCEACBA/Nakyvat_nakymattomat_De_synliga_de_osynliga_",
                "en": "http://www.stoa.fi/en/events/event/96E3A5002D3BA3C38C9F265A0CCEACBA/Nakyvat_nakymattomat_The_Visible_the_Invisible_"
            },
            "description": {
                "fi": "<p>Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.</p><p>Immersiivisyydellä tarkoitetaan, että yleisö saa kulkea teoksen sisällä, sekä valita mitä osia teoksesta haluaa kokea.</p><p>’Näkyvät, näkymättömät’ on Helsingin kaupungin nuorisopalvelujen tuottama ja toteuttama esitys, jonka työryhmään kuuluu nuoria helsinkiläisiä.</p><p>Ohjaajan sana: <br>Aina kun erilaiset ihmiset kohtaavat ja löytävät yhteyden, rakennamme yhteistä maailmaa ja parannamme ymmärrystä. <br>Halusimme tuoda yhteen helsinkiläisiä nuoria ja nuorten ryhmiä ja valmistaa yhdessä immersiivinen teoksen inspiroitumalla toisistamme.</p><p>Keräsimme materiaalia ryhmä- ja prosessilähtöisesti. Lähdimme synnyttämään uutta tietämättä, mitä on luvassa ja saimme paljon enemmän, kuin osasimme ikinä odottaakaan. Nuorten tekijöiden ryhmä työskenteli sitoutuen ja taitavasti toisiaan ja teemaa kuunnellen. On ollut ilo seurata, kuinka he ovat avanneet itsensä teokselle ja teemalle. Ryhmän kanssa työskentely on ollut täynnä lämpöä, ymmärrystä ja rehellistä luottamuksen ilmapiiriä.</p><p>Monitaiteinen yhteistyö on rikastuttanut ja mahdollistanut moninäkökulmaisen aiheen tutkimisen sekä ilmaisun muodot. <br>Olemme mielettömän vaikuttuneita lopputuloksesta ja olemme iloisia, että juuri sinä pääset kokemaan teoksen Näkyvät, näkymättömät.<br> <br>Lämpimästi tervetuloa <br>Ohjaajat Serafiina Minerva ja Marjaana Veikkanen</p><p>Esitysajat: <br> Pe 20.2. klo 17:00 ja 19:00 <br>La 21.2. klo 15:00 ja 17:00 <br>Su 22.2. klo 15:00 ja 17:00 <br>Saavuthan ajoissa paikalle, emme voi valitettavasti ottaa myöhästyneitä sisään.</p><p>Kesto on n.  1 h (ei väliaikaa)  <br>Suositusikäraja 12+.</p><p>Esitystila on osittain esteellinen. <br>Osallistuminen ei vaadi suomen kielen taitoa. <br>Esitys on pääsymaksuton. <br> <br>HUOM: Esitykseen pääsee vain etukäteen varatulla lipulla. Lippujen varaus: tiivistamo@hel.fi <br> <br>Esityksen ohjaus: Marjaana Veikkanen ja Serafiina Minerva <br>Valosuunnittelu: Jarkko Tuominen, Jaakko Ylimäki, Valo Melvas <br>Äänisuunnittelu: Tomas Lamas, Onni Palander, Nooa Ojala <br>Digitaide: Mikko Röman <br>Projisoinnit: Jarkko Tuominen ja työryhmä <br>Lavastus: Yö Heinänen <br>Puvustus: Työryhmä <br>Naamiotaide: Tytti Punkka ja Shadan Mahmud <br>Julisteen kuvat: Satu Lehtinen <br>Tuottajat: Tiina Toivonen ja Janne Friman <br>Esiintyjät: Sanni Marttinen, Aamos Lindeman, Karlo Korhonen, Mars Häkkinen, Mette Sarlin, Olga Reinistö, Yö Heinänen, Shadan Mahmud, Valma Merimaa, Viktor Viiriäinen, Saimi Alatalo <br>Avustavat esiintyjät: Narrin teatteritoiminnan ryhmäläisiä <br>Oppaat: Laura Toikander, Samuli Mäkisalo, Tanja Männistö, Marjaana Veikkanen ja Serafiina Minerva <br> <br>Kiitokset: Antti Sarpo ja Stoan henkilökunta, Helsingin työväenopisto, Essi Ndiaye, Mia Vainikainen, Narrin teatteritoiminta ystävät, läheiset ja kaikki apunsa ja tukensa produktiolle antaneet.</p>",
                "sv": "<p>Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).</p><p>Föreställningen är en experimentell upptäcktsresa i avskildhet och samhörighet. Den mångkonstnärliga föreställningen kombinerar olika former av utövande konst och improvisation, ljus- och ljudkonst, scenografikonst samt digital konst som utnyttjar artificiell intelligens.</p><p>Att verket är immersivt innebär i denna föreställning att publiken får röra sig inne i verket, påverka händelseförloppet samt bestämma vilka delar av verket de vill uppleva. Du får själv bestämma hur du vill delta och har rätt att hela tiden fastställa dina egna gränser. <br>I början av föreställningen får du säkerhetsanvisningar. På platsen finns guider och du kan vid behov kontakta dem i frågor som gäller föreställningen.</p><p>Vänligen kom i tid, vi kan tyvärr inte släppa in personer som kommer för sent.</p><p>Föreställningstider:<br>Fre. 20.2 kl. 17.00 och 19.00<br>Lör. 21.2 kl. 15.00 och 17.00<br>Sön. 22.2 kl. 15.00 och 17.00<br> <br>Föreställningen är cirka en timme lång (ingen paus). <br>Åldersrekommendation 12+. <br>Föreställningslokalen är inte helt tillgänglig. <br>Du behöver inte tala finska för att delta.</p><p>Föreställningen är avgiftsfri.<br>Deltagande i föreställningen förutsätter en på förhand bokad biljett. Boka din biljett via e-post: tiivistamo@hel.fi. <br>OBS: Avboka din plats om du inte kan komma: tiivistamo@hel.fi.<br> <br>Helsingfors ungdomstjänster producerar och genomför föreställningen. I arbetsgruppen ingår unga Helsingforsbor.</p>",
                "en": "<p>Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible).</p><p>The performance is an experimental exploration of separateness and belonging. The multi-artistic performance combines various forms of performing arts and improvisation, light and sound art, stage art and digital art that utilises AI.</p><p>In the context of this work, immersiveness means that the audience is allowed to move within the work, influence the course of events and determine which parts of the work they want to experience. You are free to decide the level of your participation and you have the right to set your own limits at any moment. <br>At the beginning of the performance, you will be briefed on safety instructions. The performance includes guides whom you can turn to if you have any questions about the performance.</p><p>Please arrive on time, as unfortunately we cannot admit late arrivals.</p><p>Performance times:<br>Fri 20 February at 17.00 and 19.00<br>Sat 21 February at 15.00 and 17.00<br>Sun 22 February at 15.00 and 17.00<br> <br>The duration is approx. 1 hour (without intermission). <br>Age recommendation 12+. <br>The performance space is not fully accessible. <br>Participation does not require Finnish language skills.</p><p>The performance is free of charge.<br>The performance is only accessible with a pre-booked ticket. Book your ticket by email: tiivistamo@hel.fi. <br>PLEASE NOTE! If you cannot make it, please cancel your ticket: tiivistamo@hel.fi.<br> <br>The performance is produced and performed by Helsinki Youth Services. Its working group includes young Helsinki residents.</p>"
            },
            "name": {
                "fi": "Näkyvät, näkymättömät",
                "sv": "Näkyvät, näkymättömät (De synliga, de osynliga)",
                "en": "Näkyvät, näkymättömät (The Visible, the Invisible)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67997/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67996",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494583,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T10:13:36.548808Z",
                    "last_modified_time": "2026-01-21T10:13:36.548826Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784296.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494583/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-01-21T10:13:36.350671Z",
            "last_modified_time": "2026-03-20T01:13:14.815656Z",
            "date_published": null,
            "start_time": "2026-02-22T13: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 kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.",
                "sv": "Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga.",
                "en": "Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible)."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/821F56D5EC1B26D43B79F1382443A546/Nakyvat_nakymattomat_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/821F56D5EC1B26D43B79F1382443A546/Nakyvat_nakymattomat_De_synliga_de_osynliga_",
                "en": "http://www.stoa.fi/en/events/event/821F56D5EC1B26D43B79F1382443A546/_Nakyvat_nakymattomat_The_Visible_the_Invisible_"
            },
            "description": {
                "fi": "<p>Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.</p><p>Immersiivisyydellä tarkoitetaan, että yleisö saa kulkea teoksen sisällä, sekä valita mitä osia teoksesta haluaa kokea.</p><p>’Näkyvät, näkymättömät’ on Helsingin kaupungin nuorisopalvelujen tuottama ja toteuttama esitys, jonka työryhmään kuuluu nuoria helsinkiläisiä.</p><p>Ohjaajan sana: <br>Aina kun erilaiset ihmiset kohtaavat ja löytävät yhteyden, rakennamme yhteistä maailmaa ja parannamme ymmärrystä. <br>Halusimme tuoda yhteen helsinkiläisiä nuoria ja nuorten ryhmiä ja valmistaa yhdessä immersiivinen teoksen inspiroitumalla toisistamme.</p><p>Keräsimme materiaalia ryhmä- ja prosessilähtöisesti. Lähdimme synnyttämään uutta tietämättä, mitä on luvassa ja saimme paljon enemmän, kuin osasimme ikinä odottaakaan. Nuorten tekijöiden ryhmä työskenteli sitoutuen ja taitavasti toisiaan ja teemaa kuunnellen. On ollut ilo seurata, kuinka he ovat avanneet itsensä teokselle ja teemalle. Ryhmän kanssa työskentely on ollut täynnä lämpöä, ymmärrystä ja rehellistä luottamuksen ilmapiiriä.</p><p>Monitaiteinen yhteistyö on rikastuttanut ja mahdollistanut moninäkökulmaisen aiheen tutkimisen sekä ilmaisun muodot. <br>Olemme mielettömän vaikuttuneita lopputuloksesta ja olemme iloisia, että juuri sinä pääset kokemaan teoksen Näkyvät, näkymättömät.</p><p>Lämpimästi tervetuloa <br>Ohjaajat Serafiina Minerva ja Marjaana Veikkanen</p><p>Esitysajat: <br> Pe 20.2. klo 17:00 ja 19:00 <br>La 21.2. klo 15:00 ja 17:00 <br>Su 22.2. klo 15:00 ja 17:00 <br>Saavuthan ajoissa paikalle, emme voi valitettavasti ottaa myöhästyneitä sisään.</p><p>Kesto on n.  1 h (ei väliaikaa)  <br>Suositusikäraja 12+.</p><p>Esitystila on osittain esteellinen. <br>Osallistuminen ei vaadi suomen kielen taitoa. <br>Esitys on pääsymaksuton. <br> <br>HUOM: Esitykseen pääsee vain etukäteen varatulla lipulla. Lippujen varaus: tiivistamo@hel.fi <br> <br>Esityksen ohjaus: Marjaana Veikkanen ja Serafiina Minerva <br>Valosuunnittelu: Jarkko Tuominen, Jaakko Ylimäki, Valo Melvas <br>Äänisuunnittelu: Tomas Lamas, Onni Palander, Nooa Ojala <br>Digitaide: Mikko Röman <br>Projisoinnit: Jarkko Tuominen ja työryhmä <br>Lavastus: Yö Heinänen <br>Puvustus: Työryhmä <br>Naamiotaide: Tytti Punkka ja Shadan Mahmud <br>Julisteen kuvat: Satu Lehtinen <br>Tuottajat: Tiina Toivonen ja Janne Friman <br>Esiintyjät: Sanni Marttinen, Aamos Lindeman, Karlo Korhonen, Mars Häkkinen, Mette Sarlin, Olga Reinistö, Yö Heinänen, Shadan Mahmud, Valma Merimaa, Viktor Viiriäinen, Saimi Alatalo <br>Avustavat esiintyjät: Narrin teatteritoiminnan ryhmäläisiä <br>Oppaat: Laura Toikander, Samuli Mäkisalo, Tanja Männistö, Marjaana Veikkanen ja Serafiina Minerva <br> <br>Kiitokset: Antti Sarpo ja Stoan henkilökunta, Helsingin työväenopisto, Essi Ndiaye, Mia Vainikainen, Narrin teatteritoiminta ystävät, läheiset ja kaikki apunsa ja tukensa produktiolle antaneet.</p>",
                "sv": "<p>Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga.</p><p>Föreställningen är en experimentell upptäcktsresa i avskildhet och samhörighet. Den mångkonstnärliga föreställningen kombinerar olika former av utövande konst och improvisation, ljus- och ljudkonst, scenografikonst samt digital konst som utnyttjar artificiell intelligens.</p><p>Att verket är immersivt innebär i denna föreställning att publiken får röra sig inne i verket, påverka händelseförloppet samt bestämma vilka delar av verket de vill uppleva. Du får själv bestämma hur du vill delta och har rätt att hela tiden fastställa dina egna gränser. <br>I början av föreställningen får du säkerhetsanvisningar. På platsen finns guider och du kan vid behov kontakta dem i frågor som gäller föreställningen.</p><p>Vänligen kom i tid, vi kan tyvärr inte släppa in personer som kommer för sent.<br>Föreställningstider:<br>Fre. 20.2 kl. 17.00 och 19.00<br>Lör. 21.2 kl. 15.00 och 17.00<br>Sön. 22.2 kl. 15.00 och 17.00<br> <br>Föreställningen är cirka en timme lång (ingen paus). <br>Åldersrekommendation 12+.</p><p>Föreställningslokalen är inte helt tillgänglig. <br>Du behöver inte tala finska för att delta.</p><p>Föreställningen är avgiftsfri.<br>Deltagande i föreställningen förutsätter en på förhand bokad biljett. Boka din biljett via e-post: tiivistamo@hel.fi. <br>OBS: Avboka din plats om du inte kan komma: tiivistamo@hel.fi.</p><p>Helsingfors ungdomstjänster producerar och genomför föreställningen. I arbetsgruppen ingår unga Helsingforsbor.</p>",
                "en": "<p>Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible).</p><p>The performance is an experimental exploration of separateness and belonging. The multi-artistic performance combines various forms of performing arts and improvisation, light and sound art, stage art and digital art that utilises AI.</p><p>In the context of this work, immersiveness means that the audience is allowed to move within the work, influence the course of events and determine which parts of the work they want to experience. You are free to decide the level of your participation and you have the right to set your own limits at any moment.</p><p>At the beginning of the performance, you will be briefed on safety instructions. The performance includes guides whom you can turn to if you have any questions about the performance.</p><p>Please arrive on time, as unfortunately we cannot admit late arrivals.</p><p>Performance times:<br>Fri 20 February at 17.00 and 19.00<br>Sat 21 February at 15.00 and 17.00<br>Sun 22 February at 15.00 and 17.00<br> <br>The duration is approx. 1 hour (without intermission). <br>Age recommendation 12+. <br>The performance space is not fully accessible. <br>Participation does not require Finnish language skills.</p><p>The performance is free of charge.<br>The performance is only accessible with a pre-booked ticket. Book your ticket by email: tiivistamo@hel.fi.</p><p>PLEASE NOTE! If you cannot make it, please cancel your ticket: tiivistamo@hel.fi.</p><p>The performance is produced and performed by Helsinki Youth Services. Its working group includes young Helsinki residents.</p>"
            },
            "name": {
                "fi": "Näkyvät, näkymättömät",
                "sv": "Näkyvät, näkymättömät (De synliga, de osynliga)",
                "en": "Näkyvät, näkymättömät (The Visible, the Invisible)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67996/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}