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

{
    "meta": {
        "count": 35524,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=149&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=147&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "espoo_le:ago7qga7t4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:p2149/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1920588,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T11:38:00.890009Z",
                    "last_modified_time": "2026-05-05T11:38:00.890025Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6ead8b47-d1d9-48c0-b79e-2f4fa76dda0f.png",
                    "name": "",
                    "cropping": "192,0,794,602",
                    "photographer_name": "",
                    "alt_text": "Teksti: veroilta Espoossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1920588/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T11:40:30.037687Z",
            "last_modified_time": "2026-05-05T11:40:30.037704Z",
            "date_published": null,
            "start_time": "2026-05-12T14:00:00Z",
            "end_time": "2026-05-12T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Veroilta (tapahtuma täynnä)"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "provider": null,
            "short_description": {
                "fi": "Keskustelutilaisuus"
            },
            "info_url": null,
            "description": {
                "fi": "<p>TAPAHTUMAAN ON OLLUT ILMOITTAUTUMINEN JA TAPAHTUMA ON TÄYNNÄ. </p><p><br></p><p>Tiistai 12.5. klo 17.00</p><p>Iso Omenan kirjasto, Piispansilta 11</p><p>Veronmaksajain Keskusliiton Espoon paikallisyhdistys</p><p>järjestää neuvontatilaisuuden</p><p>Joka kodin perintöverosuunnittelu ja perintöverotuksen</p><p>keventyminen vuoden vaihteessa</p><p>Aiheesta alustaa verojuristi Tero Hämeenaho Veronmaksajista.</p><p>Oma Säästöpankin puheenvuoron käyttää</p><p>konttorinjohtaja Henriikka Kaminen.</p><p>Tilaisuus alkaa kahvitarjoilulla klo 16.</p><p>Kahvitarjoilu järjestetään OmaSäästöpankin tiloissa,</p><p>kirjastoon vievien liukuportaiden alapäässä.</p><p>Esitys alkaa klo 17. Esityksen jälkeen on varattu</p><p>aikaa kysymyksille ja keskustelulle.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7qga7t4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opd3zy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T07:40:16.693429Z",
            "last_modified_time": "2026-05-05T11:29:07.847088Z",
            "date_published": null,
            "start_time": "2026-06-05T07:00:00Z",
            "end_time": "2026-06-05T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 5.6.2026 Karakallion asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;5.6.2026 Karakallion asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opd3zy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opd2xm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20351/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T07:55:49.001892Z",
            "last_modified_time": "2026-05-05T11:27:31.485250Z",
            "date_published": null,
            "start_time": "2026-06-08T07:00:00Z",
            "end_time": "2026-06-08T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 8.6.2026 Latokasken asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;8.6.2026 Latokasken asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opd2xm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opdzx4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20235/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T07:59:54.085965Z",
            "last_modified_time": "2026-05-05T11:26:55.546795Z",
            "date_published": null,
            "start_time": "2026-06-09T07:00:00Z",
            "end_time": "2026-06-09T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 9.6.2026 Tapiolan asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;9.6.2026 Tapiolan asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opdzx4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opdyxa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T08:03:03.923804Z",
            "last_modified_time": "2026-05-05T11:26:04.714422Z",
            "date_published": null,
            "start_time": "2026-06-10T07:00:00Z",
            "end_time": "2026-06-10T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 10.6.2026 Hiirisuon asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;10.6.2026 Hiirisuon asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opdyxa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opdxxi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20355/?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:agggfz67i4/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T08:05:12.941236Z",
            "last_modified_time": "2026-05-05T11:25:38.824689Z",
            "date_published": null,
            "start_time": "2026-06-11T07:00:00Z",
            "end_time": "2026-06-11T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 11.6.2026 Soukan asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;11.6.2026 Soukan asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opdxxi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opdvji",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20379/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T08:07:58.798474Z",
            "last_modified_time": "2026-05-05T11:25:09.863112Z",
            "date_published": null,
            "start_time": "2026-06-12T07:00:00Z",
            "end_time": "2026-06-12T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 12.6.2026 Suvelan asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;12.6.2026 Suvelan asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opdvji/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opduk4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20268/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T08:10:13.669620Z",
            "last_modified_time": "2026-05-05T11:24:28.462942Z",
            "date_published": null,
            "start_time": "2026-06-15T07:00:00Z",
            "end_time": "2026-06-15T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 15.6.2026 Olarin asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;15.6.2026 Olarin asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opduk4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opdtku",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20267/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T08:12:13.611247Z",
            "last_modified_time": "2026-05-05T11:23:44.540015Z",
            "date_published": null,
            "start_time": "2026-06-16T07:00:00Z",
            "end_time": "2026-06-16T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 16.6.2026 Matinkylän asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;16.6.2026 Matinkylän asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opdtku/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7opdsca",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20378/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?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:p2625/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1503762621211878/1503763621211778/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1907345,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-05T07:24:56.171295Z",
                    "last_modified_time": "2026-05-05T07:24:56.171310Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/687b4365-b0ee-4be5-a217-7f90ffd46d37.png",
                    "name": "",
                    "cropping": "196,0,998,802",
                    "photographer_name": "",
                    "alt_text": "Leikki-Leena ja Viileä-Viljami",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1907345/?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-05-05T08:14:42.329185Z",
            "last_modified_time": "2026-05-05T11:22:17.936003Z",
            "date_published": null,
            "start_time": "2026-06-17T07:00:00Z",
            "end_time": "2026-06-17T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Auroran kesäkiertue: Leikki-Leena ja Viileä-Viljami - Laulavan lukutoukan tapaus!",
                "sv": "Auroras Sommarturné: Lekfull-Leena och Lugna-Viljami – Fallet med den sjungande läslarven!",
                "en": "Aurora´s summer tour: Playful Leena and Calm Viljami - The case of the singing bookworm!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten kulttuurikeskus Auroran Kesäkiertue saapuu 17.6.2026 Kylätalo Palttinan asukaspuistoon.",
                "sv": "Barnkulturcentret Auroras Sommarturné kommer till invånarparkerna i Esbo i juni.",
                "en": "Children’s Cultural Center Aurora´s Summer Tour returns to Espoo’s residents´ parks in June. "
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/lasten-kulttuurikeskus-aurora",
                "sv": "https://www.espoo.fi/sv/barnkulturcentret-aurora",
                "en": "https://www.espoo.fi/en/childrens-cultural-centre-aurora"
            },
            "description": {
                "fi": "<p>Lasten kulttuurikeskus&nbsp;Auroran Kesäkiertue&nbsp;saapuu&nbsp;17.6.2026 Kylätalo Palttinan asukaspuistoon. Tämän vuoden esityksenä nähdään: Leikki-Leena ja Viileä Viljami - Laulavan lukutoukan tapaus! Esitys kiertää kaikkiaan yhdeksässä espoolaisessa asukaspuistossa arkipäivisin&nbsp;5.–17.6.&nbsp;2026, kaikki tapahtumapaikat voit katsoa alta. Kesäkiertueen esitykset alkavat klo 10, ja kaikkiin&nbsp;esityksiin on vapaa pääsy.&nbsp;&nbsp;</p><p>Tapahtumapäivinä&nbsp;klo 9–11.30&nbsp;mukana&nbsp;myös&nbsp;Kirjastoauto&nbsp;Välkky, josta&nbsp;löytyy paljon&nbsp;kivaa luettavaa.&nbsp;Kirjoja voi lainata kotiin helmet-kirjastokortilla.&nbsp;</p><p>Esitykset rullaavat myös sadesäällä,&nbsp;joten muistathan&nbsp;pukeutua sään mukaan!&nbsp;Mahdollisista muutoksista tiedotetaan tapahtuman Facebook-sivuilla.&nbsp;</p><p>Esityksiin ovat tervetulleita niin varhaiskasvatuksen ryhmät kuin lapset omien aikuistensa seurassa.</p><p><br></p><p>LEIKKI-LEENA JA VIILEÄ-VILJAMI - LAULAVAN LUKUTOUKAN TAPAUS!&nbsp;</p><p>Laulavan lukutoukan tapaus! on laulavainen ja osallistava esityskonsertti, jossa seikkailevat parhaat ystävykset: Leikki-Leena ja Viileä-Viljami.&nbsp;</p><p>Laulavan lukutoukan tapaus! on oodi leikille, kirjaimille ja uuden oppimiselle, sekä&nbsp;mielikuvitusmatka lapsuuteen ja kesäloman kynnykselle. Ilmassa väreilee se hetki, jolloin kirjaimet alkavat järjestäytymään sanoiksi ja avaavat ovia uusiin ja ihmeellisiin maailmoihin. Seikkailukonserttiin johdattavat Leikki-Leena (räiskyvä ilopilleri, jolla vauhtia ja juttua riittää) ja hänen paras ystävänsä Viileä-Viljami (joka rakastaa pianon soittoa ja on juuri oppinut lukemaan).&nbsp;</p><p>Mutta miten ystävyyden käy, kun toinen sukeltaa sanojen maailmaan ja toinen ei vielä tiedä, miltä kirjaimet näyttävät? Kaiken taustalla kuiskutellaan myös sangen jännittävää tarinaa Laulavasta lukutoukasta, joka voi putkahtaa paikalle hetkenä minä hyvänsä…!&nbsp;</p><p>Konserttiyleisö pääsee tarinan edetessä mukaan kirjainleikkeihin ja mukaansatempaaviin lukulauluihin - lukutoukkaletkajenkkaakin saattaa olla tarjolla!&nbsp;</p><p><br></p><p>Kesto: n.&nbsp;30&nbsp;min&nbsp;</p><p>Kieli: suomi&nbsp;</p><p>Kohdeyleisö: koko perhe,&nbsp;erityisesti leikki-ikäiset, eskarit ja pienet alakoululaiset&nbsp;</p><p>Lavalla, lorut, laulut ja leikit: Leena Keizer &amp; Viljami Viippola&nbsp;</p><p>Kuva:&nbsp;Ida Romppainen&nbsp;&nbsp;</p><p><br></p><p>KESÄKIERTUEEN ESITYSPAIKAT:&nbsp;</p><p>Pe&nbsp;5.6.&nbsp;Karakallion asukaspuisto, Kotkatie 10&nbsp;</p><p>Ma&nbsp;8.6.&nbsp;Latokasken asukaspuisto, Lehtikaskentie 7&nbsp;</p><p>Ti&nbsp;9.6 Tapiolan asukaspuisto,&nbsp;Louhenkuja 4&nbsp;</p><p>Ke 10.6.&nbsp;Hiirisuon asukaspuisto, Pohjoisentie 1&nbsp;</p><p>To 11.6.&nbsp;Soukan asukaspuisto, Soukankaari 10&nbsp;&nbsp;</p><p>Pe 12.6.&nbsp;Suvelan asukaspuisto, Kirstintie 24&nbsp;</p><p>Ma 15.6. Olarin asukaspuisto,&nbsp;Meteorinkatu 7&nbsp;</p><p>Ti 16.6.&nbsp;Matinkylän asukaspuisto, Matinraitti 12&nbsp;</p><p>Ke 17.6. Kylätalo Palttinan asukaspuisto,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p><br></p><p>Järj. Lasten kulttuurikeskus Aurora, Espoonlahden kulttuuri ja Espoon Kaupungin kirjasto.&nbsp;</p>",
                "sv": "<p>Barnkulturcentret&nbsp;Auroras&nbsp;Sommarturné&nbsp;kommer&nbsp;till&nbsp;invånarparkerna&nbsp;i&nbsp;Esbo&nbsp;i&nbsp;juni.&nbsp;Årets&nbsp;föreställning&nbsp;är:&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami – Fallet med den&nbsp;sjungande&nbsp;läslarven! Föreställningen&nbsp;turnerar&nbsp;i&nbsp;nio&nbsp;av&nbsp;Espoos&nbsp;invånarparker&nbsp;på&nbsp;vardagar&nbsp;mellan&nbsp;den 5 och 17&nbsp;juni&nbsp;2026.&nbsp;Se&nbsp;sommarturnéplan&nbsp;nedan&nbsp;och&nbsp;kom&nbsp;med till den&nbsp;närmaste&nbsp;parken.&nbsp;Föreställningarna&nbsp;börjar&nbsp;kl. 10&nbsp;och&nbsp;inträdet&nbsp;till&nbsp;evenemang&nbsp;är&nbsp;fritt.&nbsp;</p><p>Under&nbsp;evenemangsdagarna&nbsp;kl. 9–11.30&nbsp;finns&nbsp;Esbo&nbsp;bok- och&nbsp;kulturbuss&nbsp;Välkky&nbsp;på&nbsp;plats,&nbsp;där&nbsp;det&nbsp;finns&nbsp;massor&nbsp;av&nbsp;roliga&nbsp;böcker&nbsp;att&nbsp;läsa.&nbsp;Man&nbsp;kan&nbsp;också&nbsp;låna&nbsp;böcker&nbsp;med Helmet-bibliotekskort.&nbsp;</p><p>Föreställningarna&nbsp;hålls&nbsp;även&nbsp;vid&nbsp;regn,&nbsp;så&nbsp;kom&nbsp;ihåg&nbsp;att&nbsp;klä&nbsp;dig&nbsp;efter&nbsp;vädret!&nbsp;Eventuella&nbsp;ändringar&nbsp;meddelas&nbsp;på&nbsp;evenemangets&nbsp;Facebook-sida.&nbsp;</p><p>Både&nbsp;förskolegrupper&nbsp;och barn&nbsp;i&nbsp;sällskap&nbsp;med&nbsp;sina&nbsp;föräldrar&nbsp;är&nbsp;välkomna&nbsp;till&nbsp;föreställningarna.&nbsp;</p><p>&nbsp;</p><p>SOMMARTURNÉPLAN&nbsp;</p><p>Fre 5&nbsp;juni,&nbsp;Karabackas&nbsp;invånarpark,&nbsp;Örnvägen&nbsp;10&nbsp;</p><p>Mån&nbsp;8&nbsp;juni,&nbsp;Ladusveds&nbsp;invånarpark,&nbsp;Lövsvedsvägen&nbsp;7&nbsp;</p><p>Tis 9&nbsp;juni,&nbsp;Hagalunds&nbsp;invånarpark,&nbsp;Louhigränden&nbsp;4&nbsp;</p><p>Ons 10&nbsp;juni,&nbsp;Mössenkärrs&nbsp;invånarspark,&nbsp;Norrmarksvägen&nbsp;1&nbsp;</p><p>Tors 11&nbsp;juni,&nbsp;Sökö&nbsp;invånarpark,&nbsp;Sökösvängen&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fre 12&nbsp;juni,&nbsp;Södriks&nbsp;invånarpark,&nbsp;Kirstivägen&nbsp;24&nbsp;&nbsp;</p><p>Mån&nbsp;15&nbsp;juni,&nbsp;Olars&nbsp;invånarpark,&nbsp;Meteorgatan&nbsp;7&nbsp;&nbsp;</p><p>Tis 16&nbsp;juni,&nbsp;Mattby&nbsp;invånarpark,&nbsp;Mattstråket&nbsp;12&nbsp;&nbsp;</p><p>Ons 17&nbsp;juni,&nbsp;Byhuset&nbsp;Palttinas&nbsp;invånarpark,&nbsp;Tegelhagen&nbsp;4&nbsp;</p><p>&nbsp;</p><p>LEKFULL-LEENA OCH LUGNA-VILJAMI – FALLET MED DEN SJUNGANDE LÄSLARVEN!&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;en&nbsp;musikalisk&nbsp;och&nbsp;interaktiv&nbsp;föreställning&nbsp;där&nbsp;de&nbsp;bästa&nbsp;vännerna&nbsp;Lekfull-Leena och&nbsp;Lugna-Viljami ger sig&nbsp;ut&nbsp;på&nbsp;äventyr.&nbsp;&nbsp;</p><p>Fallet med den&nbsp;sjungande&nbsp;läslarven!&nbsp;är&nbsp;ett&nbsp;ode&nbsp;till lek,&nbsp;bokstäver&nbsp;och&nbsp;nytt&nbsp;lärande,&nbsp;samt&nbsp;en&nbsp;fantasiresa&nbsp;till&nbsp;barndomen&nbsp;och&nbsp;sommarlovet.&nbsp;Bokstäverna&nbsp;börjar&nbsp;ordna&nbsp;sig till&nbsp;ord&nbsp;och&nbsp;öppnar&nbsp;dörrar&nbsp;till&nbsp;nya&nbsp;och&nbsp;underbara&nbsp;världar.&nbsp;Lekfull-Leena (en&nbsp;sprudlande&nbsp;glädjespridare&nbsp;med&nbsp;massor&nbsp;av&nbsp;energi&nbsp;och&nbsp;berättelser) och&nbsp;hennes&nbsp;bästa&nbsp;vän&nbsp;Lugna-Viljami (som&nbsp;älskar&nbsp;att&nbsp;spela&nbsp;piano och just&nbsp;har&nbsp;lärt&nbsp;sig&nbsp;att&nbsp;läsa)&nbsp;leder&nbsp;oss&nbsp;in&nbsp;i&nbsp;äventyrskonserten.&nbsp;&nbsp;</p><p>Men&nbsp;hur&nbsp;går&nbsp;det med&nbsp;vänskapen&nbsp;när&nbsp;den&nbsp;ena&nbsp;dyker&nbsp;ner&nbsp;i&nbsp;ordens&nbsp;värld&nbsp;och den&nbsp;andra&nbsp;ännu&nbsp;inte&nbsp;vet&nbsp;hur&nbsp;bokstäverna&nbsp;ser&nbsp;ut? I&nbsp;bakgrunden&nbsp;viskas&nbsp;också&nbsp;en&nbsp;ganska&nbsp;spännande&nbsp;historia&nbsp;om den&nbsp;sjungande&nbsp;läslärven,&nbsp;som&nbsp;kan&nbsp;dyka&nbsp;upp&nbsp;när&nbsp;som&nbsp;helst...!</p><p>Allteftersom&nbsp;berättelsen&nbsp;fortskrider&nbsp;får&nbsp;publiken&nbsp;vara&nbsp;med&nbsp;på&nbsp;bokstavslekar&nbsp;och&nbsp;medryckande&nbsp;läsesånger&nbsp;–&nbsp;kanske&nbsp;även&nbsp;en&nbsp;läslärvjenka!&nbsp;</p><p>&nbsp;</p><p>Längd: ca 30 min&nbsp;&nbsp;</p><p>Språk:&nbsp;finska&nbsp;&nbsp;</p><p>Målgrupp:&nbsp;hela&nbsp;familjen,&nbsp;särskilt&nbsp;småbarn,&nbsp;förskolebarn&nbsp;och&nbsp;yngre&nbsp;grundskoleelever&nbsp;&nbsp;</p><p>På&nbsp;scenen, rim,&nbsp;sånger&nbsp;och&nbsp;lekar: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Foto: Ida Romppainen&nbsp;&nbsp;</p><p>&nbsp;</p>",
                "en": "<p>Children’s Cultural Center&nbsp;Aurora´s&nbsp;Summer Tour returns to Espoo’s&nbsp;residents´&nbsp;parks in June. This year’s performance is: Playful Leena and Calm&nbsp;Viljami&nbsp;-&nbsp;The Case of the Singing Bookworm! The show will tour nine&nbsp;residents´ parks&nbsp;in Espoo on weekdays&nbsp;between&nbsp;June 5&nbsp;and&nbsp;June&nbsp;17, 2026.&nbsp;&nbsp;</p><p>On&nbsp;event&nbsp;days&nbsp;from&nbsp;9&nbsp;a.m. to 11:30 a.m.,&nbsp;Espoo's library and culture bus&nbsp;Välkky&nbsp;will&nbsp;offer&nbsp;plenty&nbsp;of&nbsp;interesting&nbsp;material&nbsp;to read.&nbsp;With&nbsp;Helmet&nbsp;library&nbsp;card&nbsp;you can&nbsp;also&nbsp;borrow books to take home with&nbsp;you.&nbsp;</p><p>Check out the schedule below and head to the community park nearest you. The summer tour performances start at 10 a.m., and admission is&nbsp;free for all&nbsp;events.&nbsp;</p><p>Performances&nbsp;are held,&nbsp;rain or shine, so remember to dress appropriately for the weather! Any&nbsp;possible changes&nbsp;will be announced on the event’s Facebook page.&nbsp;&nbsp;</p><p>Both early childhood education groups and children accompanied by their own adults are welcome to attend the performances.&nbsp;&nbsp;</p><p><br></p><p>SUMMER TOUR SCHEDULE:&nbsp;</p><p>Fri, June 5:&nbsp;Karakallio&nbsp;residents´ park,&nbsp;Kotkatie&nbsp;10&nbsp;&nbsp;</p><p>Mon, June 8:&nbsp;Latokaski&nbsp;residents´ park,&nbsp;Lehtikaskentie&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 9:&nbsp;Tapiola&nbsp;residents´ park,&nbsp;Louhenkuja&nbsp;4&nbsp;&nbsp;</p><p>Wed, June 10:&nbsp;Hiirisuo&nbsp;residents´ park,&nbsp;Pohjoisentie&nbsp;1&nbsp;&nbsp;</p><p>Thu, June 11:&nbsp;Soukka&nbsp;residents´ park,&nbsp;Soukankaari&nbsp;10&nbsp;&nbsp;&nbsp;</p><p>Fri, June 12:&nbsp;Suvela&nbsp;residents´ park,&nbsp;Kirstintie&nbsp;24&nbsp;&nbsp;</p><p>Mon, June 15: Olari&nbsp;residents´ park,&nbsp;Meteorinkatu&nbsp;7&nbsp;&nbsp;</p><p>Tue, June 16:&nbsp;Matinkylä&nbsp;residents´ park,&nbsp;Matinraitti&nbsp;12&nbsp;&nbsp;</p><p>Wed, June 17:&nbsp;Kylätalo&nbsp;Palttina&nbsp;residents´ park,&nbsp;Tegelhagen&nbsp;4&nbsp;&nbsp;</p><p><br></p><p>PLAYFUL LEENA AND COOL VILJAMI - THE CASE OF THE SINGING BOOKWORM!&nbsp;</p><p>The Case of the Singing Bookworm! is an interactive concert&nbsp;about&nbsp;the adventures of best friends Playful Leena and Calm&nbsp;Viljami.&nbsp;&nbsp;</p><p>The Case of the Singing Bookworm! is an ode to play, letters, and&nbsp;learning&nbsp;new things, as well as an imaginative journey back to childhood and&nbsp;summer&nbsp;vacation.&nbsp;Letters begin to form words and open doors to new and wondrous worlds. Leading the way&nbsp;through the&nbsp;concert&nbsp;are&nbsp;Playful Leena (a bubbly bundle of joy with plenty of energy and stories to tell) and her best friend Calm&nbsp;Viljami (who loves&nbsp;to play&nbsp;the piano and has just learned to read).&nbsp;&nbsp;</p><p>But what happens to their friendship when one dives into the world of words and the other doesn’t yet know what letters look like? In the background,&nbsp;another&nbsp;story&nbsp;is being told&nbsp;about&nbsp;the Singing Bookworm, who might pop up at any moment…!&nbsp;&nbsp;</p><p>As the story unfolds, the audience gets to join in on letter games and captivating songs&nbsp;– you&nbsp;might even&nbsp;get to join the&nbsp;reading bug&nbsp;conga line&nbsp;dance&nbsp;–&nbsp;lukutoukkaletkajenkka!&nbsp;&nbsp;</p><p><br></p><p>Duration: approx. 30 min&nbsp;&nbsp;</p><p>Language: Finnish&nbsp;&nbsp;</p><p>Target audience: the whole family, especially preschoolers, kindergarteners, and young elementary school students&nbsp;&nbsp;</p><p>On stage, rhymes, songs, and games: Leena Keizer &amp; Viljami&nbsp;Viippola&nbsp;&nbsp;</p><p>Photo: Ida Romppainen&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7opdsca/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7pykjxu",
            "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:agggfz66i4/?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:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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:p5121/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1917272,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:04:07.225607Z",
                    "last_modified_time": "2026-05-05T10:04:07.225621Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a6681f78-fc06-469c-9e58-5f8930c748fe.png",
                    "name": "Norrgrann työskentelee sekatekniikan ja öljyvärimaalauksen parissa.",
                    "cropping": "189,0,1181,992",
                    "photographer_name": "Manuela Norrgrann",
                    "alt_text": "Kuvassa kirkas, värikäs luontoaiheinen maalaus sekä tiedot näyttelystä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1917272/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:31:35.436735Z",
            "last_modified_time": "2026-05-05T10:31:35.436770Z",
            "date_published": "2026-05-05T10:45:00Z",
            "start_time": "2026-05-31T07:00:00Z",
            "end_time": "2026-06-27T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "43 terälehteä",
                "sv": "43 kronblad",
                "en": "43 Petals"
            },
            "location_extra_info": {
                "fi": "Salongin näyttelyseinä",
                "sv": "Salonki rummets utställningsväggen",
                "en": "Salonki room's exhibition wall"
            },
            "provider": null,
            "short_description": {
                "fi": "Norrgrannin teoksille ovat ominaisia vahva värien käyttö, luontoaiheet sekä henkilökohtainen ja positiivinen ilmaisutapa.",
                "sv": "Hennes konst kännetecknas av stark färganvändning, naturmotiv och ett personligt, positivt uttryck.",
                "en": "Her work is characterized by vibrant colors, nature-inspired themes, and a personal, positive expression. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>43 terälehteä&nbsp;on oodi elämälle, väreille ja riemulle.</p><p><br></p><p>Näyttelyn nimi viittaa taiteilijan ikään ja elämän kulkuun: jokainen vuosi on kuin uusi terälehti – kerros kokemuksia, kasvua ja rikkautta. Jokainen eletty vuosi tekee elämästä täydemmän.</p><p>Luku 43 kantaa mukanaan myös leikkisää symboliikkaa: kun terälehtiä laskee kuten “rakastaa, ei rakasta”, viimeiseksi jää rakastaa.</p><p>Näyttelyn teokset ovat syntyneet vuosien 2020–2026 aikana. Luontoaiheet kulkevat vahvasti mukana, ja osa teoksista on maalattu luonnon keskellä. Mukana on sekä sekatekniikkateoksia että öljyvärimaalauksia.</p><p><br></p><p>Manuela Norrgrann (s. 1983, Italia)&nbsp;on Espoossa asuva kuvataiteilija. Hän valmistui Helsingin kuvataidelukiosta vuonna 2004 ja suoritti kuvataiteen lukiodiplomin arvosanalla 4/5. Vuonna 2005 hän opiskeli Pekka Halosen akatemiassa kuvaamataidon kansanopistolinjalla mm. visuaalista viestintää.</p><p>Norrgrannin teoksille ovat ominaisia vahva värien käyttö, luontoaiheet sekä henkilökohtainen ja positiivinen ilmaisutapa. Hänen taiteessaan esiintyy usein lintuja, kukkia ja mietiskeleviä naishahmoja. Luonto toimii sekä inspiraationa että työskentely-ympäristönä.</p><p>Taiteilijan aktiivinen työskentely käynnistyi uudelleen noin kahdeksan vuotta sitten, ja erityisesti luontoaiheiset teokset vuodesta 2020 alkaen muodostavat keskeisen osan hänen tuotantoaan. Hänen uusimmat öljyvärimaalauksensa ovat valmistuneet vuonna 2026.</p><p>Norrgrann työskentelee sekatekniikan ja öljyvärimaalauksen parissa.</p><p>Instagram: @artby_manuela</p>",
                "sv": "<p>43 kronblad&nbsp;är en hyllning till livet, färgerna och glädjen.</p><p><br></p><p>Utställningens titel syftar på konstnärens ålder och livets gång: varje år är som ett nytt kronblad – ett lager av erfarenhet, växande och rikedom. Varje levt år gör livet fylligare.</p><p>Talet 43 bär också en lekfull symbolik: när man räknar kronblad som i “älskar, älskar inte”, slutar det med älskar.</p><p>Verken i utställningen har skapats mellan åren 2020–2026. Naturmotiv är centrala, och en del av målningarna har skapats ute i naturen. Utställningen innehåller både verk i blandteknik och oljemålningar.</p><p><br></p><p>Manuela Norrgrann (f. 1983, Italien)&nbsp;är en bildkonstnär bosatt i Esbo. Hon tog studenten från Helsingfors bildkonstgymnasium år 2004 och avlade bildkonstdiplom med vitsordet 4/5. År 2005 studerade hon vid Pekka Halonen-akademins folkhögskolelinje för bildkonst.</p><p>Hennes konst kännetecknas av stark färganvändning, naturmotiv och ett personligt, positivt uttryck. I hennes verk förekommer ofta fåglar, blommor och reflekterande kvinnogestalter. Naturen fungerar både som inspiration och arbetsmiljö.</p><p>Norrgranns konstnärliga arbete tog ny fart för cirka åtta år sedan, och naturinspirerade verk från år 2020 och framåt utgör en central del av hennes produktion. Hennes senaste oljemålningar färdigställdes år 2026.</p><p>Hon arbetar med blandteknik och oljemåleri.</p><p>Instagram: @artby_manuela</p>",
                "en": "<p>43 Petals&nbsp;is an ode to life, color, and joy.</p><p><br></p><p>The title refers to the artist’s age and the passage of time: each year is like a new petal – a layer of experience, growth, and richness. Every lived year adds depth to life.</p><p>The number 43 also carries a playful symbolism: like the phrase “loves me, loves me not,” counting the petals always ends with loves me.</p><p>The works in this exhibition were created between 2020 and 2026. Nature is a central theme, and some pieces were painted outdoors. The exhibition includes both mixed media works and oil paintings.</p><p><br></p><p>Manuela Norrgrann (b. 1983, Italy)&nbsp;is a visual artist based in Espoo, Finland. She graduated from Helsinki Upper Secondary School of Visual Arts in 2004 and completed her visual arts diploma with a grade of 4/5. In 2005, she studied at Pekka Halonen Academy.</p><p>Her work is characterized by vibrant colors, nature-inspired themes, and a personal, positive expression. Birds, flowers, and contemplative female figures frequently appear in her paintings. Nature serves as both inspiration and workspace.</p><p>Her artistic practice re-emerged strongly about eight years ago, and nature-themed works created since 2020 form a central part of her portfolio. Her latest oil paintings were completed in 2026.</p><p>Norrgrann works with mixed media and oil painting.</p><p>Instagram: @artby_manuela</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7pykjxu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68585",
            "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/artist/savoy-teatteri/the-beat-goes-on-3888139/"
                    },
                    "description": null,
                    "price": {
                        "fi": "48 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913052,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:27.205839Z",
                    "last_modified_time": "2026-05-05T10:13:27.205858Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791127.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913052/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:27.090941Z",
            "last_modified_time": "2026-05-05T10:13:27.352861Z",
            "date_published": null,
            "start_time": "2026-11-21T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "The Beat Goes On 2026"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Back to the sixties edistämisyhdistys ry"
            },
            "short_description": {
                "fi": "The Beat Goes On, kaksi iltaa Savoy-teatterissa. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BD9D18099C12BE16705EF65DBB093AB5/The_Beat_Goes_On_2026"
            },
            "description": {
                "fi": "<p>The Beat Goes On, kaksi iltaa Savoy-teatterissa. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.</p><p><b>Perjantaina 20.11. klo 18.00</b> alkaen: Topmost, The Goldies, The Sounds, Jim & The Beatmakers, The Mystery Wires, The Sixties Blondies, The Esquires.</p><p><b>Lauantaina 21.11. klo 18.00</b> alkaen: Danny, Sixties Jokers, The Roosters, Tinos, The First, Express.</p><p>Liput: 48 €, kahden päivän lippu 79 € + tilausmaksut (alk. 1,50 € + 0,65 % tilauksesta)</p><p>Konsertin kesto n. 3 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68585/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68584",
            "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/artist/savoy-teatteri/the-beat-goes-on-3888139/"
                    },
                    "description": null,
                    "price": {
                        "fi": "48 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913051,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:26.805950Z",
                    "last_modified_time": "2026-05-05T10:13:26.805966Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791126.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913051/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:26.680680Z",
            "last_modified_time": "2026-05-05T10:13:26.958651Z",
            "date_published": null,
            "start_time": "2026-11-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "The Beat Goes On 2026"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Back to the sixties edistämisyhdistys ry"
            },
            "short_description": {
                "fi": "The Beat Goes On, kaksi iltaa Savoy-teatterissa. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4B68979BA40F5DF38E8015EE119657C1/The_Beat_Goes_On_2026"
            },
            "description": {
                "fi": "<p>The Beat Goes On, kaksi iltaa Savoy-teatterissa. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.</p><p><b>Perjantaina 20.11. klo 18.00</b> alkaen: Topmost, The Goldies, The Sounds, Jim & The Beatmakers, The Mystery Wires, The Sixties Blondies, The Esquires.</p><p><b>Lauantaina 21.11. klo 18.00</b> alkaen: Danny, Sixties Jokers, The Roosters, Tinos, The First, Express.</p><p>Liput: 48 €, kahden päivän lippu 79 € + tilausmaksut (alk. 1,50 € + 0,65 % tilauksesta)</p><p>Konsertin kesto n. 3 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68584/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68500",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4142489",
                        "en": "https://www.lippu.fi/eventseries/name-4142489"
                    },
                    "description": null,
                    "price": {
                        "fi": "20-44 €",
                        "en": "20-44 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913050,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:26.114479Z",
                    "last_modified_time": "2026-05-05T10:13:26.114494Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789971.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913050/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:25.955485Z",
            "last_modified_time": "2026-05-05T10:13:26.292652Z",
            "date_published": null,
            "start_time": "2026-11-12T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Michael Mayo (USA) & UMO Helsinki Jazz Orchestra",
                "en": "Michael Mayo (USA) & UMO Helsinki Jazz Orchestra"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "UMO Helsinki Jazz Orchestra",
                "en": "UMO Helsinki Jazz Orchestra"
            },
            "short_description": {
                "fi": "Kovassa nosteessa oleva laulaja ja säveltäjä Michael Mayo on yksi sukupolvensa johtavista nykyvokalisteista. Mayon kausi UMO Helsinki Jazz Orchestran päävierailijana käynnistyy tästä konsertista! Michael Mayo räätälöi ensimmäistä kohtaamista varten uuden ohjelmiston, jossa hänen suosikkinsa omasta tuotannostaan saavat ylleen upouudet big band -sovitukset.",
                "en": "The acclaimed singer and composer Michael Mayo is one of the leading contemporary vocalists of his generation. The collaboration with the UMO Helsinki Jazz Orchestra and their newly appointed artist-in-residence kicks off with this concert!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/53B328CC806D9D4A05E5693518C021DD/Michael_Mayo_USA_UMO_Helsinki_Jazz_Orchestra",
                "en": "http://www.savoyteatteri.fi/en/events/event/53B328CC806D9D4A05E5693518C021DD/Michael_Mayo_USA_UMO_Helsinki_Jazz_Orchestra"
            },
            "description": {
                "fi": "<p>Kovassa nosteessa oleva laulaja ja säveltäjä Michael Mayo on yksi sukupolvensa johtavista nykyvokalisteista. Mayon kausi UMO Helsinki Jazz Orchestran päävierailijana käynnistyy tästä konsertista! Michael Mayo räätälöi ensimmäistä kohtaamista varten uuden ohjelmiston, jossa hänen suosikkinsa omasta tuotannostaan saavat ylleen upouudet big band -sovitukset.</p><p>Yhdysvaltalainen laulaja ja säveltäjä Michael Mayo (s. 1992) on yksi sukupolvensa johtavista nykyvokalisteista, joka on ollut jazzpiirien huulilla ylistystä keränneen debyyttinsä Bones (2021) ja sitä seuranneen, Grammy-ehdokkuuksiakin saaneen albumin Fly (2024) myötä. Hänen musiikkinsa yhdistelee elementtejä jazzista, neo-soulista ja R&B:stä ja hän on tunnettu erityisesti innovatiivisesta, monipuolisesti ääntä käyttävästä laulutyylistään. Mayo oli vasta kolmas vokalisti, joka hyväksyttiin arvostettuun Herbie Hancock Institute of Jazziin. Hän on tehnyt yhteistyötä ja kiertänyt lavoja mm. Hancockin, Jacob Collierin, Gretchen Parlaton ja Nate Smithin kanssa. <br>Päävierailijana hän laajentaa UMO Helsinki Jazz Orchestran repertuaaria ja tuo mukanaan uusia näkökulmia sekä laajasti omia kontaktejaan. Hän suunnittelee vähintään neljä ohjelmistoa kausittain ja esiintyy orkesterin kanssa vähintään kahdesti konserttikaudessa. Mayon kaksivuotinen päävierailijakausi ulottuu syksystä 2026 kevääseen 2028.</p><p>– Olen todella innoissani päästessäni tekemään yhteistyötä UMO Helsinki Jazz Orchestran kanssa. Korvissani on soinut jo pitkään valtavasti musiikkia, jonka herättämisestä henkiin tämän upean kokoonpanon kanssa olen aivan täpinöissäni. Uskon, että yhteistyöstämme tulee jotain ainutlaatuista, ja odotan suurella mielenkiinnolla yhteistä matkaamme, Mayo kommentoi.</p><p>Kapellimestarina <b>Ville Vannemaa</b>.</p><p>Konsertin kesto 2 h, sis. väliajan.</p><p>Permanto K-18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Video https://youtu.be/qAlPI_rKvE0?si=0h1bnEZqpP4gSWem<br>Spotify https://open.spotify.com/artist/5GPxGRe2IglKP3ZiwwJbP4?si=Bg3pd4cUTaSEZv9cLM0IQQ</p><p><i><b>UMO Helsinki Jazz Orchestra – jazzin urotekoja ja taidonnäytteitä jo vuodesta 1975!</b> UMO Helsinki Jazz Orchestra on ollut yli 50 vuotta suomalaisen jazzin huipulla. Yrjö- ja Emma-palkittu ja Grammy-ehdokkuudellakin noteerattu orkesteri on jakanut lavat maailman suurimpien jazzlegendojen ja kotimaisten tähtien kanssa. Diskografiassa komeilee reilut 60 albumia. Helsinkiläisten oma jazzkaupunginorkesteri konsertoi ympäri Suomen yli 100 keikan ja 35 000 kuulijan vuosivauhdilla. UMOn ydin on uudessa musiikissa, ja yllätyksellinen ohjelmisto taipuu tinkimättömällä otteella jazzista souliin ja klassiseen. www.umohelsinki.fi</i></p>",
                "en": "<p>The acclaimed singer and composer Michael Mayo is one of the leading contemporary vocalists of his generation. The collaboration with the UMO Helsinki Jazz Orchestra and their newly appointed artist-in-residence kicks off with this concert!</p><p>For this first collaboration, Michael Mayo has curated a custom program featuring his personal favourites, reimagined with brand-new big band arrangements.</p><p>American singer and composer Michael Mayo (b. 1992) is one of the leading contemporary vocalists of his generation. He has been prominent in jazz circles since his critically acclaimed debut album Bones (2021) and the follow-up, the Grammy-nominated Fly (2024). In his music, he combines elements of jazz, neo-soul and R&B, and he is particularly known for his innovative and versatile vocal style. Mayo was only the third vocalist accepted into the prestigious Herbie Hancock Institute of Jazz. He has collaborated and performed with, among others, Hancock, Jacob Collier, Gretchen Parlato, and Nate Smith.</p><p>As artist-in-residence, he will expand UMO’s repertoire and bring new perspectives as well as an extensive network of contacts. He will plan at least four programmes each season and perform  with the orchestra at least twice per concert season. Mayo’s two-year term runs from autumn 2026 to spring 2028.</p><p>– I’m genuinely so excited to get the chance to collaborate with the UMO Helsinki Jazz Orchestra. I’ve had so much music swirling in my ears that I’m excited to be able to bring to life such an incredible ensemble. I think we’re gonna have a really special time together, and I look forward to all the music to come, says Mayo.</p><p>Conductor <b>Ville Vannemaa</b>.</p><p>Duration 2 hours, including an intermission.</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><i><b>UMO Helsinki Jazz Orchestra: great achievements and mastery in jazz since 1975!</b> Throughout the decades, UMO has been at the forefront of Finnish jazz. This multi-award-winning ensemble – recipient of the Yrjö and Emma awards and a Grammy nominee – has shared the stage with international jazz legends as well as the brightest stars of the Finnish music scene. With a distinguished discography of over 60 albums, Helsinki’s own \"jazz city orchestra\" performs across Finland, reaching 35,000 listeners through more than 100 concerts annually. At the heart of UMO is a commitment to new music. The orchestra’s versatile repertoire fearlessly pushes boundaries, from jazz and soulful grooves to classical fusion. www.umohelsinki.fi</i></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68500/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68526",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913048,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:25.451602Z",
                    "last_modified_time": "2026-05-05T10:13:25.451616Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790403.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913048/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:25.315685Z",
            "last_modified_time": "2026-05-05T10:13:25.608731Z",
            "date_published": null,
            "start_time": "2026-10-26T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "UMO Helsinki Ensemble – Jimmy Giuffre 3 – Lounaskonsertti",
                "en": "UMO Helsinki Ensemble – Jimmy Giuffre 3 – Lunch time concert"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra",
                "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra"
            },
            "short_description": {
                "fi": "Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2026! Tämän konsertin ilmaisliput ovat varattavissa to 8.10. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.",
                "en": "Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2026! The free concert tickets can be reserved from Thursday 8th October at 3 pm at the Savoy Theatre and Lippu.fi, see below for more detailed instructions."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B151EF4461F45341CCD867F8E39E2103/UMO_Helsinki_Ensemble_Jimmy_Giuffre_3",
                "en": "http://www.savoyteatteri.fi/en/events/event/B151EF4461F45341CCD867F8E39E2103/UMO_Helsinki_Ensemble_Jimmy_Giuffre_3"
            },
            "description": {
                "fi": "<p>Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2026! Tämän konsertin ilmaisliput ovat varattavissa to 8.10. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.</p><p>UMOn puupuhallinspesialisti <b>Max Zenger</b> johdattaa kuulijat amerikkalaisen jazzin omaleimaiseen maailmaan, kun hänen kvartettinsa tulkitsee <b>Jimmy Giuffre 3</b> -yhtyeen ja samannimisen vuonna 1957 julkaistun levyn musiikkia. Zenger astuu itse Giuffren rooliin soittaen baritonisaksofonia ja klarinettia, ja hänen seurassaan lavalle nousevat kitaristi Rene Willman Jim Hallin ja basisti Filemon von Numers Ralph Peñan rooleissa. Erityisen lisän konserttiin tuo rumpali Mikko Hassinen, joka on sovittanut rumpalin osuudet Giuffren musiikkiin tehden triosta kvartetin.</p><p>Giuffren sävellykset hämärtävät rajoja jazzin, bluesin ja amerikkalaisen folk-musiikin välillä. Miltei kokonaan läpisävelletty musiikki sisältää aikakautensa normista poikkeavia harmonisia ja melodisia valintoja. Konsertti tarjoaa rauhallisia ja syvällisiä äänimaisemia, jotka puhuttelevat sekä jazzin että amerikkalaisen roots-musiikin ystäviä.</p><p><b>UMO Helsinki Ensemble</b> on UMO Helsinki Jazz Orchestrasta koottu pienempi kokoonpano, jonka muusikoilla on mittava ura niin UMOn riveissä kuin lukuisissa omissa projekteissaan. Konsertin ohjelmiston on suunnitellut saksofonisti Max Zenger, joka myös luotsaa ensembleä.</p><p>Kokoonpano:<br>Max Zenger, baritonisaksofoni, klarinetti ja yhtyeenjohto<br>Rene Willman, kitara<br>Filemon von Numers, basso<br>Mikko Hassinen, rummut <br> <br>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon to 8.10. klo 15 alkaen Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus. Max. 2 lippua / asiakas. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä. Konsertin kesto 1 h.</p>",
                "en": "<p>Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2026! The free concert tickets can be reserved from Thursday 8th October at 3 pm at the Savoy Theatre and Lippu.fi, see below for more detailed instructions.</p><p>The woodwind specialist <b>Max Zenger</b> introduces listeners to the unique world of American jazz as his quartet interprets the music of <b>Jimmy Giuffre 3</b> and the album of the same name released in 1957. Zenger himself takes on the role of Giuffre, playing baritone saxophone and clarinet, accompanied on stage by guitarist Rene Willman as Jim Hall and bassist Filemon von Numers as Ralph Peña. Drummer Mikko Hassinen brings a special touch to the concert, having arranged drum parts for Giuffre’s music and expanding the trio into a quartet.</p><p>Giuffre's compositions blur the boundaries between jazz, blues, and American folk music. The music, which is almost entirely through-composed, features harmonic and melodic choices that deviate from the norms of its era. The concert offers peaceful and profound soundscapes that will appeal to fans of both jazz and American roots music.</p><p>The <b>UMO Helsinki Ensemble</b> is a smaller ensemble formed from the UMO Helsinki Jazz Orchestra, whose musicians have extensive careers both with UMO and in their own numerous projects. The concert program has been planned by saxophonist Max Zenger, who also leads the ensemble.</p><p>Line-up:<br>Max Zenger, baritone saxophone, clarinet, and band leader<br>Rene Willman, guitar<br>Filemon von Numers, bass<br>Mikko Hassinen, drums</p><p>Please note! The concert will be held in the Savoy Theatre from 12 noon to 1 pm. The admission is free, but we recommend booking in advance at the Savoy Theatre box office (0 €) or Lippu.fi (3 € commission). Max. 2 tickets per customer. For larger group bookings, please contact the Savoy Theatre. Admission only with pre-booked tickets until 11.50 am, after which remaining seats will be released to customers without a pre-booking. Please arrive early as the doors will be closed once the concert has started. The duration of the concert is 1 hour.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68526/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68520",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4145563",
                        "en": "https://www.lippu.fi/eventseries/name-4145563"
                    },
                    "description": null,
                    "price": {
                        "fi": "20-44 €",
                        "en": "20-44 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913046,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:24.249167Z",
                    "last_modified_time": "2026-05-05T10:13:24.249190Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790277.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913046/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:24.112562Z",
            "last_modified_time": "2026-05-05T10:13:24.406050Z",
            "date_published": null,
            "start_time": "2026-10-01T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Becca Stevens (USA) & UMO Helsinki Jazz Orchestra",
                "en": "Becca Stevens (USA) & UMO Helsinki Jazz Orchestra"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "UMO Helsinki Jazz Orchestra",
                "en": "UMO Helsinki Jazz Orchestra"
            },
            "short_description": {
                "fi": "Valmistaudu kokemaan jotain aivan ainutlaatuista, kun genrerajoja pelottomasti rikkova yhdysvaltalaisvisionääri Becca Stevens ja UMO Helsinki Jazz Orchestra kohtaavat Savoy-teatterissa!",
                "en": "Get ready for a truly unique experience as the fearless, genre-defying visionary Becca Stevens joins forces with the UMO Helsinki Jazz Orchestra at the Savoy Theatre!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/14959DEFFDF608A84AEE0A7FE2A60F58/Becca_Stevens_USA_UMO_Helsinki_Jazz_Orchestra",
                "en": "http://www.savoyteatteri.fi/en/events/event/14959DEFFDF608A84AEE0A7FE2A60F58/Becca_Stevens_USA_UMO_Helsinki_Jazz_Orchestra"
            },
            "description": {
                "fi": "<p>Valmistaudu kokemaan jotain aivan ainutlaatuista, kun genrerajoja pelottomasti rikkova yhdysvaltalaisvisionääri Becca Stevens ja UMO Helsinki Jazz Orchestra kohtaavat Savoy-teatterissa!</p><p>Kitaristi, laulaja-lauluntekijä Becca Stevens on musiikillinen voimanpesä, jonka käsissä folk, indie-pop ja jazz-harmonia kietoutuvat maagiseksi ja hypnoottiseksi kokonaisuudeksi. Stevensin intiimit sävellykset ja kerrokselliset rytmit heräävät eloon ennennäkemättömällä tavalla, kun ne saavat ylleen tätä konserttia varten räätälöidyt värikylläiset big band -sovitukset UMOn mestarillisina tulkintoina.</p><p>Olitpa intohimoinen jazzin harrastaja, indiefolkin ystävä tai elämää suurempien musiikkielämysten metsästäjä, tätä iltaa et halua ohittaa!</p><p>Konsertin kesto n. 75 min, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Spotify https://open.spotify.com/artist/0Sh2X6e3JerGnyEF0vDgbk?si=WCrZ6a-wTLqKPvqsfXEFvA</p><p><i><b>Becca Stevens</b> (s. 1984) on yhdysvaltalainen laulaja-lauluntekijä, kitaristi ja multi-instrumentalisti, joka tunnetaan genrerajoja rikkovasta, tunteisiin vetoavasta tyylistään. Hänen musiikissaan yhdistyvät saumattomasti jazz, folk, pop ja maailmanmusiikki. Stevens on tullut tunnetuksi erityisesti uniikista äänenkäytöstään sekä kyvystään hallita monimutkaisia harmonioita ja rytmejä. Uransa aikana hän on julkaissut useita kriitikoiden ylistämiä albumeita, kuten Regina ja Maple to Paper. Oman Becca Stevens Bandin lisäksi hän on tehnyt laajasti yhteistyötä huippunimien, kuten Jacob Collierin, Snarky Puppyn, Ambrose Akinmuseren ja Brad Mehldaun kanssa. Stevens on ollut Grammy-ehdokkaana kahdesti, mikä vahvistaa hänen asemaansa yhtenä sukupolvensa innovatiivisimmista musiikintekijöistä. www.beccastevens.com</p><p><b>UMO Helsinki Jazz Orchestra – jazzin urotekoja ja taidonnäytteitä jo vuodesta 1975!</b> UMO Helsinki Jazz Orchestra on ollut yli 50 vuotta suomalaisen jazzin huipulla. Yrjö- ja Emma-palkittu ja Grammy-ehdokkuudellakin noteerattu orkesteri on jakanut lavat maailman suurimpien jazzlegendojen ja kotimaisten tähtien kanssa. Diskografiassa komeilee reilut 60 albumia. Helsinkiläisten oma jazzkaupunginorkesteri konsertoi ympäri Suomen yli 100 keikan ja 35 000 kuulijan vuosivauhdilla. UMOn ydin on uudessa musiikissa, ja yllätyksellinen ohjelmisto taipuu tinkimättömällä otteella jazzista souliin ja klassiseen. www.umohelsinki.fi</i></p>",
                "en": "<p>Get ready for a truly unique experience as the fearless, genre-defying visionary Becca Stevens joins forces with the UMO Helsinki Jazz Orchestra at the Savoy Theatre!</p><p>Singer-songwriter and guitarist Becca Stevens is a musical powerhouse. In her hands, folk, indie-pop, and jazz harmonies intertwine into a magical and hypnotic whole. Stevens’ intimate compositions and layered rhythms will come to life like never before, reimagined through vibrant big band arrangements tailored specifically for this concert and brought to the stage by UMO’s masterful interpretation.</p><p>Whether you are a passionate jazz enthusiast, a fan of indie-folk, or a seeker of larger-than-life musical experiences, this is a night you don’t want to miss!</p><p>Duration about 75 min, no intermission.</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><i><b>Becca Stevens</b> (b. 1984) is an American singer-songwriter, guitarist and multi-instrumentalist celebrated for her genre-defying and deeply emotive style. Her music seamlessly weaves together jazz, folk, pop, and world music. Stevens is particularly renowned for her unique vocal delivery and her mastery of complex harmonies and rhythms. Throughout her career, she has released several critically acclaimed albums, including Regina and Maple to Paper. In addition to leading the Becca Stevens Band, she has collaborated extensively with world-class artists such as Jacob Collier, Snarky Puppy, Ambrose Akinmusere, and Brad Mehldau. With two Grammy nominations, Stevens has firmly established herself as one of the most innovative musical creators of her generation. www.beccastevens.com</p><p><b>UMO Helsinki Jazz Orchestra: great achievements and mastery in jazz since 1975!</b> Throughout the decades, UMO has been at the forefront of Finnish jazz. This multi-award-winning ensemble – recipient of the Yrjö and Emma awards and a Grammy nominee – has shared the stage with international jazz legends as well as the brightest stars of the Finnish music scene. With a distinguished discography of over 60 albums, Helsinki’s own \"jazz city orchestra\" performs across Finland, reaching 35,000 listeners through more than 100 concerts annually. At the heart of UMO is a commitment to new music. The orchestra’s versatile repertoire fearlessly pushes boundaries, from jazz and soulful grooves to classical fusion. www.umohelsinki.fi</i></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68520/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68525",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913041,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:23.244951Z",
                    "last_modified_time": "2026-05-05T10:13:23.244965Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790402.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913041/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:23.061415Z",
            "last_modified_time": "2026-05-05T10:13:23.442445Z",
            "date_published": null,
            "start_time": "2026-09-09T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "UMO Helsinki Jazz Orchestra & Elena Mîndru – Echoes of Broadway – Lounaskonsertti",
                "en": "UMO Helsinki Jazz Orchestra & Elena Mîndru – Echoes of Broadway – Lunch time concert"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra",
                "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra"
            },
            "short_description": {
                "fi": "Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2026! Tämän konsertin ilmaisliput ovat varattavissa to 20.8. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.",
                "en": "Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2026! The free concert tickets can be reserved from Thursday 20th August at 3 pm at the Savoy Theatre and Lippu.fi, see below for more detailed instructions."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9994C57C96CB541E95DB9D67BBE0CD04/UMO_Helsinki_Jazz_Orchestra_Elena_M_ndru_Echoes_of_Broadway",
                "en": "http://www.savoyteatteri.fi/en/events/event/9994C57C96CB541E95DB9D67BBE0CD04/UMO_Helsinki_Jazz_Orchestra_Elena_M_ndru_Echoes_of_Broadway"
            },
            "description": {
                "fi": "<p>Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2026! Tämän konsertin ilmaisliput ovat varattavissa to 20.8. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.</p><p>Musikaaliklassikoita ja jazzin huumaa! Echoes of Broadway on jazzlaulaja <b>Elena Mîndrun</b> tohtorikonsertti, jossa Broadway-klassikot heräävät eloon suuren jazzorkesterin tulkitsemana. Taiteellista tohtorintutkintoaan Sibelius-Akatemiassa viimeistelevälle Mîndrulle konsertointi yhdessä <b>UMO Helsinki Jazz Orchestran</b> kanssa on tutkinnon viimeinen taiteellinen osio.</p><p>Tässä konsertissa rakastetut Broadway-klassikot saavat uuden elämän <b>Artturi Röngän</b> ja <b>Sampo Kasurisen</b> uusina big band -sovituksina. Kapellimestarina toimii UMO Helsinki Jazz Orchestran tuore pääkapellimestari <b>Ville Vannemaa</b>.</p><p>Kesto n. 60 min, ei väliaikaa.</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon to 20.8. klo 15 alkaen Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus. Max. 2 lippua / asiakas. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä. Konsertin kesto 1 h.</p><p><i><b>Elena Mîndru</b> (s. 1988) edustaa Suomen jazzlaulajien parhaimmistoa. Upeasta esiintymisestään ja improvisaatioistaan tunnettu Mîndru esiintyy säännöllisesti isojen orkestereiden solistina muiden maiden ohella molemmissa kotimaissaan Suomessa ja Romaniassa. Hän on julkaissut omalla nimellään kuusi jazzlevyä, joista uusin, Second Time Around, julkaistaan v. 2026. Säveltäjänäkin kunnostautunut Mîndru on kirjoittanut useita teoksia big bandille, sinfoniaorkesterille ja pienyhtyeille. www.elenamindru.com</p><p><b>UMO Helsinki Jazz Orchestra – jazzin urotekoja ja taidonnäytteitä jo vuodesta 1975!</b> UMO Helsinki Jazz Orchestra on ollut yli 50 vuotta suomalaisen jazzin huipulla. Yrjö- ja Emma-palkittu ja Grammy-ehdokkuudellakin noteerattu orkesteri on jakanut lavat maailman suurimpien jazzlegendojen ja kotimaisten tähtien kanssa. Diskografiassa komeilee reilut 60 albumia. Helsinkiläisten oma jazzkaupunginorkesteri konsertoi ympäri Suomen yli 100 keikan ja 35 000 kuulijan vuosivauhdilla. UMOn ydin on uudessa musiikissa, ja yllätyksellinen ohjelmisto taipuu tinkimättömällä otteella jazzista souliin ja klassiseen. www.umohelsinki.fi </i></p>",
                "en": "<p>Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2026! The free concert tickets can be reserved from Thursday 20th August at 3 pm at the Savoy Theatre and Lippu.fi, see below for more detailed instructions.</p><p>Classic musical hits and jazz frenzy! Echoes of Broadway is jazz singer <b>Elena Mîndru's</b> doctoral concert, in which Broadway classics come to life as interpreted by a large jazz orchestra. For Mîndru, who is completing her doctoral degree in Arts at the Sibelius Academy, the concert with the <b>UMO Helsinki Jazz Orchestra</b> is the final artistic component of her degree.</p><p>In this concert, beloved Broadway classics are brought to life as new big band arrangements by <b>Artturi Rönkä</b> and <b>Sampo Kasurinen</b>. The concert is conducted by <b>Ville Vannemaa</b>, the new chief conductor of the UMO Helsinki Jazz Orchestra.</p><p>Please note! The concert will be held in the Savoy Theatre from 12 noon to 1 pm. The admission is free, but we recommend booking in advance at the Savoy Theatre box office (0 €) or Lippu.fi (3 € commission). Max. 2 tickets per customer. For larger group bookings, please contact the Savoy Theatre. Admission only with pre-booked tickets until 11.50 am, after which remaining seats will be released to customers without a pre-booking. Please arrive early as the doors will be closed once the concert has started. The duration of the concert is 1 hour.</p><p><i><b>Elena Mîndru</b> (b. 1988) is one of the best Finnish jazz singers. Known for her charismatic performances and improvisations, Mîndru regularly performs as a soloist with large orchestras in both her home countries, Finland and Romania, among other countries. She has published six jazz albums under her own name, the latest Second Time Around in 2026. Mîndru has also gained recognition as a composer and has written several works for big band, symphony orchestra and smaller ensembles. www.elenamindru.com</p><p><b>UMO Helsinki Jazz Orchestra: great achievements and mastery in jazz since 1975!</b> Throughout the decades, UMO has been at the forefront of Finnish jazz. This multi-award-winning ensemble – recipient of the Yrjö and Emma awards and a Grammy nominee – has shared the stage with international jazz legends as well as the brightest stars of the Finnish music scene. With a distinguished discography of over 60 albums, Helsinki’s own \"jazz city orchestra\" performs across Finland, reaching 35,000 listeners through more than 100 concerts annually. At the heart of UMO is a commitment to new music. The orchestra’s versatile repertoire fearlessly pushes boundaries, from jazz and soulful grooves to classical fusion. www.umohelsinki.fi</i></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68525/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67504",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1837025,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T13:13:55.262101Z",
                    "last_modified_time": "2026-05-04T13:13:55.262117Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781612.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1837025/?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-05-04T13:13:55.143380Z",
            "last_modified_time": "2026-05-05T10:13:11.529936Z",
            "date_published": null,
            "start_time": "2026-05-09T08:00:00Z",
            "end_time": "2026-05-09T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Annantalon taidelauantai: Kuka on sinun eläinoletettusi?",
                "sv": "Annegårdens konstlördag: Vem är ditt förmodade djur?",
                "en": "Annantalo Art Saturday: Who is your supposed animal?"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0F49BF90EB097DD14FE8991677342FE7/Annantalon_taidelauantai_Kuka_on_sinun_elainoletettusi_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0F49BF90EB097DD14FE8991677342FE7/Annegardens_konstlordag_Vem_ar_ditt_formodade_djur_",
                "en": "http://www.annantalo.fi/en/events/event/0F49BF90EB097DD14FE8991677342FE7/Annantalo_Art_Saturday_Who_is_your_supposed_animal_"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kuka on sinun eläinoletettusi?</b></p><p>Tämänkertaisessa taidelauantaissa pääset taiteilemaan palapelin palan ja siihen oman kuvan omasta eläinoletetustasi. Työpaja on innoitettu Hans-Peter Shüttin Anima-näyttelystä ja taiteilija itsekin on paikalla kertomassa teoksistaan. Pääset myös käyttämään näyttelyn teoksissa käytettyjä sabluunoita.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon Noora Puranen ja Hans-Peter Shütt.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Vem är ditt förmodade djur?/b><br> <br>Denna konstlördag får du skapa en pusselbit med en bild av ditt egna förmodade djur. Workshopen är inspirerad av Hans-Peter Schütts Anima-utställning och konstnären själv kommer att vara där för att berätta om sina verk.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Noora Puranen och Hans-Peter Shütt<br>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Who is your supposed animal?</b><br> <br>This Art Saturday you will get to create a puzzle piece with a picture of your own supposed animal. The workshop is inspired by Hans-Peter Schütt's Anima exhibition and the artist himself will be present to talk about his works</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led byNoora Puranen and Hans-Peter Shütt<br>A warm welcome to Annantalo on Saturdays!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67504/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68612",
            "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/anssi-kela-nummela-25-vuotisjuhlakiertue-savoy-teatteri-21614602/"
                    },
                    "description": null,
                    "price": {
                        "fi": "39,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1910454,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T09:13:30.520702Z",
                    "last_modified_time": "2026-05-05T09:13:30.520716Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791188.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1910454/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T09:13:30.351240Z",
            "last_modified_time": "2026-05-05T09:13:30.696291Z",
            "date_published": null,
            "start_time": "2026-12-02T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Anssi Kela - Nummela 25-vuotisjuhlakiertue"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Live Nation Finland Oy"
            },
            "short_description": {
                "fi": "Anssi Kelan vuonna 2001 julkaistu esikoisalbumi Nummela nousi nopeasti sukupolvikokemukseksi ja määritti 2000-luvun alun suomalaista musiikkimaailmaa. Nyt Kela juhlistaa 25-vuotiasta levyä Helsingin juhlaviikoilta käynnistyvällä kiertueella, jonka jälkeen hän jää ensimmäiselle pidemmälle keikkatauolle urallaan."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/97EA348FBE4652EEA2E87648E8957E89/Anssi_Kela_-_Nummela_25-vuotisjuhlakiertue"
            },
            "description": {
                "fi": "<p>Anssi Kelan vuonna 2001 julkaistu esikoisalbumi Nummela nousi nopeasti sukupolvikokemukseksi ja määritti 2000-luvun alun suomalaista musiikkimaailmaa. Nyt Kela juhlistaa 25-vuotiasta levyä Helsingin juhlaviikoilta käynnistyvällä kiertueella, jonka jälkeen hän jää ensimmäiselle pidemmälle keikkatauolle urallaan.</p><p><b>Anssi Kela</b> aloittaa Nummela-albumia juhlistavan kiertueensa Helsingin juhlaviikkojen Huvila-teltasta torstaina 27. elokuuta. Kiertue saa jatkoa lauantaina 3. lokakuuta alkaen, jolloin Kela yhtyeineen konsertoi Vihdin Kulttuuritalolla. Siitä kiertue jatkuu loka-marraskuun ajan kulkien läpi Suomen ja päättyen Helsingin Savoy-teatteriin keskiviikkona 2. joulukuuta.</p><p>Kiertueen konserteissa kuullaan kaikki albumin biisit. Mukana ovat niin jo vuosikymmeniä ihmisten elämäntarinoissa mukana kulkeneet hitit kuten <i>Puistossa, Milla, Mikan faijan BMW</i> ja <i>Nummela</i> sekä biisit, joita ei ole livenä kuultu vuosiin. Keikkoja varten rakennetaan lavasteet, jotka vievät Nummela-albumin maailmaan. Välispiikeissä Kela on luvannut kertoa tarinoita biisien tiimoilta</p><p>- <i>Nummela oli aikanaan sukupolvia yhdistävää musiikkia. Tekijälle on todella suuri ilo saada huomata, miten tärkeitä Nummelan kappaleet ovat monille olleet, ja miten ne ovat kulkeneet ihmisten elämissä mukana. Keikoilla niiden merkitys konkretisoituu. Tällä kiertueella on tarkoitus palata vuoteen 2001. Siihen hetkeen, jolloin nämä laulut olivat uusia — ja saatoimme itsekin olla hiukan nuorempia,</i> sanoo Anssi Kela.</p><p>Konsertit ovat kaksiosaisia. Väliajan jälkeen kuullaan hittejä Kelan muilta albumeilta.</p><p>Savoy-teatterin konsertin jälkeen Kela soittaa vielä perinteisen joulun välipäivien esiintymisen Tuusulan Krapin pajalla, minkä jälkeen hän jää uransa ensimmäiselle pidemmälle keikkatauolle. Tauon pituus on toistaiseksi avoin.</p><p><b>Nummela</b><br>Anssi Kelan ensimmäinen albumi, Nummela, julkaistiin maaliskuussa 2001. Se debytoi albumilistan sijalla 14, poukkoili monta viikkoa kärkikymmenikössä, kunnes lopulta kesäkuussa, viisitoista viikkoa julkaisunsa jälkeen, nousi Suomen albumilistan ykköseksi. Nummela pysyi listalla lopulta 57 viikkoa, joista se oli ykkösenä 16 viikkoa. Levy on myynyt viisinkertaista platinaa, yhteensä n. 160 000 kappaletta. Sen yhdeksästä kappaleesta nousi neljä suurta hittiä: ensimmäisenä singlenä julkaistu Mikan faijan BMW, Kaksi sisarta, Puistossa sekä nimikappale Nummela.</p><p>Levyn triplaplatinapainoksen kunniaksi marraskuussa 2001 julkaistiin single Milla, josta tulikin Kelan siihen astisen uran suurin hitti. Single julkaistiin sekä irrallisena levynä että kylkiäisenä Nummelan uudessa painoksessa. Millaa pidetäänkin Suomen äänitehistorian myydyimpänä singlenä: sitä myytiin 10 000 kappaletta itsenäisenä singlenä ja lähes 50 000 osana Nummelaa.</p><p>Albumista julkaistiin myös nuottikirja, joka sisälsi studiopäiväkirjan ja lyhyet esseet kappaleista.</p><p>Nummela-albumin hitit soivat yhä radioissa ja pelkästään Spotifyssä ne ovat keränneet liki 40 miljoonaa striimiä. Albumin biisit ovat Anssi Kelan käsialaa, ja hän myös tuotti levyn suurimmilta osin itse.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68612/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3txpzdi",
            "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:p556/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1901782,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T06:14:20.697789Z",
                    "last_modified_time": "2026-05-05T06:14:20.697803Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6aab9315-5bdf-4721-91a2-46cc326ad23f.jpg",
                    "name": "",
                    "cropping": "0,214,3197,3411",
                    "photographer_name": "",
                    "alt_text": "Kuvassa Timo Hännikäinen, Patrick O'Rourke, Tiera Laitinen ja Ian Mac Eochagain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1901782/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-23T09:27:54.381702Z",
            "last_modified_time": "2026-05-05T06:14:46.379232Z",
            "date_published": null,
            "start_time": "2026-05-09T10:00:00Z",
            "end_time": "2026-05-09T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paneelikeskustelu suomen kielen asemasta",
                "sv": "Paneldiskussion om det finska språkets ställning",
                "en": "Panel discussion on the status of the Finnish language"
            },
            "location_extra_info": {
                "fi": "Akseli-sali",
                "sv": "Akseli-salen",
                "en": "Akseli Hall"
            },
            "provider": {
                "fi": "Suomen Sisu "
            },
            "short_description": {
                "fi": "Suomen Sisu -järjestön vuoden 2026 teemana on kansalliskielen suojelu. Paneelikeskustelu suomalaisuuden päivän johdosta suomen kielen asemasta.",
                "sv": "Paneldiskussion om det finska språkets ställning. Evengemanget hålls på finska.",
                "en": "Panel discussion on the status of the Finnish language. The event will be held in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>La 9.5. klo 13</p><p>Suomen Sisu -järjestön vuoden 2026 teemana on kansalliskielen suojelu ja järjestö kutsuu tulevan suomalaisuuden päivän johdosta koolle paneelikeskustelun suomen kielen asemasta. Sellon kirjaston lavalla kohtaavat neljä kielenkäyttäjää. He lähestyvät suomen kieltä eri näkökulmista, mutta heitä yhdistää arvostus ja rakkaus suomea kohtaan.</p><p><strong>Timo Hännikäinen</strong> on kirjailija ja suomentaja. Hän on Kiuas Kustannuksen kustannustoimittaja, verkkolehti Sarastuksen päätoimittaja sekä Suomen Sisun II varapuheenjohtaja.</p><p><strong>Patrick O'Rourke </strong>on fennougristi. Hänen tutkimusalaansa ovat liivin kieli ja lounaisitämerensuomalaiset kielet, etymologia ja historiallinen sosiolingvistiikka.</p><p><strong>Ian Mac Eochagáin</strong> (/ian makohagon/) on Lohjalla asuva irlantilaissyntinen kääntäjä ja kirjailija. Hänen esikoiskirjansa 101 finglishismiä – eroon tankeroista (Aviador 2025, 3. painos) kertoo, miten ja miksi suomalaiset firmat käyttävät englantia, joka vain vaikuttaa aidolta englannilta, kuten \"take into use\".</p><p><strong>Tiera Laitinen</strong> on avaruusfysiikasta väitellyt filosofian tohtori ja avaruussäätutkimuksen ryhmäpäällikkö. Hän on Suomalaisuuden Liiton puheenjohtaja. Liitto herättää ja vahvistaa kansallista tietoutta ja ajattelutapaa sekä edistää suomalaista ja erityisesti suomenkielistä kulttuuria.</p>",
                "sv": "<p>Paneldiskussion om det finska språkets ställning. Evengemang hålls på finska.</p>",
                "en": "<p>Panel discussion on the status of the Finnish language. The event will be held in Finnish.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3txpzdi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}