Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 22659,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=18",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=16"
    },
    "data": [
        {
            "id": "espoo_le:agpiery7oe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery5je/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery5we/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery6ay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery6mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery6xm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery7ce/?format=api"
                }
            ],
            "images": [
                {
                    "id": 153506,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T13:24:38.726896Z",
                    "last_modified_time": "2024-12-18T13:24:38.726925Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3c25c00f-49c1-45df-a6d9-ab0ae4ca9c83.png",
                    "name": "",
                    "cropping": "58,0,778,719",
                    "photographer_name": "",
                    "alt_text": "Koira, jolla on suussa keltaisia kesäkukkia ja vihreä nurmikko taustalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153506/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-01T07:28:35.652853Z",
            "last_modified_time": "2026-06-01T07:28:35.652865Z",
            "date_published": null,
            "start_time": "2026-07-01T15:00:00Z",
            "end_time": "2026-12-02T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Lukukoira Lady",
                "sv": "Läshunden Lady",
                "en": "Reading dog Lady"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jos lukeminen tuntuu vaikealta, Ladyn kanssa on kiva opetella ja samalla voi antaa rapsutuksia.",
                "sv": "Om läsning känns svårt är det trevligt att öva med Lady, och samtidigt kan man klappa henne.",
                "en": "If reading feels difficult, it’s nice to practice with Lady, and you can give her some pets at the same time."
            },
            "description": {
                "fi": "<p>Jos lukeminen tuntuu vaikealta, lukulemmikki Ladyn kanssa on kiva opetella ja samalla voi antaa rapsutuksia.</p>",
                "sv": "<p>Om läsning känns svårt är det trevligt att öva med Lady, och samtidigt kan man klappa henne.</p>",
                "en": "<p>If reading feels difficult, it’s nice to practice with Lady, and you can give her some pets at the same time.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery7oe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69039",
            "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:105/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201310,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-15T09:14:14.303871Z",
                    "last_modified_time": "2026-05-15T09:14:14.303893Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785723.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201310/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-15T09:14:14.218047Z",
            "last_modified_time": "2026-06-01T07:13:43.689660Z",
            "date_published": null,
            "start_time": "2026-08-30T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/4C124063A83FF3509A637A9416E084B7/Mutaveijarit",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/4C124063A83FF3509A637A9416E084B7/Mutaveijarit",
                "en": "http://www.espanlava.fi/en/events/event/4C124063A83FF3509A637A9416E084B7/Mutaveijarit"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Mutaveijarit – Espan lavan kauden päättäjäiset",
                "sv": "Mutaveijarit – Säsongsavslutning på Esplanadestraden",
                "en": "Mutaveijarit – Espa Stage Season’s Closing Party"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mutaveijarit kutsuu kaikenikäiset kuulijat mukaan vauhdikkaalle musiikkimatkalle ystävyyden, luonnon ja kuravellin riemukkaaseen maailmaan.",
                "sv": "Mutavejarit bjuder lyssnare i alla åldrar på en fartfylld musikresa till vänskapens, naturens och lervällingens glada värld.",
                "en": "Mutaveijarit (“muddy mates”) invites people of all ages on a musical journey to the wonderful world of friendship, nature and mud."
            },
            "description": {
                "fi": "<p>Mutaveijarit kutsuu kaikenikäiset kuulijat mukaan vauhdikkaalle musiikkimatkalle ystävyyden, luonnon ja kuravellin riemukkaaseen maailmaan.</p><p>Seikkailemme yhdessä ympäri ämpäri maailman, sukellamme välillä merten ja järvien läpi, kohtaamme monenmoista ystävää ja tuttua ja ihmettelemme yhdessä montaa juttua. Konsertissa pääset mukaan laulamaan ja leikkimään Mutaveijareiden valloittavaan maailmaan.</p><p>Riemukas ja supersuosittu Mutaveijarit on maanmainio lastenmusiikkiyhtye, joka on tunnettu valloittavasta lavaesiintymisestään ja mukaansatempaavista lauluistaan. Yhtyeen musiikissa mielikuvitus on päästetty valloilleen ja eri musiikkityylejä yhdistellään rohkeasti ja leikkisästi.</p><p>Musiikillisesti ja sanoituksellisesti oivaltavat laulut yhdessä innostavien ja pedagogisesti monipuolisten laululeikkien kanssa tempaavat kuulijansa musiikilliselle retkelle, jonka hauskoissa ja jännittävissä käänteissä viihtyvät niin lapset kuin aikuisetkin.</p><p><i>Hyppää kyytiin nyt, laita kiinni turvavyö!</i></p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p>",
                "sv": "<p>Mutavejarit bjuder lyssnare i alla åldrar på en fartfylld musikresa till vänskapens, naturens och lervällingens glada värld.</p><p>Vi ger oss ut på äventyr runt om i världen, dyker ibland genom hav och sjöar, möter många olika slags vänner och bekanta och förundras över många saker tillsammans. På konserten får du vara med och sjunga och leka i världen som Mutaveijarit erövrat.</p><p>Den glada och superpopulära Mutaveijarit är en toppen barnmusikgrupp som är känd för sina fascinerande scenframträdanden och medryckande sånger. I bandets musik har fantasin fått löpa fritt och olika musikstilar kombineras modigt och lekfullt. De musikaliskt och textmässigt insiktsfulla sångerna tillsammans med inspirerande och pedagogiskt mångsidiga sånglekar rycker lyssnarna med på en musikalisk resa, som har roliga och spännande vändningar där både barn och vuxna trivs.</p><p><i>Hoppa in och spänn fast säkerhetsbältet!</i></p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p>",
                "en": "<p>Mutaveijarit (“muddy mates”) invites people of all ages on a musical journey to the wonderful world of friendship, nature and mud.</p><p>We will embark on a journey across the world together, occasionally diving into the depths of seas and lakes, meeting friends and acquaintances along the way and marvelling at all the wonders of the world. During the concert, the audience has the chance to sing and play along in the enchanting world of Mutaveijarit.</p><p>The hilarious and super-popular Mutaveijarit is a nationally renowned children's music group known for their captivating stage performances and exciting songs. The music of the band is awash with imagination and boldly and playfully combines different music styles. The musically and lyrically insightful songs, combined with inspirational and pedagogically versatile singing games, whisk the listener away on a musical journey that is fun and exciting for people of all ages.</p><p><i>Get in now, fasten your seat belt!</i></p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69039/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69038",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201309,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-15T09:14:13.944954Z",
                    "last_modified_time": "2026-05-15T09:14:13.944969Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785722.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201309/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-15T09:14:13.843033Z",
            "last_modified_time": "2026-06-01T07:13:43.459282Z",
            "date_published": null,
            "start_time": "2026-08-28T17:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C86AEDB62D914FDCF2BAC958D124CC85/Back_to_the_Future_Paluu_tulevaisuuteen",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/C86AEDB62D914FDCF2BAC958D124CC85/Back_to_the_Future_Tillbaka_till_framtiden",
                "en": "http://www.espanlava.fi/en/events/event/C86AEDB62D914FDCF2BAC958D124CC85/Back_to_the_Future"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Back to the Future – Paluu tulevaisuuteen",
                "sv": "Back to the Future – Tillbaka till framtiden",
                "en": "Back to the Future"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule aikamatkalle 1980-luvulle katsomaan Paluu tulevaisuuteen -elokuvaa oikealla 35mm filmiprojektorilla esitettynä.",
                "sv": "Gör en tidsresa till 1980-talet och se filmen Tillbaka till framtiden visad med en riktig 35 mm filmprojektor.",
                "en": "Take a trip back in time to the 1980s and watch Back to the Future on a real 35 mm film projector."
            },
            "description": {
                "fi": "<p>Tule aikamatkalle 1980-luvulle katsomaan Paluu tulevaisuuteen -elokuvaa oikealla 35mm filmiprojektorilla esitettynä.</p><p>Elokuvasta esitetään sama kopio, jota vuonna 1985 näytettiin teattereissa.</p><p>Esitys alkaa hämärän laskeuduttua noin kello 20.30.</p><p>Tapahtuma on ikärajaton ja pääsymaksuton.<br>Kesto: noin 2 tuntia, lyhyt väliaika.<br>Esityskieli: englanti, tekstitys suomeksi ja ruotsiksi.</p><p>Pukeuduthan sään mukaisesti; kannattaa myös ottaa oma istuin matkaan!</p><p>Tekninen toteutus Helsingin Studiopalvelut <br>https://helsinginstudiopalvelut.com/</p>",
                "sv": "<p>Gör en tidsresa till 1980-talet och se filmen Tillbaka till framtiden visad med en riktig 35 mm filmprojektor.</p><p>Filmen visas i samma kopia som visades på biografer 1985.</p><p>Föreställningen börjar efter skymningen omkring kl. 20.30.</p><p>Evenemanget har ingen åldersgräns eller inträdesavgift.<br>Längd: cirka 2 timmar, kort paus.<br>Filmens språk är engelska, med textning på finska och svenska.</p><p>Klä dig efter vädret; det är också värt att ta med en egen sits!</p><p>Tekniskt genomförande Helsingin Studiopalvelut <br>https://helsinginstudiopalvelut.com/</p>",
                "en": "<p>Take a trip back in time to the 1980s and watch Back to the Future on a real 35 mm film projector.</p><p>The film will be shown in the same print that was shown in theatres in 1985.</p><p>The screening will start after dusk at around 20.30.</p><p>The event is free of charge for all ages.<br>Duration: about 2 hours, short intermission.<br>Language: English with subtitles in Finnish and Swedish.</p><p>Dress for the weather and bring your own seat!</p><p>Technical implementation Helsingin Studiopalvelut <br>https://helsinginstudiopalvelut.com/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69038/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69037",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201308,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-15T09:14:13.343791Z",
                    "last_modified_time": "2026-05-15T09:14:13.343811Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785721.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201308/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-15T09:14:13.240037Z",
            "last_modified_time": "2026-06-01T07:13:43.252145Z",
            "date_published": null,
            "start_time": "2026-08-28T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/4FE9E33F31D5D44CF09F7C918B94C3B3/Hissun_Kissun",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/4FE9E33F31D5D44CF09F7C918B94C3B3/Hissun_Kissun",
                "en": "http://www.espanlava.fi/en/events/event/4FE9E33F31D5D44CF09F7C918B94C3B3/Hissun_Kissun"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Hissun Kissun",
                "sv": "Hissun Kissun",
                "en": "Hissun Kissun"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomalaisen psykedeelisen popin tulokas Hissun Kissun julkaisi debyyttialbuminsa Kaleidoskooppi keväällä 2026.",
                "sv": "Nykomlingen inom finländsk psykedelisk pop, Hissun Kissun, släppte sitt debutalbum Kaleidoskooppi våren 2026.",
                "en": "Finnish psychedelic pop newcomer Hissun Kissun released their debut album Kaleidoskooppi in spring 2026."
            },
            "description": {
                "fi": "<p>Suomalaisen psykedeelisen popin tulokas Hissun Kissun julkaisi debyyttialbuminsa Kaleidoskooppi keväällä 2026.</p><p>Kaleidoskooppi on omaleimaisen psykedeelisen popin taidonnäyte, jonka heleät syntetisaattorit, eteeriset laulumelodiat ja kirskuvat fuzz-kitarat luotaavat kuulijan matkalle syvälle omaan maailmaansa. Kaleidoskoopin tavoin albumi heijastaa useista eri vaikutteista ja tyylisuuntauksista olevat elementit jatkuvasti vaihtuviksi ja symmetrisiksi kuvioiksi luoden monipuolisen ja monimuotoisen kokonaisuuden, jossa yhdistyy moderni psykedelia, tanssittavat rytmit sekä lumoavat sävellykset.</p><p>Vuonna 2023 Tampereella perustettu Hissun Kissun syntyi rakkaudesta popmusiikkia, fuzzia ja analogisia syntetisaattoreita kohtaan. Sen vuoksi onkin sopivaa, että yhtye ponnistaa juuri Tampereelta, suomalaisen psykedeelisen musiikin pääkallopaikalta.</p><p>Jäsenten muihin yhtyeisiin kuuluvat muun muassa kokoonpanot Radio Supernova, Polymoon ja Skyjoggers. Hissun Kissun yhdisteleekin erilaisia vaikutteita, joiden lopputuloksena on omaleimainen psykedeelinen mansepop, jossa kuuluu kaikuja niin dream popista, psykedeelisestä rokista, diskosta kuin myös elektronisesta musiikista.</p>",
                "sv": "<p>Nykomlingen inom finländsk psykedelisk pop, Hissun Kissun, släppte sitt debutalbum Kaleidoskooppi våren 2026.</p><p>Kaleidoskooppi är ett konststycke av särpräglad psykedelisk pop med mjuka syntetisatorer, eteriska sångmelodier och skärande fuzz-gitarrer som tar lyssnaren på en resa djupt in i sin egen värld. Likt ett kalejdoskop reflekterar albumet element från många olika influenser och genrer i ständigt föränderliga och symmetriska mönster, vilket skapar en mångsidig och mångfacetterad helhet som kombinerar modern psykedelia, dansbara rytmer och förtjusande kompositioner.</p><p>Hissun Kissun, som grundades i Tammerfors 2023, föddes ur kärleken till popmusik, fuzz och analoga syntetisatorer. Det är därför passande att bandet är baserat just i Tammerfors, högborgen för den finländska psykedeliska musiken.</p><p>Medlemmarnas andra band inkluderar Radio Supernova, Polymoon och Skyjoggers. Hissun Kissun kombinerar olika influenser, vilket resulterar i en särpräglad psykedelisk mansepop med ekon av dream pop, psykedelisk rock, disco och även elektronisk musik.</p>",
                "en": "<p>Finnish psychedelic pop newcomer Hissun Kissun released their debut album Kaleidoskooppi in spring 2026.</p><p>Kaleidoskooppi is a masterpiece of distinctive psychedelic pop, with gentle synths, ethereal vocal melodies and sizzling fuzz guitars that take the listener on a journey deep into their own world. Like a kaleidoscope, the album reflects elements from many different influences and genres in ever-changing and symmetrical patterns, creating a diverse and multifaceted experience that combines modern psychedelia, danceable rhythms and enchanting compositions.</p><p>Hissun Kissun, founded in Tampere in 2023, was born out of love for pop music, fuzz and analogue synthesisers. It is therefore fitting that the band is based in Tampere, the main hub of Finnish psychedelic music.</p><p>The members' other bands include Radio Supernova, Polymoon and Skyjoggers. Hissun Kissun combines different influences, resulting in distinctive psychedelic Tampere-based pop with echoes of dream pop, psychedelic rock, disco and electronic music.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69037/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69036",
            "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: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/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201307,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-15T09:14:12.836814Z",
                    "last_modified_time": "2026-05-15T09:14:12.836837Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785727.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201307/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-15T09:14:12.716659Z",
            "last_modified_time": "2026-06-01T07:13:42.874365Z",
            "date_published": null,
            "start_time": "2026-08-27T13:00:00Z",
            "end_time": "2026-08-27T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5050865707403FBE996435FBF1D78ACE/Vimma_Tiisu_ymparistokiertue",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/5050865707403FBE996435FBF1D78ACE/Vimma_Tiisu_miljoturn_",
                "en": "http://www.espanlava.fi/en/events/event/5050865707403FBE996435FBF1D78ACE/Vimma_Tiisu_Environment_Tour"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Vimma & Tiisu: ympäristökiertue – Itämeripäivä Espan lavalla",
                "sv": "Vimma & Tiisu: miljöturné – Östersjödagen på Esplanadestraden",
                "en": "Vimma & Tiisu: Environment Tour – Baltic Sea Day on Espa Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Alkusyksystä 2026 Vimma kiertää rikostoverinsa Tiisun kanssa ympäri Suomen herättämässä koko maan ympäristötyöhön.",
                "sv": "I början av hösten 2026 åker Vimma tillsammans med sin medbrottsling Tiisu runt i Finland för att uppmuntra hela landet till miljöarbete.",
                "en": "In early autumn 2026, Vimma and their accomplice Tiisu will be touring around Finland to get the whole country involved in environmental work."
            },
            "description": {
                "fi": "<p>Alkusyksystä 2026 Vimma kiertää rikostoverinsa Tiisun kanssa ympäri Suomen herättämässä koko maan ympäristötyöhön.</p><p>Jokaisena iltana luvassa on kaksi keikkaa sekä paikallisia ympäristökysymyksiä käsittelevä keskustelutilaisuus, joka järjestetään yhdessä alueella toimivan Suomen luonnonsuojeluliiton paikallisyhdistyksen kanssa.</p><p>Olitpa sitten kovan luokan musiikkidiggaaja, ujosti luonnonsuojelusta kiinnostunut tai täysiverinen aktivisti, tätä planeetan parasta musiikkia ja ympäristötoimintaa yhdistävää kiertuetta ei kannata missata!</p><p><b>Aikataulu:</b><br> Klo 16.00 Ympäristökeskustelu<br> Klo 17.00 Tiisu<br> Klo 18.00 Vimma</p>",
                "sv": "<p>I början av hösten 2026 åker Vimma tillsammans med sin medbrottsling Tiisu runt i Finland för att uppmuntra hela landet till miljöarbete.</p><p>Det blir två konserter varje kväll samt en diskussion om lokala miljöfrågor som ordnas tillsammans med den lokala föreningen inom Finlands Naturskyddsförbund.</p><p>Oavsett om du är en hardcore musikdiggare, en blyg naturskyddsentusiast eller en fullblodsaktivist, får du inte missa den här turnén som kombinerar den bästa musiken på planeten med miljöaktiviteter!</p><p><b>Tidtabell:</b><br> Kl. 16.00 Miljödebatt<br> Kl. 17.00 Tiisu<br> Kl. 18.00 Vimma</p>",
                "en": "<p>In early autumn 2026, Vimma and their accomplice Tiisu will be touring around Finland to get the whole country involved in environmental work.</p><p>There will be two gigs each evening and a discussion on local environmental issues, organised together with the local association of the Finnish Association for Nature Conservation.</p><p>Whether you're a hardcore music digger, a shy conservationist or a full-blooded activist, this tour combining the best music and environmental action on the planet is not to be missed!</p><p><b>Schedule:</b><br> 16.00 Environmental debate<br> 17.00 Tiisu<br> 18.00 Vimma</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69036/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69035",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201306,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-15T07:13:54.359540Z",
                    "last_modified_time": "2026-05-15T07:13:54.359555Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785726.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201306/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-15T07:13:54.263862Z",
            "last_modified_time": "2026-06-01T07:13:42.657710Z",
            "date_published": null,
            "start_time": "2026-08-27T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5692A69BBF7D77C40C4D05E0E3DE67BF/Laula_elaman_puolesta_yhteislauluja_ymparistosta_muutoksesta_ja_toivosta_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/5692A69BBF7D77C40C4D05E0E3DE67BF/Sjung_for_livet_allsang_om_miljon_forandring_och_hopp",
                "en": "http://www.espanlava.fi/en/events/event/5692A69BBF7D77C40C4D05E0E3DE67BF/Laula_elaman_puolesta_singalong_for_the_environment_change_and_hope"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Laula elämän puolesta: yhteislauluja ympäristöstä, muutoksesta ja toivosta – Itämeripäivä Espan lavalla",
                "sv": "Sjung för livet: allsång om miljön, förändring och hopp – Östersjödagen på Esplanadestraden",
                "en": "Laula elämän puolesta: singalong for the environment, change and hope – Baltic Sea Day on Espa Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Yhteisöllinen Laula elämän puolesta -tapahtuma kokoaa lauluintoiset ilmastoaihetta sivuavien laulujen äärelle.",
                "sv": "Det gemenskapliga evenemanget Sjung för livet samlar ihop deltagare som vill sjunga sånger med klimattema.",
                "en": "The communal Laula elämän puolesta event brings together enthusiastic singers to sing songs about climate issues."
            },
            "description": {
                "fi": "<p>Yhteisöllinen Laula elämän puolesta -tapahtuma kokoaa lauluintoiset ilmastoaihetta sivuavien laulujen äärelle.</p><p>Laulamme ympäristöön, muutokseen ja toivoon liittyviä yhteislauluja monipuolisesti eri aikakausilta. Yhdessä laulamalla valamme toivoa ja voimaa itseemme ja toisiimme kriisien keskellä. Laulamalla teemme näkyväksi ja kuuluvaksi lempeän mutta voimakkaan viestin: ihmiset vaativat parempaa ilmastopolitiikkaa ja ovat valmiita myös itse toimimaan sen eteen.</p><p>Tilaisuus on avoin kaikenikäisille lauluintoisille. Olet sitten konkari tai ensikertalainen, tervetuloa laulamaan ja löytämään yhteinen sävel toisten kanssa!</p><p>Lisätietoja: https://laulaelamanpuolesta.webnode.fi/</p>",
                "sv": "<p>Det gemenskapliga evenemanget Sjung för livet samlar ihop deltagare som vill sjunga sånger med klimattema.</p><p>Vi sjunger en mängd olika allsånger om miljön, förändring och hopp från olika tidsperioder. Genom att sjunga tillsammans ger vi oss själva och varandra hopp och styrka mitt i kriser. Sången gör ett välvilligt men kraftfullt budskap synligt och hörbart: Människor kräver en bättre klimatpolitik och är redo att agera för det.</p><p>Evenemanget är öppet för sångare i alla åldrar. Oavsett om du är expert eller nybörjare är du välkommen att sjunga och hitta en gemensam melodi tillsammans med andra!</p><p>Mer information på finska: https://laulaelamanpuolesta.webnode.fi/</p>",
                "en": "<p>The communal Laula elämän puolesta event brings together enthusiastic singers to sing songs about climate issues.</p><p>We will be singing a variety of songs about the environment, change and hope from different eras. By singing together, we give ourselves and each other hope and strength in times of crisis. By singing, we will make our gentle but powerful message visible and audible: people are demanding better climate policy and are ready to take action.</p><p>The event is open to singers of all ages. Whether you are an expert or a first-timer, come along and sing in harmony with others!</p><p>Further information (in Finnish): https://laulaelamanpuolesta.webnode.fi/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69035/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69033",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201304,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-15T06:13:38.936445Z",
                    "last_modified_time": "2026-05-15T06:13:38.936460Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_788819.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201304/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-15T06:13:38.844429Z",
            "last_modified_time": "2026-06-01T07:13:42.393342Z",
            "date_published": null,
            "start_time": "2026-08-26T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/AD8BD98F9191755F150E61A44DC75BF1/Gaia",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/AD8BD98F9191755F150E61A44DC75BF1/Gaia",
                "en": "http://www.espanlava.fi/en/events/event/AD8BD98F9191755F150E61A44DC75BF1/Gaia"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Gaia – Open Stage",
                "sv": "Gaia – Open Stage",
                "en": "Gaia – Open Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Gaia ei lokeroi musiikkiaan mihinkään tyylisuuntaan. Hyvä musiikki syntyy ja elää parhaimmillaan ilman ennakkorajauksia.",
                "sv": "Gaia kategoriserar inte sin musik i någon särskild genre. Bra musik föds och lever som bäst utan förutfattade gränser.",
                "en": "Gaia does not categorise her music into any one genre. At its best, good music is born and lives without preconceptions."
            },
            "description": {
                "fi": "<p>Gaia ei lokeroi musiikkiaan mihinkään tyylisuuntaan. Hyvä musiikki syntyy ja elää parhaimmillaan ilman ennakkorajauksia.</p><p>Jos jotakin erityistä voi sanoa, niin Gaian musiikissa on kuultavissa pohjoismaisen kansanmusiikin mystiikkaa, mausteina espanjalaiset ja kuubalaiset rytmit.</p>",
                "sv": "<p>Gaia kategoriserar inte sin musik i någon särskild genre. Bra musik föds och lever som bäst utan förutfattade gränser.</p><p>Om något speciellt kan sägas, så har Gaias musik mystiken av nordisk folkmusik, kryddad med spanska och kubanska rytmer.</p>",
                "en": "<p>Gaia does not categorise her music into any one genre. At its best, good music is born and lives without preconceptions.</p><p>If Gaia's music had to be characterised, it could be said that it has the mystique of Nordic folk music, spiced up with Spanish and Cuban rhythms.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69033/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpieeirve",
            "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/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384790,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T06:36:05.206824Z",
                    "last_modified_time": "2026-06-01T06:36:05.206837Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/43461cea-1adb-4bdd-8105-7893307a6c14.jpg",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Tanja Kontisen teos",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384790/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T06:48:56.450647Z",
            "last_modified_time": "2026-06-01T06:48:56.450658Z",
            "date_published": null,
            "start_time": "2026-06-01T05:00:00Z",
            "end_time": "2026-06-26T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Näyttelyvitriini"
            },
            "provider": null,
            "name": {
                "fi": " Kesän kukat -näyttely "
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tanja Kontinen on harrastelijataiteilijana piirtänyt ja maalannut pienestä pitäen. "
            },
            "description": {
                "fi": "<p>Tanja Kontinen on harrastelijataiteilijana piirtänyt ja maalannut pienestä pitäen. \"Piirrän enimmäkseen lyijykynillä tai piirustuskyniä käyttäen ja aiheena töissäni ovat useimmiten kukat.\" kertoo Tanja.&nbsp;&nbsp;</p><p><br></p><p>Näyttelyyn tulevat työt poikkeavat siitä, mitä hän yleensä tekee. Nyt hän on käyttänyt akvarellikyniä ensimmäistä kertaa. Töissä yhdistyvät Tanjalle mieluisin eli piirtäminen ja akvarellikynien käyttö. \"Minusta idea oli kiva toteuttaa ja sain tekniikan haltuun. Työni ovat saaneet inspiraatiota Suomen luonnossa esiintyvistä kesän kauneimmista kukista.\" kuvailee Tanja.&nbsp;&nbsp;</p><p><br></p><p>Työt on tehty akvarellipaperille. Käytin töissäni Sakura Micron 01 waterproof pen, Pilot drawing pen 02 ja Stabilo aquacolor -värikyniä.&nbsp;&nbsp;</p><p><br></p><p>&nbsp;</p><p><br></p><p>Kiitos, kun tulit katsomaan töitäni. Lämpimästi tervetuloa Tapiolan kirjastoon!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieeirve/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69032",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201303,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-15T06:13:38.512074Z",
                    "last_modified_time": "2026-05-15T06:13:38.512095Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_788237.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201303/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-15T06:13:38.365510Z",
            "last_modified_time": "2026-06-01T06:13:23.520815Z",
            "date_published": null,
            "start_time": "2026-08-26T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/31B754BBDACE4A47712369ED85FB0053/Sir_mr_TAF",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/31B754BBDACE4A47712369ED85FB0053/Sir_mr_TAF",
                "en": "http://www.espanlava.fi/en/events/event/31B754BBDACE4A47712369ED85FB0053/Sir_mr_TAF"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Sir mr’ TAF – Open Stage",
                "sv": "Sir mr’ TAF – Open Stage",
                "en": "Sir mr’ TAF – Open Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kulttimainettakin nauttiva pieksämäkeläismuusikko Sir mr’ TAF esiintyy akustisesti kitaran kanssa.",
                "sv": "Sir mr’ TAF, musiker med kultstatus från Pieksämäki, uppträder akustiskt med gitarr.",
                "en": "Sir mr' TAF, a cult musician from Pieksämäki, will be playing an acoustic guitar set."
            },
            "description": {
                "fi": "<p>Kulttimainettakin nauttiva pieksämäkeläismuusikko Sir mr’ TAF esiintyy akustisesti kitaran kanssa.</p><p>Hänen esikoissinkkunsa \"Putki päällä\" ilmestyi vuonna 1990, ja sen jälkeen materiaalia on tuotettu runsaasti. Vuonna 2023 julkaistiin odotettu singlekokoelma <i>Vannomatta paras</i> (Tosiviihde / Isto Hiltunen). Kokoelma nousi pariksi viikoksi fyysisten albumien top-listan sijalle 5.</p><p>Sir mr’ TAF on esiintynyt muun muassa Tavastialla, Vanhalla ylioppilastalolla ja On the Rocksissa, myös televisioesiintymisiä on mahtunut uran varrelle. Tämä keikka Espan lavalla on laatuaan ensimmäinen.</p><p>Luvassa on ”savolainen ryntäys”: musiikkia, saippuakuplia, ilmapalloja, Pieksämäki-infoa ja kilpailuja: tervetuloa sankoin joukoin!</p>",
                "sv": "<p>Sir mr’ TAF, musiker med kultstatus från Pieksämäki, uppträder akustiskt med gitarr.</p><p>Hans debutsingel ”Putki päällä” släpptes 1990 och sedan dess har han producerat en mängd material. År 2023 utkom den efterlängtade singelsamlingen <i>Vannomatta paras</i> (Tosiviihde/Isto Hiltunen). Samlingen var under ett par veckor på plats 5 på topplistan för fysiska album.</p><p>Sir mr’ TAF har uppträtt på bland annat Tavastia, Gamla Studenthuset och On the Rock samt även i TV under sin karriär. Detta är den första gången han uppträder på Esplanadestraden.</p><p>Det blir musik, såpbubblor, ballonger, Pieksämäki-info och tävlingar – välkomna allihopa!</p>",
                "en": "<p>Sir mr' TAF, a cult musician from Pieksämäki, will be playing an acoustic guitar set.</p><p>His debut single Putki päällä was released in 1990, and since then he has produced a wealth of material. The highly anticipated single <i>Vannomatta paras</i> (Tosiviihde / Isto Hiltunen) was released in 2023. The collection spent a couple of weeks at number 5 in the physical albums chart.</p><p>Sir mr' TAF has performed at Tavastia, Vanha ylioppilastalo and On the Rocks, among others, and has also made television appearances. This is the first show of its kind on Espa Stage.</p><p>There will be music, soap bubbles, balloons, information on Pieksämäki and competitions: welcome one and all!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69032/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69027",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201296,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T13:13:37.915988Z",
                    "last_modified_time": "2026-05-13T13:13:37.916001Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787873.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201296/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T13:13:37.828267Z",
            "last_modified_time": "2026-06-01T06:13:23.311803Z",
            "date_published": null,
            "start_time": "2026-08-25T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/007952DBC7C21B6A7C1834F362EBA199/Suburban_String_Band",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/007952DBC7C21B6A7C1834F362EBA199/Suburban_String_Band",
                "en": "http://www.espanlava.fi/en/events/event/007952DBC7C21B6A7C1834F362EBA199/Suburban_String_Band"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Suburban String Band – Open Stage",
                "sv": "Suburban String Band – Open Stage",
                "en": "Suburban String Band – Open Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suburban String Bandin soittajat ovat alansa veteraaneja, jotka ovat tehneet bluegrassia ja old timea, countrya ja folkia jo 70-luvulta alkaen.",
                "sv": "Spelarna i Suburban String Band är veteraner inom sin bransch och har spelat bluegrass och old time, country och folk redan sedan 70-talet.",
                "en": "The players of the Suburban String Band are veterans of their craft, having played bluegrass and old time, country and folk since the 70s."
            },
            "description": {
                "fi": "<p>Suburban String Bandin soittajat ovat alansa veteraaneja, jotka ovat tehneet bluegrassia ja old timea, countrya ja folkia jo 70-luvulta alkaen.</p><p>Itse bändi on ollut olemassa viitisentoista vuotta. Vanhalta Subbbarit ei silti kuulosta! Ote on tuore, ja viimeinen käyttöpäivä on vielä kaukana. Bändi on esiintynyt useasti lähes kaikilla alan festivaaleilla ja tapahtumissa ja nyt vihdoin myös Espan lavalla!</p><p>Bändin kokoonpano:<br>Pekka Lampi, laulu ja kitara<br>Markus Ilmonen, laulu ja dobro<br>Jari Leinonen, mandoliini<br>Simo-Pekka Lindström, basso<br>Jussi Matikainen, laulu ja banjo</p>",
                "sv": "<p>Spelarna i Suburban String Band är veteraner inom sin bransch och har spelat bluegrass och old time, country och folk redan sedan 70-talet.</p><p>Bandet i sig har funnits i cirka femton år. Suburban låter ännu inte gammalt! Greppet är färskt och sista användningsdatum ligger ännu långt fram i tiden. Bandet har uppträtt på nästan alla festivaler och evenemang inom branschen och nu äntligen också på Esplanadestraden!</p><p>Bandets sammansättning:<br>Pekka Lampi, sång och gitarr<br>Markus Ilmonen, sång och dobro<br>Jari Leinonen, mandolin<br>Simo-Pekka Lindström, bas<br>Jussi Matikainen, sång och banjo</p>",
                "en": "<p>The players of the Suburban String Band are veterans of their craft, having played bluegrass and old time, country and folk since the 70s.</p><p>The band itself has been around for fifteen years. But do not be fooled, they do not sound old! They have a fresh approach, and their expiry date is still a long way off. The band has performed at almost every festival and event in the industry and now finally on Espa Stage!</p><p>The band's line-up:<br>Pekka Lampi, vocals and guitar<br>Markus Ilmonen, vocals and dobro<br>Jari Leinonen, mandolin<br>Simo-Pekka Lindström, bass<br>Jussi Matikainen, vocals and banjo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69027/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69028",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201294,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T13:13:36.668496Z",
                    "last_modified_time": "2026-05-13T13:13:36.668515Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785720.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201294/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T13:13:36.518435Z",
            "last_modified_time": "2026-06-01T06:13:22.863904Z",
            "date_published": null,
            "start_time": "2026-08-22T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/0138B951B1578283A7AB5B5800103B92/Electric_Elisa",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/0138B951B1578283A7AB5B5800103B92/Electric_Elisa",
                "en": "http://www.espanlava.fi/en/events/event/0138B951B1578283A7AB5B5800103B92/Electric_Elisa"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Electric Elisa",
                "sv": "Electric Elisa",
                "en": "Electric Elisa"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Electric Elisa jatkaa uteliaiden elämäntutkijoiden lumoamista musiikillaan ja energiallaan.",
                "sv": "Electric Elisa fortsätter att fängsla nyfikna livsutforskare med sin musik och energi.",
                "en": "Electric Elisa continues to enchant curious explorers of life with their music and energy."
            },
            "description": {
                "fi": "<p>Electric Elisa jatkaa uteliaiden elämäntutkijoiden lumoamista musiikillaan ja energiallaan.</p><p>Helsingissä toimiva Electric Elisa on elektronisen tanssimusiikin tutkimuskenttä. Eri genret sekoittuvat tarttuviin korvamatoihin ja euforisiin, jopa sinfonisiin elementteihin. Biiseissä kuullaan leikkisyyttä, mutta myös vakavia teemoja itsetuntemuksen, ihmisen psyyken ja universumin suurten kysymysten äärellä.</p><p>Livenä trio käsittelee tätä kaikkea hikisen rockshow’n kautta antaumuksellisesti. Paljas ja leikkisä improvisaatio on yhtyeen live-elektronisen esiintymisen perusta.</p><p>Electric Elisan debyyttialbumin <i>Fokus Lazer Sharp</i> julkaisi alkuvuodesta 2026 Alakulttuuritalo.</p>",
                "sv": "<p>Electric Elisa fortsätter att fängsla nyfikna livsutforskare med sin musik och energi.</p><p>Electric Elisa är ett Helsingforsbaserat forskningsfält för elektronisk dansmusik. Olika genrer blandas med medryckande öronmaskar och euforiska, till och med symfoniska element. Låtarna har en lekfullhet, men också allvarliga teman såsom självkännedom, det mänskliga psyket och universumets stora frågor.</p><p>Trion hanterar allt detta live med hängivenhet genom en svettig rockshow. Bar och lekfull improvisation är grunden för bandets elektroniska liveframträdanden.</p><p>Electric Elisas debutalbum <i>Fokus Lazer Sharp</i> gavs ut i början av 2026 av Alakulttuuritalo.</p>",
                "en": "<p>Electric Elisa continues to enchant curious explorers of life with their music and energy.</p><p>Helsinki-based Electric Elisa is an electronic (dance) music exploration field. Different genres blend with catchy earworms and euphoric, symphonic elements. Playful and thoughtful, the songs touch on themes of self-knowledge, the human psyche and the universe’s mysteries.</p><p>Live, this unique world unfolds through the trio’s sweaty rock-show energy. Raw and whimsical improvisation forms a passionate foundation in the band’s live electronic performance. <br> <br>Electric Elisa’s debut album <i>Fokus Lazer Sharp</i> was released in early 2026 via Alakulttuuritalo.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69028/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69026",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201287,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T11:13:55.466528Z",
                    "last_modified_time": "2026-05-13T11:13:55.466544Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774167.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201287/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T11:13:55.383171Z",
            "last_modified_time": "2026-06-01T06:13:22.578861Z",
            "date_published": null,
            "start_time": "2026-08-21T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DB7F768C36D105881944A568034BB305/MIL-Espa_Ilmavoimien_Big_Band",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DB7F768C36D105881944A568034BB305/MIL-Espa_Flygvapnets_Big_Band",
                "en": "http://www.espanlava.fi/en/events/event/DB7F768C36D105881944A568034BB305/MIL-Espa_Air_Force_Big_Band"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "MIL-Espa: Ilmavoimien Big Band",
                "sv": "MIL-Espa: Flygvapnets Big Band",
                "en": "MIL-Espa: Air Force Big Band"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ilmavoimien Big Bandin solistina kuullaan häikäisevänä pop-rock-taiturina tunnettua Antti Koivulaa.",
                "sv": "Flygvapnets Big Band på scenen vid MIL-Espa!",
                "en": "Air Force Big Band on the MIL-Espa stage!"
            },
            "description": {
                "fi": "<p>Ilmavoimien Big Bandin solistina kuullaan häikäisevänä pop-rock-taiturina tunnettua Antti Koivulaa.</p><p>Yhdessä esiintyjät iskevät jykevästi polulaarimusiikin suoneen, ja luvassa on hittejä sekä vauhtia viikonloppuun energisinä big band –sovituksina.<br>Kapellimestari: Ville Paakkunainen<br>Solisti: Antti Koivula</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa. Viihteelliset konsertit järjestetään Espan lavalla kesäperjantaisin ja lavan ottavat vuorollaan haltuunsa sotilassoittokuntien eri kokoonpanot ympäri Suomen.<br>Musiikillinen anti vaihtelee, ja tarjolla voi olla kokoonpanosta riippuen klassista puhallinmusiikkia, big band -musiikkia, perinteistä marssimusiikkia ja viihdemusiikkia - tai kaikkea siltä väliltä! Esiintyjinä ovat kuitenkin aina sotilassoittajat tai varusmiespalvelustaan soittokunnassa suorittavat varusmiehet.<br>Konsertteihin on vapaa pääsy, tervetuloa!</p>",
                "sv": "<p>Flygvapnets Big Band på scenen vid MIL-Espa!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadparken på somrarna sedan 1927 De underhållande konserterna ordnas på sommarfredagar på Esplanadestraden, och scenen intas turvis av militärkårernas olika sammansättningar från olika håll i Finland.</p><p>Musikutbudet varierar och beroende på sammansättningen kan kåren bjuda på klassisk blåsmusik, big band-musik, traditionell marschmusik och underhållningsmusik – eller allt däremellan! Artisterna är dock alltid militärmusiker eller beväringar som gör sin värnplikt i musikkåren.</p><p>Det är fritt tillträde till konserterna, välkommen!</p>",
                "en": "<p>Air Force Big Band on the MIL-Espa stage!</p><p>MIL-Espa summer park concerts have been taking place in Esplanade Park since 1927. The entertaining concerts are held on the Espa Stage on summer Fridays, with performances by different military band ensembles from across Finland.</p><p>The musical offerings vary, and depending on the line-up, the audience can look forward to classical brass music, big band music, traditional marching music, entertainment music – or everything in between! However, the performers are always military musicians or conscripts doing their military service in a band.</p><p>The concerts are free of charge, so don’t hesitate to drop by!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69026/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68978",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201229,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T09:12:59.360469Z",
                    "last_modified_time": "2026-05-12T09:12:59.360482Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787904.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201229/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T09:12:59.285518Z",
            "last_modified_time": "2026-06-01T06:13:19.974421Z",
            "date_published": null,
            "start_time": "2026-07-14T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/51A9C045FCD85E1DE7D10F35B68716C2/Kaisa_Makkonen",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/51A9C045FCD85E1DE7D10F35B68716C2/Kaisa_Makkonen",
                "en": "http://www.espanlava.fi/en/events/event/51A9C045FCD85E1DE7D10F35B68716C2/Kaisa_Makkonen"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Kaisa Makkonen – Open Stage",
                "sv": "Kaisa Makkonen – Open Stage",
                "en": "Kaisa Makkonen – Open Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Espan lavalle nousee loistava, karismaattinen laulaja Kaisa Makkonen, joka on esiintynyt lukuisten orkestereiden ja tunnettujen pianistien kanssa ympäri Suomen.",
                "sv": "Esplanadestraden intas av Kaisa Makkonen, en briljant och karismatisk sångare som har uppträtt med otaliga orkestrar och kända pianister runtom i Finland.",
                "en": "Taking the Espa stage is the brilliant and charismatic singer Kaisa Makkonen, who has performed with numerous orchestras and renowned pianists throughout Finland."
            },
            "description": {
                "fi": "<p>Espan lavalle nousee loistava, karismaattinen laulaja Kaisa Makkonen, joka on esiintynyt lukuisten orkestereiden ja tunnettujen pianistien kanssa ympäri Suomen.</p><p><b>Kaisa Makkosen</b> tumma ja vaikuttava äänensä koskettaa syvältä, ja tulkinnat hurmaavat yleisön kerta toisensa jälkeen. Luvassa on ainutlaatuinen hetki täynnä läsnäoloa ja vahvaa lavakarismaa.</p><p>Konsertissa kuullaan Kaisan omaa tuotantoa – musiikkia, joka puhuttelee, koskettaa ja jää mieleen. Vuonna 2022 hän osallistui Italiassa Sanremon laulukilpailuun ja eteni finaaliin omalla kappaleellaan “I Don’t Wanna Let Him Go”. Hän sai kunniamaininnan omasta kappaleestaan sekä upeasta äänestään.</p><p>Pianistina toimii maineikas ja taitava <b>Lassi Kouvo</b>, jonka herkkä ja virtuoosinen soitto tuo esitykseen syvyyttä ja sävyjä. Yhdessä he tuovat lavalle elämyksen, jossa tunne, taito ja musiikillinen ilmaisu kohtaavat.</p><p>Tervetuloa kokemaan!</p>",
                "sv": "<p>Esplanadestraden intas av Kaisa Makkonen, en briljant och karismatisk sångare som har uppträtt med otaliga orkestrar och kända pianister runtom i Finland.</p><p><b>Kaisa Makkonens</b> mörka och imponerande röst berör djupt, och hennes tolkningar charmar publiken gång på gång. Det blir ett unikt ögonblick fullt av närvaro och stark scenkarisma.</p><p>Konserten innehåller Kaisas egen produktion – musik som tilltalar, griper och blir kvar i sinnet. År 2022 deltog Kaisa i San Remos sångtävling i Italien och gick vidare till finalen med sin egen sång ”I Don’t Wanna Let Him Go”. Hon fick ett hedersomnämnande för sin egen sång och för sin fantastiska röst.</p><p>Pianisten är kända och skickliga <b>Lassi Kouvo</b>, vars känsliga och virtuosa spelande ger djup och nyanser i framträdandet. Tillsammans skapar artisterna på scenen en upplevelse där känslor, skicklighet och musikaliskt uttryck möts.</p><p>Välkommen att uppleva!</p>",
                "en": "<p>Taking the Espa stage is the brilliant and charismatic singer Kaisa Makkonen, who has performed with numerous orchestras and renowned pianists throughout Finland.</p><p><b>Kaisa Makkonen's</b> rich, powerful voice touches the soul, and her performances captivate audiences time and again – promising a unique experience filled with presence and powerful stage charisma.</p><p>The concert will feature Kaisa’s own compositions and lyrics – music that speaks to the soul, touches the heart, and lingers in the memory. In 2022, she competed in the Sanremo Music Festival in Italy and advanced to the finals with her original song “I Don’t Wanna Let Him Go.” She received an honorable mention for her original song and her stunning voice.</p><p>Accompanying her on piano is the renowned and skilled <b>Lassi Kouvo</b>, whose sensitive and virtuosic playing adds depth and nuance to the performance. Together, they bring to the stage an experience where emotion, skill, and musical expression converge.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68978/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68979",
            "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:32/?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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201228,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T09:12:59.134717Z",
                    "last_modified_time": "2026-05-12T09:12:59.134731Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785686.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201228/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T09:12:59.071164Z",
            "last_modified_time": "2026-06-01T06:13:19.842732Z",
            "date_published": null,
            "start_time": "2026-07-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/68A72882930A88D2C4C049BDD514D3B3/CSSADANCE_RESONATE_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/68A72882930A88D2C4C049BDD514D3B3/CSSADANCE_RESONATE_",
                "en": "http://www.espanlava.fi/en/events/event/68A72882930A88D2C4C049BDD514D3B3/CSSADANCE_RESONATE_"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "CSSADANCE: RESONATE 回响 – Open Stage",
                "sv": "CSSADANCE: RESONATE 回响 – Open Stage",
                "en": "CSSADANCE: RESONATE 回响 – Open Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Oletko valmis unohtumattomaan tanssikokemukseen?",
                "sv": "Är du redo för en oförglömlig dansupplevelse?",
                "en": "Are you ready for an unforgettable dance experience?"
            },
            "description": {
                "fi": "<p>Oletko valmis unohtumattomaan tanssikokemukseen?</p><p>CSSADANCE on uraauurtava opiskelijoiden tanssiyhdistys Aalto-yliopistosta. RESONATE juhlistaa vuosikymmentä rytmin, intohimon ja kulttuurien  välistä ilmaisua, ja on identiteetin, taiteilijuuden ja yhteisön rohkea tutkimusmatka – tanssiesitys, jossa tunne ja energia resonoivat yhdessä.</p><p>Perinteisestä kiinalaisesta tanssista, jossa pitkät hihat virtaavat elegantisti, modernin K-popin räjähtävään voimaan, jokainen osuus kertoo tarinaa jahdatuista unelmista, rikotuista rajoita ja kulttuureista, jotka resonoivat liikkeen kautta.</p>",
                "sv": "<p>Är du redo för en oförglömlig dansupplevelse?</p><p>CSSADANCE är en banbrytande studentdansförening från Aalto-universitetet. RESONATE firar ett decennium av rytm, passion och tvärkulturella uttryck och är en djärv forskningsresa in i identitet, konstnärskap och gemenskap – en dansföreställning där känslor och energi resonerar med varandra.</p><p>Från traditionell kinesisk dans med långa ärmar som vajar elegant till den explosiva kraften i modern K-pop; varje avsnitt berättar en historia om drömmar som jagas, gränser som bryts och kulturer som resonerar genom rörelse.</p>",
                "en": "<p>Are you ready for an unforgettable dance experience?</p><p>CSSADANCE is a pioneering student dance association from Aalto University. Celebrating a decade of rhythm, passion, and multicultural expression, RESONATE is a bold exploration of identity, artistry, and community – a dance performance where emotion and energy resonate as one.</p><p>From the flowing elegance of traditional Chinese sleeve dance to the explosive power of modern K-pop, each piece tells a story of dreams pursued, boundaries broken, and cultures brought into resonance through movement.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68979/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68974",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201226,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T09:12:58.639305Z",
                    "last_modified_time": "2026-05-12T09:12:58.639317Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785319.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201226/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T09:12:58.559328Z",
            "last_modified_time": "2026-06-01T06:13:19.619930Z",
            "date_published": null,
            "start_time": "2026-07-11T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/50906D5CFE75045264F0B5AE39183387/North_Shore_Celtic_Ensemble",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/50906D5CFE75045264F0B5AE39183387/North_Shore_Celtic_Ensemble",
                "en": "http://www.espanlava.fi/en/events/event/50906D5CFE75045264F0B5AE39183387/North_Shore_Celtic_Ensemble"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "North Shore Celtic Ensemble – Open Stage",
                "sv": "North Shore Celtic Ensemble – Open Stage",
                "en": "North Shore Celtic Ensemble – Open Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "North Shore Celtic Ensemble yhdistää kelttiperinteen ja pohjoisamerikkalaiset vaikutteet omaleimaiseksi, energiseksi kokonaisuudeksi.",
                "sv": "North Shore Celtic Ensemble kombinerar keltisk tradition med nordamerikanska inflytelser till en unik, energisk helhet.",
                "en": "North Shore Celtic Ensemble blends Celtic tradition with North American influences into a vivid, distinctive sound."
            },
            "description": {
                "fi": "<p>North Shore Celtic Ensemble yhdistää kelttiperinteen ja pohjoisamerikkalaiset vaikutteet omaleimaiseksi, energiseksi kokonaisuudeksi.</p><p>North Shore Celtic Ensemble on dynaaminen nuorten muusikoiden yhteisö Vancouverista, Kanadasta. Vuonna 1998 puhtaasti kelttimusiikkiin keskittyneenä yhtyeenä aloittanut ryhmä on vuosien varrella kasvanut rajoja rikkovaksi, innostuneeksi musiikilliseksi tutkimusmatkaksi – paikaksi, jossa nuoret voivat jakaa ja tutkia musiikkia yhdessä.</p><p>Yhtyeen omat sävellykset ammentavat vaikutteita kanadalaisesta, quebeciläisestä ja Cape Bretonin musiikkiperinteestä sekä jazzista, ja ne yhdistyvät luoviin sovituksiin perinteisemmistä kelttikappaleista. Seitsemän julkaistua CD:tä juhlistavat heidän musiikkiaan ja länsirannikon juuriaan. NCSE tarjoaa täyden kirjon musiikillisen elämyksen, joka uhmaa kategorioita ja ylittää perinteiset genrerajat – ja hämmästyttää jokaisen kuulijan.</p>",
                "sv": "<p>North Shore Celtic Ensemble kombinerar keltisk tradition med nordamerikanska inflytelser till en unik, energisk helhet.</p><p>North Shore Celtic Ensemble är en dynamisk gemenskap av unga musiker från Vancouver, Kanada. Gruppen började 1998 som ett band med fokus på endast keltisk musik men har under årens lopp vuxit till en gränsöverskridande, entusiastisk och musikmässig forskningsresa – en plats där unga kan dela och utforska musik tillsammans.</p><p>Bandets egna kompositioner hämtar inspiration från musiktraditioner i Kanada, Quebec och Cape Breton samt jazz, och kombinerar dessa till kreativa arrangemang av mer traditionella keltiska sånger. Bandet har släppt sju CD-skivor som firar deras musik och deras rötter på västkusten. NCSE erbjuder ett brett spektrum av musikaliska upplevelser som trotsar kategorier och överskrider traditionella genregränser – och som överraskar varje lyssnare.</p>",
                "en": "<p>North Shore Celtic Ensemble blends Celtic tradition with North American influences into a vivid, distinctive sound.</p><p>The North Shore Celtic Ensemble is a dynamic community of young musicians from Vancouver, Canada. What started as a purely Celtic ensemble in 1998 has evolved over the years into a spirited no-boundaries exploration of the music that inspires them – a meeting place for youth to share and explore music together.</p><p>The ensemble's own original compositions draw on Canadian, Quebecois, Cape Breton, and jazz influences blended with creative arrangements of more traditional Celtic tunes. Seven CDs celebrate their music and west coast roots. NCSE offers a full-spectrum musical experience that defies labels and spans conventional genres, wowing everyone who sees them.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68974/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69023",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201289,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T12:14:24.209820Z",
                    "last_modified_time": "2026-05-13T12:14:24.209845Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785420.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201289/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T12:14:24.090966Z",
            "last_modified_time": "2026-05-29T13:13:37.596677Z",
            "date_published": null,
            "start_time": "2026-08-20T18:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/894AF99D7BD873D07A3A41DC97533FE9/Tuomari_Nurmio_Luupaat",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/894AF99D7BD873D07A3A41DC97533FE9/Tuomari_Nurmio_Luupaat",
                "en": "http://www.espanlava.fi/en/events/event/894AF99D7BD873D07A3A41DC97533FE9/Tuomari_Nurmio_Luupaat"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Tuomari Nurmio & Luupäät – Taiteiden yö Espan lavalla",
                "sv": "Tuomari Nurmio & Luupäät – Konstens natt på Esplanadestraden",
                "en": "Tuomari Nurmio & Luupäät – Night of the Arts on Espa Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomalaisen rockmusiikin uranuurtaja keskellä kaupunkia: tämä keikka on takuuvarmasti Taiteiden yön kärkitarjontaa!",
                "sv": "En föregångare inom den finländska rockmusiken mitt i staden: Denna konsert är garanterat ett av topprogrammen på Konstens natt!",
                "en": "A pioneer of Finnish rock music in the middle of the city: this performance is guaranteed to be one of the highlights of the Night of the Arts!"
            },
            "description": {
                "fi": "<p>Suomalaisen rockmusiikin uranuurtaja keskellä kaupunkia: tämä keikka on takuuvarmasti Taiteiden yön kärkitarjontaa!</p><p>Nurmio on yksi suomirockin arvostetuimmista muusikoista ja legenda jo eläessään.</p>",
                "sv": "<p>En föregångare inom den finländska rockmusiken mitt i staden: Denna konsert är garanterat ett av topprogrammen på Konstens natt!</p><p>Nurmio är en av de mest uppskattade musikerna inom finländsk rock och en legend i sin egen tid.</p>",
                "en": "<p>A pioneer of Finnish rock music in the middle of the city: this performance is guaranteed to be one of the highlights of the Night of the Arts!</p><p>Nurmio is one of the most respected musicians in Finnish rock and a legend in his own time.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69023/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69024",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201286,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T11:13:55.183910Z",
                    "last_modified_time": "2026-05-13T11:13:55.183925Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786063.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201286/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T11:13:55.091358Z",
            "last_modified_time": "2026-05-29T13:13:37.434168Z",
            "date_published": null,
            "start_time": "2026-08-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/4C0806266FEACC2E76C6BAC748838CE7/Aizhan_Sultan_Saku_Liimatainen",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/4C0806266FEACC2E76C6BAC748838CE7/Aizhan_Sultan_Saku_Liimatainen",
                "en": "http://www.espanlava.fi/en/events/event/4C0806266FEACC2E76C6BAC748838CE7/Aizhan_Sultan_Saku_Liimatainen"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Aizhan Sultan & Saku Liimatainen – Taiteiden yö Espan lavalla",
                "sv": "Aizhan Sultan & Saku Liimatainen – Konstens natt på Esplanadestraden",
                "en": "Aizhan Sultan & Saku Liimatainen – Taiteiden yö Espan lavalla"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kaksi helsinkiläistä muusikkoa yhdistävät voimansa kiehtovassa esityksessä, jossa kulttuurit, historiat ja äänimaailmat kohtaavat.",
                "sv": "Två Helsingforsmusiker förenar sina krafter i en fascinerande föreställning där kulturer, historier och ljudlandskap möts.",
                "en": "Two Helsinki-based musicians join forces in a captivating performance that bridges cultures, histories, and sound worlds."
            },
            "description": {
                "fi": "<p>Kaksi helsinkiläistä muusikkoa yhdistävät voimansa kiehtovassa esityksessä, jossa kulttuurit, historiat ja äänimaailmat kohtaavat.</p><p><b>Aizhan Sultanin</b> (Kazakstan) ja <b>Saku Liimataisen</b> (Suomi) yhteistyö luo elävän vuoropuhelun modernin suomalaisen ja kazakstanilaisen kansanmusiikin välille: ikiaikaiset perinteet kohtaavat nykyajan äänimaisemat.</p><p>Laulaja, lauluntekijä ja tutkija Aizhan Sultan käsittelee työssään vammaisuutta, identiteettiä ja postkolonialistista muistia. Äänellään, kazakstanilaisella terme-laululla, kurkkulaululla ja shanqobyzin aavemaisella soinnilla hän ottaa perinteiset äänet takaisin käyttöön sitkeyden ja vapautumisen välineinä.</p><p>Häntä täydentää Saku Liimatainen, live-elektroniikkamuusikko, pianisti ja säveltäjä, jonka teksturoidut äänimaisemat kietovat modernin suomalaisen ääniestetiikan Aizhanin nomadisiin juuriin. Hänen live-elektroniikkansa uudistaa kansanperinteitä ambient-kerrosten, rytmin ja improvisaation kautta – luoden tilan, jossa muinaiset äänet ja digitaalinen tulevaisuus elävät rinnakkain.</p><p>Yhdessä he luovat kulttuurienvälisen vuoropuhelun, joka käsittelee yhtä lailla historiaa ja identiteettiä sekä muutosta ja taiteellista vapautta. Tämä on esitys, jossa perintö kohtaa innovaation.</p>",
                "sv": "<p>Två Helsingforsmusiker förenar sina krafter i en fascinerande föreställning där kulturer, historier och ljudlandskap möts.</p><p>Samarbetet mellan <b>Aizhan Sultan</b> (Kazachstan) och <b>Saku Liimatainen</b> (Finland) skapar en levande dialog mellan modern finländsk och kazakstansk folkmusik: Uråldriga traditioner möter dagens ljudlandskap.</p><p>Sångaren, låtskrivaren och forskaren Aizhan Sultan behandlar funktionshinder, identitet och postkolonialt minne i sitt arbete. Han återerövrar traditionella ljud som instrument för ihärdighet och befrielse med sin röst, kazakstanska terme-sång, strupsång och det spöklika ljudet av shanqobyz.</p><p>Han får sällskap av Saku Liimatainen, en live-elektromusiker, pianist och kompositör vars texturerade ljudlandskap väver samman modern finländsk ljudestetik med Aizhans nomadiska rötter. Hans live-elektronik förnyar folktraditioner genom ambientskikt, rytm och improvisation – och skapar ett utrymme där forntida ljud och den digitala framtiden lever parallellt.</p><p>Tillsammans skapar artisterna en interkulturell dialog som handlar lika mycket om historia och identitet som om förändring och konstnärlig frihet. Det här är en föreställning där arv möter innovation.</p>",
                "en": "<p>Two Helsinki-based musicians join forces in a captivating performance that bridges cultures, histories, and sound worlds.</p><p>The collaboration between <b>Aizhan Sultan</b> (Kazakhstan) and <b>Saku Liimatainen</b> (Finland) creates a living dialogue between modern Finnish and Kazakh folk music. Ancient traditions meet contemporary soundscapes.</p><p>Aizhan Sultan, a singer, songwriter, and researcher, explores themes of disability, identity, and post-colonial memory. Through her voice, Kazakh terme, throat singing, and the haunting resonance of the shanqobyz, she reclaims traditional sounds as tools of resilience and emancipation.</p><p>Complementing her is Saku Liimatainen, a live electronic musician, pianist, and composer, whose textured soundscapes weave modern Finnish sonic aesthetics into Aizhan’s nomadic roots. His live electronics reimagine folk traditions through ambient layers, rhythm, and improvisation – creating a space where ancient voices and digital futures coexist.</p><p>Together, they craft an intercultural conversation that is as much about history and identity as it is about transformation and artistic freedom. This is a performance where heritage meets innovation.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69024/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69025",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201285,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T11:13:54.614849Z",
                    "last_modified_time": "2026-05-13T11:13:54.614865Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787861.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201285/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T11:13:54.537848Z",
            "last_modified_time": "2026-05-29T13:13:36.865169Z",
            "date_published": null,
            "start_time": "2026-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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F5B577E0F8F1BA71672EA3842CB70EE7/Milou",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/F5B577E0F8F1BA71672EA3842CB70EE7/Milou",
                "en": "http://www.espanlava.fi/en/events/event/F5B577E0F8F1BA71672EA3842CB70EE7/Milou"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Milou – Open Stage",
                "sv": "Milou – Open Stage",
                "en": "Milou – Open Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Milou on suomalaista melankoliaa ranskaksi romantisoituna.",
                "sv": "Milou är finländsk melankoli romantiserad på franska.",
                "en": "Milou is Finnish melancholy romanticised in French."
            },
            "description": {
                "fi": "<p>Milou on suomalaista melankoliaa ranskaksi romantisoituna.</p><p>Laulaja-lauluntekijän musiikki on valoisan toiveikasta, jossa lauluharmoniat ja musiikin luoma tunne ovat päärooleissa. Miloun toinen EP <i>Saisons en moi</i> (Vuodenajat minussa) kuvaa eri vuodenaikoihin sidottuja odotuksia, tunteita, vireystilaa ja asenteita. EP julkaistaan marraskuussa 2026, ja se kuullaan nyt ennakkoon Espan lavalla.</p><p>Esitys sopii kaikenikäisille musiikin ystäville, ja erityisesti frankofiileille!</p><p>Esityskielet: suomi ja ranska</p><p>https://www.instagram.com/miloumusique/<br>https://www.facebook.com/miloumusique/<br>https://www.miloumusique.com/</p>",
                "sv": "<p>Milou är finländsk melankoli romantiserad på franska.</p><p>Sångaren och låtskrivarens musik är ljust hoppfull, där sångharmonierna och den känsla som musiken skapar spelar huvudrollerna. Milous andra EP <i>Saisons en moi</i> (Årstider i mig) beskriver förväntningar, känslor, stämningar och attityder som är kopplade till de olika årstiderna. EP:n släpps i november 2026 och hörs nu på förhand på Esplanadestraden.</p><p>Föreställningen lämpar sig för musikälskare i alla åldrar, och särskilt för frankofiler!</p><p>https://www.instagram.com/miloumusique/<br>https://www.facebook.com/miloumusique/<br>https://www.miloumusique.com/</p>",
                "en": "<p>Milou is Finnish melancholy romanticised in French.</p><p>The singer-songwriter's music is bright and hopeful, with vocal harmonies and the emotions created by the music taking centre stage. Milou's second EP <i>Saisons en moi</i> (‘Seasons in me’) describes expectations, emotions, moods and attitudes linked to the different seasons. The EP will be released in November 2026, and will now be previewed on Espa Stage.</p><p>The performance is suitable for music lovers of all ages, and especially for Francophiles!</p><p>https://www.instagram.com/miloumusique/<br>https://www.facebook.com/miloumusique/<br>https://www.miloumusique.com/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69025/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69021",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201283,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T10:14:10.827255Z",
                    "last_modified_time": "2026-05-13T10:14:10.827269Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787860.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201283/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T10:14:10.720872Z",
            "last_modified_time": "2026-05-29T13:13:36.563053Z",
            "date_published": null,
            "start_time": "2026-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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/AE7EE57830EAAEA3432C8F14FB66EA56/Johanna_Auringonlasku_Orkesteri",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/AE7EE57830EAAEA3432C8F14FB66EA56/Johanna_Auringonlasku_Orkesteri",
                "en": "http://www.espanlava.fi/en/events/event/AE7EE57830EAAEA3432C8F14FB66EA56/Johanna_Auringonlasku_Orkesteri"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Johanna & Auringonlasku Orkesteri – Open Stage",
                "sv": "Johanna & Auringonlasku Orkesteri – Open Stage",
                "en": "Johanna & Auringonlasku Orkesteri – Open Stage"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Johanna & Auringonlasku Orkesteri soittaa tunnelmoivaa suomenkielistä vaihtoehtopoppia.",
                "sv": "Johanna & Auringonlasku Orkesteri spelar stämningsfull alternativ pop på finska.",
                "en": "Johanna & Auringonlasku Orkesteri play atmospheric Finnish alternative pop."
            },
            "description": {
                "fi": "<p>Johanna & Auringonlasku Orkesteri soittaa tunnelmoivaa suomenkielistä vaihtoehtopoppia.</p><p>Sävellykset ja sanoitukset ovat <b>Johanna Hännisen</b> käsialaa, ja bändi herättää kappaleet henkiin upeilla sovituksilla ja omaperäisellä tulkinnallaan! Luvassa on kauniita melodioita ja koskettavia sanoituksia, mutta meininkiä on myös odotettavissa pilke silmäkulmassa. Yhtyeeltä on tulossa ensimmäinen julkaisu tämän vuoden puolella, ja niin lämpö jää leijumaan vielä pitkäksi aikaa auringonlaskun jälkeenkin!</p>",
                "sv": "<p>Johanna & Auringonlasku Orkesteri spelar stämningsfull alternativ pop på finska.</p><p>Kompositionerna och texterna är skrivna av <b>Johanna Hänninen</b>, och bandet ger liv åt låtarna med fantastiska arrangemang och unika tolkningar! Det blir vackra melodier och gripande texter, men bandet har också glimten i ögat. Bandets första publikation ges ut senare i år, så värmen kommer att stanna kvar långt efter att solen gått ner!</p>",
                "en": "<p>Johanna & Auringonlasku Orkesteri play atmospheric Finnish alternative pop.</p><p>The compositions and lyrics are by <b>Johanna Hänninen</b>, and the band brings the songs to life with great arrangements and original interpretations! There are beautiful melodies and touching lyrics with a subtle promise of fun things to come. The band's first release is due later this year, bringing the heat long after the sun goes down!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69021/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69020",
            "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:32/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201282,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T09:14:04.191501Z",
                    "last_modified_time": "2026-05-13T09:14:04.191517Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785540.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201282/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T09:14:04.091983Z",
            "last_modified_time": "2026-05-29T13:13:36.346473Z",
            "date_published": null,
            "start_time": "2026-08-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B7DC8AB1283F85F7442A8C65BE4C412A/Denis_Liddy_Elvie_Miller_Family",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/B7DC8AB1283F85F7442A8C65BE4C412A/Denis_Liddy_Elvie_Miller_Family",
                "en": "http://www.espanlava.fi/en/events/event/B7DC8AB1283F85F7442A8C65BE4C412A/Denis_Liddy_Elvie_Miller_Family"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Denis Liddy, Elvie Miller & Family",
                "sv": "Denis Liddy, Elvie Miller & Family",
                "en": "Denis Liddy, Elvie Miller & Family"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vauhdikas sekoitus perinteistä musiikkia, laulua ja tanssia Claren kreivikunnasta, Irlannin villin lännen rannikolta.",
                "sv": "En fartfylld blandning av traditionell musik, sång och dans från grevskapet Clare på Irlands vilda västkust.",
                "en": "A lively mix of traditional music, song, and dance from County Clare on Ireland's wild west coast."
            },
            "description": {
                "fi": "<p>Vauhdikas sekoitus perinteistä musiikkia, laulua ja tanssia Claren kreivikunnasta, Irlannin villin lännen rannikolta.</p><p>Irlantilais-amerikkalaiset muusikot <b>Denis Liddy</b> ja <b>Elvie Miller</b> esiintyvät yhdessä nuorten kaksostyttäriensä <b>Muirinin</b> ja <b>Dervlan</b> sekä erikoisvieraan, tunnetun suomalaismuusikon <b>Timo Alakotilan</b> kanssa. Esitys yhdistää viulun, harpun, pianon ja harmonikan perinteisiin lauluihin ja irlantilaiseen steppitanssiin, herättäen irlantilaisen musiikin ja laulun sielukkaat rytmit ja iloisen hengen.</p><p>Sydämellisillä perheharmonioillaan ja kiehtovalla instrumenttien vuoropuhelulla he jakavat Irlannin kansanperinteen lämpöä ja energiaa. <br>Syntyy eloisa, sukupolvet ylittävä esitys, joka kutsuu suomalaisen yleisön mukaan tanssiin ja liittymään hauskanpitoon.</p>",
                "sv": "<p>En fartfylld blandning av traditionell musik, sång och dans från grevskapet Clare på Irlands vilda västkust.</p><p>De irländsk-amerikanska musikerna <b>Denis Liddy</b> och <b>Elvie Miller</b> uppträder tillsammans med sina unga tvillingdöttrar <b>Muirin</b> och <b>Dervla</b> samt specialgästen, kända finländska musikern <b>Timo Alakotila</b>. Framträdandet kombinerar violin, harpa, piano och dragspel med traditionella sånger och irländsk steppdans, och väcker de själfulla rytmerna och den glada andan i irländsk musik och sång till liv.</p><p>Genom sina hjärtliga familjeharmonier och en fascinerande instrumentdialog delar artisterna värme och energi från irländskt folkminne. Resultatet är ett livligt framträdande som överskrider generationsgränserna och bjuder in den finländska publiken att delta i dansen och nöjet.</p>",
                "en": "<p>A lively mix of traditional music, song, and dance from County Clare on Ireland's wild west coast.</p><p>Irish/American musicians <b>Denis Liddy</b> and <b>Elvie Miller</b> are joined by their young twin daughters <b>Muirin</b> and <b>Dervla</b> and special guest, renowned musician <b>Timo Alakotila</b>. Blending fiddle, harp, piano and accordion with traditional songs and Irish step dance, their performance brings to life the soulful rhythms and joyful spirit of Irish music and song.</p><p>With heartfelt family harmonies and captivating instrumental interplay, they share the warmth and energy of Ireland’s folk heritage – a vibrant, cross-generational performance that invites audiences in Finland to tap their feet and join the craic.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69020/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}