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

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 ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&hide_recurring_children=true&page=37
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19239,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=38",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=36"
    },
    "data": [
        {
            "id": "kulke:66627",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1147911,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T12:12:55.100047Z",
                    "last_modified_time": "2025-06-30T12:12:55.100064Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775242.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1147911/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-30T12:12:54.977122Z",
            "last_modified_time": "2025-06-30T12:12:55.271141Z",
            "date_published": null,
            "start_time": "2025-09-04T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussis skogssagor – En sagoutflykt i Björnklippans skog",
                "en": "Jussi's forest tales – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.     <br>  <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.  <br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br> <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi</p><p>Vapaa pääsy  <br>Ryhmille pakolliset ennakkoilmoittautumiset 13.8. klo 10 alkaen: https://kultus.hel.fi/fi</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska     <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi<br>från och med 13.8 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish     <br>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi, from 13 August at 10 am</p>"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5B628FF069F784514911BB860D10368C/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5B628FF069F784514911BB860D10368C/Jussis_skogssagor",
                "en": "http://www.stoa.fi/en/events/event/5B628FF069F784514911BB860D10368C/Jussi_s_forest_tales"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66627/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66579",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 986338,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T13:14:02.067284Z",
                    "last_modified_time": "2025-06-10T13:14:02.067302Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771472.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986338/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T13:14:01.970232Z",
            "last_modified_time": "2025-06-30T12:12:54.236854Z",
            "date_published": null,
            "start_time": "2025-08-28T13: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": "Anton V. Kivi – Open Stage / Itämeripäivä",
                "sv": "Anton V. Kivi – Open Stage / Östersjödagen",
                "en": "Anton V. Kivi – Open Stage / Baltic Sea Day"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Anton V. Kivi on uusi tamperelainen laulaja-lauluntekijä, joka esittää riisuttua, tummasävyistä indiefolkia.</p><p>Musiikin keskiössä soivat akustisen kitaran ja vangitsevan laulutulkinnan ympärille rakennetut, vähäeleiset sovitukset ja sekä puhuttelevat lyriikat.</p><p>Kappaleissaan Anton V. Kivi käsittelee ihmisyyden vaiettuja kipupisteitä sekä yhteiskunnallisia teemoja, kuten ilmastokriisiä ja kapitalismikritiikkiä.</p><p>Laulujen intiimi tunnelma pakottaa kuuntelijan tietoisesti keskittymään musiikkiin ja pohtimaan siinä esiin nostettuja aiheita. Artisti julkaisee debyytti-EP:nsä syksyllä 2025.</p>",
                "sv": "<p>Anton V. Kivi är en ny sångare och låtskrivare från Tammerfors som framför avskalad, indiefolkmusik med mörka toner.</p><p>I musikens centrum hörs okonstlade arrangemang och talande lyrik som är byggda kring akustisk gitarr och fängslande sångtolkning.</p><p>I sina låtar behandlar Anton V. Kivi mänsklighetens tystade smärtpunkter och samhälleliga teman som klimatkrisen och kritik mot kapitalismen.</p><p>Den intima stämningen i sångerna tvingar lyssnaren att medvetet koncentrera sig på musiken och reflektera över de ämnen som lyfts fram i den. Artisten ger ut sin debut-EP hösten 2025.</p>",
                "en": "<p>Anton V. Kivi is a new singer-songwriter from Tampere who performs simplistic indie folk music with darker tones.</p><p>His music is based on simple adaptations built around acoustic guitar and captivating vocals, as well as touching lyrics.</p><p>In his songs, Anton V. Kivi deals with the often hidden pressure points of humanity alongside social themes, such as the climate crisis and criticism of capitalism.</p><p>The intimate atmosphere of the songs forces the audience to consciously focus on the music and consider the themes brought up. The artist will release his debut EP in autumn 2025.</p>"
            },
            "short_description": {
                "fi": "Anton V. Kivi on uusi tamperelainen laulaja-lauluntekijä, joka esittää riisuttua, tummasävyistä indiefolkia.",
                "sv": "Anton V. Kivi är en ny sångare och låtskrivare från Tammerfors som framför avskalad, indiefolkmusik med mörka toner.",
                "en": "Anton V. Kivi is a new singer-songwriter from Tampere who performs simplistic indie folk music with darker tones."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D8E4E18BEDBEED298A12808BF423FDBC/Anton_V_Kivi",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D8E4E18BEDBEED298A12808BF423FDBC/Anton_V_Kivi",
                "en": "http://www.espanlava.fi/en/events/event/D8E4E18BEDBEED298A12808BF423FDBC/Anton_V_Kivi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66579/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66586",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 992190,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-11T06:12:36.397519Z",
                    "last_modified_time": "2025-06-11T06:12:36.397533Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770499.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/992190/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-11T06:12:36.333415Z",
            "last_modified_time": "2025-06-30T12:12:54.069582Z",
            "date_published": null,
            "start_time": "2025-08-28T11: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": "MCMUSARIT – Itämeripäivä",
                "sv": "MCMUSARIT – Östersjödagen",
                "en": "MCMUSARIT – Baltic Sea Day"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ylästön koulun MCMUSARIT julkaisivat biisin ja musavideon Itämerelle. Oppilaat haluavat kertoa esityksellään meren tärkeydestä ja kauneudesta, mutta samalla myös Itämeren haavoittuvaisuudesta ja saastuneisuudesta.</p><p>Suojellaan Itämerta yhdessä!</p><p><b>Biisit:</b> <br>”Vesille” -sikermä <br> Are You Ready – Pelastetaan Itämeri</p><p>Esitysten kesto yhteensä noin 10 minuuttia, joten olethan ajoissa paikalla!</p><p>Ylästön koulu, Vantaa <br>Musaluokan opettaja: Perttu Leskinen</p>",
                "sv": "<p>MCMUSARIT från Ylästön koulu gav ut en låt och musikvideo till Östersjön. Med sitt framträdande vill eleverna berätta om havets betydelse och skönhet, men samtidigt också om Östersjöns sårbarhet och hur förorenat havet är.</p><p>Låt oss skydda Östersjön tillsammans!</p><p>Låtar:<br>Potpurri Vesille<br> Are You Ready – Pelastetaan Itämeri</p><p>Framträdandena är sammanlagt cirka 10 minuter långa, så var på plats i tid!</p>",
                "en": "<p>MCMUSARIT from the Ylästö School will release a song and a music video for the Baltic Sea. With their performance, the students want to present the importance and beauty of the sea, but also depict the vulnerability of the Baltic Sea, as well as its high level of pollution.</p><p>Let’s protect the Baltic Sea together!</p><p>Songs:<br>‘Vesille’ medley:<br> Are You Ready – Let’s Save the Baltic Sea</p><p>The shows last about ten minutes in total, so be there on time!</p>"
            },
            "short_description": {
                "fi": "Ylästön koulun MCMUSARIT julkaisivat biisin ja musavideon Itämerelle. Oppilaat haluavat kertoa esityksellään meren tärkeydestä ja kauneudesta, mutta samalla myös Itämeren haavoittuvaisuudesta ja saastuneisuudesta.",
                "sv": "MCMUSARIT från Ylästön koulu gav ut en låt och musikvideo till Östersjön. Med sitt framträdande vill eleverna berätta om havets betydelse och skönhet, men samtidigt också om Östersjöns sårbarhet och hur förorenat havet är.",
                "en": "MCMUSARIT from the Ylästö School will release a song and a music video for the Baltic Sea. With their performance, the students want to present the importance and beauty of the sea, but also depict the vulnerability of the Baltic Sea, as well as its high level of pollution."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/0C893BD9AD436486B4B864777C86FA80/MCMUSARIT",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/0C893BD9AD436486B4B864777C86FA80/MCMUSARIT",
                "en": "http://www.espanlava.fi/en/events/event/0C893BD9AD436486B4B864777C86FA80/MCMUSARIT"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66586/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66626",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1147910,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T12:12:53.708549Z",
                    "last_modified_time": "2025-06-30T12:12:53.708563Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775240.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1147910/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-30T12:12:53.582244Z",
            "last_modified_time": "2025-06-30T12:12:53.884124Z",
            "date_published": null,
            "start_time": "2025-08-28T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussis skogssagor – En sagoutflykt i Björnklippans skog",
                "en": "Jussi's forest tales – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.     <br>  <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.  <br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br> <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy</p><p>Ryhmille pakolliset ennakkoilmoittautumiset 13.8. klo 10 alkaen: https://kultus.hel.fi/fi</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>     <br>Fritt inträde <br>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi<br>från och med 13.8 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge <br>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi, from 13 August at 10 am</p>"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/741E77A170104A60551D977BDB99C922/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/741E77A170104A60551D977BDB99C922/Jussis_skogssagor_",
                "en": "http://www.stoa.fi/en/events/event/741E77A170104A60551D977BDB99C922/Jussi_s_forest_tales_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66626/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66625",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1147909,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T12:12:53.246074Z",
                    "last_modified_time": "2025-06-30T12:12:53.246092Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775239.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1147909/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-30T12:12:53.111630Z",
            "last_modified_time": "2025-06-30T12:12:53.435527Z",
            "date_published": null,
            "start_time": "2025-08-28T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussis skogssagor – En sagoutflykt i Björnklippans skog",
                "en": "Jussi's forest tales – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.     <br>  <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.  <br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br> <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy</p><p>Ryhmille pakolliset ennakkoilmoittautumiset 13.8. klo 10 alkaen: https://kultus.hel.fi/fi</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>     <br>Fritt inträde <br>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi<br>från och med 13.8 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge <br>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi, from 13 August at 10 am</p>"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3C54F9F586ADC49FE12D5F2A7E6354A0/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3C54F9F586ADC49FE12D5F2A7E6354A0/Jussis_skogssagor_",
                "en": "http://www.stoa.fi/en/events/event/3C54F9F586ADC49FE12D5F2A7E6354A0/Jussi_s_forest_tales_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66625/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66575",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 986337,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T13:14:01.737177Z",
                    "last_modified_time": "2025-06-10T13:14:01.737198Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767522.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986337/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T13:14:01.642991Z",
            "last_modified_time": "2025-06-30T12:12:52.980418Z",
            "date_published": null,
            "start_time": "2025-08-27T14: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": "Sami Saari ja Jazzpojat",
                "sv": "Sami Saari ja Jazzpojat",
                "en": "Sami Saari ja Jazzpojat"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sami Saari ja Jazzpojat -yhtyeen musiikki on korvia hivelevää, tanssittavan svengaavaa jazzia ja soulia meiltä ja muualta.</p><p>Suomalaisen soulmusiikin pienviljelijänä ja suurkuluttajana tunnettu Saari on aina ollut sielultaan jazzmies. Hän on koonnut yhtyeen, jossa jazzpoikien vahva solismi sekä pettämätön svengi yhdistyvät karismaattisen solistin kanssa.</p><p>Saaren kekseliäät ja puhuttelevat suomenkieliset sanoitukset tuovat samaistumispintaa ihan jokaiselle! Yhtyeen kolmas ja uusin albumi \"Nyt tai ei koskaan\" julkaistiin toukokuussa 2025.</p><p><b>Kokoonpano:</b><br>Sami Saari - kitara & laulu <br>Sami Leponiemi – saksofoni <br>Mikael Myrskog – piano <br>Oskari Siirtola – kontrabasso <br>Ville Pynssi - rummut</p>",
                "sv": "<p>Den dansande svängande jazzen och soulen som bandet Sami Saari ja Jazzpojat bjuder på är musik som smeker öronen och är hämtad från Finland och annat håll.</p><p>Den dansande svängande jazzen och soulen som bandet Sami Saari ja Jazzpojat bjuder på är musik som smeker öronen och är hämtad från Finland och annat håll.<br> <br>Saari, känd som småbrukare och storkonsument av finländsk soulmusik, har alltid varit en jazzman i själen. Han har satt ihop ett band där jazzpojkarnas starka solism och osvikliga sväng förenas med den karismatiska solisten.</p><p>Saaris uppfinningsrika och talande texter på finska får alla att känna igen sig! Bandets tredje och nyaste album Nyt tai ei koskaan släpptes i maj 2025.</p><p>Sami Saari – gitarr och sång<br>Sami Leponiemi – saxofon<br>Mikael Myrskog – piano<br>Oskari Siirtola – kontrabas<br>Ville Pynssi – trummor</p>",
                "en": "<p>The Sami Saari ja Jazzpojat band serve pleasant and groovy jazz and soul beats from Finland and abroad.</p><p>Saari, known as both a home grower and major consumer of Finnish soul music, has always been a jazz man deep down. He has put together a band where the strong soloist nature of the jazz men and their eternal swing come together with the charismatic soloist.</p><p>The inventive and thoughtful Finnish lyrics by Saari provide a frame of reference to each and every audience member. The band’s third, most recent album, ‘Nyt tai ei koskaan’, was released in May 2025.</p><p>Sami Saari – guitar & vocals<br>Sami Leponiemi – saxophone<br>Mikael Myrskog – piano<br>Oskari Siirtola – double bass<br>Ville Pynssi - drums</p>"
            },
            "short_description": {
                "fi": "Sami Saari ja Jazzpojat -yhtyeen musiikki on korvia hivelevää, tanssittavan svengaavaa jazzia ja soulia meiltä ja muualta.",
                "sv": "Den dansande svängande jazzen och soulen som bandet Sami Saari ja Jazzpojat bjuder på är musik som smeker öronen och är hämtad från Finland och annat håll.",
                "en": "The Sami Saari ja Jazzpojat band serve pleasant and groovy jazz and soul beats from Finland and abroad."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5407E7E27F3E447CC374452B09640C32/Sami_Saari_ja_Jazzpojat",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/5407E7E27F3E447CC374452B09640C32/Sami_Saari_ja_Jazzpojat",
                "en": "http://www.espanlava.fi/en/events/event/5407E7E27F3E447CC374452B09640C32/Sami_Saari_ja_Jazzpojat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66575/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66573",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 986336,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T13:14:01.379509Z",
                    "last_modified_time": "2025-06-10T13:14:01.379532Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767637.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986336/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T13:14:01.281942Z",
            "last_modified_time": "2025-06-30T12:12:52.803463Z",
            "date_published": null,
            "start_time": "2025-08-27T13: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": "Hannaeerika",
                "sv": "Hannaeerika",
                "en": "Hannaeerika"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Hannaeerika on hurmaava uusi nimi Suomen indie-musiikin kentällä.</p><p>Hän on laulaja-lauluntekijä, jonka herkkä ja leikittelevä tyyli vangitsee kuulijan ensimmäisellä sävelellä. Hänen musiikkinsa on kuin pala lapsuuden mummolaa – turvallinen, lämmin ja sydäntä lähelle tuleva, mutta samalla raikkaasti nykyhetkessä kiinni.</p><p>“Mielestäni mielenkiintoisinta mitä lauluntekijä voi tehdä, on kirjoittaa siitä, mikä on itselle rehellistä.”</p><p>Hannaeerika on artisti, joka uskoo aitoon itseilmaisuun. Tämä filosofia kuuluu jokaisessa kappaleessa: ne ovat täynnä henkilökohtaisia tarinoita ja elämän pieniä, merkityksellisiä hetkiä. Tuore single “Pikkusiskolle” on liikuttava ja lämminhenkinen laulu sisaruudesta – siteestä, joka kestää kaiken. Kappaleessa kuuluu Hannaeerikan kyky pukea intiimit tunteet sanoiksi ja säveliksi, jotka koskettavat kuulijaa.</p><p>Hannaeerikan uniikki tyyli ulottuu myös hänen visuaaliseen maailmaansa. Hän luo itse esiintymisasunsa kierrätyslangoista, mikä heijastaa hänen luonnonläheisyyttään ja DIY-henkeään. Hän tuo lavalle aitouden sekä taitavan ja leikittelevän äänen, joka on täydellinen väline kertomaan tarinoita, jotka jäävät mieleen ja saattavat jopa muuttaa pienen palan maailmaa.</p>",
                "sv": "<p>Hannaeerika är ett charmigt nytt namn inom den finländska indiemusiken.</p><p>Hon är en sångare och låtskrivare med en känslig och lekfull stil som fångar lyssnaren från den första tonen. Hennes musik är som en bit av barndomens mormor – trygg, varm och nära hjärtat, men samtidigt fräscht i nuet.</p><p>”Jag tycker det intressantaste en låtskrivare kan göra är att skriva om vad som är ärligt för hen själv.”</p><p>Hannaeerika är en artist som tror på att uttrycka sig själv på ett genuint sätt. Denna filosofi hörs i varje stycke: de är fulla av personliga berättelser och livets små, meningsfulla stunder. Den nya singeln ”Pikkusiskolle” är en rörande och varmhjärtad sång om systerskapet – ett band som klarar allt. I låten hörs Hannaeerikas förmåga att klä intima känslor i ord och toner som berör lyssnaren.</p><p>Hannaerikas unika stil sträcker sig också in i hennes visuella värld. Hon skapar sina scendräkter själv av återvunnet material, vilket speglar hennes naturnära och DIY-anda. Hon stiger ut på scenen med en autenticitet och ett skickligt och lekfullt ljud som är det perfekta verktyget för att berätta historier, som man kommer ihåg och som till och med kan förändra en liten bit av världen.</p>",
                "en": "<p>Hannaeerika is a singer-songwriter, whose songs are a combination of playfulness and sensitivity.</p><p>“I think the most interesting thing a songwriter can do is write about what’s honest for themselves.”</p><p>Her first EP was released in 2020. Since then, she’s been releasing beautiful singles one after another. The most recent one, a heartfelt song ‘Pikkusiskolle’ (eng. ‘For little sister’, 2024), has been gaining a lot of radio plays in Finland as well.</p>"
            },
            "short_description": {
                "fi": "Hannaeerika on hurmaava uusi nimi Suomen indie-musiikin kentällä.",
                "sv": "Hannaeerika är ett charmigt nytt namn inom den finländska indiemusiken.",
                "en": "Hannaeerika is a singer-songwriter, whose songs are a combination of playfulness and sensitivity."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6AF7A27ACB71EF6E4C942E193A0A2036/Hannaeerika_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/6AF7A27ACB71EF6E4C942E193A0A2036/Hannaeerika_",
                "en": "http://www.espanlava.fi/en/events/event/6AF7A27ACB71EF6E4C942E193A0A2036/Hannaeerika_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66573/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66528",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 977340,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-09T11:14:45.060459Z",
                    "last_modified_time": "2025-06-09T11:14:45.060479Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765976.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/977340/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-09T10:17:11.275641Z",
            "last_modified_time": "2025-06-30T12:12:49.666161Z",
            "date_published": null,
            "start_time": "2025-08-15T14: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": "Lena Jonsson & Johanna Juhola",
                "sv": "Lena Jonsson & Johanna Juhola",
                "en": "Lena Jonsson & Johanna Juhola"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Lena Jonsson & Johanna Juhola on suomalaisen harmonikkataiturin ja ruotsalaisen viulutähden superduo.</p><p>He sekoittavat molempien maiden kansanmusiikkia omiin sävellyksiinsä luoden raikkaan ja ilmavan, improvisaatiolla maustetun kokonaisuuden. Molemmilla muusikoilla on pitkä kansainvälinen ura solisteina ja säveltäjinä. Tässä duossa he antavat luovuutensa ja leikkimielisyytensä kohdata.<br> <br>Harmonikkataiteilija Johanna Juhola on esiintymisillään ja sävellyksillään uudistanut mielikuvaa harmonikasta. Juhola on julkaissut kuusi soololevyä ja esiintynyt yli kolmessakymmenessä maassa. Hän esittää fantasiatangosävellyksiään yhtyeissään Johanna Juhola Reaktori ja Trio sekä videoprojisointeja ja sooloharmonikkaa yhdistävässä Imaginary Friends -konsertissa. Juhola on vieraillut sinfoniaorkesterien solistina ja säveltänyt musiikkia nykytanssi-, sirkus- ja teatteriesityksiin. Muusikkona Juhola ylittää genrerajoja ja on tehnyt yhteistyötä niin klassisen kuin jazz-, pop- ja konemusiikinkin huippunimien kanssa. Viime aikoina Juhola on esiintynyt myös mm. pianisti Timo Alakotilan, laulaja Emma Salokosken ja viulisti Lena Jonssonin kanssa. Vuonna 2022 Juholalle myönnettiin sävellyksistään Pohjoismaisten musiikintekijäjärjestöjen NPU-palkinto.</p><p>Lena Jonssonin kyky yhdistää perinteisen ruotsalaisen kansanmusiikin syvä tuntemus taiteelliseen herkkyyteen ja toisaalta rocktähden karismaan, on tehnyt hänestä yhden Ruotsin kiireisimmistä kansanmuusikoista. Jonssonin soittotyylissä on vaikutteita perinteisestä ruotsalaisesta musiikista, rockista, popista ja amerikkalaisesta old-time- ja bluegrass-perinteestä. Jonsson on palkittu Ruotsin Grammy- ja Manifest -palkinnolla sekä vuoden 2022 artistina ruotsalaisessa maailmanmusiikkigaalassa.</p><p>Lena Jonsson: viulu<br>Johanna Juhola: harmonikka</p>",
                "sv": "<p>Lena Jonsson & Johanna Juhola är en superduo som består av en finländsk dragspelskonstnär och en svensk violinstjärna.</p><p>De blandar folkmusik från båda länderna i sina kompositioner och skapar en fräsch och luftig helhet kryddad med improvisation. Båda musikerna har en lång internationell karriär som solister och kompositörer. I denna duo låter de sin kreativitet och lekfullhet mötas.<br> <br>Dragspelskonstnären Johanna Juhola har reformerat uppfattningen om dragspel med sina framträdanden och kompositioner. Juhola har gett ut sex soloskivor och uppträtt i över trettio länder. Hon framför sina fantasy-tangokompositioner i banden Johanna Juhola Reaktor och Trio samt i konserten Imaginary Friends som förenar videoprojektioner och solodragspel. Juhola har gästspelat som solist för symfoniorkestrar och komponerat musik för nutidsdans-, cirkus- och teaterföreställningar. Som musiker går Juhola över genregränserna och har samarbetat med toppnamn inom såväl klassisk musik som jazz, pop och maskinmusik. På senare tid har Juhola också uppträtt tillsammans med bland annat pianisten Timo Alakotila, sångaren Emma Salokoski och violinisten Lena Jonsson. År 2022 tilldelades Juhola Nordiska musikskaparorganisationernas NPU-pris för sina kompositioner.</p><p>Lena Jonssons förmåga att kombinera sin djupa kännedom om traditionell svensk folkmusik med konstnärlig känslighet och å andra sidan med karisman av en rockstjärna har gjort henne till en av Sveriges mest upptagna folkmusiker. Jonssons spelstil har influenser från traditionell svensk musik, rock, pop samt amerikansk old-time- och bluegrasstradition. Jonsson har belönats med Svenska Grammy- och Manifestpriset samt som Årets artist 2022 på den svenska världsmusikgalan.</p><p>Lena Jonsson – violin<br>Johanna Juhola – dragspel</p>",
                "en": "<p>Lena Jonsson & Johanna Juhola is a super duo comprising a Finnish top accordion talent and a Swedish violin virtuoso.</p><p>They combine folk music of both countries with their own compositions, creating fresh and bright melodies seasoned with improv. Both musicians have long international careers as vocalists and composers. In this duo, they allow their creativeness and playfulness come together.<br> <br>Accordion artist Johanna Juhola has reformed the image of the accordion through her performances and compositions. Juhola has released six solo albums and performed in more than thirty different countries. She performs her fantasy tango compositions in her bands Johanna Juhola Reaktori and Johanna Juhola Trio, as well as the Imaginary Friends concert, which combines video projections with solo accordion playing. Juhola has been a visiting soloist of symphony orchestras and has composed music for contemporary dance, circus and theatre performances. As a musician, Juhola crosses the borders of different genres and has worked together with some of the top names of classical, jazz, pop and electronic music alike. Recently, Juhola has also performed with artists such as the pianist Timo Alakotila, singer Emma Salokoski and violinist Lena Jonsson. In 2022, Juhola was granted the NPU award of Nordic music composers’ organisations for her compositions.</p><p>Lena Jonsson’s ability to combine her deep knowledge of Swedish folk music with artistic vulnerability and the charisma of a rock star has turned her into one of the busiest folk musicians in Sweden. Jonsson’s playing style draws inspiration from traditional Swedish music, rock, pop and American old-time and bluegrass traditions. Jonsson has been awarded the Swedish Grammy and Manifest awards and was chosen as the Artist of the Year in 2022 in a Swedish world music gala.</p><p>Lena Jonsson: violin<br>Johanna Juhola: accordion</p>"
            },
            "short_description": {
                "fi": "Lena Jonsson & Johanna Juhola on suomalaisen harmonikkataiturin ja ruotsalaisen viulutähden superduo.",
                "sv": "Lena Jonsson & Johanna Juhola är en superduo som består av en finländsk dragspelskonstnär och en svensk violinstjärna.",
                "en": "Lena Jonsson & Johanna Juhola is a super duo comprising a Finnish top accordion talent and a Swedish violin virtuoso."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/91E57CACED00AD4C637FDC38B4623BA6/Lena_Jonsson_Johanna_Juhola",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/91E57CACED00AD4C637FDC38B4623BA6/Lena_Jonsson_Johanna_Juhola",
                "en": "http://www.espanlava.fi/en/events/event/91E57CACED00AD4C637FDC38B4623BA6/Lena_Jonsson_Johanna_Juhola"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66528/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66530",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 977339,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-09T11:14:44.750913Z",
                    "last_modified_time": "2025-06-09T11:14:44.750935Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765236.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/977339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-09T11:14:44.646345Z",
            "last_modified_time": "2025-06-30T12:12:49.347892Z",
            "date_published": null,
            "start_time": "2025-08-14T18: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": "Taiteiden yö: Kimmo Pohjonen",
                "sv": "Konstens natt: Kimmo Pohjonen",
                "en": "The Night of the Arts: Kimmo Pohjonen"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kimmo Pohjonen on taiteenlajinsa uudistajana tunnettu harmonikkataiteilija ja säveltäjä.</p><p>Pohjosen töissä yhdistyvät hänen kustomoidun, elektro-akustista ääntä tuottavan instrumenttinsa äänimaailmat ja usein vahva visuaalisuus. Hän on yksi niistä harvoista artisteista, joka on onnistunut luomaan sävellyksillään ja omaperäisillä projekteillaan oman genren.</p><p>Pohjosen tapaa soittaa ja tuottaa uutta ääntä harmonikasta voidaan pitää maailmanlaajuisestikin hyvin poikkeuksellisena. Hänen esityksiään on kutsuttu vallankumouksellisiksi, ja hän on ihastuttanut yleisöä ja kriitikkoja musiikkinsa tinkimättömällä intensiteetillä ja omaperäisyydellä.</p><p>Hän esiintyy säännöllisesti omilla projekteillaan merkittävillä maailmanmusiikin, jazzmusiikin, elektronisen ja taidemusiikin festivaaleilla ympäri maailmaa.</p>",
                "sv": "<p>Kimmo Pohjonen är en känd dragspelskonstnär och kompositör som förnyar sin konstart.</p><p>Pohjonens arbeten kombinerar ljudvärldarna i hans anpassade instrument som producerar elektro-akustiskt ljud och ofta en stark visuellhet. Han är en av få artister som med sina kompositioner och originella projekt har lyckats skapa en egen genre.</p><p>Pohjonens sätt att spela och producera nytt ljud från dragspelet kan även ses som mycket exceptionellt på global nivå. Hans framföranden har kallats revolutionära och han har hänfört publik och kritiker med sin musiks kompromisslösa intensitet och originalitet.</p><p>Han uppträder regelbundet med egna projekt på betydande festivaler med världsmusik, jazzmusik, elektronisk musik och konstmusik runt om i världen.</p>",
                "en": "<p>Kimmo Pohjonen is an accordionist and a composer known as a reformer in his chosen field of art.</p><p>The works of Pohjonen frequently combine the soundscapes of his customised, electro-acoustic instrument with strong visuality. He is one of the few artists who have managed to create a genre of their own through their compositions and unique projects.</p><p>Pohjonen’s way of playing and producing new sounds out of an accordion can be described as quite exceptional, even on a global level. His performances have been described as revolutionary, and he has enchanted both the audience and the critics with the uncompromising intensity and uniqueness of his music.</p><p>He is regularly performing in his own projects at notable festivals of world music, jazz, electronic music and art music all across the world.</p>"
            },
            "short_description": {
                "fi": "Kimmo Pohjonen on taiteenlajinsa uudistajana tunnettu harmonikkataiteilija ja säveltäjä.",
                "sv": "Kimmo Pohjonen är en känd dragspelskonstnär och kompositör som förnyar sin konstart.",
                "en": "Kimmo Pohjonen is an accordionist and a composer known as a reformer in his chosen field of art."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/188D08E2478E6B09C4418DE9611ABBB8/Taiteiden_yo_Kimmo_Pohjonen",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/188D08E2478E6B09C4418DE9611ABBB8/Konstens_natt_Kimmo_Pohjonen",
                "en": "http://www.espanlava.fi/en/events/event/188D08E2478E6B09C4418DE9611ABBB8/The_Night_of_the_Arts_Kimmo_Pohjonen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66530/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pnjm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/maritta_nevalainen_art/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490218,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-30T11:48:55.928711Z",
                    "last_modified_time": "2025-06-30T11:48:55.928726Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e3d48ecc-b4ea-4035-842c-b9a0e670e7df.jpg",
                    "cropping": "362,0,1293,931",
                    "photographer_name": "Maritta Nevalainen",
                    "alt_text": "Abstrakti maalaus",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T11:49:03.321528Z",
            "last_modified_time": "2025-06-30T11:49:40.857494Z",
            "date_published": "2025-06-30T11:41:00Z",
            "start_time": "2025-08-04T05:00:00Z",
            "end_time": "2025-08-30T17: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": "Näyttely: Hiljaisuuden kaiut ",
                "sv": "Utställning: Hiljaisuuden kaiut ",
                "en": "Art exhibition: Echoes of Silence"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p><strong>Taidenäyttely | Maritta Nevalainen</strong></p><p>Kokosin tähän näyttelyyn teoksia lyhyen taidematkani varrelta. On kulunut tasan 624 päivää siitä, kun ensimmäisen kerran otin pensselin käteeni lähes 20 vuoden jälkeen. Matka on ollut hiljainen vuoropuhelu sisimpäni kanssa – keskustelua ilman sanoja, täynnä tunnetta ja käden liikettä, tuskaa ja onnistumisia. Tämä näyttely on kokoelma abstrakteja teoksia, jotka syntyivät tarpeesta ilmaista sellaista, mitä kieli ei tavoita. Tunsin valtavaa tarvetta ilmaista väreillä sitä, mitä en saa sanoitettua. Joukossa on muutama kuvaavampi teos. Erityisesti minua kiehtoo ilmeikkäät ja puhuttelevat naisten kasvot. Ne kaikki ovat mielikuvituksen tuotetta, joita sen hetkinen tunnetilani on kuvittanut.&nbsp;</p><p>Jokainen teos on heijastus sisäisestä liikkeestä: kaipuusta, rauhasta, myllerryksestä ja hauraudesta. Tunteista, jotka liikuttavat minua syvästi. Värit ja muodot sekä niiden rytmi rakentavat tilan, jossa katsoja voi kohdata omat tunteensa - ehkä jopa ne, joita ei ole aiemmin uskaltanut nimetä.&nbsp;</p><p>“Hiljaisuuden kaiut” on matka sisäänpäin. Toivon, että teokseni saavat viipyä katseessasi ja ehkä jäädä kaikumaan hetkeksi myös mieleesi.</p><p>Lämmöllä Maritta&nbsp;</p><p>Teokset ovat myytävänä.</p><p><br></p><p><strong>Yhteystiedot:</strong></p><p>Instagram: <a href=\"https://www.instagram.com/maritta_nevalainen_art/\">maritta_nevalainen_art</a></p><p><a href=\"Marittanevalainen.com\">Marittanevalainen.com</a> tai <a href=\"taidesivut.net/marittanevalainen\">taidesivut.net/marittanevalainen</a></p>",
                "sv": "<p>Välkommen att besöka utställning i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Welcome to an Art exhibition in Tapiola Library.</p><p>Exhibition can be seen at Librarys opening hours.</p>"
            },
            "short_description": {
                "fi": "“Hiljaisuuden kaiut” on matka sisäänpäin. Toivon, että teokseni saavat viipyä katseessasi ja ehkä jäädä kaikumaan hetkeksi myös mieleesi.",
                "sv": "Välkommen att besöka utställning i Hagalund biblioteken.",
                "en": "Welcome to an art exhibition in Tapiola Library."
            },
            "location_extra_info": {
                "fi": "Näyttelyseinä Kaija",
                "sv": "Utställningsväggen Kaija",
                "en": "Exhibition wall Kaija"
            },
            "provider": {
                "fi": "Maritta Nevalainen",
                "sv": "Maritta Nevalainen",
                "en": "Maritta Nevalainen"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pnjm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66565",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 985988,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T12:14:49.140896Z",
                    "last_modified_time": "2025-06-10T12:14:49.140916Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773072.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985988/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T12:14:49.040501Z",
            "last_modified_time": "2025-06-30T11:12:49.705227Z",
            "date_published": null,
            "start_time": "2025-08-23T12: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": "Helsinki Klezmer Kapelye – Open Stage",
                "sv": "Helsinki Klezmer Kapelye – Open Stage",
                "en": "Helsinki Klezmer Kapelye – Open Stage"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Helsinki Klezmer Kapelye on muusikkokollektiivi, joka on esiintynyt yhdessä jo toistakymmentä vuotta.</p><p>Helsinki Klezmer Kapelye on ainoa klezmer-bändi Suomessa, joka esittää traditionaalista klezmer-musiikkia ja siten vie Itä-Euroopan vanhaa juutalaista kulttuuria eteenpäin. HKK on konsertoinut ahkerasti Suomessa pääkaupunkiseudulla ja mm. Kaustisen kansamusiikkifestivaalilla.<br> <br>Ulkomailla bändi on esiintynyt mm. Saksassa Yiddish Summer Weimar -festivaalilla, Klezmer-festivaalilla Pietarissa sekä kiertänyt Liettuassa. Yhtye julkaisi ensimmäisen levynsä vuonna 2023. Klezmer-musiikki on Itä-Euroopan juutalaisten kansanmusiikkia ja juontaa juurensa keskiajan Eurooppaan, jossa juutalaiset klezmer-muusikot kiersivät soittamassa Itä-Euroopan juutalaisyhteisöissä.</p><p>Klezmer on vauhdikasta tanssimusiikkia, jota on soitettu erilaisissa juhlissa ja häissä. 1800-luvun loppuun mennessä klezmer-musiikista oli tullut pitkälle kehittynyt musiikkityyli, joka keräsi vaikutteita sekä juutalaisesta kulttuurista että sen ulkopuolelta.</p><p>Helsinki Klezmer Kapelye on monikulttuurinen ryhmä, joka työskentelee ainakin seitsemällä eri kielellä: suomi, venäjä, englanti, jiddish, ruotsi, heprea ja turkki. Esiintyjien joukossa on maahanmuuttajia. mm Turkista, USA:sta ja Tsetseniasta.</p>",
                "sv": "<p>Helsinki Klezmer Kapelye är ett musikkollektiv som har uppträtt tillsammans i över tio år.</p><p>Helsinki Klezmer Kapelye är det enda klezmerbandet i Finland som framför traditionell klezmermusik och utvecklar därmed Östeuropas gamla judiska kultur. HKK har konserterat flitigt i Finland i huvudstadsregionen och bland annat på Kaustby folkmusikfestival.</p><p>Utomlands har bandet uppträtt bland annat i Tyskland på festivalen Yiddish Summer Weimar, festivalen Klezmer i Sankt Petersburg samt turnerat i Litauen. Gruppen släppte sin första skiva 2023. Klezmermusik är judisk folkmusik från Östeuropa och går tillbaka till medeltidens Europa, där judiska klezmermusiker reste runt och spelade i de judiska samhällena i Östeuropa.</p><p>Klezmer är en fartfylld dansmusik som har spelats på olika fester och bröllop. Vid 1800-talets slut hade klezmermusiken blivit en högt utvecklad musikstil som influerades både av den judiska kulturen och utanför den.</p><p>Helsinki Klezmer Kapelye är en mångkulturell grupp som arbetar på minst sju olika språk: finska, ryska, engelska, jiddisch, svenska, hebreiska och turkiska. Bland artisterna finns invandrare från bland annat Turkiet, USA och Tjetjenien.</p>",
                "en": "<p>Helsinki Klezmer Kapelye is a collective of musicians who have been performing together for more than a decade.</p><p>Helsinki Klezmer Kapelye is the only klezmer band in Finland performing traditional klezmer music, preserving the old Jewish culture of Eastern Europe. HKK have given many concerts in Finland, for example in the Helsinki Metropolitan Area, as well as at the Kaustinen Folk Music Festival.<br> <br>The band have also performed abroad, e.g. at the Yiddish Summer Weimar festival in Germany and at a Klezmer festival in St. Petersburg, and have toured Lithuania.</p><p>The band released its first album in 2023. Klezmer music is the folk music of Eastern European Jewish people, dating back to medieval Europe where Jewish klezmer musicians toured the Jewish communities of Eastern Europe to play their music.</p><p>Klezmer is energetic dance music played at parties and in weddings. By the end of the 19th century, klezmer had become an advanced music style that drew inspiration from both within the Jewish culture and outside it.</p><p>Helsinki Klezmer Kapelye is a multicultural group of people who work in at least seven different languages: Finnish, Russian, English, Yiddish, Swedish, Hebrew and Turkish. The performers include immigrants from countries such as Turkey, the USA and Chechnya.</p>"
            },
            "short_description": {
                "fi": "Helsinki Klezmer Kapelye on muusikkokollektiivi, joka on esiintynyt yhdessä jo toistakymmentä vuotta.",
                "sv": "Helsinki Klezmer Kapelye är ett musikkollektiv som har uppträtt tillsammans i över tio år.",
                "en": "Helsinki Klezmer Kapelye is a collective of musicians who have been performing together for more than a decade."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2AE367CAD6BB649FF322B1BACCC8FAA2/Helsinki_Klezmer_Kapelye",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/2AE367CAD6BB649FF322B1BACCC8FAA2/Helsinki_Klezmer_Kapelye",
                "en": "http://www.espanlava.fi/en/events/event/2AE367CAD6BB649FF322B1BACCC8FAA2/Helsinki_Klezmer_Kapelye"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66565/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66531",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 977343,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-09T11:14:46.670390Z",
                    "last_modified_time": "2025-06-09T11:14:46.670411Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773065.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/977343/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-09T11:14:46.562233Z",
            "last_modified_time": "2025-06-30T11:12:48.374197Z",
            "date_published": null,
            "start_time": "2025-08-19T14: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": "Minttu Hellstén – Open Stage",
                "sv": "Minttu Hellstén – Open Stage",
                "en": "Minttu Hellstén – Open Stage"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Minttu Hellstén on tummanpuhuvan ja syvätunnelmaisen taidepopin uusi nimi.</p><p>Mintun musiikki on harvinaislaatuisen pysäyttävä, mielen syvyyksiä puhutteleva yhdistelmä orgaanista ja synteettistä maailmaa, jossa syvät bassot kohtaavat rehellisen herkkyyden ja polkuharmonin soinnin. Peltojen keskellä Elimäellä syntynyt Minttu, jonka tie on vienyt Itä-Helsinkiin, keskittyy vahvaan maailmojen ja tunnelmien luontiin.</p><p>Musiikkia on kuvailtu visuaaliseksi, katarttiseksi ja omaperäiseksi, joka syleilee kuulijaansa. Hellsténin kappaleet yhdistyvät uniikilla tavalla maailmanluokan tummasävytteiseen ja historiansa osaavaan elektroniseen tuotantoon, jonka Hellstén on toteuttanut yhdessä Tomi Hyypän kanssa.</p><p>Hyyppä muistetaan kansainvälisesti arvostetusta elektropop-duo Villa Nahista. Kehuja kerännyt debyyttialbumi Hiipivä, pimeä hiljaisuus julkaistiin keväällä 2024. Albumin kappaleet ovat nousseet Spotify Editorial -soittolistoille ja soineet aina Radio Helsingin taajuuksilta Yle radio Suomeen.</p><p>Minttu Hellsténin musiikki on tumma elokuvamainen sekoitus orgaanista laulua, polkuharmonia ja synteettisen sähköisiä taustoja. Hellsténin live-esiintymiset ovat syvätunnelmaisia, omaperäisiä matkoja tunteisiin ja kokemuksiin.</p><p>Minttu Hellstén - laulu, polkuharmoni, midikontrollerit<br>Tomi Hyyppä - midikontrollerit, taustat</p>",
                "sv": "<p>Minttu Hellstén är det nya namnet inom den mörka konstpopen med djup stämning.</p><p>Minttus musik är en sällsynt kombination av en organisk och syntetisk värld som får en att stanna upp, där djupa bastoner möter en ärlig känslighet och klangen från tramporgeln. Minttu, som är född mitt bland fälten i Elimäki men numera bor i Östra Helsingfors, fokuserar på att skapa starka världar och stämningar.<br> <br>Musiken har beskrivits som visuell, katartisk och originell, och som omfamnar sin åhörare. Hellsténs låtar kombineras på ett unikt sätt med mörka skalor och historiekunnig elektronisk produktion i världsklass, som Hellstén har genomfört tillsammans med Tomi Hyyppä.</p><p>Hyyppä är ihågkommen för den internationellt ansedda elektropopduon Villa Nah. Debutalbumet Hiipivä, pimeä hiljaisuus, som fått beröm, släpptes våren 2024. Låtarna i albumet har stigit till spellistorna i Spotify Editorial och spelats på Radio Helsingfors frekvenser i Yle Radio Finland.</p><p>Minttu Hellsténs musik är en mörk filmatisk blandning av organisk sång, tramporgel och syntetiskt elektriska bakgrunder. Hellsténs liveframträdanden är djupsinniga, egenartade resor till känslor och upplevelser.</p><p>Minttu Hellstén – sång, tramporgel, midi-kontrollers<br>Tomi Hyyppä – midi-kontrollers, bakgrunder</p>",
                "en": "<p>Minttu Hellstén is a new name in the field of darker, intimate art pop.</p><p>Her music is a rare and striking combination of organic and synthetic worlds that speaks to the depths of one’s mind and where the deep tones of bass meet with honest vulnerability and the sound of a pump organ. Minttu was born in Elimäki, in the middle of vast fields, and her journey finally took her to East Helsinki where she focuses on creating strong worlds and ambiences.<br> <br>Her music has been described as visual and cathartic, a unique sound that embraces its audience. Hellstén’s songs intertwine in unique ways with world-class dark-toned electronic productions that know their roots, implemented by Hellstén together with Tomi Hyyppä.</p><p>Hyyppä is known from the internationally acclaimed electropop duo Villa Nah. The highly praised debut album, Hiipivä, pimeä hiljaisuus, was released in spring 2024. The album’s songs have climbed to the Spotify Editorial playlists and have been played on radio channels from Radio Helsinki to Yle Radio Suomi.</p><p>Minttu Hellstén’s music is a dark, cinematic mix of organic singing, pump organ sounds, and synthetic electronic backing melodies. Hellstén’s live performances are intimate, characteristic deep dives into emotions and experiences.</p><p>Minttu Hellstén – vocals, pump organ, MIDI controllers<br>Tomi Hyyppä – MIDI controllers, backing vocals</p>"
            },
            "short_description": {
                "fi": "Minttu Hellstén on tummanpuhuvan ja syvätunnelmaisen taidepopin uusi nimi.",
                "sv": "Minttu Hellstén är det nya namnet inom den mörka konstpopen med djup stämning.",
                "en": "Minttu Hellstén is a new name in the field of darker, intimate art pop."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/AE1C1E60D33C8E525CA7F2480FB83A93/Minttu_Hellst_n",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/AE1C1E60D33C8E525CA7F2480FB83A93/Minttu_Hellst_n",
                "en": "http://www.espanlava.fi/en/events/event/AE1C1E60D33C8E525CA7F2480FB83A93/Minttu_Hellst_n"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66531/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pocq",
            "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/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pnwa/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-06-30T11:00:15.563645Z",
            "last_modified_time": "2025-06-30T11:00:15.563661Z",
            "date_published": null,
            "start_time": "2025-07-08T13:00:00Z",
            "end_time": "2025-07-08T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sanataidetta!"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Toimintahetki sopii kaikenikäisille. Kokoonnutaan maitolaiturin läheisyyteen runoilemaan.</p>"
            },
            "short_description": {
                "fi": "Leikataan ja liimataan runoja."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pocq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pony",
            "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/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-06-30T10:57:34.213629Z",
            "last_modified_time": "2025-06-30T10:57:34.213646Z",
            "date_published": null,
            "start_time": "2025-07-01T13:00:00Z",
            "end_time": "2025-07-01T15: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": "Sanataidetta!"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Toimintahetki sopii kaikenikäisille. Kokoonnutaan maitolaiturin läheisyyteen runoilemaan.</p>"
            },
            "short_description": {
                "fi": "Leikataan ja liimataan runoja."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pony/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66519",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 945045,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-05T14:13:56.785364Z",
                    "last_modified_time": "2025-06-05T14:13:56.785381Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765799.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/945045/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-05T14:13:56.647965Z",
            "last_modified_time": "2025-06-30T10:12:43.738980Z",
            "date_published": null,
            "start_time": "2025-08-18T15: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": "Total Cello Ensemble",
                "sv": "Total Cello Ensemble",
                "en": "Total Cello Ensemble"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Total Cello Ensemble on suomalaisen sellotaiteen tehokentällinen!</p><p>Tämä Linnan juhlissakin viihdyttänyt kuuden huippusellistin uniikki yhtye kaataa musiikillisia raja-aitoja klassisesta viihteeseen – selloja säästämättä, laadusta tinkimättä jo 30 vuotta!</p><p>Niin suomalaiset ja argentiinalaiset tangot kuin myös tunteikkaat ooppera-aariat taipuvat näiden huippumuusikoiden käsittelyssä sykähdyttävään muotoonsa. Ohjelmisto esittelee myös suomalaista maabrändiä Sibeliuksen Jääkärinmarssista Lapin erämaajärven äänimaisemaan. Kuudella sellolla voi käydä vaikkapa Formula-kisoja!</p><p>\"Konserteissa kuullaan laaja-alaisesti musiikkia, joka mielestämme tuo parhaiten esille sellon hienoimman ilmaisuasteikon. Sellossahan on koko ihmisen ääniala, miehen ja naisen, ja ehkä juuri siksi sellot sopivat niin hyvin meidän yhteisten tuntojemme tulkiksi. Meille ei ole erikseen kevyttä tai vakavaa musiikkia, ne ovat Total Cello Ensemblessä sisäkkäin, aivan niin kuin elämässäkin.\" –Hannu Kiiski, lehtori emeritus, TCE:n Primus Motor</p><p>Total Cello Ensemblen perusti sellisti-sellonsoiton opettaja, lehtori emeritus Hannu Kiiski vuonna 1994 Sibelius-Akatemian selloluokkansa oppilaista vastapainoksi klassisen musiikin opiskelijan usein sangen yksinäiselle puurtamiselle. TCE-kokoonpanoon on vuosien varrella kuulunut kaikkiaan 36 soittajaa.</p><p>Total Cello Ensemblen sellistit:<br> – Hannu Kiiski, yhtyeen Primus Motor, lehtori emeritus – palkittu Pro Finlandia -mitalilla 2023 uraauurtavasta työstään musiikin hyväksi<br> – Tuomas Ylinen Helsingin kaupunginorkesterin soolosellisti<br> – Tuomas Lehto ja Tomas Nuñez Radion sinfoniaorkesterin soolosellistejä<br> – Samuli Peltonen ja Jussi Vähälä Suomen Kansallisoopperan orkesterin soolosellistejä</p>",
                "sv": "<p>Total Cello Ensemble är en effektiv femma inom den finländska cellokonsten!</p><p>Det här unika bandet med sex toppcellister, som även underhållit på slottsfesten, har redan i 30 år vält omkull musikaliska barriärer inom den klassiska underhållningen – utan att spara på cellon och utan att kompromissa med kvaliteten.</p><p>Såväl finska och argentinska tangon som känslosamma operaarior viker sig i hanteringen av dessa toppmusiker till en hänförande form. Programmet presenterar också finländska landsvarumärken från Sibelius Jägaremarschen till Lapplands ödemarkssjöars ljudlandskap. Med sex cellon kan man tävla i till exempel Formel 1-tävlingar!</p><p>”På konserterna hörs musik på bred front, vilket enligt vår mening lyfter fram cellons finaste uttrycksskala bäst. I cellon finns ju hela människans tonläge, mannens och kvinnans, och kanske just därför passar cello så bra som tolk för våra gemensamma känslor. För oss finns det ingen separat lätt eller seriös musik, båda finns med i Total Cello Ensemble, precis som i livet.” – Hannu Kiiski, lektor emeritus, TCE:s Primus Motor.</p><p>Total Cello Ensemble grundades 1994 av Hannu Kiiskis, cellist, lärare i cello och lektor emeritus, bestående av eleverna i Sibelius-Akademins celloklass som en motvikt till den klassiska musikstuderandens ofta ganska ensamma knogande. Under årens lopp har TCE-sammansättningen omfattat totalt 36 spelare.</p><p>Cellister i Total Cello Ensemble:<br> – Hannu Kiiski, bandets Primus Motor, lektor emeritus, belönad med Pro Finlandia-medaljen 2023 för sitt banbrytande arbete för musiken<br> – Tuomas Ylinen, solocellist i Helsingfors stadsorkester<br> – Tuomas Lehto och Tomas Nuñez, solocellister i Radions symfoniorkester<br> – Samuli Peltonen och Jussi Vähälä, solocellister i Finlands Nationaloperas orkester</p>",
                "en": "<p>Total Cello Ensemble is a power act of Finnish cello art!</p><p>This unique ensemble of six top cellists has entertained audiences even at the Finnish Independence Day Reception. For 30 years now, they have been leaping over the borders of different genres of music from classical music to popular – pushing the boundaries of cellos and without compromising quality.</p><p>These top musicians bend both Finnish and Argentinean tangos and even evocative operatic arias into a new, captivating form. Their repertoire also presents Finland’s country brand, featuring elements such as the Jääkärinmarssi military march by Sibelius and soundscapes from lakes in the Lappish wilderness. And six cellos can even mimic a Formula race!</p><p>“The concerts feature a wide range of music that we believe best showcases the most fantastic and expressive scales of the cello. The cello encompasses the whole range of human voice, both male and female, and maybe that is why they are such a perfect way to express our shared feelings. We don’t separate light or serious music, they are intertwined for the Total Cello Ensemble, just like in real life.” – Hannu Kiiski, lecturer emeritus, the Primus Motor of TCE</p><p>The Total Cello Ensemble was founded in 1994 by the cellist and cello teacher, lecturer emeritus Hannu Kiiski. The members were students of his cello class in Sibelius Academy, and the band’s purpose was to provide a respite from the often lonely work of music students. Over the years, the TCE has had a total of 36 musicians.</p><p>The cellists of the Total Cello Ensemble:<br> – Hannu Kiiski, the Primus Motor of TCE, lecturer emeritus – awarded the Pro Finlandia medal in 2023 for his pioneering work in music<br> – Tuomas Ylinen, solo celloist of the Helsinki Philharmonic Orchestra<br> – Tuomas Lehto and Tomas Nuñez, solo celloists of the Finnish Radio Symphony Orchestra<br> – Samuli Peltonen and Jussi Vähälä, solo celloists of the Finnish National Opera’s orchestra</p>"
            },
            "short_description": {
                "fi": "Total Cello Ensemble on suomalaisen sellotaiteen tehokentällinen!",
                "sv": "Total Cello Ensemble är en effektiv femma inom den finländska cellokonsten!",
                "en": "Total Cello Ensemble is a power act of Finnish cello art!"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1EB1F077A923A3FFFAECFEA47E83B1B7/Total_Cello_Ensemble",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1EB1F077A923A3FFFAECFEA47E83B1B7/Total_Cello_Ensemble",
                "en": "http://www.espanlava.fi/en/events/event/1EB1F077A923A3FFFAECFEA47E83B1B7/Total_Cello_Ensemble"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66519/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66541",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 985982,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T12:14:46.099048Z",
                    "last_modified_time": "2025-06-10T12:14:46.099067Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765235.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985982/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T11:12:39.226224Z",
            "last_modified_time": "2025-06-30T10:12:43.537480Z",
            "date_published": null,
            "start_time": "2025-08-18T14: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": "Sulasol: yhteislaulutuokio – laulattajina Raija Seilonen ja Kyösti Laihi",
                "sv": "Sulasol: allsång – Raija Seilonen och Kyösti Laihi leder allsången",
                "en": "Sulasol: singalong session – Hosted by Raija Seilonen and Kyösti Laihi"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Yhteislaulun riemua!</p><p>Sulasolin yhteislauluissa laulattajat ja teemat vaihtuvat, mutta yksi on ja pysyy: yhteislaulun riemu! elokuun yhteislaulutilaisuudessa laulattajina toimivat Raija Seilonen ja Kyösti Laihi.</p><p>Tapahtuma kutsuu laulamaan laulutaustasta riippumatta. Kokeneet laulattajat ja yhteisöllinen henki tekevät näistä äänenavaustilaisuuksista turvallisen tavan aloittaa uusi yhteislauluharrastus.</p><p>Raija Seilonen ja Kyösti Laihi ovat vetäneet Sulasolin yhteislaulutilaisuuksia yli kymmenen vuotta, aluksi Soutustadionilla ja sittemmin Musiikkitalossa. Työnjako toimii pääosin niin, että Raija laulattaa ja Kyösti soittaa pianoa. Raijaa ja Kyöstiä yhdistää yhteislaulatusten lisäksi laulaminen perinteikkäässä Kansallis-Kuorossa. Raija on ollut pikkutytöstä asti aktiivinen laulun harrastaja. Kyösti puolestaan on täysiverinen ammattilainen, kosketinsoittaja ja laulaja. Kyösti on osallistunut aikoinaan Euroviisuihinkin Boulevard-yhtyeen laulusolistina kappaleella ”Nauravat silmät muistetaan”. Yhteislaulajat kiittävät Raijaa ja Kyöstiä erityisesti laulajaystävällisistä sävellajeista, joiden myötä laulaminen on helppoa ja antoisaa myös niille, jotka laulavat harvemmin. On hienoa tulla laulamaan Helsingin sydämeen!</p><p>Klo 17 alkavaan laulutuokioon on vapaa pääsy, eikä lippuja tarvita! Yhteislauluhetken kesto on noin 45 minuuttia.</p><p>Laulukirjana käytetään Sulasolin Helsingin piiri ry:n julkaisemaa yhteislaulukirjaa, jota voi tilaisuuksien alussa ostaa hintaan 10 €/kpl. Huomioithan, että vain käteinen kelpaa maksuvälineeksi.</p><p>Tervetuloa mukaan yhteiseen lauluhetkeen!</p>",
                "sv": "<p>Allsångsglädje!</p><p>I Sulasols allsångsstunder varierar sångledarna och temana, men ett är och förblir: allsångens glädje! Raija Seilonen och Kyösti Laihi leder allsången vid allsångsevenemanget i augusti.</p><p>Evenemanget bjuder in folk att sjunga oberoende av sin sångbakgrund. Erfarna sångare och en gemensam anda gör dessa röstöppningstillfällen till ett tryggt sätt att inleda en ny gemensam sånghobby.</p><p>Raija Seilonen och Kyösti Laihi har lett Sulasols allsångsevenemang i över tio år, till en början i Roddstadion och senare i Musikhuset. Arbetsfördelningen fungerar huvudsakligen så att Raija leder allsången och Kyösti spelar piano. Raija och Kyösti förenas förutom av de gemensamma allsångerna även av den traditionella Kansallis-Kuoro. Raija har varit en aktiv hobbysångare sedan hon var liten. Kyösti å sin sida är ett fullblodsproffs, keyboardspelare och sångare. Kyösti deltog i tiderna även i Eurovisionen som sångsolist i bandet Boulevard med låten ”Nauravat silmät muistetaan”. Allsångarna tackar Raija och Kyösti särskilt för de sångvänliga tonarterna, som gör det enkelt och givande att sjunga också för dem som sjunger mera sällan. Det är fint att komma och sjunga i hjärtat av Helsingfors!</p><p>Fritt inträde till sångstunden som börjar kl. 17, inga biljetter behövs. Allsångsstunden är cirka 45 minuter lång.</p><p>Som sångbok används Sulasolin Helsingin piiri ry:s allsångsbok, som kan köpas till ett pris på 10 euro/st. i början av evenemangen. Observera att bara kontanter duger som betalningsmedel.</p><p>Välkommen med och sjung tillsammans!</p>",
                "en": "<p>Joy of singalong!</p><p>Sulasol singalongs have different hosts and themes, but one thing is constant: the joy of singing together! The August singalong will be hosted by Raija Seilonen and Kyösti Laihi.</p><p>The event invites everyone to sing regardless of whether they have any background in singing. Experienced hosts and community spirit make these vocal warm-up events a comfortable way to start a new singing hobby.</p><p>Raija Seilonen and Kyösti Laihi have been hosting the Sulasol singalongs for more than ten years, first at the Töölö Rowing Stadium and then at Musiikkitalo. Their division of work is quite clear: Raija leads the song and Kyösti plays the piano. In addition to singalongs, Raija and Kyösti also sing together in the traditional Kansallis-Kuoro. Raija has been an active singer since she was a little girl. Kyösti is a professional musician: a keyboardist and a singer. Kyösti has even participated in the Eurovision Song Contest back in the day, as the soloist of the band Boulevard, which performed the song ”Nauravat silmät muistetaan”. The singalong singers praise Raija and Kyösti especially for choosing songs in keys that make singing easy and rewarding also for those who do not sing as often. Singing at the heart of Helsinki is wonderful!</p><p>The song event starts at 17:00 and admission is free! The singalong will last about 45 minutes.</p><p>A songbook published by the Helsinki district of the Finnish Amateur Musicians' Association will be used during the singalong. You can purchase the book at the event for 10 euros. Please note that only cash can be used as payment.</p><p>Come and sing together with others!</p>"
            },
            "short_description": {
                "fi": "Yhteislaulun riemua!",
                "sv": "Allsångsglädje!",
                "en": "Joy of singalong!"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DD0F849B18124761E53C46E7EF4AE92E/Sulasol_yhteislaulutuokio",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DD0F849B18124761E53C46E7EF4AE92E/Sulasol_allsang",
                "en": "http://www.espanlava.fi/en/events/event/DD0F849B18124761E53C46E7EF4AE92E/Sulasol_singalong_session"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66541/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66533",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 977341,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-09T11:14:45.834018Z",
                    "last_modified_time": "2025-06-09T11:14:45.834045Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766365.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/977341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-09T11:14:45.711982Z",
            "last_modified_time": "2025-06-30T10:12:43.345581Z",
            "date_published": null,
            "start_time": "2025-08-18T12: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": "Mirjam Helin -akatemian laulajat: Oopperaa ulkoilmassa",
                "sv": "Mirjam Helin-akademins sångare: Opera utomhus",
                "en": "Mirjam Helin Academy singers: Outdoor Opera"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Mirjam Helin -akatemian lahjakkaat laulajat esittäytyvät Espan lavalla ma 18.8. klo 15.00.</p><p>Tule kokemaan nuorten laulajien säteilevä energia ja tulkinta, kun luvassa on klassisen musiikin aarioita ja lauluja.</p><p>Laulamassa ovat Iris Candelaria, Martin Iivarinen, Emma Karsten, Faraja Mwamalumbili, Gabriel Kivivuori Sereno, Matvei Palola, Johannes Pessi, Tuomas Pääkkönen ja Marjaana Ritanen. Pianistina toimii Kirill Kozlovski.</p>",
                "sv": "<p>Mirjam Helin-akademins begåvade sångare presenterar sig på Esplanadestraden måndagen den 18 augusti kl. 15.</p><p>Kom och upplev de unga sångarnas strålande energi och tolkning. Arior och sånger inom klassisk musik utlovas. Sångarna är Iris Candelaria, Martin Iivarinen, Emma Karsten, Faraja Mwamalumbili, Gabriel Kivivuori Sereno, Matvei Palola, Johannes Pessi, Tuomas Pääkkönen och Marjaana Ritanen. Som pianist fungerar Kirill Kozlovskij.</p>",
                "en": "<p>The talented singers of the Mirjam Helin Academy perform on Espa Stage on Monday 18 August at 15:00.</p><p>Come and experience the bright energy and fresh interpretations of these young singers performing classic arias and songs. The singers are Iris Candelaria, Martin Iivarinen, Emma Karsten, Faraja Mwamalumbili, Gabriel Kivivuori Sereno, Matvei Palola, Johannes Pessi, Tuomas Pääkkönen and Marjaana Ritanen. Pianist: Kirill Kozlovski.</p>"
            },
            "short_description": {
                "fi": "Mirjam Helin -akatemian lahjakkaat laulajat esittäytyvät Espan lavalla ma 18.8. klo 15.00.",
                "sv": "Mirjam Helin-akademins begåvade sångare presenterar sig på Esplanadestraden måndagen den 18 augusti kl. 15.",
                "en": "The talented singers of the Mirjam Helin Academy perform on Espa Stage on Monday 18 August at 15:00."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/55182AD9E8ACA69CBCF27CB5248E809D/Mirjam_Helin_-akatemian_laulajat_Oopperaa_ulkoilmassa",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/55182AD9E8ACA69CBCF27CB5248E809D/Mirjam_Helin-akademins_sangare_Opera_utomhus",
                "en": "http://www.espanlava.fi/en/events/event/55182AD9E8ACA69CBCF27CB5248E809D/Mirjam_Helin_Academy_singers_Outdoor_Opera"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66533/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66518",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 944693,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-05T13:13:54.601968Z",
                    "last_modified_time": "2025-06-05T13:13:54.601985Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767586.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/944693/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-05T13:13:54.502862Z",
            "last_modified_time": "2025-06-30T08:12:37.058225Z",
            "date_published": null,
            "start_time": "2025-08-03T12: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": "Kamarikesä-festivaali: Bandoneonin suru – Henrik Sandås x Kamarikesä",
                "sv": "Festivalen Kammarsommar: Bandoneons sorg – Henrik Sandås x Kammarsommar",
                "en": "Kamarikesä Chamber Music Festival: Bandoneonin suru – Grief of bandoneon – Henrik Sandås x Kamarikesä"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Helsingin vanhimman kamarimusiikkifestivaalin taiteilijat yhdessä Henrik Sandåsin kanssa jatkavat syventymistään Astro Piazzollan musiikkin.</p><p>Iltapäivän toisessa konsertissa Bandoneonin suru päästään entistä kaihoisempien ja riipaisevien sävelten pariin.</p>",
                "sv": "<p>Konstnärerna vid Helsingfors äldsta kammarmusikfestival tillsammans med Henrik Sandås fortsätter att fördjupa sig i Astro Piazzollas musik.</p><p>Eftermiddagens andra konsert Bandoneonin suru tar oss till en plats med ännu mer längtande och gripande toner.</p>",
                "en": "<p>Henrik Sandås and the artists of the oldest chamber music festival in Helsinki continue to immerse themselves and their audience in the music of Astor Piazzolla.</p><p>The second concert of the afternoon, Bandoneonin suru – Grief of bandoneon, features moving melodies filled with longing.</p>"
            },
            "short_description": {
                "fi": "Helsingin vanhimman kamarimusiikkifestivaalin taiteilijat yhdessä Henrik Sandåsin kanssa jatkavat syventymistään Astro Piazzollan musiikkin.",
                "sv": "Konstnärerna vid Helsingfors äldsta kammarmusikfestival tillsammans med Henrik Sandås fortsätter att fördjupa sig i Astro Piazzollas musik.",
                "en": "Henrik Sandås and the artists of the oldest chamber music festival in Helsinki continue to immerse themselves and their audience in the music of Astor Piazzolla."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5CBDEF3DC2D20F316B80AA02936B3155/Kamarikesa-festivaali_Bandoneonin_suru",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/5CBDEF3DC2D20F316B80AA02936B3155/Festivalen_Kammarsommar_Bandoneons_sorg",
                "en": "http://www.espanlava.fi/en/events/event/5CBDEF3DC2D20F316B80AA02936B3155/Kamarikesa_Chamber_Music_Festival_Bandoneonin_suru_Grief_of_bandoneon"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66518/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66517",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 944692,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-05T13:13:54.255279Z",
                    "last_modified_time": "2025-06-05T13:13:54.255295Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767585.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/944692/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-05T13:13:54.150588Z",
            "last_modified_time": "2025-06-30T08:12:36.884348Z",
            "date_published": null,
            "start_time": "2025-08-03T10: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": "Kamarikesä-festivaali: Le Grand Tango – Henrik Sandås x Kamarikesä",
                "sv": "Festivalen Kammarsommar: Le Grand Tango – Henrik Sandås x Kammarsommar",
                "en": "Kamarikesä Chamber Music Festival: Le Grand Tango – Henrik Sandås x Kamarikesä"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sunnuntaina Kamarikesä täyttää Helsingin keskustan Astor Piazzollan hurmaavalla musiikilla!</p><p>Maamme mahtavin bandoneontaituri Henrik Sandås saapuu Espan lavalle kahden konsertin kera. Festivaalin taitelijoista kootun jousikvintetin kanssa esiintyvä Henrik soittaa Piazzollan unohtumattomimpia tangosäveliä Adios Noniñosta Le Grand Tangoon.</p>",
                "sv": "<p>På söndag fyller Kammarsommaren Helsingfors centrum med Astor Piazzollas betagande musik!</p><p>Landets mest framstående bandoneonkonstnär Henrik Sandås kommer till Esplanadestraden med två konserter. Henrik, som uppträder med en stråkkvintett sammansatt av festivalens artister, spelar Piazzollas mest oförglömliga tangotoner från Adios Noniño till Le Grand Tango.</p>",
                "en": "<p>On Sunday, Kamarikesä Chamber Music Festival will fill the Helsinki City Centre with the charming music of Astor Piazzolla!</p><p>The greatest bandoneon virtuoso in our country, Henrik Sandås, will take over Espa Stage in two concerts. Henrik will perform with a string quintet featuring some of the festival artists, playing the most unforgettable tango melodies by Piazzolla, from Adios Noniño to Le Grand Tango.</p>"
            },
            "short_description": {
                "fi": "Sunnuntaina Kamarikesä täyttää Helsingin keskustan Astor Piazzollan hurmaavalla musiikilla!",
                "sv": "På söndag fyller Kammarsommaren Helsingfors centrum med Astor Piazzollas betagande musik!",
                "en": "On Sunday, Kamarikesä Chamber Music Festival will fill the Helsinki City Centre with the charming music of Astor Piazzolla!"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/428A4BB825C6ED8FDDC3485A7A298A89/Kamarikesa-festivaali_Le_Grand_Tango_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/428A4BB825C6ED8FDDC3485A7A298A89/Festivalen_Kammarsommar_Le_Grand_Tango_",
                "en": "http://www.espanlava.fi/en/events/event/428A4BB825C6ED8FDDC3485A7A298A89/Kamarikesa_Chamber_Music_Festival_Le_Grand_Tango_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66517/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66441",
            "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": [],
                    "price": {
                        "fi": "42,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/20286578"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 926401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-03T07:13:50.660388Z",
                    "last_modified_time": "2025-06-03T07:13:50.660410Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774210.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/926401/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-03T07:13:50.536736Z",
            "last_modified_time": "2025-06-27T11:12:24.000593Z",
            "date_published": null,
            "start_time": "2025-11-19T17: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": "Mokoma Akustisena"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Suomenkielisen metallimusiikin pioneeriyhtye <b>Mokoma</b> suuntaa syksyllä harvinaiselle akustiselle kiertueelle. Pitkällä urallaan kaksi akustista albumia (Varjopuoli, 2011 ja Laulurovio, 2016) julkaissut bändi nähdään marraskuussa yhteensä kahdeksalla paikkakunnalla. Luvassa on levyiltä tuttujen kappaleiden lisäksi myös uusia akustisia sovituksia.</p><p><i>- Akkarikeikkoja onkin ollut ikävä! Metallisen äänenpaineen vastapainoksi on ainoastaan järkevää tarjoilla välillä vähän rauhallisempaa tunnelmointia. Setissä tulee olemaan levyiltä tuttuja akustisia tulkintoja, mutta sovituspajalla on huhkittu myös uusien biisien parissa. Akustisilla keikoilla itsensä joutuu haastamaan aivan erilailla kuin fyysisyyttä tihkuvilla sähkökeikoilla. Jokainen ääni kuuluu, oli sitten oikea tai väärä, meluvallista ei saa suojaa, joten herkillähän tässä hommassa mennään,</i> yhtyeen rumpali <b>Janne Hyrkäs</b> kertoo.</p><p>Mokoma saa tuekseen kiertueelle haitarivirtuoosi <b>Netta Skogin</b>, joka on tuttu myös bändin aiemmilta akustisilta kiertueilta sekä Laulurovio -levyltä.</p><p><i>- Jos keikkoja on ollut ikävä, niin vähintään yhtä kova ikävä on ollut Netan kanssa soittamista! Netta luo biiseihin ihania täydentäviä äänikudelmia taidokkaalla soitolla, laululla ja läsnäolollaan,</i>  Hyrkäs jatkaa.</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "short_description": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Dex Viihde Oy"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/630CFCB400828CCB49311F3A84AC95C3/Mokoma_Akustisena"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66441/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}