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

{
    "meta": {
        "count": 22677,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=25",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=23"
    },
    "data": [
        {
            "id": "lippupiste:serie-4010503",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-21219563/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-21219563/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-21219563/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858575/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858577/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858576/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858605/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858579/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858580/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858606/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858581/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858583/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858607/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858608/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858610/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858609/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858584/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858585/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858611/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858586/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858587/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858612/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858588/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858589/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858615/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858634/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858619/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858618/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858591/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858620/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858622/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858593/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858623/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858624/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858598/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858599/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858627/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858629/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858628/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858600/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858601/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858631/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858604/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858633/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858632/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20913745/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219558/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219559/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219560/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219561/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219562/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219563/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491149,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-22T20:15:45.803353Z",
                    "last_modified_time": "2025-10-22T20:15:45.803370Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/05/d2/hildur-tickets_457344_3678695_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-22T20:16:05.408697Z",
            "last_modified_time": "2026-05-20T20:16:04.129303Z",
            "date_published": null,
            "start_time": "2026-01-27T16:30:00Z",
            "end_time": "2026-05-20",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Hildur"
            },
            "short_description": {
                "fi": "Satu Rämö – Satu Rasila HILDUR Satu Rämön kansainväliseen suosioon noussut dekkari-ilmiö saapuu Helsinkiin! Satu Rasilan dramatisoima aivan uusi teatteriversio "
            },
            "description": {
                "fi": "<p>Satu Rämö – Satu Rasila<br><strong>HILDUR</strong></p><p>Satu Rämön kansainväliseen suosioon noussut dekkari-ilmiö saapuu Helsinkiin! Satu Rasilan dramatisoima aivan uusi teatteriversio Hildurista saa ensi-iltansa Arena-näyttämöllä 28. tammikuuta.</p><p>Näytelmä perustuu Hildur-dekkarisarjan ensimmäiseen ja samannimiseen osaan (WSOY 2022) ja tekee oikeutta Rämön menestysteoksen pohjoiselle mystiikalle – unohtamatta kutkuttavan jännittävän murhamysteerin pienimpiäkään käänteitä. Tulos on aitoon nordic blue -henkeen hengittävä teatteriteos, jossa Islannin karu kauneus ja ihmismielen syvyydet kohtaavat näyttämöllä.</p><p>Hildur kertoo rikosetsivä Hildur Rúnarsdóttirista (Elena Leeve) ja vie katsojat Islannin myyttisille Länsivuonoille, jossa Hildur selvittää kotikaupungissaan tapahtuneita murhia yhdessä suomalaiskollega Jakobin (Paavo Kinnunen) kanssa. Traumojensa kanssa taisteleva Hildur ja menneisyyttään pakeneva Jakob joutuvat keskelle omituista rikosvyyhtiä, joka kytkeytyy järisyttävästi Hildurin omaan lapsuuteen.</p><p>Hildur kutoo katsojan tiukasti mukaan tihenevään jännitykseen, kun menestysdekkari herää näyttämöllä henkiin. Arena-näyttämö on osoittanut paikkansa maan ykkösdekkarinäyttämönä, jossa myös Hildurin tiivistunnelmainen tarina pääsee oikeuksiinsa ja asettuu komeasti viime vuosien Agatha Christie -dekkarisovitustemme joukkoon.</p><p>Rooleissa: Elena Leeve, Paavo Kinnunen, Sari Haapamäki,<br>Sanna-June Hyde, Linda Hämäläinen, Unto Nuora,<br>Jari Pehkonen, Ursula Salo, Mauno Terävä</p><p>Esitysoikeuksien valvoja: Agency North<br>Kirjailija: Satu Rämö<br>Dramatisointi: Satu Rasila<br>Ohjaus: Tuomas Parkkinen<br>Dramaturgi: Ari-Pekka Lahti<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Elina Kolehmainen<br>Valo- ja videosuunnittelu: Petteri Heiskanen<br>Videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Valosuunnittelu: Petteri Heiskanen<br>Videosuunnittelu: Toni Haaranen<br>Läheisyyskoreografi: Johanna Elovaara<br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=en"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010503/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpelrlmna",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "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:agpelrlioi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrljcu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrljoi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlj2q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlkeq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlkpm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlkzq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrllcu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrllmm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrll2a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlmdm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2201346,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-20T13:18:07.561885Z",
                    "last_modified_time": "2026-05-20T13:18:07.561901Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2bda464c-b78b-4372-8e84-e54b413e0617.jpg",
                    "name": "Tule tapaamaan muita nuoria!",
                    "cropping": "184,0,896,713",
                    "photographer_name": "ai",
                    "alt_text": "Nuoret hyppäävät ilmaan.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201346/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-20T13:21:42.129090Z",
            "last_modified_time": "2026-05-20T13:21:42.129107Z",
            "date_published": null,
            "start_time": "2026-06-02T13:00:00Z",
            "end_time": "2026-08-11T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Nuortenilta"
            },
            "short_description": {
                "fi": "Mukavaa ohjelmaa 7. luokkalaisille ja sitä vanhemmille"
            },
            "description": {
                "fi": "<p>Tiistaisin klo 16-19.30 Messissä on nuortenilta. Päästäksesi nauttimaan isompien illasta, sinun pitää olla 7. luokkalainen tai sitä vanhempi. Huomio! Seiskalle siirtyvät ovat tervetulleita jo kesällä. Luvassa hyviä keskusteluita, pelaamista ja ohjelmaa toiveiden mukaan.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Messi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlmna/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68791",
            "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": 2110322,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T13:13:21.783250Z",
                    "last_modified_time": "2026-05-07T13:13:21.783265Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787881.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2110322/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T13:13:21.691267Z",
            "last_modified_time": "2026-05-20T13:13:43.302990Z",
            "date_published": null,
            "start_time": "2026-06-30T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Swing Doctors – Open Stage",
                "sv": "Swing Doctors – Open Stage",
                "en": "Swing Doctors – Open Stage"
            },
            "short_description": {
                "fi": "Espan lavalle saapuu Swing Doctors, joka levittää swingin ilosanomaa kymmenhenkisenä suurorkesterina!",
                "en": "The Swing Doctors spreading the joy of swing in a ten-piece big band will be taking to Espa Stage!"
            },
            "description": {
                "fi": "<p>Espan lavalle saapuu Swing Doctors, joka levittää swingin ilosanomaa kymmenhenkisenä suurorkesterina!</p><p>Swing Doctors on yksi maamme parhaista perinteiseen swingiin erikoistuneista orkestereista. Laulusolistinaan upea Piia Kristiina, Swing Doctors soittaa, johtajansa Marko Ahon johdolla, 'Amerikkalaisen laulukirjan' klassikoita, Count Basie -tyylisiä instrumentaaleja sekä suomalaisia 1950-luvun swing-iskelmiä à la Helena Siltala, Laila Kinnunen ja Brita Koivunen.</p>",
                "en": "<p>The Swing Doctors spreading the joy of swing in a ten-piece big band will be taking to Espa Stage!</p><p>The Swing Doctors are one of the best orchestras specialising in traditional swing in Finland. Featuring the wonderful Piia Kristiina as vocal soloist, the Swing Doctors, led by their leader, Marko Aho, will play classics from the 'American Songbook', Count Basie-style instrumentals and Finnish 1950s swing hits à la Helena Siltala, Laila Kinnunen and Brita Koivunen.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B78C13CEEC8C335D532CB9ECF5240900/Swing_Doctors",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/B78C13CEEC8C335D532CB9ECF5240900/Swing_Doctors",
                "en": "http://www.espanlava.fi/en/events/event/B78C13CEEC8C335D532CB9ECF5240900/Swing_Doctors"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68791/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68793",
            "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": 2183787,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-08T09:14:08.976262Z",
                    "last_modified_time": "2026-05-08T09:14:08.976286Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786664.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2183787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-08T09:14:08.838400Z",
            "last_modified_time": "2026-05-20T13:13:43.116955Z",
            "date_published": null,
            "start_time": "2026-06-28T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "HrayBery",
                "sv": "HrayBery",
                "en": "HrayBery"
            },
            "short_description": {
                "fi": "HrayBery on puolalais-ukrainalainen yhtye, joka hengittää uutta elämää unohdettuun musiikkiin.",
                "sv": "HrayBery är ett polsk-ukrainskt band som blåser nytt liv i bortglömd musik.",
                "en": "HrayBery is a Polish-Ukrainian band that brings forgotten music back to life."
            },
            "description": {
                "fi": "<p>HrayBery on puolalais-ukrainalainen yhtye, joka hengittää uutta elämää unohdettuun musiikkiin.</p><p>Yhtyeen ohjelmisto koostuu tanssikappaleista (mm. kosakki-, kolomyika-, masurkka-, polkka- ja valssimusiikista), jota on rekonstruoitu arkistolähteiden kuten äänitallenteiden ja nuottien pohjalta. Ukrainalaiset ja puolalaiset tutkijat ovat keränneet melodioita kahden maan väliseltä raja-alueelta. Ohjelmisto osoittaa, miten alue oli aikoinaan eri kulttuurien sulatusuuni.</p><p>Yhtyeen käyttämät soittimet – kuten viulu, kantele, kehärumpu ja basso – olivat yleisiä näillä alueilla 1500-luvun lopulta lähtien. Yhtyeen ääni antaa kuulijoille mahdollisuuden uppoutua vanhaan, monikulttuuriseen tanssimusiikkiin. Musiikkiin, jota soitettiin puolalaisten, ukrainalaisten, juutalaisten ja romanien yhdessä asuttamilla alueilla.</p><p>HrayBery on esiintynyt lukuisissa tanssijuhlissa ja konserteissa yhtyeen jäsenten kotimaassa Puolassa. Yhtye on kiertänyt ulkomailla Ruotsissa, Tanskassa, Saksassa, Liettuassa, Latviassa, Virossa ja Italiassa, ja se osallistui WOMEX-maailmanmusiikkitapahtumaan Suomessa vuonna 2025. Vuonna 2023 yhtye julkaisi ensimmäisen albuminsa <i>Karczma</i> (Majatalo).</p>",
                "sv": "<p>HrayBery är ett polsk-ukrainskt band som blåser nytt liv i bortglömd musik.</p><p>Bandets repertoar består av dansmusik (bl.a. kosak, kolomyika, mazurka, polka och vals) som rekonstruerats på basis av arkivkällor såsom ljudinspelningar och noter. Ukrainska och polska forskare har samlat in melodier från gränsområdet mellan de två länderna. Programmet visar hur området en gång i tiden var en smältdegel för olika kulturer.</p><p>Instrumenten som används av bandet – såsom fiol, kantele, ramtrumma och bas – var vanliga i dessa områden från och med slutet av 1500-talet. Bandets sound ger lyssnarna en möjlighet att fördjupa sig i gammal och mångkulturell dansmusik, som spelas i områden som bebotts av polacker, ukrainare, judar och romer.</p><p>HrayBery har uppträtt på många dansfester och konserter i sitt hemland Polen. Bandet har turnerat utomlands i Sverige, Danmark, Tyskland, Litauen, Lettland, Estland och Italien, och deltog i världsmusikevenemanget WOMEX i Finland 2025. År 2023 släppte bandet sitt debutalbum <i>Karczma</i> (Gästgiveriet).</p>",
                "en": "<p>HrayBery is a Polish-Ukrainian band that brings forgotten music back to life.</p><p>The band's repertoire consists of dance pieces (cossacks, kolomyikas, mazurkas, polkas, waltzes and more) reconstructed on the basis of archival sources – sound recordings or sheet music.</p><p>The melodies were collected by Ukrainian and Polish researchers in the area bordering the two countries. This repertoire proves the area used to be a melting pot of various cultures in the past.</p><p>The instruments used by the band – such as the violin, dulcimer, frame drum, and bass – were common in these areas from the end of the 16th century. The band's sound allows the listeners to immerse themselves in the old, multicultural dance music of regions inhabited together by Poles, Ukrainians, Jewish and Romani people.</p><p>HrayBery has performed live at numerous dance parties and concerts in Poland where the band members reside. The band has toured abroad in Sweden, Denmark, Germany, Lithuania, Latvia, Estonia and Italy, and took part in the WOMEX world music expo in Finland in 2025. In 2023 the band released their first album entitled <i>Karczma</i> (Inn).</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9186EAA8332893E0D6F347AB605A79D5/HrayBery_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/9186EAA8332893E0D6F347AB605A79D5/HrayBery_",
                "en": "http://www.espanlava.fi/en/events/event/9186EAA8332893E0D6F347AB605A79D5/HrayBery_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68793/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68787",
            "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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": 2106479,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T12:13:23.415314Z",
                    "last_modified_time": "2026-05-07T12:13:23.415333Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786667.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2106479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-05-07T12:13:23.322843Z",
            "last_modified_time": "2026-05-20T13:13:42.952088Z",
            "date_published": null,
            "start_time": "2026-06-28T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Banjospektaakkeli Miihkali Jaatinen",
                "sv": "Banjospektakel med Miihkali Jaatinen",
                "en": "Banjo Spectacle Miihkali Jaatinen"
            },
            "short_description": {
                "fi": "Englanninkielisessä lasten ja nuorten banjospektaakkelissa Miikhali Jaatinen vie yleisön matkalle banjon värikkääseen historiaan.",
                "sv": "I detta engelskspråkiga banjospektakel för barn och ungdomar tar Miihkali Jaatinen med publiken på en resa genom banjons färgrika historia.",
                "en": "In this English-language banjo spectacle for children and young people, Miikhali Jaatinen takes the audience on a journey through the colourful history of the banjo."
            },
            "description": {
                "fi": "<p>Englanninkielisessä lasten ja nuorten banjospektaakkelissa Miikhali Jaatinen vie yleisön matkalle banjon värikkääseen historiaan.</p><p>Banjospektaakkeli esittelee musiikin ja länsimäisen kulttuurimme historiaa erilaisia banjoja soittaen ja tarinoita kertoen. <br>Esitys vie yleisön kuulemaan banjon värikkään tarinan, joka alkaa Afrikasta, kulkee orjalaivoissa Yhdysvaltoihin ja kehittyy lopulta nykyiseen muotoonsa vaikuttaen monissa musiikillisissa ja yhteiskunnallisissa liikkeissä. <br>Banjon matkan vahvin teema on musiikin yhdistävä voima.</p><p>Repertuaari elää yleisön mukana ja erilaisia banjoja riittää 5-kielisistä nauhattomiin sekä sähköbanjosta tenori-, resonaattori- ja plectrumbanjoon. Banjon kielet taipuvat sulavasti niin old time -perinteeseen, bluegrassin svengiin, New Orleans -jazziin kuin kansanmusiikin tarinallisuuteen. <br>Eikä siinä vielä kaikki: banjo rokkaa, progeilee ja jyrää vaikka metallin tahtiin. Banjospektaakkeli on yllätyksiä täynnä, tervetuloa kyytiin!</p><p>Lavalla Miihkali Jaatinen.<br>Puheosuudet englanniksi.<br>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p><p>https://www.miihkali.fi/etusivu/<br>https://www.facebook.com/MiihkaliMusic<br>https://www.instagram.com/miihkalimusic/<br>https://www.youtube.com/c/MiihkaliMusic/videos</p>",
                "sv": "<p>I detta engelskspråkiga banjospektakel för barn och ungdomar tar Miihkali Jaatinen med publiken på en resa genom banjons färgrika historia.</p><p>Banjospektaklet presenterar musikens och vår västerländska kulturs historia genom att spela på olika banjor och berätta historier. Under uppträdandet får publiken höra om banjons färgrika historia, som börjar i Afrika, reser på slavskepp till Förenta staterna och utvecklas slutligen till sin nuvarande form och har påverkat många musikaliska och samhälleliga rörelser. Musikens förenade kraft är det starkaste temat under banjons resa.</p><p>Repertoaren lever med publiken och man har gott om banjon, allt från 5-strängade till bandlösa banjon och från elbanjo till tenor-, resonator- och plektrumbanjo. Banjons strängar böjer sig smidigt för såväl old time-traditionen, svängig bluegrass, New Orleans-jazz som folkmusikberättande. Och det är inte allt: banjon rockar, proggar och dundrar i takt med metallmusiken. Banjospektaklet är fullt av överraskningar, välkommen med!</p><p>På scen: Miihkali Jaatinen.<br>De talade avsnitten är på engelska.<br>Framförandet genomförs i samarbete med Konsertcentralen.</p><p>https://www.miihkali.fi/etusivu/<br>https://www.facebook.com/MiihkaliMusic<br>https://www.instagram.com/miihkalimusic/<br>https://www.youtube.com/c/MiihkaliMusic/videos</p>",
                "en": "<p>In this English-language banjo spectacle for children and young people, Miikhali Jaatinen takes the audience on a journey through the colourful history of the banjo.</p><p>Banjospektaakkeli presents the history of music and our Western culture by playing different banjos and telling stories. The performance will take the audience through the colourful story of the banjo, which begins in Africa, moves on to slave ships to travel to the United States and finally evolves into its current form, influencing many musical and social movements. The overarching theme running through the journey of the banjo is the unifying power of music.</p><p>The repertoire lives with the audience, with a variety of banjos ranging from five-string to fretless and from electric banjo to tenor, resonator and plectrum banjo. The banjo's strings bend smoothly to old time tradition, bluegrass swing, New Orleans jazz and folk music storytelling. And that's not all: the banjo rocks, goes on progressive excursions and thunders to the beat of metal. Banjospektaakkeli is full of surprises – all aboard!</p><p>Miihkali Jaatinen on stage.<br>Spoken sections in English.<br>The performance is produced in cooperation with Concert Centre Finland.</p><p>https://www.miihkali.fi/etusivu/<br>https://www.facebook.com/MiihkaliMusic<br>https://www.instagram.com/miihkalimusic/<br>https://www.youtube.com/c/MiihkaliMusic/videos</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9D18C417EB15470CD98A62FAF880F64E/Banjospektaakkeli_Miihkali_Jaatinen",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/9D18C417EB15470CD98A62FAF880F64E/Banjospektakel_med_Miihkali_Jaatinen",
                "en": "http://www.espanlava.fi/en/events/event/9D18C417EB15470CD98A62FAF880F64E/Banjo_Spectacle_Miihkali_Jaatinen"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68787/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68789",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2106476,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T12:13:23.087132Z",
                    "last_modified_time": "2026-05-07T12:13:23.087146Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785643.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2106476/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T12:13:22.956056Z",
            "last_modified_time": "2026-05-20T13:13:42.742373Z",
            "date_published": null,
            "start_time": "2026-06-26T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jesse Kaikuranta – Pride Espalla",
                "sv": "Jesse Kaikuranta – Pride på Espa",
                "en": "Jesse Kaikuranta – Pride in Esplanade Park"
            },
            "short_description": {
                "fi": "Jesse Kaikuranta on upea tulkitsija, jonka levollinen ääni on todella valloittanut suomalaisten sydämet.",
                "sv": "Jesse Kaikuranta är en underbar uttolkare vars lugna röst verkligen har fångat finländarnas hjärtan.",
                "en": "Jesse Kaikuranta is a master of expression, whose tranquil voice has truly captured the hearts of Finns."
            },
            "description": {
                "fi": "<p>Jesse Kaikuranta on upea tulkitsija, jonka levollinen ääni on todella valloittanut suomalaisten sydämet.</p><p>Jo 2000-luvun alusta asti esiintynyt suurten tunteiden tulkki nousi koko kansan tietoisuuteen vuoden 2012 The Voice of Finland -kilpailun ja sitä seuranneen <i>Vie mut kotiin</i> -debyyttialbuminsa myötä. Triplaplatinaa myyneen ja viisi Emma-ehdokkuutta kahmineen albumin nimikkokappale \"Vie mut kotiin\" sekä sinkut “Järjetön rakkaus” ja “Näytän sulle rannan” nousivat kaikki valtaviksi hiteiksi.</p><p>Toinen albumi <i>Vaikka minä muutuin</i> ilmestyi vuonna 2013. Kultaa myynyt albumi sisältää mm. useita viikkoja radiolistan kärjessä keikkuneen hitin “Vielä täällä”. Viimeisin pitkäsoitto <i>Jesse Kaikuranta</i> ilmestyi vuonna 2017, jonka jälkeen artistilta on saatu useita singlejä.</p><p>Artisti kirjoittaa parhaillaan uutta, henkilökohtaisempaa musiikkia ja vuonna 2024 julkaistu single ”Tuu Tuu Tupakkarulla” on osoitus siitä, että Jessen musiikki osuu edelleen suoraan sydämeen. Uskottava ja aidosti koskettava live-esiintyjä taitaa niin suurten lavojen show’n kuin intiiminkin tunnelmoinnin.</p>",
                "sv": "<p>Jesse Kaikuranta är en underbar uttolkare vars lugna röst verkligen har fångat finländarnas hjärtan.</p><p>Han är en uttolkare av stora känslor, och har uppträtt sedan början av 2000-talet. Han blev känd via The Voice of Finland-tävlingen 2012 samt med sitt debutalbum <i>Vie mut kotiin</i>. Albumet ”Vie mut kotiin” som sålde trippelplatina och fick fem Emma-nomineringar samt singlarna ”Järjetön rakkaus” och ”Näytän sulle rannan” blev alla enorma hits.</p><p>Det andra albumet <i>Vaikka minä muutuin</i> släpptes 2013. Albumet har sålt guld och innehåller bland annat hiten ”Vielä täällä\", som under flera veckor låg högst upp på radiolistorna. Hans senaste lp <i>Jesse Kaikuranta</i> släpptes 2017, varefter artisten har släppt flera singlar.</p><p>Artisten skriver för närvarande ny, mer personlig musik och singeln \"Tuu Tuu Tupakkarulla\", som släpptes 2024, är ett bevis på att Jesses musik fortfarande går rakt in i hjärtat. Han är en trovärdig och genuint berörande liveartist som är en mästare på både stora scenshower och intim stämning.</p>",
                "en": "<p>Jesse Kaikuranta is a master of expression, whose tranquil voice has truly captured the hearts of Finns.</p><p>The interpreter of great emotions, who has been performing since the early 2000s, came to the attention of the whole nation with his debut album <i>Vie mut kotiin</i> and The Voice of Finland competition in 2012. The album's triple platinum selling title track Vie mut kotiin, which received five Emma Award nominations, and the singles Järjetön rakkaus and Näytän sulle rannan all became huge hits.</p><p>His second album <i>Vaikka minä muutuin</i> was released in 2013. The gold-selling album includes the hit Vielä täällä, which spent several weeks at the top of the radio charts. His latest album <i>Jesse Kaikuranta</i> was released in 2017, since which the artist has released several singles.</p><p>He is currently writing new, more personal music and the single Tuu Tuu Tupakkarulla, released in 2024, is proof that Jesse's music still tugs at heartstrings. A credible and genuinely touching live performer, he is a master of both big stage shows and intimate settings.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/65E41054E877B4B3C482C740EDAB72E7/Jesse_Kaikuranta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/65E41054E877B4B3C482C740EDAB72E7/Jesse_Kaikuranta",
                "en": "http://www.espanlava.fi/en/events/event/65E41054E877B4B3C482C740EDAB72E7/Jesse_Kaikuranta"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68789/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68786",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 2106475,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T12:13:22.728104Z",
                    "last_modified_time": "2026-05-07T12:13:22.728118Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785603.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2106475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T12:13:22.635885Z",
            "last_modified_time": "2026-05-20T13:13:42.584576Z",
            "date_published": null,
            "start_time": "2026-06-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,
            "name": {
                "fi": "Divet Show – Pride Espalla",
                "sv": "Divet Show – Pride på Espa",
                "en": "Divet Show – Pride in Esplanade Park"
            },
            "short_description": {
                "fi": "Divet Show saapuu Helsinki Prideen!",
                "sv": "Divet Show anländer till Helsingfors Pride!",
                "en": "Divet Show comes to Helsinki Pride!"
            },
            "description": {
                "fi": "<p>Divet Show saapuu Helsinki Prideen!</p><p>Valmistaudu glitteriin, glamouriin ja huikeaan tähtikavalkadiin, kun Divet Show valtaa lavan Helsinki Pridessa. Show’n tähti, drag-artisti <b>Marko Vainio</b>, loihtii lavalle unohtumattoman illuusion – aivan kuin maailman suurimmat pop- ja rocklegendat esiintyisivät samassa konsertissa. Ja kyllä, mukana ovat myös ne legendat, jotka ovat jo jättäneet lavat!</p><p>Esityksen aikana lavalle marssii hengästyttävä joukko supertähtiä, kuten Madonna, P!nk, Christina Aguilera, Whitney Houston, Adam Lambert ja Freddie Mercury – kaikki yhdessä konsertissa.</p><p>Divet Show tunnetaan näyttävistä puvuistaan, kimaltavasta glitteristä, höyhenistä, hurmaavasta huumorista ja uskomattoman nopeista hahmonvaihdoista, jotka tapahtuvat yleisön silmien edessä.</p><p>Luvassa on loistokasta musiikin ilotulitusta, nokkelaa viihdettä ja Pride-juhlan arvoista säihkettä.</p><p>Divet Show – kun kaikki maailman diivat esiintyvät samalla lavalla.</p>",
                "sv": "<p>Divet Show anländer till Helsingfors Pride!</p><p>Gör dig redo för glitter, glamour och en oerhörd stjärnkavalkad när Divet Show intar scenen på Helsingfors Pride. Showens stjärna, dragartisten <b>Marko Vainio</b>, skapar en oförglömlig illusion på scenen – som om världens största pop- och rocklegender uppträdde på samma konsert. Och ja, legenderna som redan har lämnat scenerna kommer också att vara där!</p><p>Under showen intar en hisnande grupp superstjärnor såsom Madonna, P!nk, Christina Aguilera, Whitney Houston, Adam Lambert och Freddie Mercury scenen – allt under en och samma konsert.</p><p>Divet Show är känd för spektakulära kostymer, glittrande glitter, fjädrar, charmig humor och otroligt snabba karaktärsbyten som sker inför publikens ögon.</p><p>Strålande musikaliska fyrverkerier, fiffig underhållning och Pride-värdigt skimmer utlovas.</p><p>Divet Show – när alla världens divor uppträder på samma scen.</p>",
                "en": "<p>Divet Show comes to Helsinki Pride!</p><p>Get ready for glitz, glamour and a star-studded line-up when the Divet Show takes the stage at Helsinki Pride. The star of the show, drag artist <b>Marko Vainio</b>, will create an unforgettable illusion on stage – as if the world's greatest pop and rock legends were performing in the same concert. And yes, legends who have already left the stage will also be there!</p><p>During the show, a breathtaking array of superstars will take to the stage, including Madonna, P!nk, Christina Aguilera, Whitney Houston, Adam Lambert and Freddie Mercury – all in one concert.</p><p>The Divet Show is known for its spectacular costumes, shiny glitter, feathers, charming humour and incredibly fast character changes that take place before the audience's very eyes.</p><p>There will be great musical fireworks, witty entertainment and Pride-worthy sparkle.</p><p>Divet Show – when all the divas of the world perform on the same stage.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A2AAF94F2A6C9B32892FF4C04D26F32F/Divet_Show",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/A2AAF94F2A6C9B32892FF4C04D26F32F/Divet_Show",
                "en": "http://www.espanlava.fi/en/events/event/A2AAF94F2A6C9B32892FF4C04D26F32F/Divet_Show"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68786/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpbywr7va",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "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:agpbywr2n4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr27y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr3pu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr37a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr4pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr47y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr5pe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr6am/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr6qq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr7cq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2201345,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-20T12:28:22.623758Z",
                    "last_modified_time": "2026-05-20T12:28:22.623778Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/09c80cff-a910-44f3-9c91-f20f60f47db2.jpg",
                    "name": "",
                    "cropping": "289,0,2023,1734",
                    "photographer_name": "",
                    "alt_text": "kuvassa on pihaperjantain toimintaa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201345/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T12:36:37.807548Z",
            "last_modified_time": "2026-05-20T12:36:46.510321Z",
            "date_published": null,
            "start_time": "2026-06-05T10:00:00Z",
            "end_time": "2026-08-14T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Aikuisten pihaperjantai",
                "en": "Summer activities for adults in the Lippulaiva library's summer garden "
            },
            "short_description": {
                "fi": "Aikuisten pihaperjantai Lippulaivan kirjaston kesäpihalla 5.6. - 14.8. klo 13-15. Tervetuloa!",
                "en": "Welcome to join us for fun summer activities for adults on fridays 5.6.-14.8. from 13-15!"
            },
            "description": {
                "fi": "<p>Aikuisten pihaperjantait Lippulaivan kirjaston kesäpihalla 5.6. - 14.8. klo 13-15. (Huom. ei tapahtumaa 19.6.). Huonolla säällä tapahtuma järjestetään kirjaston sisällä, keskiaukiolla.</p><p>Tervetuloa viettämään rentoja kesäiltapäiviä kirjojen, keskustelujen ja hauskan yhdessä tekemisen parissa. Kesän aikana luvassa on muun muassa musiikkia, kirjavinkkejä, pihapelejä, askartelua, vohveleita ja hyvää tunnelmaa – jokaisella kerralla vähän jotain erilaista.</p><p>Voit tulla mukaan yksittäiseen iltapäivään tai osallistua jokaiseen kertaan. Tärkeintä on utelias mieli ja halu viettää mukavaa aikaa yhdessä muiden kanssa.</p><p><br></p><p>Tulevat kerrat ja aiheet:</p><ul><li>5.6. Pride-aiheista toimintaa</li><li>12.6. Speed datingia kesäpihalla + kirjavinkkejä</li><li>26.6. Kahvia, kirja &amp; kitara</li><li>3.7. Kahvia, kirja &amp; kitara (engl.) / Coffee, books &amp; guitar</li><li>10.7. Jatsahtava kirjavinkkaus ja lukuhetki</li><li>17.7. Kierrätystä ja kepeitä kesäkirjoja (Voit halutessasi ottaa mukaan 1–2 omaa kierrätettävää kirjaa.)</li><li>24.7. Kirjavinkkaus-lukupiiri</li><li>31.7. Vohvelibileet ja pihapelit</li><li>7.8. Shakkia</li><li>14.8. Aikuisten askartelua</li></ul><p>Tapahtumat ovat suunnattu aikuisille ja ne ovat maksuttomia. Ei ennakkoilmoittautumista. Tervetuloa mukaan!</p>",
                "en": "<p>Fun summer activies for adults at the Lippulaiva Library’s summer garden, From 5th of June till 14th of August, from 1–3 p.m. (Note: no event on June 19). In case of bad weather, the event will be held inside the library.</p><p><br></p><p>Come spend some relaxed summer afternoons enjoying books, conversations, and fun activities together. This summer, we’ll have music, book recommendations, chess, crafts, waffles, and a great atmosphere—something a little different every time.</p><p><br></p><p>You can join us for a single afternoon or participate every time. The most important thing is a curious mind and a desire to have a good time together with others.</p><p><br></p><p><strong>Upcoming dates and topics:</strong></p><p>June 5: Pride-themed activities</p><p>June 12: Speed dating in the summer courtyard + book recommendations</p><p>June 26: Coffee, books &amp; guitar</p><p>July 3: Coffee, books &amp; guitar (in English)</p><p>July 10: Book recommendation session with a hint of jazz + reading time</p><p>July 17: Recycling and light summer reading (Feel free to bring 1–2 of your own books for a possible book swap.)</p><p>July 24: Book recommendation and reading circle</p><p>July 31: Waffle party and yard games</p><p>August 7: Chess</p><p>August 14: Adult crafts</p><p><br></p><p>The events are aimed at adults and are free of charge. No advance registration required. Welcome!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Kesäpiha"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr7va/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68790",
            "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": 2110321,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T13:13:21.310721Z",
                    "last_modified_time": "2026-05-07T13:13:21.310735Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787885.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2110321/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T13:13:21.203581Z",
            "last_modified_time": "2026-05-20T12:13:02.361883Z",
            "date_published": null,
            "start_time": "2026-06-25T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Get Me – Open Stage",
                "sv": "Get Me – Open Stage",
                "en": "Get Me – Open Stage"
            },
            "short_description": {
                "fi": "Astu Get Me:n kanssa ilma-alukseen, navigoi itsesi läpi musiikin ilmamassojen ja valmistaudu nousemaan stratosfääriin!",
                "sv": "Gå ombord på luftfarkosten med Get Me, navigera dig fram genom de musikaliska luftmassorna och förbered dig på att flyga upp i stratosfären!",
                "en": "Step on the plane with Get Me, navigate yourself through the air masses of music and get ready to soar into the stratosphere!"
            },
            "description": {
                "fi": "<p>Astu Get Me:n kanssa ilma-alukseen, navigoi itsesi läpi musiikin ilmamassojen ja valmistaudu nousemaan stratosfääriin!</p><p>Tervetuloa \"Get Me Funkairin\" mannertenväliselle lennolle kokemaan troposfäärin parhaat musiikilliset suihkuvirtaukset!</p><p>Matkakohde ei rajoitu vain yhteen kohteeseen, vaan lentosuunnitelmamme tulee isoympyräkaarta hyödyntäen keräämään ilmanopeutta aina Pohjois- ja Etelä-Amerikan, Afrikan ja Aasian kautta, palaten Suomeen illaksi kotiin.</p><p>Matkan aikana viihtyvyydestänne vastaavat poikkeuksetta lakikorkeuden päällä operoiva torvisektio, alisooninen ja voimakasta värähtelyä aiheuttava komppiryhmä, äänennopeudella työskentelevä laulajisto ja viimeisimpänä kappaleiden fraseologia, joka ei jätä matkustajaansa tai tympääntyneintäkään lennonjohtajaa kylmäksi.</p>",
                "sv": "<p>Gå ombord på luftfarkosten med Get Me, navigera dig fram genom de musikaliska luftmassorna och förbered dig på att flyga upp i stratosfären!</p><p>Välkommen till ”Get Me Funkairs” interkontinentala luftfärd för att uppleva troposfärens bästa musikaliska strömningar! Destinationen begränsas inte bara till ett enda objekt, utan vår färdplan kommer att föra oss via Nord- och Sydamerika till Afrika och Asien samt hem till Finland till kvällen.</p><p>För trivseln under färden ansvarar hornsektionen som undantagslöst spelar på högsta höjderna, kompgruppen som skapar subsoniska och kraftiga vibrationer, sångarskaran som jobbar med ljudets hastighet och slutligen låtarnas fraseologi, och lämnar varken sin passagerare eller den mest uttråkade flygledaren oberörd.</p>",
                "en": "<p>Step on the plane with Get Me, navigate yourself through the air masses of music and get ready to soar into the stratosphere!</p><p>Welcome on board the 'Get Me Funkair’, an intercontinental flight with the best musical jet streams of the troposphere!</p><p>Our trip is not limited to only one destination, but will use the great circle to gather air and musical vibes from all the way through North and South America, Africa and Asia, returning home to Finland in the evening.</p><p>During this trip, our horn section that operates above the legal height, the subsonic and vibratious rhythm section, vocalists working at the speed of sound and the phraseology of the songs will be responsible for your comfort, without exception.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2FFCA1A5FEE12786A0965EF9C3B19DE2/Get_Me",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/2FFCA1A5FEE12786A0965EF9C3B19DE2/Get_Me",
                "en": "http://www.espanlava.fi/en/events/event/2FFCA1A5FEE12786A0965EF9C3B19DE2/Get_Me"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68790/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68782",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2098210,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T10:14:07.499837Z",
                    "last_modified_time": "2026-05-07T10:14:07.499850Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785542.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2098210/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T10:14:07.382062Z",
            "last_modified_time": "2026-05-20T12:13:02.094058Z",
            "date_published": null,
            "start_time": "2026-06-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Liisa Akimof & Yökerho – Pride Espalla",
                "sv": "Liisa Akimof & Yökerho – Pride på Espa",
                "en": "Liisa Akimof & Yökerho – Pride in Esplanade Park"
            },
            "short_description": {
                "fi": "Liisa Akimof & Yökerhon keikat ovat puheenaiheita, energisiä ja yllätyksellisiä.",
                "sv": "Liisa Akimof & Yökerhos spelningar är energiska och överraskande samt väcker diskussion.",
                "en": "Liisa Akimof & Yökerho gigs are the talk of the town, energetic and surprising."
            },
            "description": {
                "fi": "<p>Liisa Akimof & Yökerhon keikat ovat puheenaiheita, energisiä ja yllätyksellisiä.</p><p>Akimof on kertonut, että uusia biisejä putoilee hänen päähänsä odottamatta ja pyytämättä. Niitä tullaan kuulemaan Espan lavalla sekä Liisa Akimof & Yökerho -yhtyeen uudella ”Miten asiat oikeesti on?” -albumilla, joka ilmestyi 30.1.</p><p>Uusi albumi liikkuu temaattisesti tavaroiden ja roinan maailmassa jääkaudelta nykyaikaan. Erikoiskahvit, sähkösaunat ja proteiini taipuvat poplyriikaksi, rakennusvalvontaa unohtamatta. Musiikillisesti albumi on häpeämätön sekoitus rokkia, diskoa ja jazzia.</p><p>Yökerhossa soittavat Mikko Siltanen (basso), Pekka Tuomi (kitara), Antti Vuorenmaa (kosketinsoittimet) sekä Sebastian Krühn (rummut). Uusien biisien lisäksi settiin kuuluu aina joitakin vanhempia Akimofin klassikoita kuten Tavaramarkkinoiden ”Kevät”.</p>",
                "sv": "<p>Liisa Akimof & Yökerhos spelningar är energiska och överraskande samt väcker diskussion.</p><p>Akimof har sagt att nya låtar uppstår i hennes huvud oväntat och oombett. Du kan höra dem på Esplanadestraden och på Liisa Akimof & Yökerhos nya album ”Miten asiat oikeesti on?”, som släpptes den 30 januari.</p><p>Det nya albumet rör sig tematiskt i en värld av saker och skräp, från istiden till nutid. Specialkaffen, elbastur och proteinet blir till poplyrik, för att inte glömma byggnadstillsynen. Musikaliskt är albumet en fräck blandning av rock, disco och jazz.</p><p>Mikko Siltanen (bas), Pekka Tuomi (gitarr), Antti Vuorenmaa (keyboard) och Sebastian Krühn (trummor) spelar i bandet Yökerho. Utöver de nya låtarna ingår det alltid några äldre klassiker av Akimof, såsom Tavaramarkkinats ”Kevät”.</p>",
                "en": "<p>Liisa Akimof & Yökerho gigs are the talk of the town, energetic and surprising.</p><p>Akimof has said that new songs fall into her head unexpectedly and unsolicited. You can hear them on Espa Stage and on Liisa Akimof & Yökerho's new album Miten asiat oikeesti on?, which was released on 30 January.</p><p>The new album moves thematically in a world of items and junk, from the Ice Age to the present day. Specialty coffees, electric saunas and protein with a side of building control are turned into pop lyrics. Musically, the album is an unashamed mix of rock, disco and jazz.</p><p>Mikko Siltanen (bass), Pekka Tuomi (guitar), Antti Vuorenmaa (keyboards) and Sebastian Krühn (drums) play in Yökerho. In addition to new songs, the set always includes some older Akimof classics such as Kevät by Tavaramarkkinat.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DD2FF22D5BB9D3AD03C4C3BC1DDC56B7/Liisa_Akimof_Yokerho",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DD2FF22D5BB9D3AD03C4C3BC1DDC56B7/Liisa_Akimof_Yokerho",
                "en": "http://www.espanlava.fi/en/events/event/DD2FF22D5BB9D3AD03C4C3BC1DDC56B7/Liisa_Akimof_Yokerho"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68782/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpekvteue",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 1494668,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-21T12:16:45.896048Z",
                    "last_modified_time": "2025-05-21T12:16:45.896062Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/627a30da-b445-417e-9b95-c0009b5355c0.jpg",
                    "name": "Suomalaisia perinnesoittimia",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "Suomalaisia perinnesoittimia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494668/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-05-20T11:52:23.444321Z",
            "last_modified_time": "2026-05-20T11:52:23.444338Z",
            "date_published": null,
            "start_time": "2026-06-15T11:00:00Z",
            "end_time": "2026-06-15T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Suomalaiset perinnesoittimet - tarinallinen konsertti lapsiperheille",
                "sv": "Finländska traditionella instrument - en berättande konsert för barnfamiljer",
                "en": "Traditional Finnish instruments -  a storytelling concert for families "
            },
            "short_description": {
                "fi": "Tarinallisessa konsertissa tutustutaan suomalaisiin perinnesoittimiin ja kansanlauluihin",
                "sv": "I den berättande konserten får man bekanta sig med finska traditionella instrument och folkvisor.",
                "en": "In the story-driven concert, the audience will get to know Finnish traditional instruments and folk songs."
            },
            "description": {
                "fi": "<p>Tiedätkö mitä ovat pärrä, julmu, lepenelauta ja rapapalli? Tässä tarinallisessa konsertissa pääsemme tutustumaan suomalaisiin perinnesoittimiin ja kansanlauluihin. Kerromme tarinoiden avulla soittimien historiasta ja käyttötarkoituksesta.&nbsp;Konsertti kestää noin 30 minuuttia ja soveltuu myös perheen pienimmille. Tervetuloa tutustumaan vanhoihin suomalaisiin perinnesoittimiin!</p><p><br></p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta!</p><p><br></p><p>Tuokion ohjaavat kirjaston musiikkipedagogit Sakari ja Lauri.&nbsp;</p>",
                "sv": "<p>Vet du vad en pärrä, julmu, lepenelauta eller rapapalli är? I den här berättande konserten får vi bekanta oss med finska traditionella instrument och folkvisor. Genom berättelser berättar vi om instrumentens historia och användningsområden. Konserten varar cirka 30 minuter och passar även de allra yngsta i familjen. Välkommen att upptäcka gamla finska traditionella instrument!</p><p><br></p><p>Konserten är på finska</p><p>Ingen förhandsanmälan behövs och deltagandet är gratis!</p>",
                "en": "<p>Do you know what a pärrä, julmu, lepenelauta, or rapapalli is? In this story-driven concert, we will get to know Finnish traditional instruments and folk songs. Through stories, we will explore the history of the instruments and how they were used. The concert lasts about 30 minutes and is also suitable for the youngest members of the family. Welcome to discover old Finnish traditional instruments!</p><p><br></p><p>The concert is in Finnish.</p><p>No advance registration is required, and participation is free of charge!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpekvteue/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpekijnd4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "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": 2201343,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-20T11:05:46.470140Z",
                    "last_modified_time": "2026-05-20T11:05:46.470154Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/324c9f66-92d7-4c46-b0e4-37709f76a390.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Pinkillä taustalla hahmo, joka näyttäisi olevan pukeutunut villamattoon virnistelee päässään oranssit aurinkolasit. Teksti: Kotilöytöjä -tanssiesitys lapsiperheille. Ison Omenan kirjasto, Stage. Ma 15.6. kl 10:00-10:45",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201343/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-05-20T11:15:23.267623Z",
            "last_modified_time": "2026-05-20T11:15:23.267641Z",
            "date_published": null,
            "start_time": "2026-06-15T07:00:00Z",
            "end_time": "2026-06-15T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kotilöytöjä - tanssiesitys ",
                "sv": "Home Findings – dansverk",
                "en": "Homefindings - danceshow"
            },
            "short_description": {
                "fi": "Home Findings – Kotilöytöjä on tanssiteos, jossa esiintyjän omasta kodista löytyneet materiaalit muuntuvat asuiksi, musiikiksi ja liikkeeksi.",
                "sv": "Home Findings – Kotilöytöjä är ett dansverk där material som hittats i artistens eget hem förvandlas till dräkter, musik och rörelse",
                "en": "Home Findings – Kotilöytöjä is a dance performance where materials found in the performer’s own home transform into costumes, music and movement."
            },
            "description": {
                "fi": "<p>Home Findings – Kotilöytöjä on tanssiteos, jossa esiintyjän omasta kodista löytyneet materiaalit muuntuvat asuiksi, musiikiksi ja liikkeeksi. Ikea-kasseista esiin kaivetut hahmot hykerryttävät katsojaa olemuksellaan ja imaisevat mukaan mielikuvitusta avaavaan liikeretkeen. Koko perheen esitys.</p><p>Ikäsuositus 3+ vuotiaille.</p><p><br></p><p>Ma 15.6. kello 10:00-10:10:30</p><p>Ison omenan kirjaston Stagella.</p><p>Vapaa pääsy.</p><p><br></p><p>Esitys: Minna Kaaronen</p><p>äänisuunnittelu: Olli Lautiola</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Home Findings – Kotilöytöjä är ett dansverk där material som hittats i artistens eget hem förvandlas till dräkter, musik och rörelse. Figurer som plockas fram ur IKEA‑kassar får publiken att småle och drar med sig åskådarna på en fantasifull rörelseresa. En föreställning för hela familjen.</p><p>Åldersrekommendation: från 3 år</p><p>Må 15.6 kl. 10:00–10:30  </p><p>På Iso Omena bibliotekets Stage.</p><p>Fritt inträde.</p><p>Föreställning: &nbsp;Minna Kaaronen </p><p>Ljuddesign: Olli Lautiola</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>Home Findings – Kotilöytöjä is a dance performance where materials found in the performer’s own home transform into costumes, music and movement. Characters dug out of IKEA bags delight the audience with their presence and draw them into an imaginative journey of motion. A performance for the whole family.</p><p>Recommended age: 3+</p><p>Mon 15 June at 10:00–10:30  </p><p>At the Stage of Iso Omena Library.</p><p>Free entry.</p><p>Performance: Minna Kaaronen</p><p>Sound design: Olli Lautiola</p><p><br></p><p>#helloespoo</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpekijnd4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68779",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2093787,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T09:13:25.130284Z",
                    "last_modified_time": "2026-05-07T09:13:25.130297Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785549.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2093787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T09:13:25.030089Z",
            "last_modified_time": "2026-05-20T11:14:03.519968Z",
            "date_published": null,
            "start_time": "2026-06-24T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Itcevät – Pride Espalla",
                "sv": "Itcevät – Pride på Espa",
                "en": "Itcevät – Pride Espalla"
            },
            "short_description": {
                "fi": "Queer-piireissä kultti-ilmiöksi muodostunut indierockyhtye Itcevät tuo Espan lavalle teatraalisen rockshow’n.",
                "sv": "Itcevät, ett indierockband som har blivit ett kultfenomen i queerkretsarna, bjuder på en teatralisk rockshow på Esplanadestraden.",
                "en": "Indie rock band Itcevät has become a cult phenomenon in queer circles and brings a theatrical rock show to the Espa stage."
            },
            "description": {
                "fi": "<p>Queer-piireissä kultti-ilmiöksi muodostunut indierockyhtye Itcevät tuo Espan lavalle teatraalisen rockshow’n.</p><p>Kitaravetoisen yhtyeen musiikki leikittelee pehmeiden äänimaailmojen ja rouhean energisten riffien välillä saumattomasti. Suomen ensimmäisenä transrockistarana itseään tituleeraava <b>Runo Talvensalo</b> johtaa yhtyettä, jonka vauhdikkaat live-esitykset eivät jätä yleisöä kylmäksi.</p>",
                "sv": "<p>Itcevät, ett indierockband som har blivit ett kultfenomen i queerkretsarna, bjuder på en teatralisk rockshow på Esplanadestraden.</p><p>Det gitarrdrivna bandets musik leker sömlöst mellan mjuka ljudlandskap och grova energiska riff. <b>Runo Talvensalo</b>, som kallar sig Finlands första transrockstjärna, leder bandet vars fartfyllda liveuppträdanden fängslar publiken.</p>",
                "en": "<p>Indie rock band Itcevät has become a cult phenomenon in queer circles and brings a theatrical rock show to the Espa stage.</p><p>The band’s guitar-driven music seamlessly plays between soft soundscapes and raw, energetic riffs. Runo Talvensalo, who describes themself as Finland’s first trans rock star, leads the group, whose high-energy live performances never leave the audience cold.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3CE178599E0497837E8CB88A6582BA5E/Itcevat_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/3CE178599E0497837E8CB88A6582BA5E/Itcevat_",
                "en": "http://www.espanlava.fi/en/events/event/3CE178599E0497837E8CB88A6582BA5E/Itcevat_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68784",
            "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": 2098224,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T10:14:14.008772Z",
                    "last_modified_time": "2026-05-07T10:14:14.008787Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789609.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2098224/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T10:14:13.917848Z",
            "last_modified_time": "2026-05-20T11:14:03.335780Z",
            "date_published": null,
            "start_time": "2026-06-23T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kälyset – Open Stage",
                "sv": "Kälyset – Open Stage",
                "en": "Kälyset – Open Stage"
            },
            "short_description": {
                "fi": "Kälyset tuovat iloisen rennolla otteella kuuluville uutta kotimaista musiikkia, jossa kuulet vivahteita mm. countrysta, reggaesta, iskelmästä ja folkista.",
                "sv": "Med ett glatt och lättsamt grepp bjuder Kälyset på ny inhemsk musik med inslag av bland annat country, reggae, schlager och folkmusik.",
                "en": "Kälyset brings new Finnish music to the stage with a joyful, natural approach, blending influences from country, reggae, schlager, folk, and more."
            },
            "description": {
                "fi": "<p>Kälyset tuovat iloisen rennolla otteella kuuluville uutta kotimaista musiikkia, jossa kuulet vivahteita mm. countrysta, reggaesta, iskelmästä ja folkista.</p><p>Pienet, mutta suuria tunteita ilmaisevat soittimet kertovat omaa tarinaansa duon persoonallisesta esiintymisestä.</p>",
                "sv": "<p>Med ett glatt och lättsamt grepp bjuder Kälyset på ny inhemsk musik med inslag av bland annat country, reggae, schlager och folkmusik.</p><p>De små instrumenten uttrycker stora känslor och berättar sin egen historia via duons personliga uppträdande.</p>",
                "en": "<p>Kälyset brings new Finnish music to the stage with a joyful, natural approach, blending influences from country, reggae, schlager, folk, and more.</p><p>Small instruments that convey big emotions tell their own story, highlighting the duo’s distinctive and personal style.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5FEE754181CFCA281F12727D666E0C43/Kalyset",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/5FEE754181CFCA281F12727D666E0C43/Kalyset",
                "en": "http://www.espanlava.fi/en/events/event/5FEE754181CFCA281F12727D666E0C43/Kalyset"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68784/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68781",
            "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": 2093786,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T09:13:24.773435Z",
                    "last_modified_time": "2026-05-07T09:13:24.773451Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787911.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2093786/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T09:13:24.687275Z",
            "last_modified_time": "2026-05-20T11:14:03.197924Z",
            "date_published": null,
            "start_time": "2026-06-23T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sweet Jeena and her Sweethearts – Open Stage",
                "sv": "Sweet Jeena and her Sweethearts – Open Stage",
                "en": "Sweet Jeena and her Sweethearts – Open Stage"
            },
            "short_description": {
                "fi": "Sweet Jeena and her Sweetheartsin soinnin ytimessä loistavat amerikkalaisen populaarimusiikin varhaiset helmet ja jalokivet.",
                "sv": "I kärnan av Sweet Jeena and her Sweethearts sound lyser den tidiga amerikanska populärmusikens pärlor och juveler.",
                "en": "The early pearls and gems of American popular music shine at the heart of Sweet Jeena and her Sweethearts' sound."
            },
            "description": {
                "fi": "<p>Sweet Jeena and her Sweetheartsin soinnin ytimessä loistavat amerikkalaisen populaarimusiikin varhaiset helmet ja jalokivet.</p><p>Rockabillyn rajuus kohtaa leikittelevän jazzin ja syvän bluesin. Monipuolinen repertuaari käsittää vaikutteita countrysta jazziin ja 50’s americanapopista rock’n’rolliin.</p>",
                "sv": "<p>I kärnan av Sweet Jeena and her Sweethearts sound lyser den tidiga amerikanska populärmusikens pärlor och juveler.</p><p>Rockabillyns vildhet möter lekfull jazz och djup blues. Den mångsidiga repertoaren innehåller intryck från country till jazz och från amerikansk 50-talspop till rock'n'roll.</p>",
                "en": "<p>The early pearls and gems of American popular music shine at the heart of Sweet Jeena and her Sweethearts' sound.</p><p>The ferocity of rockabilly meets playful jazz and deep blues. The diverse repertoire includes influences from country to jazz and from 50s American pop to rock'n'roll.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6ED50096671B3CBFCD7750C0A92FD11B/Sweet_Jeena_and_her_Sweethearts",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/6ED50096671B3CBFCD7750C0A92FD11B/Sweet_Jeena_and_her_Sweethearts",
                "en": "http://www.espanlava.fi/en/events/event/6ED50096671B3CBFCD7750C0A92FD11B/Sweet_Jeena_and_her_Sweethearts"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68781/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68778",
            "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": 2093785,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T09:13:24.474960Z",
                    "last_modified_time": "2026-05-07T09:13:24.474974Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787895.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2093785/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T09:13:24.382129Z",
            "last_modified_time": "2026-05-20T11:14:03.066534Z",
            "date_published": null,
            "start_time": "2026-06-23T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "The Kippari Band – Open Stage",
                "sv": "The Kippari Band – Open Stage",
                "en": "The Kippari Band – Open Stage"
            },
            "short_description": {
                "fi": "Rentoa, helposti lähestyttävää rock-henkistä musiikkia ja yhteislauluja, joissa tärkeintä on hyvä fiilis ja yhdessä musisointi. Sydän mukana ja rohkeasti!",
                "sv": "gänglig, rockinspirerad musik och allsång, där det viktigaste är att ha roligt och musicera tillsammans. Med hjärta och modigt!",
                "en": "Relaxed, approachable, rock-inspired music and sing-alongs, where the most important thing is to have a good time and make music together. With heart and courage!"
            },
            "description": {
                "fi": "<p>Rentoa, helposti lähestyttävää rock-henkistä musiikkia ja yhteislauluja, joissa tärkeintä on hyvä fiilis ja yhdessä musisointi. Sydän mukana ja rohkeasti!</p><p>The Kippari Band on Rinnekotien Toimintakeskus Kipparissa syntynyt bändi, jossa ohjaajat ja asiakkaat musisoivat yhdessä. <br>Bändin perustivat Kipparin työntekijät, ja bändissä on mukana asiakkaita kukin omalla tavallaan laulaen, soittaen tai rytmittäen. Kyse on yhteisestä tekemisestä, osallisuudesta ja ilosta – kombo, joka luo esitykseen ainutlaatuisen tunnelman, ja jonka energinen meininki tempaa mukaansa kaikki kuulijat!</p>",
                "sv": "<p>gänglig, rockinspirerad musik och allsång, där det viktigaste är att ha roligt och musicera tillsammans. Med hjärta och modigt!</p><p>The Kippari Band är ett band som uppstod i Rinnekotis Servicecentral Kippari, där instruktörerna och klienterna musicerar tillsammans. Bandet grundades av Kipparis anställda och bandet består av klienter som alla sjunger, spelar eller rytmiserar på sitt eget sätt. Det handlar om samarbete, delaktighet och glädje – en kombination som skapar en unik atmosfär och vars energiska anda rycker med alla i publiken!</p>",
                "en": "<p>Relaxed, approachable, rock-inspired music and sing-alongs, where the most important thing is to have a good time and make music together. With heart and courage!</p><p>The Kippari Band is a band that was born at the Rinnekodit activity centre Kippari, where the instructors and clients play music together. The band was founded by Kippari's employees, and the group is made up of clients, each singing, playing or providing rhythms in their own way. It is all about working together, sharing and joy – a combination that creates a unique atmosphere and an energetic spirit that is sure to engage everyone in the audience!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5C2A213441A2934DDE5BB062746596BF/The_Kippari_Band",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/5C2A213441A2934DDE5BB062746596BF/The_Kippari_Band",
                "en": "http://www.espanlava.fi/en/events/event/5C2A213441A2934DDE5BB062746596BF/The_Kippari_Band"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68778/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68775",
            "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": 2093779,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T09:13:23.079052Z",
                    "last_modified_time": "2026-05-07T09:13:23.079070Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785545.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2093779/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T09:13:22.980713Z",
            "last_modified_time": "2026-05-20T11:14:02.741951Z",
            "date_published": null,
            "start_time": "2026-06-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,
            "name": {
                "fi": "Wimme & Rinne",
                "sv": "Wimme & Rinne",
                "en": "Wimme & Rinne"
            },
            "short_description": {
                "fi": "Wimme & Rinne tunnetaan maailmalla esiintyjinä, jotka luovat siltoja perinteisen ja nykymusiikin välille.",
                "sv": "Wimme Saari och Tapani Rinne förenar jojk och basklarinett i ett unikt samarbete som har tagit dem till scener världen över.",
                "en": "Wimme & Rinne are known around the world as performers who bridge the gap between traditional and contemporary music."
            },
            "description": {
                "fi": "<p>Wimme & Rinne tunnetaan maailmalla esiintyjinä, jotka luovat siltoja perinteisen ja nykymusiikin välille.</p><p>Wimme Saaren ja Tapani Rinteen musiikki väreilee hyvin omaleimaisilla taajuuksilla, kun joikujen juurevuus kohtaa modernit elektroniset äänimaailmat.</p><p>Ajoittain leikitellään jopa teknon elementeillä. Wimmen ilmiömäinen äänenkäyttö ja improvisoidut joikut kohtaavat Rinteen syvällisen bassoklarinetin soiton.</p><p>Heidän musiikkinsa on kuin matka pimeän ja valon rajalle, jossa perinteet, luonto ja moderni taide kohtaavat pohjoisen sielunmaisemassa.</p><p>Ystävysten hedelmällinen yhteistyö on kestänyt yli 30 vuotta ja aina, kun he yhdistävät voimansa, ilmassa on mystisen löytöretken tuntua!</p>",
                "sv": "<p>Wimme Saari och Tapani Rinne förenar jojk och basklarinett i ett unikt samarbete som har tagit dem till scener världen över.</p><p>Vårt lands mest internationellt kända samtida jojkare Wimme Saari och den hyllade saxofonisten och klarinettisten Tapani Rinne, som inledde sin karriär inom experimentell jazz, har samarbetat i över 30 år.</p><p>Wimme & Rinne har uppträtt i konsertsalar och på festivaler runt om i världen, från Ishavets stränder till stadion i Gambias huvudstad Banjul.</p><p>De enda ljudkällorna i Wimme & Rinnes musik är den mänskliga rösten och basklarinetten.</p><p>I princip skulle hela verket kunna vara minimalistiskt, kargt och ålderdomligt, och de musikaliska elementen sparsamma, men de är rika.</p><p>Musiken är känslig, men också brinnande, med mörka ambient-toner och elektronisk svärta.</p>",
                "en": "<p>Wimme & Rinne are known around the world as performers who bridge the gap between traditional and contemporary music.</p><p>Wimme Saari and Tapani Rinne's music vibrates on very distinctive frequencies, as the rootsiness of the joiks meets modern electronic soundscapes. At times, they even play with elements of techno. Wimme's phenomenal vocal delivery and improvised joiks meet Rinne's deep bass clarinet playing. Their music is like a journey to the border between darkness and light, where tradition, nature and modern art meet in the landscape of the Northern soul.</p><p>The friends have enjoyed a fruitful partnership for over 30 years, and every time they join forces, there is a sense of mystical discovery in the air!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B1E5B8ADD69B7F1F5CA93B2D34390404/Wimme_Rinne",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/B1E5B8ADD69B7F1F5CA93B2D34390404/Wimme_Rinne",
                "en": "http://www.espanlava.fi/en/events/event/B1E5B8ADD69B7F1F5CA93B2D34390404/Wimme_Rinne"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68775/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68773",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2093770,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T09:13:21.931951Z",
                    "last_modified_time": "2026-05-07T09:13:21.931965Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786508.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2093770/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T09:13:21.812936Z",
            "last_modified_time": "2026-05-20T11:14:02.492329Z",
            "date_published": null,
            "start_time": "2026-06-16T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Los Pan Pan – Kirkkonummen Steel Band ry 30 vuotta! – Open Stage",
                "sv": "Los Pan Pan – Kirkkonummen Steel Band ry 30 år! – Open Stage",
                "en": "Los Pan Pan – Kirkkonummen Steel Band ry celebrates 30 years! – Open Stage"
            },
            "short_description": {
                "fi": "Nimensä mukaisesti 15-henkinen steel band Kirkkonummelta soittaa steel paneja, eli pannuja: tyhjistä öljytynnyreistä valmistettuja melodisia lyömäsoittimia.",
                "sv": "Precis som namnet antyder spelar 15-manna steel bandet från Kyrkslätt steel pans, det vill säga pannor: melodiska slaginstrument tillverkade av tomma oljetunnor.",
                "en": "As the name suggests, the 15-piece steel band from Kirkkonummi plays steel pans: melodic percussion instruments made from empty oil drums."
            },
            "description": {
                "fi": "<p>Nimensä mukaisesti 15-henkinen steel band Kirkkonummelta soittaa steel paneja, eli pannuja: tyhjistä öljytynnyreistä valmistettuja melodisia lyömäsoittimia.</p><p>Soittimen alkuperä on Trinidadissa. Kirkkonummelle pannut löysivät tiensä 30 vuotta sitten, jolloin myös taustayhdistys perustettiin. Espan lavan konsertti on osa Kirkkonummen Steel Band ry:n juhlavuoden ohjelmaa.</p><p>Los Pan Pania johtaa Satu Jämsä.</p>",
                "sv": "<p>Precis som namnet antyder spelar 15-manna steel bandet från Kyrkslätt steel pans, det vill säga pannor: melodiska slaginstrument tillverkade av tomma oljetunnor.</p><p>Musikinstrumentet har sitt ursprung i Trinidad. Pannorna fann sin väg till Kyrkslätt för 30 år sedan, då även bakgrundsföreningen grundades. Konserten på Esplanadestraden är en del av Kirkkonummen Steel Band ry:s jubileumsprogram.</p><p>Los Pan Pan leds av Satu Jämsä.</p>",
                "en": "<p>As the name suggests, the 15-piece steel band from Kirkkonummi plays steel pans: melodic percussion instruments made from empty oil drums.</p><p>The instrument originates in Trinidad. The pans found their way to Kirkkonummi 30 years ago, when the backing association was also founded. The Espa Stage concert is part of the Kirkkonummen Steel Band's anniversary programme.</p><p>Los Pan Pan is led by Satu Jämsä.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/0A05659E90A2020A8986A94D07717380/Los_Pan_Pan_Kirkkonummen_Steel_Band_ry_30_vuotta_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/0A05659E90A2020A8986A94D07717380/Los_Pan_Pan_Kirkkonummen_Steel_Band_ry_30_ar_",
                "en": "http://www.espanlava.fi/en/events/event/0A05659E90A2020A8986A94D07717380/Los_Pan_Pan_Kirkkonummen_Steel_Band_ry_celebrates_30_years_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68773/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68767",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2089163,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T08:14:36.313272Z",
                    "last_modified_time": "2026-05-07T08:14:36.313287Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789607.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2089163/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T08:14:36.221946Z",
            "last_modified_time": "2026-05-20T11:14:02.319094Z",
            "date_published": null,
            "start_time": "2026-06-16T11:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "WeDrumAsOne – Open Stage",
                "sv": "WeDrumAsOne – Open Stage",
                "en": "WeDrumAsOne – Open Stage"
            },
            "short_description": {
                "fi": "Kaikenikäiset ovat tervetulleita liittymään rumpuryhmäämme ja luomaan rytmejä ja biittejä yhdessä: WeDrumAsOne.",
                "sv": "Folk i alla åldrar är välkomna att delta i vår drumline och skapa rytmer och takter tillsammans: vi trummar som en.",
                "en": "People of all ages are invited to join our drum line and make rhythms and beats together: WeDrumAsOne."
            },
            "description": {
                "fi": "<p>Kaikenikäiset ovat tervetulleita liittymään rumpuryhmäämme ja luomaan rytmejä ja biittejä yhdessä: WeDrumAsOne.</p><p>WeDrumAsOne on amerikkalaistyylinen showmarssirumpuryhmä, joka sai alkunsa vuonna 2011. Sen jälkeen WeDrumAsOne on esiintynyt tunnettujen suomalaisten artistien, kuten Robinin ja Anssi Kelan kanssa, ollut mukana kahdessa suorassa TV-ohjelmassa sekä marssinut useaan otteeseen Aleksanterinkadun joulukadun avajaisissa.</p><p>Rumpuryhmään kuuluu virvelirumpuja, tenorirumpuja, bassorumpuja, symbaaleja ja quad-rumpuja. WeDrumAsOne esittää kadensseja ja marssiosuuksia sekä rakentaa muodostelmia ja tanssii rumpujen kanssa.</p>",
                "sv": "<p>Folk i alla åldrar är välkomna att delta i vår drumline och skapa rytmer och takter tillsammans: vi trummar som en.</p><p>WeDrumAsOne är en drumline, det vill säga en marscherande slagverksgrupp i amerikansk showstil, som startade 2011. Sedan dess har WeDrumAsOne uppträtt med kända finländska artister som Robin och Anssi Kela, medverkat live i tv två gånger och flera gånger marscherat i julöppningen på Alexandersgatan.</p><p>Drumlinen består av virveltrummor, tenortrummor, bastrummor, cymbaler och quad-trummor. Drumlinen WeDrumAsOne spelar kadenser och marscher, skapar formationer och dansar med trummorna.</p>",
                "en": "<p>People of all ages are invited to join our drum line and make rhythms and beats together: WeDrumAsOne.</p><p>WeDrumAsOne is an American Show Style Marching drum line that started back in 2011. Since then, WeDrumAsOne has performed with known Finnish artists like Robin and Anssi Kela, done two live TV-shows, and marched in the Aleksanterinkatu holiday season opening ceremony several times.</p><p>The drum line consists of Snare drums, Tenor drums, Bass drums, Cymbals and Quad drums. WeDrumAsOne drum line plays cadences, marches, formation building and dancing with the drums.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/AEA69E7C791089ECF3FD377FD26E4CF3/WeDrumAsOne",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/AEA69E7C791089ECF3FD377FD26E4CF3/WeDrumAsOne",
                "en": "http://www.espanlava.fi/en/events/event/AEA69E7C791089ECF3FD377FD26E4CF3/WeDrumAsOne"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68767/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68772",
            "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": 2093769,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T09:13:21.408297Z",
                    "last_modified_time": "2026-05-07T09:13:21.408311Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785371.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2093769/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T09:13:21.312489Z",
            "last_modified_time": "2026-05-20T11:14:02.069876Z",
            "date_published": null,
            "start_time": "2026-06-15T15:00:00Z",
            "end_time": "2026-06-15T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helsinki City Folk",
                "sv": "Helsinki City Folk",
                "en": "Helsinki City Folk"
            },
            "short_description": {
                "fi": "Tule ja virittäydy juhannustunnelmiin Helsinki City Folkissa!",
                "sv": "Kom och njut av midsommarstämning på Helsinki City Folk!",
                "en": "Come and get into the spirit of Midsummer at Helsinki City Folk!"
            },
            "description": {
                "fi": "<p>Tule ja virittäydy juhannustunnelmiin Helsinki City Folkissa!</p><p>Espan lava täyttyy pääkaupunkiseudun kansantanssijoista ja pelimanneista juhannusviikon alussa.</p><p>Helsinki City Folk tuo lavalle iloisia ja taidokkaita tanssi- ja musiikkiesityksiä sekä värikkäitä kansallispukuja. ”JUURISTA VOIMAA” on tämän vuoden kansanmusiikin ja kansantanssin teema, josta on haettu inspiraatiota esityksiin.</p><p>Esiintymässä Pääkaupungin Karjalaisten Nuorten ryhmä Riesku, Tanhu-Visa, Karkelo Klaukkalasta, Helsingin pitäjän tanhuujat ja spelarit, Helsingin Kansantanssin Ystävien ryhmä Rutistus, Espoon Kansantanssijat, Pörriäiset Nurmijärveltä, Katrilli, Karjalan Nuorten ryhmä Roihu ja Seurasaaren Kansantanssijoiden ryhmät Välke ja Virvatuli sekä Hiillos.</p>",
                "sv": "<p>Kom och njut av midsommarstämning på Helsinki City Folk!</p><p>Esplanadestraden fylls av huvudstadsregionens folkdansare och spelmän i början av midsommarveckan. Helsinki City Folk bjuder på glada och skickliga dans- och musikuppträdanden och färggranna folkdräkter på scenen. Årets tema för folkmusik och folkdans är ”KRAFT UR RÖTTER\", som har använts som inspiration för föreställningarna.</p><p>På scenen uppträder Pääkaupungin Karjalaiset Nuoret ry:s grupp Riesku, Tanhu-Visa, Karkelo från Klövskog, Helsingin pitäjän tanhuujat ja spelarit, Helsingin Kansantanssin Ystävät ry:s grupp Rutistus, Espoon kansantanssijat ry, Pörriäiset från Nurmijärvi, Katrilli, Roihu från Nuorisoseura Karjalan nuoret samt grupperna Virvatuli och Hiillos från Seurasaaren Kansantanssijat ry.</p>",
                "en": "<p>Come and get into the spirit of Midsummer at Helsinki City Folk!</p><p>Espa Stage will be filled with folk dancers and musicians from the Helsinki and the surrounding areas at the beginning of Midsummer week.</p><p>Helsinki City Folk will bring joyful and skillful dance and music performances, as well as colorful national costumes, to the stage.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/77191407ADC39694609FE7E08F2BB93A/Helsinki_City_Folk",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/77191407ADC39694609FE7E08F2BB93A/Helsinki_City_Folk",
                "en": "http://www.espanlava.fi/en/events/event/77191407ADC39694609FE7E08F2BB93A/Helsinki_City_Folk"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68772/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}