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

{
    "meta": {
        "count": 22852,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=65",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=63"
    },
    "data": [
        {
            "id": "kulke:67268",
            "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: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494423,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T09:12:59.604498Z",
                    "last_modified_time": "2026-01-09T09:12:59.604512Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780794.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494423/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T09:12:59.426644Z",
            "last_modified_time": "2026-03-30T09:13:50.808483Z",
            "date_published": null,
            "start_time": "2026-03-30T14: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_",
                "en": "http://www.kanneltalo.fi/en/events/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_"
            },
            "name": {
                "fi": "Kino Kuutamo: Barbie (13) – Maksuttomat maanantait",
                "sv": "Kino Kuutamo: Barbie (13) – Avgiftsfria måndagar",
                "en": "Kino Kuutamo: Barbie (13) – Free Mondays"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kevätkauden Kino Kuutamoissa nähdään yleisön ehdotuksista valitut kolme elokuvaa.</p><p>Sarjan toisena osana nähdään Greta Gerwigin ohjaama Barbie-elokuva vuodelta 2023. Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Elokuvan ilmaisnäytös alkaa klo 18.</p><p>Barbie<br>Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.<br>Barbie on vuonna 2023 ensi-iltansa saanut yhdysvaltalainen satiirinen fantasia-ja komediaelokuva, jonka on ohjannut Greta Gerwig.</p><p>Se on ensimmäinen Barbie-nukkeen perustuva näytelty elokuva. Elokuvassa Barbie (Margot Robbie) ja Ken (Ryan Gosling) kohtaavat eksistentiaalisen kriisin, joka saa heidät kyseenalaistamaan itsensä ja maailmansa.</p><p>”Valtavasti hehkutettu Barbie-elokuva vastaa suuriin odotuksiin ja jopa yllättää.”</p><p>HS Leena Virtanen ★★★★</p><p>Kesto: 1 t 54 min<br>Ikäraja: K13. 12-18-vuotiaille varataan 20 paikkaa Pulssitoiminnan kautta. Muuten kuin Pulssitoiminnan kautta tulevat alle 18-vuotiaat elokuvaan vain huoltajan seurassa. Tulethan ajoissa, näytös alkaa täsmällisesti eikä myöhästyneitä oteta saliin näytännön aikana. Ei leffaherkkuja saliin.<br>Ohjaaja: Greta Gerwig<br>Pääosissa: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Ensi-ilta: 21.7.2023</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Under vårsäsongen på Kino Kuutamo visas tre filmer som valts ut bland publikens nomineringar.</p><p>Den andra delen av serien blir Barbie-filmen från 2023, i regi av Greta Gerwig. FD Harri Kilpi, expert på filmhistoria, ger en inledning till filmen kl. 17–17.45. Gratisvisningen av filmen börjar kl. 18.</p><p>Barbie<br>Livet i Barbieland är perfekt. Såvida du inte har en existentiell kris. Eller om du är Ken.<br>Barbie är en amerikansk satirisk fantasy- och komedifilm som hade premiär 2023 och är regisserad av Greta Gerwig.</p><p>Den är den första spelfilmen som baserar sig på Barbiedockan. I filmen ställs <br>Barbie (Margot Robbie) och Ken (Ryan Gosling) inför en existentiell kris, som får dem att ifrågasätta sig själva och världen.</p><p>”Den enormt hypade Barbie-filmen lever upp till de höga förväntningarna och överraskar till och med.”</p><p>HS Leena Virtanen ★★★★</p><p>Längd: 1 h 54 min.<br>Åldersgräns: 13 år<br>Regi: Greta Gerwig<br>I huvudrollerna: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Premiär: 21.7.2023</p><p>Fritt inträde</p>",
                "en": "<p>The spring season at Kino Kuutamo will feature three films selected from suggestions submitted by the public.</p><p>The second part of the series will be Barbie from 2023, directed by Greta Gerwig. Film historian Harri Kilpi, PhD, will introduce the evening's film from 17.00 to 17.45. The free screening will begin at 18.00.</p><p>Barbie<br>Life in Barbieland is perfect. Unless you have an existential crisis. Or if you are Ken.<br>Barbie, premiered in 2023, is an American satirical fantasy and comedy film, directed by Greta Gerwig.</p><p>It is the first live-action film based on the Barbie doll. In the film Barbie (Margot Robbie) and Ken (Ryan Gosling) encounter an existential crisis that causes them to question themselves and their world.</p><p>\"The hugely hyped Barbie film lives up to high expectations and even surprises.\"</p><p>HS Leena Virtanen ★★★★</p><p>Duration: 1 hour 54 min<br>Age limit: 13 and older<br>Director: Greta Gerwig<br>Leads: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Premiere: 21 July 2023</p><p>Free entry</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Kevätkauden Kino Kuutamoissa nähdään yleisön ehdotuksista valitut kolme elokuvaa.",
                "sv": "Under vårsäsongen på Kino Kuutamo visas tre filmer som valts ut bland publikens nomineringar.",
                "en": "The spring season at Kino Kuutamo will feature three films selected from suggestions submitted by the public."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67268/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67815",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1710077,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:05.181126Z",
                    "last_modified_time": "2026-03-23T07:13:05.181140Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782928.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-03-23T07:13:05.074298Z",
            "last_modified_time": "2026-03-30T07:13:21.298281Z",
            "date_published": null,
            "start_time": "2026-05-28T07: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut",
                "en": "http://www.stoa.fi/en/events/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67815/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67814",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1710076,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:04.816624Z",
                    "last_modified_time": "2026-03-23T07:13:04.816639Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782927.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710076/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-03-23T07:13:04.684671Z",
            "last_modified_time": "2026-03-30T07:13:21.124224Z",
            "date_published": null,
            "start_time": "2026-05-28T06: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut",
                "en": "http://www.stoa.fi/en/events/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67814/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67813",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1710074,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:03.162794Z",
                    "last_modified_time": "2026-03-23T07:13:03.162809Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782925.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710074/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-03-23T07:13:03.049479Z",
            "last_modified_time": "2026-03-30T07:13:20.004794Z",
            "date_published": null,
            "start_time": "2026-05-21T07: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_",
                "en": "http://www.stoa.fi/en/events/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk. <br>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67813/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67812",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1710073,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:02.752322Z",
                    "last_modified_time": "2026-03-23T07:13:02.752340Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782924.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710073/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-03-23T07:13:02.629024Z",
            "last_modified_time": "2026-03-30T07:13:19.788191Z",
            "date_published": null,
            "start_time": "2026-05-21T06: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut_",
                "en": "http://www.stoa.fi/en/events/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana.</p><p>Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.</p><p>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi</p><p>Vapaa pääsy</p><p>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch<br>13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen.</p><p>Den pålitliga utflyktsgitarren följer med.<br>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt. <br>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar</p><p>Längd: ca 45 min.<br>Språk: finska     <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67812/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhuo3q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824163,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-21T10:05:14.676069Z",
                    "last_modified_time": "2026-03-21T10:05:14.676085Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/72994fee-f29c-401d-b20a-5306cd3a5a5d.png",
                    "name": "",
                    "cropping": "162,0,520,357",
                    "photographer_name": "",
                    "alt_text": "Teksti: Hei äiti! Oletko hoitovapaalla ilman työ- tai opiskelupaikkaa? Osallistu ilmaiseen uravalmennukseen!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824163/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-03-27T10:18:30.975658Z",
            "last_modified_time": "2026-03-27T12:29:49.475168Z",
            "date_published": null,
            "start_time": "2026-04-02T07:00:00Z",
            "end_time": "2026-04-02T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "name": {
                "fi": "Uravalmennusta hoitovapaalla oleville äideille"
            },
            "location_extra_info": {
                "fi": "Lastenmaa"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Hei, äiti! Oletko hoitovapaalla ilman työ- tai opiskelupaikkaa? Osallistu ilmaiseen uravalmennukseen!&nbsp;</p><p>Olemme Sellon kirjastossa kertomassa lisätietoja koulutuksesta keskiviikkona 1.4. kello 10-12 pop up pisteellä Lastenmaassa.</p><p>Koulutuksessa saat oman valmentajan, joka auttaa sinua eteenpäin. Yhdessä voitte esimerkiksi</p><p>päivittää ansioluettelosi harjoitella työhaastatteluun tai selvittää, miten pääset opiskelemaan.&nbsp;</p><p>Valmennus on äideille,&nbsp;jotka ovat hoitaneet lastaan Kelan kotihoidon tuella vähintään kuusi kuukautta ja joilla ei ole työpaikkaa tai opiskelupaikkaa.&nbsp;</p><p>Valmennus kestää kuusi kuukautta.&nbsp;</p><p>Voit ottaa lapsesi mukaan tapaamisiin.&nbsp;</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Uravalmennusta äideille ilman työ- tai opiskelupaikkaa. "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhuo3q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68134",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4096706"
                    },
                    "price": {
                        "fi": "36,90-39,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1750684,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-27T12:13:11.310550Z",
                    "last_modified_time": "2026-03-27T12:13:11.310567Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785697.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1750684/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-27T12:13:11.209982Z",
            "last_modified_time": "2026-03-27T12:13:11.610638Z",
            "date_published": null,
            "start_time": "2026-11-24T17: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1E8670DB3113CC6CAE7C814145AAAFAB/Jazzjoulu_2026_"
            },
            "name": {
                "fi": "Jazzjoulu 2026!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Suomi-jazzin ykköstähdet samalla lavalla!</p><p>Viime jouluna suuren suosion saavuttanut Jazzjoulu-konsertti soi lämpöä ja riemua, kun maamme eturivin jazzmuusikot kokoontuvat yhteen tunnelmalliseen Savoy-teatteriin suuren perheen lailla. Varsinaista jouluherkkua on todellakin luvassa näiden mestareiden leipoessa tutut kotimaiset ja ulkomaiset klassikot yleisön nautittaviksi jazzin maustein.</p><p>Kuulijat saavat koskettavan ja hauskan kimaran rakastettuja sävelmiä, kun ilmoille kajahtavat mm. Rekiretki, Valkea Joulu ja Jouluyö, juhlayö. Näin loisteliasta All Stars -kattausta on harvoin tarjolla!<br> <br>Kokoonpano:<br><b>Jukka Perko</b>, saksofoni<br><b>Verneri Pohjola</b>, trumpetti<br><b>Linda Fredriksson</b>, saksofoni<br><b>Timo Lassy</b>, saksofoni<br><b>Jay Kortehisto</b>, pasuuna ja laulu<br><b>Tuomo Prättälä</b>, piano ja laulu<br><b>Johanna Försti</b>, viulu ja laulu<br><b>Eero Seppä</b>, basso<br><b>Teppo Mäkynen</b>, rummut</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider": {
                "fi": "Raitala Music Oy"
            },
            "short_description": {
                "fi": "Suomi-jazzin ykköstähdet samalla lavalla!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68134/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhupi4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824164,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-25T12:21:57.219660Z",
                    "last_modified_time": "2026-03-25T12:21:57.219673Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ec09a286-eeec-476a-982c-40b9b85a9b7f.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Sähkökitara ja piano sekä teksti: Combo Continental",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-27T10:20:28.098178Z",
            "last_modified_time": "2026-03-27T10:20:28.098195Z",
            "date_published": null,
            "start_time": "2026-04-24T11:00:00Z",
            "end_time": "2026-04-24T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "name": {
                "fi": "Combo Continental - konsertti",
                "sv": "Combo Continental – konsert",
                "en": "Combo Continental – concert "
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ohjelmassa Pertti Taivaisen instrumentaali-sävellyksiä, sekä jazz-viihdemusiikkia.&nbsp;</p><p><br></p><p><br></p><p><br></p>",
                "sv": "<p>Programmet innehåller instrumentalkompositioner av Pertti Taivainen samt jazz- och underhållningsmusik.</p>",
                "en": "<p>The programme includes instrumental compositions by Pertti Taivainen, as well as jazz and light entertainment music.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Ohjelmassa Pertti Taivaisen instrumentaali-sävellyksiä, sekä jazz-viihdemusiikkia. ",
                "sv": "Programmet innehåller instrumentalkompositioner av Pertti Taivainen samt jazz- och underhållningsmusik.",
                "en": "The programme includes instrumental compositions by Pertti Taivainen, as well as jazz and light entertainment music."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhupi4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhust4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhupxq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhuqqa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhurf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhur3e/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-27T09:48:50.170910Z",
            "last_modified_time": "2026-03-27T09:48:50.170926Z",
            "date_published": null,
            "start_time": "2026-03-31T09:00:00Z",
            "end_time": "2026-05-12T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuustiistait",
                "sv": " Vuxnas litteraturkunskap",
                "en": "Literature Tuesdays for adults"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p>17.3.&nbsp;Aikuisten satuhetki</p><p>31.3.&nbsp;Kirjavinkkausta&nbsp;( historiallinen&nbsp;viihde)&nbsp;</p><p>14.4.&nbsp;Kirjavinkkausta</p><p>28.4.&nbsp;Kirjavinkkausta</p><p>12.5.&nbsp;Aikuisten satuhetki</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur varje tisdag kl. 12.00–13.00.</p><p><br></p><p>Datum och teman:</p><p>17.3. Sagostund för vuxna</p><p>31.3.: Boktips (historisk underhållning)</p><p>14.4. : Boktips</p><p>28.4. : Boktips</p><p>12.5. : Sagostund för vuxna</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and enjoy literature with us every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>March 17: Story time for adults</p><p>March 31: Book recommendations (historical entertainment)</p><p>April 14: Book recommendations</p><p>April 28: Book recommendations</p><p>May 12: Story time for adults</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden pariin joka toinen tiistai klo 12-13.",
                "sv": "Kom och njut av litteratur varje andra tisdag kl. 12.00–13.00!",
                "en": "Come and enjoy literature with us every second Tuesday from 12:00 to 13:00!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhust4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67717",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/flamencon-ilta-katja-lunden-kanneltalo-20974991/",
                        "sv": "https://www.lippu.fi/event/flamencon-ilta-katja-lunden-kanneltalo-20974991/",
                        "en": "https://www.lippu.fi/event/flamencon-ilta-katja-lunden-kanneltalo-20974991/"
                    },
                    "price": {
                        "fi": "24,50 € / 19,50 €",
                        "sv": "24,50 € / 19,50 €",
                        "en": "24,50 € / 19,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494825,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-10T08:12:09.697445Z",
                    "last_modified_time": "2026-02-10T08:12:09.697461Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782579.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494825/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-10T08:12:09.623164Z",
            "last_modified_time": "2026-03-27T09:13:20.997748Z",
            "date_published": null,
            "start_time": "2026-05-22T16: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6F1C01764CCF21609F42B7BA02634BB9/Katja_Lund_n_Company_Flamencon_ilta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6F1C01764CCF21609F42B7BA02634BB9/Katja_Lund_n_Company_Flamencokvall",
                "en": "http://www.kanneltalo.fi/en/events/event/6F1C01764CCF21609F42B7BA02634BB9/Katja_Lund_n_Company_Flamenco_evening"
            },
            "name": {
                "fi": "Katja Lundén Company: Flamencon ilta",
                "sv": "Katja Lundén Company: Flamencokväll",
                "en": "Katja Lundén Company: Flamenco evening"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Flamencon illassa monisävyistä ja sielukasta flamencoa tulkitsevat pohjoismaisen flamencon kärkeen kuuluvan Katja Lundénin edistyneet oppilaat.</p><p>Tanssia säestävät flamencomusiikin helmet kitaristi Joonas Widenius ja laulaja Taija Robalta. <br> <br>Mukana illassa loistavat myös Blue Flamenco -koulun kehitysvammaiset oppilaat. <br> <br>Kesto: 1 t 15 min</p>",
                "sv": "<p>I flamencokvällen tolkas den nyanserade och själfulla flamencon av längre hunna elever till Katja Lundén, som hör till de bästa flamencodansarna i Norden.</p><p>Dansen ackompanjeras av flamencomusikstjärnorna Joonas Widenius på gitarr och sångerskan Taija Robalta. <br> <br>Även elever med intellektuell funktionsnedsättning från dansskolan Blue Flamenco deltar.</p>",
                "en": "<p>The flamenco evening will feature soulful multiform flamenco interpreted by advanced students of Katja Lundén, who is one of the top names in Nordic flamenco.</p><p>The dance will be accompanied by flamenco music stars Joonas Widenius on guitar and singer Taija Robalta. <br> <br>The amazing disabled students of the Blue Flamenco school will also showcase their skills.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Flamencon illassa monisävyistä ja sielukasta flamencoa tulkitsevat pohjoismaisen flamencon kärkeen kuuluvan Katja Lundénin edistyneet oppilaat.",
                "sv": "I flamencokvällen tolkas den nyanserade och själfulla flamencon av längre hunna elever till Katja Lundén, som hör till de bästa flamencodansarna i Norden.",
                "en": "The flamenco evening will feature soulful multiform flamenco interpreted by advanced students of Katja Lundén, who is one of the top names in Nordic flamenco."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67717/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn4cngyjm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494491,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-07T14:04:26.689658Z",
                    "last_modified_time": "2025-03-07T14:04:26.689674Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/d02afac2-fead-4935-bcf3-647c68a10749.jpg",
                    "name": "",
                    "cropping": "0,76,750,826",
                    "photographer_name": "",
                    "alt_text": "HoivaPelimannit Maria Kalaniemi ja Elina Leskelä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494491/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-15T09:51:42.731364Z",
            "last_modified_time": "2026-03-27T07:50:07.031707Z",
            "date_published": null,
            "start_time": "2026-03-30T15:00:00Z",
            "end_time": "2026-03-30T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "name": {
                "fi": "Juurijuhla - HoivaPelimannit Maria Kalaniemi ja Elina Leskelä sekä Teppo Kröger",
                "sv": "VårdSpelmän Maria Kalaniemi ja Elina Leskelä med Teppo Kröger",
                "en": "HoivaPelimannit Maria Kalaniemi ja Elina Leskelä with Teppo Kröger"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>HoivaPelimannit Maria Kalaniemi ja Elina Leskelä&nbsp;kertovat kokemuksistaan ja&nbsp;kohtaamisista muistisairaiden ikäihmisten kanssa sekä tarjoavat sykähdyttävän kesäkimpun suosikkisävelmiä muistojemme bulevardeilta – kauniit ja herkät valssit, tuliset tangot sekä repäisevät polkat Metsäkukista Satumaan kautta Säkkijärven polkkaan kuullaan paljasjalkaisten espoolaisten harmonikkataitureiden soittamana.</p><p><br></p><p>HoivaPelimannit Maria Kalaniemi ja Elina Leskelä&nbsp;kertovat kokemuksistaan ja&nbsp;kohtaamisista muistisairaiden ikäihmisten kanssa sekä tarjoavat sykähdyttävän kesäkimpun suosikkisävelmiä muistojemme bulevardeilta – kauniit ja herkät valssit, tuliset tangot sekä repäisevät polkat Metsäkukista Satumaan kautta Säkkijärven polkkaan kuullaan paljasjalkaisten espoolaisten harmonikkataitureiden soittamana.</p><p>Mukaan on saatu asiantuntijaksi myös Jyväskylän yliopiston yhteiskuntapolitiikan professori Teppo Kröger, joka on tutkinut hoivapalveluja yli 30 vuoden ajan.&nbsp;</p><p>Vapaa pääsy</p>",
                "sv": "<p>Vård Spelmann Maria Kalaniemi och Elina Leskelä berättar om sina erfarenheter och möten med äldre med minnesproblem och bjuder på en uppiggande sommarbukett av favoritmelodier från minnenas boulevarder - vackra och skira valser, eldiga tangos och riviga polkor.</p>",
                "en": "<p>HoivaPelimanns Maria Kalaniemi and Elina Leskelä will talk about their experiences and encounters with elderly people with memory problems and offer a stirring bouquet of favourite summer tunes from the boulevards of our memories - beautiful and delicate waltzes, fiery tangos and ripping polkas.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Kertovat kokemuksista ja kohtaamisista muistisairaiden ikäihmisten kanssa sekä tarjoavat sykähdyttävän kesäkimpun suosikkisävelmiä. ",
                "sv": "De berättar om sina erfarenheter och möten med äldre personer med minnesproblem och bjuder på en uppiggande sommarbukett av favoritlåtar. ",
                "en": "They tell of their experiences and encounters with older people with memory problems, and offer a rousing summer bouquet of favourite tunes. "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4cngyjm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68335",
            "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": {
                        "fi": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/"
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1748665,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-27T07:13:56.979376Z",
                    "last_modified_time": "2026-03-27T07:13:56.979392Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787736.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1748665/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-27T07:13:56.859274Z",
            "last_modified_time": "2026-03-27T07:13:57.113540Z",
            "date_published": null,
            "start_time": "2026-05-20T15:00:00Z",
            "end_time": "2026-05-20T16:40: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/35234A4ADC77831A7C43D9A2C05D958F/The_Dance_Club_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/35234A4ADC77831A7C43D9A2C05D958F/The_Dance_Club_12_",
                "en": "http://www.vuotalo.fi/en/events/event/35234A4ADC77831A7C43D9A2C05D958F/The_Dance_Club_12_"
            },
            "name": {
                "fi": "The Dance Club (12) – Onsdagsbio",
                "sv": "The Dance Club (12) – Onsdagsbio",
                "en": "The Dance Club (12) – Onsdagsbio"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Miksi niin monet voivat huonosti, vaikka meillä voisi olla niin hyvin? Psykiatrisella vastaanotolla Carella voitto asetetaan hyvinvoinnin edelle, ja mitä enemmän diagnooseja, sitä suurempi tuotto.</p><p>Psykologian opiskelija Johannes ei sovi lainkaan harjoittelupaikkaansa Careen, mutta pian hän tapaa potilaat: Rosen, jolla on intiimialueeseen liittyviä ongelmia, kiinteistönvälittäjä Markuksen, joka itkee esittelyissä, Emilyn, jota tutkitaan ADHD:n varalta, sekä performanssitaiteilija Rakelin, joka vastaa henkilökohtaisiin vääryyksiin tanssin avulla. Yhdessä he muodostavat oudon ryhmän – The Dance Clubin – jossa he tutkivat, löytyisikö diagnoosien ja lääkkeiden lisäksi muitakin keinoja lievittää pinnan alla kuplivaa kipua.</p><p>Käsikirjoituksesta ja ohjauksesta vastaa Lisa Langseth. Rooleissa nähdään Alva Bratt, Nils Wetterholm, Evelyn Mok, Matias Varela, Julia Franzén sekä Pernilla August.</p><p>GENRE Komedia<br>KOHDEYRHMÄ ruotsinkielisen aikuiset, K-12<br>PAIKKA Vuosali<br>KIELI ruotsi, ei tekstitystä</p>",
                "sv": "<p>Varför mår så många dåligt när vi kan ha det så bra? På psykiatrimottagningen Care prioriteras vinst över välmående och flest diagnoser ger störst utdelning. Psykologistudenten Johannes passar inte alls in på sin praktikplats Care, men snart träffar han patienterna Rose som har problem med snippan, mäklaren Markus som gråter på visningar, Emily som utreds för ADHD och så performancekonstnären Rakel som slår tillbaka mot personliga orättvisor med dans. Tillsammans bildar de en udda grupp - The Dance Club, där de utforskar om det finns andra botemedel än diagnoser och tabletter för att lindra smärtan som bubblar under ytan.</p><p>Lisa Langseth står för manus och regi. I rollerna ser vi Alva Bratt, Nils Wetterholm, Evelyn Mok, Matias Varela, Julia Franzén samt Pernilla August.</p><p>\"en snärtig och träffsäker kritik mot vår absurda samtid\" SDS<br> \"Det finns ingenting subtilt med filmen (...) Samtidigt vilar det ett slags klarsynt renhet över den\" SvD<br> \"en riktigt ojämn film, men långtråkig är den inte\" SVT</p><p>GENRE Komedi<br>MÅLGRUPP Svenskspråkiga vuxna, åldersgräns F12<br>PLATS Nordsalen<br>SPRÅK Svenska, ingen textning</p>",
                "en": "<p>When the eccentric psychology student Johannes meets the charismatic performance artist Rakel, a radical idea is born. Together, they start a secret club where the members—his own patients—are encouraged to confront those who have caused them pain. But as the club grows and the methods become increasingly extreme, things get complicated when Johannes inconveniently falls head over heels for Rakel.</p><p>GENRE Comedy<br>TARGET GROUP Swedish-speaking adults<br>LOCATION Nordsalen<br>LANGUAGE Swedish, no subtitles</p>"
            },
            "provider": null,
            "short_description": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68335/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68337",
            "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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1748664,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-27T07:13:51.549684Z",
                    "last_modified_time": "2026-03-27T07:13:51.549698Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787735.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1748664/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-27T07:13:51.389512Z",
            "last_modified_time": "2026-03-27T07:13:51.738272Z",
            "date_published": null,
            "start_time": "2026-04-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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1B49A994EBC878F4A89A11EB0AAD7B01/Det_ar_nagot_som_inte_stammer",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1B49A994EBC878F4A89A11EB0AAD7B01/DET_AR_NAGOT_SOM_INTE_STAMMER",
                "en": "http://www.vuotalo.fi/en/events/event/1B49A994EBC878F4A89A11EB0AAD7B01/LITTLE_DID_I_KNOW"
            },
            "name": {
                "fi": "Det är något som inte stämmer – Onsdagsbio",
                "sv": "DET ÄR NÅGOT SOM INTE STÄMMER – Onsdagsbio",
                "en": "LITTLE DID I KNOW – Onsdagsbio"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Petra, 50, näyttää saaneen kaiken – täydellisen avioliiton, menestyksekkään uran ja kaksi ihanaa lasta.</p><p>Mutta vähitellen hän alkaa aavistaa, että jokin on vialla.</p><p>Pian hän huomaa, että hänen miehensä, jonka hän luuli olevan elämänsä rakkaus, on uskoton ja haluaa erota.</p><p>Samalla tutustumme 15-vuotiaaseen Petran, villiin teiniin, joka etsii todellista onnea ja rakkautta.</p><p>Regi: Martina Haag, Magnus Bengtsson, Rebecka Cutic, Yana Martsynkevych, Fabian Vreede</p><p>I huvudrollerna: Shanti Roney, Kardo Razzazi, Gustaf Hammarsten, Jessica Liedberg, Alexandra Rapaport</p><p>KOHDEYRHMÄ Svenskspråkiga vuxna, åldersgräns F12</p><p>KIELI Svenska, ingen textning.</p><p>KESTO 1h 40 min.</p>",
                "sv": "<p>Petra, 50, verkar ha allt – det perfekta äktenskapet, en framgångsrik karriär och två underbara barn.</p><p>Men sakta börjar hon ana att något inte står rätt till.</p><p>Snart upptäcker hon att hennes man, som hon trodde var hennes livs kärlek, har en affär och vill skiljas.</p><p>Parallellt lär vi känna Petra, 15, en vild och sökande tonåring på jakt efter sann lycka och kärlek.</p><p>Det är en berättelse om att finna sig själv och bli den person man alltid var menad att vara. En resa genom två kärlekshistorier i olika skeden av livet.</p><p>Regi: Martina Haag, Magnus Bengtsson, Rebecka Cutic, Yana Martsynkevych, Fabian Vreede</p><p>I huvudrollerna: Shanti Roney, Kardo Razzazi, Gustaf Hammarsten, Jessica Liedberg, Alexandra Rapaport</p><p>KOHDEYRHMÄ Svenskspråkiga vuxna, åldersgräns F12</p><p>KIELI Svenska, ingen textning.</p><p>KESTO 1h 40 min.</p>",
                "en": "<p>Petra’s seemingly perfect life unravels when her husband has an affair.</p><p>Meanwhile, young Petra embarks on finding true love.</p><p>Two women’s journeys of self-discovery span different life stages, offering a hopeful yet painful view on love.</p><p>Regi: Martina Haag, Magnus Bengtsson, Rebecka Cutic, Yana Martsynkevych, Fabian Vreede</p><p>I huvudrollerna: Shanti Roney, Kardo Razzazi, Gustaf Hammarsten, Jessica Liedberg, Alexandra Rapaport</p><p>KOHDEYRHMÄ Svenskspråkiga vuxna, åldersgräns F12</p><p>KIELI Svenska, ingen textning.</p><p>KESTO 1h 40 min.</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Petra, 50, näyttää saaneen kaiken – täydellisen avioliiton, menestyksekkään uran ja kaksi ihanaa lasta.",
                "sv": "Petra, 50, verkar ha allt – det perfekta äktenskapet, en framgångsrik karriär och två underbara barn.",
                "en": "Petra’s seemingly perfect life unravels when her husband has an affair."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68337/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-4045476",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/hurri-ja-tosi-hurri-k-18-helsingin-kaupunginteatteri-studio-pasila-21263721/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/hurri-ja-tosi-hurri-k-18-helsingin-kaupunginteatteri-studio-pasila-21263721/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/hurri-ja-tosi-hurri-k-18-helsingin-kaupunginteatteri-studio-pasila-21263721/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21049500/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21263721/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494104,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T10:14:36.475916Z",
                    "last_modified_time": "2025-12-05T10:14:36.475933Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/93/15/hurri-ja-tosi-hurri-tickets_478850_3820438_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494104/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T13:16:20.112264Z",
            "last_modified_time": "2026-03-26T21:16:07.327039Z",
            "date_published": null,
            "start_time": "2026-01-30T17:00:00Z",
            "end_time": "2026-03-26",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/hurri-ja-tosi-hurri/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/hurri-ja-tosi-hurri/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/hurri-ja-tosi-hurri/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Hurri Ja Tosi Hurri K-18"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Hurri ja Tosi Hurri<p>Kun nämä kaksi päästetään irti, on luvassa ilta, jossa suomalaisuus ja suomenruotsalaisuus kohtaavat tavalla, jota ei ole opetettu yhdessäkään kielikylvyssä. Suihkua et kuitenkaan kaipaa tämän illan jälkeen, sillä tämä ilta on täysi komediakylpy! Ja vesi on sopivan kuumaa, tuntuu sielussa asti, kun televisiosta tutut herrat tarjoavat takuulla kuplivan illan. Hurri ja Tosi Hurri – ilta, jossa mikään aihe ei ole liian pyhä, liian arkinen tai liian outo. Kaikelle saa nauraa. Ja kaikelle nauretaan.</p><p>“Hurri ja Tosi Hurri – enemmän naurua kuin järkeä.”</p>",
                "sv": "<p>Esiintyjät: André Wickström &amp; Janne Grönroos</p>",
                "en": "Stand up -show</p><p>Ps. Puhumme soumea.</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Hurri ja Tosi Hurri – Stand up -show Esiintyjät: André Wickström & Janne Grönroos Kun nämä kaksi päästetään irti, on luvassa ilta, jossa suomalaisuus ja suomenr"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4045476/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68265",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-21476482",
                        "sv": "https://www.lippu.fi/event/name-21476482"
                    },
                    "price": {
                        "fi": "48,50-53,50 €",
                        "sv": "48,50-53,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1741404,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-26T13:13:42.315343Z",
                    "last_modified_time": "2026-03-26T13:13:42.315376Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786588.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1741404/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-26T13:13:42.191071Z",
            "last_modified_time": "2026-03-26T13:13:42.452887Z",
            "date_published": null,
            "start_time": "2026-10-14T16: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/FDD322CCD135FFBC971845F26EF87E64/Hur_Harligt_Sangen_Klingar_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/FDD322CCD135FFBC971845F26EF87E64/Hur_Harligt_Sangen_Klingar_"
            },
            "name": {
                "fi": "Hur Härligt Sången Klingar! – Krista Siegfrids & Mark Levengood",
                "sv": "Hur Härligt Sången Klingar! – Krista Siegfrids & Mark Levengood"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>En finlandssvensk fest på scen (utan mygg, men med snaps).</p><p>Mark och Krista har lämnat hemlandet men inte hemlängtan. När vardagen utomlands känns lite för… kontinentalt, drömmer de om Runebergstårtor i februari och en riktigt dålig allsång på midsommarnatten.</p><p>Så de bestämde sig: Vi gör en show! En kavalkad av allt det finlandssvenska vi älskar (och inte kan förklara för våra internationella vänner). Det blir luciakronor, kräftkalas, dialekter, sånger, skratt och kanske en liten tår i ögat – för vi är ju ändå finlandssvenskar.</p><p>Välkommen på en helkväll där vi firar våra rötter med extra dill och en skvätt nostalgi. Finklänning valfri. Skratt garanterat.</p><p>Längd ca 2 timmar, inklusive paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "sv": "<p>En finlandssvensk fest på scen (utan mygg, men med snaps).</p><p>Mark och Krista har lämnat hemlandet men inte hemlängtan. När vardagen utomlands känns lite för… kontinentalt, drömmer de om Runebergstårtor i februari och en riktigt dålig allsång på midsommarnatten.</p><p>Så de bestämde sig: Vi gör en show! En kavalkad av allt det finlandssvenska vi älskar (och inte kan förklara för våra internationella vänner). Det blir luciakronor, kräftkalas, dialekter, sånger, skratt och kanske en liten tår i ögat – för vi är ju ändå finlandssvenskar.</p><p>Välkommen på en helkväll där vi firar våra rötter med extra dill och en skvätt nostalgi. Finklänning valfri. Skratt garanterat.</p><p>Längd ca 2 timmar, inklusive paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>"
            },
            "provider": {
                "fi": "Eventland Oy",
                "sv": "Eventland Oy"
            },
            "short_description": {
                "fi": "En finlandssvensk fest på scen (utan mygg, men med snaps).",
                "sv": "En finlandssvensk fest på scen (utan mygg, men med snaps)."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68265/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68054",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/lena-the-slide-brothers-feat-micke-lefty-chef-kanneltalo-21301290/#tab=",
                        "sv": "https://www.lippu.fi/event/lena-the-slide-brothers-feat-micke-lefty-chef-kanneltalo-21301290/#tab=",
                        "en": "https://www.lippu.fi/event/lena-the-slide-brothers-feat-micke-lefty-chef-kanneltalo-21301290/#tab="
                    },
                    "price": {
                        "fi": "24,80 €/20,80 €",
                        "sv": "24,80 €/20,80 €",
                        "en": "24,80 €/20,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494747,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T14:14:19.591801Z",
                    "last_modified_time": "2026-02-05T14:14:19.591818Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785300.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494747/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T14:14:19.469772Z",
            "last_modified_time": "2026-03-26T13:13:38.134953Z",
            "date_published": null,
            "start_time": "2026-05-20T15: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/22D423554501C7E9FE19575134DBD41C/Lena_The_Slide_Brothers_feat_Micke_Lefty_Chef",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/22D423554501C7E9FE19575134DBD41C/Lena_The_Slide_Brothers_feat_Micke_Lefty_Chef",
                "en": "http://www.kanneltalo.fi/en/events/event/22D423554501C7E9FE19575134DBD41C/Lena_The_Slide_Brothers_feat_Micke_Lefty_Chef"
            },
            "name": {
                "fi": "Lena & The Slide Brothers feat Micke, Lefty & Chef",
                "sv": "Lena & The Slide Brothers feat Micke, Lefty & Chef",
                "en": "Lena & The Slide Brothers feat Micke, Lefty & Chef"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Juurimusiikin mahti-ilta kahden bändin voimin!</p><p>Lena & The Slide Brothers</p><p>Vuonna 2009 perustettu Lena & The Slide Brothers tarjoilee tinkimätöntä bluesia ja roots-musiikkia sydämellä ja taidolla.</p><p>Neljä kiiteltyä albumia julkaissut yhtye on kerännyt huomiota niin alan lehdistössä kuin radioaalloilla ympäri maailmaa.</p><p>Lavalla luvassa on vahvaa omaa materiaalia, ja myös rakastettuja blues ja roots-klassikoita – tulkittuna bändin omalla, svengaavalla otteella.</p><p>Lena & The Slide Brothers on tuttu näky festareilla, klubeilla ja <br>konserttisaleissa ympäri Suomen – ja myös kansainvälisillä areenoilla <br>mm. Italiassa, Ranskassa, Ruotsissa, Virossa, Belgiassa ja Sveitsissä.</p><p>Yhtye työstää parhaillaan viidettä albumiaan, josta ensimmäinen single on jo julkaistu.</p><p>Kokoonpano:<br>Lena Lindroos: laulu, basso<br>Matti Kettunen: kitarat, laulu<br>Kristian Wahlström: kitarat, laulu<br>Raine Kokkinen: rummut</p><p>Linkki videoon: https://www.youtube.com/watch?v=smZIQXdzZ4c<br>www.lenatheslidebrothers.co</p><p>Micke & Lefty feat Chef</p><p>Micke Björklöf, Lefty Leppänen ja Chef muodostavat ainutlaatuisen akustisen ”power trion”, joka on hurmannut yleisöjä jo 25 vuoden ajan Suomessa ja kansainvälisesti.</p><p>Kolmen vahvaa ja sielukasta laulusolistia, virtuoosimainen slidekitarointi, taidokas huuliharppu, rytminen energia ja kolmiääniset laulustemmat luovat persoonallisen kokonaisuuden, jonka myötä heitä on tituleerattu Suomen viihdyttävimmäksi blues & roots trioksi.</p><p>Kokoonpanon vahvuutena on laaja ja monipuolinen ohjelmisto, jossa se yhdistelee rohkeasti amerikkalaista bluesia, rootsia, rockia, soulia ja gospelia – aina omaperäisellä otteella ja vahvalla esiintymisellä.</p><p>Ohjelmisto kattaa niin omat kappaleet kuin persoonalliset tulkinnat alan klassikoista, ja jokaisella keikalla tunnelma vaihtelee intiimistä herkkyydestä energiseen svengiin. Yhtye on julkaissut kolme studioalbumia, joista viimeisin Let The Fire Lead sai laajaa kansainvälistä kiitosta. Alkukesästä julkaistu Live On Air -tuplalivealbumi on ollut kansainvälinen arvostelumenestys. Levy nousi useille kansainvälisille soittolistoille mm. Yhdysvalloissa Roots Music Report - Acoustic Albums Top 40 -listan sijalle 10 – osoituksena yhtyeen kansainvälisestä vetovoimasta.</p><p>“Omaperäisyys on Micke & Lefty feat. Chefin ehdoton valtti. Elävässä tilanteessa huumori ja ilmeinen tekemisen ilo täydentävät kokonaisuuden, joka varmasti erottuu kansainvälisessä vertailussa.” – BluesFinland</p><p>“Persoonallista! Eloisaa! Viihdyttävää! Tämä suomalainen akustinen blues on dynaamista, omaperäistä ja vangitsevaa.” – Deutschlandfunk Radio, Saksa</p><p>Kokoonpano:<br>Micke Bjorklof: laulu, rummut, huuliharppu, kitara<br>Lefty Leppänen: laulu, kitarat, huuliharppu<br>Chef: laulu, basso</p><p>https://www.mickeandlefty.com/</p><p>Kesto: 2 h 15 min. (sis.väliajan)</p>",
                "sv": "<p>En härlig kväll med roots-musik av två band!</p><p>Lena & The Slide Brothers<br>Lena & The Slide Brothers grundades 2009 och serverar kompromisslös <br>blues- och roots-musik med hjärta och skicklighet.</p><p>Gruppen har gett ut fyra hyllade album <br>och väckt uppmärksamhet såväl i branschpressen som <br>på radiovågor runt om i världen.<br>På scenen utlovas starkt eget material och även älskade blues- och roots-klassiker – tolkade med bandets eget svängiga grepp.</p><p>Lena & The Slide Brothers är en välbekant syn på festivaler, på klubbar och <br>i konsertsalar över hela Finland – och även på internationella arenor i länder som Italien, Frankrike, Sverige, Estland, Belgien och Schweiz.</p><p>Bandet arbetar för närvarande på sitt femte album, vars första singel redan har publicerats.</p><p>Sammansättning:<br>Lena Lindroos: sång, bas<br>Matti Kettunen: gitarr, sång<br>Kristian Wahlström: gitarr, sång<br>Raine Kokkinen: trummor</p><p>Micke & Lefty feat Chef</p><p>Micke Björklöf, Lefty Leppänen och Chef bildar en unik akustisk ”powertrio” som har trollbundit publiken i Finland och internationellt i 25 år. Tre starka och uttrycksfulla sångsolister, virtuos slidegitarr, skickligt munspel, rytmisk energi och trestämmig sång skapar en personlig helhet som har gett dem titeln Finlands mest underhållande blues & roots-trio.</p><p>Bandets styrka ligger i dess breda och varierade repertoar, som djärvt kombinerar amerikansk blues, roots, rock, soul och gospel – alltid med en originell touch och ett starkt framträdande. Repertoaren omfattar såväl egna låtar som personliga tolkningar av klassiker, och stämningen vid varje show varierar från intim ömhet till energiskt sväng.</p><p>Bandet har släppt tre studioalbum, varav det senaste, Let The Fire Lead, blev mycket uppmärksammat internationellt. Det dubbla livealbumet Live On Air, som släpptes i början av sommaren, blev en internationell kritikerframgång. Albumet har legat på flera internationella spellistor, bland annat som nummer 10 på Roots Music Report - Acoustic Albums Top 40-lista i USA – ett bevis på bandets internationella dragningskraft.</p><p>”Originaliteten är Micke & Lefty feat. Chefs absoluta trumfkort. I livesituationen kompletterar humorn och den uppenbara glädjen i att skapa en helhet som säkert sticker ut i internationell jämförelse.” – BluesFinland</p><p>”Personligt! Livligt! Underhållande! Den här finska akustiska bluesen är dynamisk, originell och fängslande.” - Deutschlandfunk Radio, Tyskland</p><p>Sammansättning:<br>Micke Bjorklof: sång, trummor, munspel, gitarr<br>Lefty Leppänen: sång, gitarr, munspel<br>Chef: sång, bas</p>",
                "en": "<p>A mammoth night of roots music with two bands!</p><p>Lena & The Slide Brothers<br>Founded in 2009, Lena & The Slide Brothers serve up uncompromising blues and roots music with both a large heart and great talent.</p><p>With four critically acclaimed albums <br>to their name, the band has attracted attention <br>in music media and on radio waves around the world.</p><p>The stage will feature the band’s strong original material, as well as beloved blues and roots classics, seasoned with the band's own swinging twist.</p><p>Lena & The Slide Brothers are a familiar sight at festivals, clubs and concert halls all over Finland – and also on international stages in Italy, France, Sweden, Estonia, Belgium, Switzerland and elsewhere.</p><p>The band is currently working on its fifth album, with its first single already having been released.</p><p>Line-up:<br>Lena Lindroos: vocals, bass<br>Matti Kettunen: guitars, vocals<br>Kristian Wahlström: guitars, vocals<br>Raine Kokkinen: drums</p><p>Micke & Lefty feat. Chef</p><p>Micke Björklöf, Lefty Leppänen and Chef form a unique acoustic ‘power trio’ that has been thrilling audiences in Finland and internationally for 25 years.</p><p>Three strong and soulful vocal soloists, virtuosic slide guitar, skilful harmonica, rhythmic energy and three-part vocal melodies create a distinctive sound that has earned them the title of Finland's most entertaining blues & roots trio.</p><p>The band's strength lies in their broad and diverse repertoire, boldly combining American blues, roots, rock, soul and gospel – always with an original approach and a strong stage presence.</p><p>Their repertoire includes original songs as well as unique interpretations of classics, and the atmosphere at each show ranges from intimate tenderness to energetic swing.</p><p>The band has released three studio albums, the latest of which, Let The Fire Lead, received widespread international acclaim. Released in early summer, the live double album Live On Air has been an international critical success. The record charted on several international playlists, including at number 10 on the Roots Music Report’s Acoustic Albums Top 40 Chart in the US – a testament to the band's international appeal.</p><p>\"Originality is what makes Micke & Lefty feat. Chef truly stand out. Live, the humour and the obvious joy of making music complete a package that will certainly stand out even on an international scale.\" – BluesFinland</p><p>“Unique! Lively! Entertaining! This Finnish acoustic blues is dynamic, original and captivating.\" – Deutschlandfunk Radio, Germany</p><p>Line-up:<br>Micke Björklöf: vocals, drums, harmonica, guitar<br>Lefty Leppänen: vocals, guitars, harmonica<br>Chef: vocals, bass</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Juurimusiikin mahti-ilta kahden bändin voimin!",
                "sv": "En härlig kväll med roots-musik av två band!",
                "en": "A mammoth night of roots music with two bands!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68054/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68259",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-21472746"
                    },
                    "price": {
                        "fi": "58,10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1740593,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-26T11:14:02.051115Z",
                    "last_modified_time": "2026-03-26T11:14:02.051132Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786539.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1740593/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-26T11:14:01.892886Z",
            "last_modified_time": "2026-03-26T11:14:02.217601Z",
            "date_published": null,
            "start_time": "2026-11-15T13: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/AF4CC08FE452713765869FF18D5379DC/Lapsuuden_sankarit_Miljoonasade_40_vuotta"
            },
            "name": {
                "fi": "Lapsuuden sankarit: Miljoonasade 40 vuotta"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p><i>“Hyvä lauluteksti on kuin sade. Se yllättää, virkistää ja puskee mutavyöryt liikkeelle. Tärkeintä on kuitenkin sateen ääni.”</i> - Heikki Salo</p><p>Miljoonasateen 40. juhlavuosi huipentuu syksyllä 2026 läpi Suomen kulkevaan Lapsuuden sankarit -juhlakiertueeseen. Nyt on aika koota tarttuvin ja koskettavin Miljoonasade-ohjelmisto ja esittää sitä täydellä sydämellä joka ilta. Muun muassa Marraskuu, 506 ikkunaa, Tulkoon rakkaus ja tietenkin Lapsuuden sankarille soivat, mutta mukaan mahtuu myös muutama hyvinkin tuore biisi.</p><p>Miljoonasade ei ole nostalgiatribuutti itselleen, vaan elävä kokoonpano, joka haluaa antaa ihmisille sitä parasta, mitä se osaa tehdä: musiikkia, tarinoita, tunteita, elämyksiä. Tätä kaikkea suomirockin kruununjalokivi tarjoilee loka-marraskuussa ainutlaatuisilla areenoilla: luvassa on yhdeksäntoista keikkaa konserttisaleissa.</p><p><i>“Että pystyy 40 vuotta rallittelemaan Suomen maanteillä ja viihdyttämään ihmisiä elääkseen, täytyy olla jonkinlainen poppamies, kai sen voi jo myöntää. Vuodet ovat vierineet, ja aina on soitettu. Kirjoitettu biisejä, rokattu ja luotu oma yleisö ja faniporukka. Tehty ihan oma juttu.”</i> -Heikki Salo</p><p>https://miljoonasade40.fi</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "provider": {
                "fi": "Riemurinne Oy"
            },
            "short_description": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68259/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhutm4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494906,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-19T12:38:09.241045Z",
                    "last_modified_time": "2026-02-20T08:47:33.226112Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6c5e2fc7-6b6f-4c0e-99ae-ff2dbc5d2894.png",
                    "name": "",
                    "cropping": "108,0,768,660",
                    "photographer_name": "",
                    "alt_text": "Maaginen viikko",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494906/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-03T13:06:36.204624Z",
            "last_modified_time": "2026-03-26T11:05:55.613399Z",
            "date_published": "2026-03-26T11:07:00Z",
            "start_time": "2026-03-27T13:00:00Z",
            "end_time": "2026-03-27T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "name": {
                "fi": "Maaginen pakohuonepeli"
            },
            "location_extra_info": {
                "fi": "Mörkö"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Maaginen viikko valloittaa kirjaston!</p><p>Tervetuloa pelaamaan pakohuonepeliä Sellon kirjastoon! Pelit alkavat noin 30 minuutin välein. Tapahtuma on suunnattu lapsille ja perheille.</p><p>#MaaginenViikko</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Auta löytämään velho, ennen kuin on liian myöhäistä..."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhutm4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67215",
            "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:47/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494811,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T13:14:25.379072Z",
                    "last_modified_time": "2026-02-09T13:14:25.379088Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778684.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494811/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-09T13:14:25.121031Z",
            "last_modified_time": "2026-03-26T09:13:58.024711Z",
            "date_published": null,
            "start_time": "2026-05-05",
            "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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/17449BAAD2C1158A38ABB569A60AB363/Leijuu_unelmia_ja_utopioita_Helsingin_kuvataidelukio_100_vuotta",
                "sv": "http://www.caisa.fi/sv/evenemang/event/17449BAAD2C1158A38ABB569A60AB363/Leijuu_unelmia_ja_utopioita_Helsingin_kuvataidelukio_100_vuotta",
                "en": "http://www.caisa.fi/en/events/event/17449BAAD2C1158A38ABB569A60AB363/Leijuu_unelmia_ja_utopioita_Helsingin_kuvataidelukio_100_vuotta_"
            },
            "name": {
                "fi": "Leijuu — unelmia ja utopioita – Helsingin kuvataidelukio 100 vuotta – Helsingin kuvataidelukio 100 vuotta",
                "sv": "Leijuu — unelmia ja utopioita – Helsingin kuvataidelukio 100 vuotta – Helsingin kuvataidelukio 100 år",
                "en": "Leijuu — unelmia ja utopioita – Helsingin kuvataidelukio 100 vuotta – 100 years of Helsinki Upper Secondary School of Visual Arts"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Leijuu – unelmia ja utopioita -näyttely huipentaa Helsingin kuvataidelukion satavuotisjuhlavuoden 2025–26.</p><p>Näyttelyn teemana on tulevaisuuteen katsominen, utopiat ja unelmat. Millaisia tulevaisuudenvisioita lukioikäisillä nuorilla on tulevaisuuden mahdollisista maailmoista?<br>Juhlavuoden aikana eri kursseilla monin eri tekniikoin toteutettuja teoksia yhdistää pyöreä muoto. Se assosioituu ikuisuuteen, jatkuvuuteen ja yhtenäisyyteen, ja toisaalta myös esimerkiksi kaukoputkesta avautuvaan näkymään, tulevaisuuden paljastavaan kristallipalloon tai tuntemattomaan avautuvaan portaaliin.<br>Näyttelyssä on kymmenien eri kuvataidelukiolaisten teoksia. Kutsumme kaikenikäiset vierailijat tarkastelemaan nuorten kokemuksia tästä ajasta, sekä heidän tulkintojaan tulevaisuudesta.</p><p>Näyttelyyn järjestetään viittomakielinen opastus suomeksi la 16.5.2026 klo 13–14.</p>",
                "sv": "<p>Utställningen Leijuu – unelmia ja utopioita är höjdpunkten på Helsingin kuvataidelukios hundraårsjubileum 2025–2026.</p><p>Temat för utställningen är framtidsutsikter, utopier och drömmar. Vilka framtidsvisioner har unga i gymnasieåldern om framtidens möjliga världar?<br>Verken, som skapats under olika kurser och med många olika tekniker under jubileumsåret, förenas av en rund form. Den förknippas med evighet, kontinuitet och enhetlighet, och å andra sidan också till exempel den vy som öppnar sig i en kikare, en kristallkula som berättar om framtiden eller en portal till det okända.<br>I utställningen ingår verk av tiotals studerande vid bildkonstgymnasiet. Vi bjuder in besökare i alla åldrar att utforska unga människors upplevelser av den här tiden och deras tolkningar av framtiden.</p><p>En guidning på finskt teckenspråk ordnas lördagen den 16 maj 2026 kl. 13–14.</p>",
                "en": "<p>The Leijuu – unelmia ja utopioita (‘Floating – Dreams and Utopias’) exhibition will be the culmination of 2025–2026, the centenary year of Helsinki Upper Secondary School of Visual Arts.</p><p>The theme of the exhibition is looking to the future, utopias and dreams. What kind of visions do young people of upper secondary school age have regarding potential future worlds?<br>The works, created with a variety of techniques on different courses during the centenary year, share a round shape. It is associated with eternity, continuity and unity, but also with imagery such as the view through a telescope, a crystal ball revealing the future or a portal opening into the unknown.<br>The exhibition features works by dozens of different art students. We are inviting visitors of all ages to come and explore young people’s experiences of this era, as well as their interpretations of the future.</p><p>A Finnish Sign Language guided tour of the exhibition will also be held on Saturday 16 May 2026 at 13.00–14.00. See you there!</p>"
            },
            "provider": null,
            "short_description": {
                "fi": "Leijuu – unelmia ja utopioita -näyttely huipentaa Helsingin kuvataidelukion satavuotisjuhlavuoden 2025–26.",
                "sv": "Utställningen Leijuu – unelmia ja utopioita är höjdpunkten på Helsingin kuvataidelukios hundraårsjubileum 2025–2026.",
                "en": "The Leijuu – unelmia ja utopioita (‘Floating – Dreams and Utopias’) exhibition will be the culmination of 2025–2026, the centenary year of Helsinki Upper Secondary School of Visual Arts."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67215/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agojsrllcu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-26T08:53:36.648643Z",
                    "last_modified_time": "2026-02-26T08:53:36.648661Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ff5f787e-5674-4261-8ce0-2b7ad1fba3e6.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Nainen kerrostalon edessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-26T08:53:48.559273Z",
            "last_modified_time": "2026-03-26T06:41:24.039635Z",
            "date_published": null,
            "start_time": "2026-05-05T11:00:00Z",
            "end_time": "2026-05-05T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "name": {
                "fi": "Lunnan palvelut tutuksi – tule mukaan matalan kynnyksen tapahtumaan!",
                "sv": "Lunnas tjänster i fokus – kom med på ett lättillgängligt evenemang!",
                "en": "Get to Know Lunna’s Services – join our easy-access event!"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa <strong>Länsi‑Uudenmaan hyvinvointialueen</strong> tapahtumaan, jossa pääset tutustumaan Lunnaan, hyvinvointialueen omaan asiointikanavaan. Tapahtuma on suunnattu erityisesti sinulle, joka et vielä tunne Lunnan palveluita ja haluat saada henkilökohtaista opastusta.</p><p>Sosiaali- ja terveyspalvelujen ammattilaiset Länsi‑Uudenmaan hyvinvointialueelta kertovat, mitä kaikkea Lunna tarjoaa, ja auttavat sinua käyttämään palvelua juuri sinun tarpeisiisi sopivalla tavalla.</p><p>Tapahtuma&nbsp;järjestetään yhteistyössä <strong>Espoon kaupungin digituen</strong>, <strong>Enter ry:n&nbsp;</strong>ja <strong>Suomi-Syyria Ystävyysseuran</strong> kanssa ja paikan päällä on mahdollisuus saada tukea laitteiden ja digitaalisten palveluiden käytössä.</p><ul><li>Lunna on hyvinvointialueen digitaalisen asioinnin kanava, jonka kautta saat kätevästi yhteyden erilaisiin sosiaali- ja terveydenhuollon palveluihin.</li><li><strong>Enter ry&nbsp;</strong>tarjoaa henkilökohtaista&nbsp;ja maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä - seniorilta seniorille.&nbsp;</li><li><strong>Espoon kaupungin digituesta</strong>&nbsp;saa apua verkossa asiointiin ja älylaitteiden käyttöön etänä, puhelimitse tai Espoo-infossa.</li><li><strong>Suomi-Syyria Ystävyysseura </strong>tarjoaa tukea, neuvontaa ja monipuolista toimintaa arabiankielisille maahanmuuttajille.</li></ul><p>Tilaisuus on&nbsp;luonteeltaan rento ja avoin – voit tulla paikalle silloin, kun sinulle parhaiten sopii, kuulla lisää Lunnasta ja saada tukea sen käyttämiseen.</p><p>Lämpimästi tervetuloa!</p>",
                "sv": "<p>Välkommen till ett evenemang ordnat av <strong>Västra Nylands välfärdsområd</strong>e, där du kan bekanta dig med Lunna, välfärdsområdets plattformen för digitala tjänster. Evenemanget är särskilt riktat till dig som ännu inte känner till Lunnas tjänster och vill få personlig handledning.</p><p>Sakkunniga från social- och hälsovårdstjänsterna inom Västra Nylands välfärdsområde berättar om allt Lunna erbjuder och hjälper dig att använda tjänsten på ett sätt som passar just dina behov.</p><p>Evenemanget ordnas i samarbete med Esbo stads digitalt stöd, Vänskapsföreningen Finland–Syrien och Enter rf, och på plats finns möjlighet att få hjälp med användning av digitala enheter och tjänster.</p><ul><li><strong>Lunna&nbsp;</strong>är välfärdsområdets&nbsp;plattformen för digitala tjänster, genom vilken du enkelt får kontakt med olika social- och hälsovårdstjänster.</li><li><strong>Enter rf&nbsp;</strong>erbjuder personlig och kostnadsfri handledning i användningen av datorer, surfplattor och mobiltelefoner – från senior till senior.</li><li><strong>Esbo stads digitalt stöd&nbsp;</strong>hjälper med att använda smarta enheter och sköta ärenden på nätet, antingen på distans, per telefon eller på plats i Esbo-info.</li><li><strong>Vänskapsföreningen Finland–Syrien </strong>erbjuder stöd, rådgivning och ett varierat utbud av aktiviteter för arabisktalande invandrare.</li></ul><p>Evenemanget är avslappnat och öppet – du kan komma när det passar dig bäst, lyssna mer om Lunna och få stöd i att använda tjänsten.</p><p>Varmt välkommen!</p>",
                "en": "<p>Welcome to an event hosted by the <strong>Western Uusimaa Wellbeing Services </strong>County, where you can explore Lunna, the wellbeing region’s own digital services platform. The event is especially designed for those who are not yet familiar with Lunna and would like to receive personal guidance.</p><p>Professionals from the social and health services of the Western Uusimaa Wellbeing Services County will explain what Lunna offers and help you use the service in a way that suits your needs.</p><p>The event is organized in cooperation with the City of Espoo’s digital support , The Finland-Syria Friendship Association&nbsp;and Enter ry. At the event, you can also receive help with digital devices and online services.</p><ul><li><strong>Lunna&nbsp;</strong>is the wellbeing region’s digital services platform, providing an easy way to contact various social and healthcare services.</li><li><strong>Enter ry&nbsp;</strong>provides personal and free guidance for using computers, tablets and mobile phones — from one senior to another.</li><li><strong>Espoo’s digital support&nbsp;service</strong> helps with online services and the use of smart devices remotely, by phone or at Espoo Info points.</li><li><strong>The Finland-Syria Friendship Association</strong> offers support, guidance, and a wide range of activities for Arabic-speaking immigrants.</li></ul><p>The event is relaxed and open — you can drop in whenever it suits you, learn more about Lunna and get support in using it.</p><p>Warm welcome!</p>"
            },
            "provider": {
                "fi": "Länsi-Uudenmaan hyvinvointialue",
                "sv": "Västra Nylands välfärdsområde",
                "en": " Western Uusimaa Wellbeing Services "
            },
            "short_description": {
                "fi": "Tervetuloa Länsi‑Uudenmaan hyvinvointialueen tapahtumaan, jossa pääset tutustumaan Lunnaan, hyvinvointialueen omaan asiointikanavaan. ",
                "sv": "Välkommen till ett evenemang ordnat av Västra Nylands välfärdsområde, där du kan bekanta dig med Lunna, välfärdsområdets plattformen för digitala tjänster. ",
                "en": "Welcome to an event hosted by the Western Uusimaa Wellbeing Services County, where you can explore Lunna, the wellbeing region’s own digital services platform."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agojsrllcu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}