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

{
    "meta": {
        "count": 22739,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=29",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=27"
    },
    "data": [
        {
            "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"
        },
        {
            "id": "kulke:68771",
            "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": 2089162,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T08:14:35.901116Z",
                    "last_modified_time": "2026-05-07T08:14:35.901136Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782097.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2089162/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T08:14:35.795878Z",
            "last_modified_time": "2026-05-20T11:14:01.810079Z",
            "date_published": null,
            "start_time": "2026-06-15T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sulasol: yhteislaulutuokio",
                "sv": "Sulasol: allsång",
                "en": "Sulasol Singalong"
            },
            "short_description": {
                "fi": "Sulasolin Helsingin piirin yhteistuokioissa laulattajat ja teemat vaihtuvat, mutta yksi on ja pysyy: yhteislaulun riemu!",
                "sv": "I Sulasols Helsingfors distrikts allsångsstunder varierar sångledarna och temana, men ett är och förblir: allsångens glädje!",
                "en": "The singalongs of Sulasol's Helsinki branch have different hosts and themes, but one thing is constant: the joy of singing together!"
            },
            "description": {
                "fi": "<p>Sulasolin Helsingin piirin yhteistuokioissa laulattajat ja teemat vaihtuvat, mutta yksi on ja pysyy: yhteislaulun riemu!</p><p>Laulattajina toimivat Kati Sannelvuo (25.5), Susanna Lukkarinen (15.6.), Ulla Hillebrandt & Kari Pennanen (20.7.) ja Krista Pellikka (17.8.).</p><p>Tapahtuma kutsuu laulamaan laulutaustasta riippumatta. Kokeneet laulattajat ja yhteisöllinen henki tekevät näistä äänenavaustilaisuuksista turvallisen tavan aloittaa uusi yhteislauluharrastus.</p><p>Laulukirjana käytetään Sulasolin Helsingin piiri ry:n julkaisemaa yhteislaulukirjaa, jota voi tilaisuuksien alussa ostaa paikan päältä.</p><p>Tervetuloa mukaan yhteiseen lauluhetkeen!</p>",
                "sv": "<p>I Sulasols Helsingfors distrikts allsångsstunder varierar sångledarna och temana, men ett är och förblir: allsångens glädje!</p><p>Sångledarna är Kati Sannelvuo (25.5), Susanna Lukkarinen (15.6), Ulla Hillebrandt & Kari Pennanen (20.7) och Krista Pellikka (17.8).</p><p>Evenemanget bjuder in folk att sjunga oberoende av sin sångbakgrund. Erfarna sångledare och en gemenskapsanda gör dessa röstöppningstillfällen till ett tryggt sätt att inleda en ny allsånghobby.</p><p>Som sångbok används Sulasolin Helsingin piiri ry:s allsångsbok, som kan köpas på plats i början av evenemangen.</p><p>Välkommen med och sjunga tillsammans!</p>",
                "en": "<p>The singalongs of Sulasol's Helsinki branch have different hosts and themes, but one thing is constant: the joy of singing together!</p><p>The singalongs will be hosted by Kati Sannelvuo (25 May), Susanna Lukkarinen (15 June), Ulla Hillebrandt & Kari Pennanen (20 July) and Krista Pellikka (17 August).</p><p>The event invites everyone to sing regardless of whether they have any background in singing. The experienced hosts and community spirit make these vocal warm-up events a comfortable way to start a new group singing hobby.</p><p>A songbook published by Sulasol’s Helsinki branch will be used during the singalong. You can purchase the book at the event.</p><p>Come and sing together with others!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D0603FF16EFC2E8B259DFDA6F4D2BF7B/Sulasol_yhteislaulutuokio",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D0603FF16EFC2E8B259DFDA6F4D2BF7B/Sulasol_allsang",
                "en": "http://www.espanlava.fi/en/events/event/D0603FF16EFC2E8B259DFDA6F4D2BF7B/Sulasol_Singalong"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68771/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68768",
            "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/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": 2089161,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T08:14:35.571433Z",
                    "last_modified_time": "2026-05-07T08:14:35.571447Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786038.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2089161/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T08:14:35.478098Z",
            "last_modified_time": "2026-05-20T11:14:01.631823Z",
            "date_published": null,
            "start_time": "2026-06-15T13:15: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": "Kesäinen jumppatuokio",
                "sv": "Sommargympa",
                "en": "Summer exercise session"
            },
            "short_description": {
                "fi": "Helsingin kaupungin liikuntapalvelut kutsuu mukaan jumppaamaan leppoisasti yhdessä! Tapahtuma on tarkoitettu kaikenikäisille ja -kuntoisille.",
                "sv": "Helsingfors stads idrottstjänster bjuder in dig till ett avslappnat gemensamt träningspass!",
                "en": "City of Helsinki Sports Services invite you to enjoy a relaxed workout together!"
            },
            "description": {
                "fi": "<p>Helsingin kaupungin liikuntapalvelut kutsuu mukaan jumppaamaan leppoisasti yhdessä! Tapahtuma on tarkoitettu kaikenikäisille ja -kuntoisille.</p><p>Tästä hyvä verryttely heti perään alkavaa yhteislaulutapahtumaa varten!</p>",
                "sv": "<p>Helsingfors stads idrottstjänster bjuder in dig till ett avslappnat gemensamt träningspass!</p><p>Evenemanget är avsett för personer i alla åldrar och alla konditionsnivåer.</p><p>Det här är en bra uppvärmning inför allsången som börjar direkt efteråt!</p>",
                "en": "<p>City of Helsinki Sports Services invite you to enjoy a relaxed workout together!</p><p>The event is for people of all ages and fitness levels.</p><p>This is a good warm-up for the sing-along that starts right afterwards!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/69ADD6A6BF76DBFF783593503D021A78/Kesainen_jumppatuokio",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/69ADD6A6BF76DBFF783593503D021A78/Sommargympa",
                "en": "http://www.espanlava.fi/en/events/event/69ADD6A6BF76DBFF783593503D021A78/Summer_exercise_session"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68768/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69053",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/jouluspektaakkeli-k-18-4161320/"
                    },
                    "price": {
                        "fi": "44 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201342,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-20T10:15:32.466229Z",
                    "last_modified_time": "2026-05-20T10:15:32.466249Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792523.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201342/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-20T10:15:32.355239Z",
            "last_modified_time": "2026-05-20T10:15:32.648991Z",
            "date_published": null,
            "start_time": "2026-12-11T18: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": "JouluSpektaakkeli: enemmän kuin pikkujoulut"
            },
            "short_description": {
                "fi": "Tänä vuonna joulutunnelma nostetaan uudelle tasolle, kun lavalle astuu kolmen huippuviihdyttäjän trio, joka tarjoilee naurua, taikuutta ja säihkettä samassa paketissa."
            },
            "description": {
                "fi": "<p>Tänä vuonna joulutunnelma nostetaan uudelle tasolle, kun lavalle astuu kolmen huippuviihdyttäjän trio, joka tarjoilee naurua, taikuutta ja säihkettä samassa paketissa.</p><p><b>Ali Jahangiri</b> toimii illan isäntänä, tämän koomikon vauhdikas meno pitää huolen siitä, että joulumieli nousee varmasti kattoon, eikä himmaa edes lumikinoksiin.</p><p><b>Pete Poskiparta</b> on mentalismin mestari, jonka katseessa on enemmän salaisuuksia kuin joulupukin lahjapussissa. Luvassa komiikkaa, taikuutta ja täydellistä mystiikkaa.</p><p><b>Divet Show</b> by Marko Vainio: Yksi mies ja kymmeniä hahmoja ja satoja paljetteja. Drag-viihdettä huipputasolla, eli luvassa on tähtiloistoa, joka kirkastaa pimeimmänkin jouluyön.</p><p>Tähtikolmikko takaa koko illan elämyksen, jota muistellaan vielä Nuutinpäivänäkin.<br>Tule mukaan kokemaan joulun säkenöivin show!</p><p>Varmista paikkasi ajoissa ja osta liput nyt!</p><p>Ikäraja: K-18<br>Permanto K18 anniskelualue. Parvekkeella ei anniskelua.</p><p>Kesto n. 2 h 20 min, sisältäen väliajan.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8D6689C9CEDED607D207B7051A717936/JouluSpektaakkeli_enemman_kuin_pikkujoulut"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Wickström & Thibblin Comedy Ab"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69053/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69051",
            "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": 2201330,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-19T07:16:13.851561Z",
                    "last_modified_time": "2026-05-19T07:16:13.851574Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792477.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201330/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-19T07:16:13.741635Z",
            "last_modified_time": "2026-05-20T10:15:28.655526Z",
            "date_published": null,
            "start_time": "2026-08-21T14: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": "Petteri Sariola",
                "sv": "Petteri Sariola",
                "en": "Petteri Sariola"
            },
            "short_description": {
                "fi": "Petteri Sariola tunnetaan energisistä live-esiintymisistään, vahvoista sävellyksistään ja perkussiivisesta soittotyylistään akustisella kitaralla."
            },
            "description": {
                "fi": "<p>Petteri Sariola tunnetaan energisistä live-esiintymisistään, vahvoista sävellyksistään ja perkussiivisesta soittotyylistään akustisella kitaralla.</p><p>Virtuoottinen kitaristi ja laulaja-lauluntekijä tarttui soittimeen seitsemän vuoden iässä, ja useiden epäonnistuneiden bändikokeilujen jälkeen hän kehitti oman tyylinsä, joka jäljittelee kokonaisen yhtyeen soundia yhdellä kitaralla.</p><p>Sariola on julkaissut neljä sooloalbumia, soittanut yli tuhat keikkaa Euroopassa, USA:ssa ja Japanissa sekä saavuttanut miljoonia katsojia YouTube-kanavallaan. Hänen viides studioalbuminsa <i>Voyager</i> julkaistiin syksyllä 2025. Levy aloitti uuden moniosaisen rock-oopperakokonaisuuden, jonka seuraava osa tulee lähivuosina.</p><p>Sariola yhdistää musiikissaan luontevasti rockin ja taidemusiikin elementtejä. Hänen omista sävellyksistään koostuvan levytrilogian viimeinen osa, <i>Resolution</i> (2017), sai Helsingin Sanomien arviossa viisi tähteä. Hänelle on myönnetty Nokia Young Talent -stipendi, Helsinki Funk Awards -kunniamaininta ja City-lehden Vuoden kitaristi -tunnustus. Hän on haastateltavana merkittävissä kitarajulkaisuissa mm. Akustik Gitarre -lehdessä ja Yhdysvaltalaisessa Guitar Player -lehdessä. Hän on toiminut lämmittelijänä mm. Tori Amosille (USA), Andy McKeelle (USA) ja Rodrigo y Gabrielalle (MEX) sekä esiintynyt yhdessä Jon Gommin (UK), Mike Dawesin (UK), Elastisen, Robinin ja Jenni Vartiaisen kanssa.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9CC46685CB41FF0B53C79E52CA9E6002/Petteri_Sariola",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/9CC46685CB41FF0B53C79E52CA9E6002/Petteri_Sariola",
                "en": "http://www.espanlava.fi/en/events/event/9CC46685CB41FF0B53C79E52CA9E6002/Petteri_Sariola"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69051/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68763",
            "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": 2084372,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T07:14:03.560681Z",
                    "last_modified_time": "2026-05-07T07:14:03.560694Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789605.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2084372/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T07:14:03.462821Z",
            "last_modified_time": "2026-05-20T10:15:22.617568Z",
            "date_published": null,
            "start_time": "2026-06-11T13: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": "BellaCanta – Open Stage",
                "sv": "BellaCanta – Open Stage",
                "en": "BellaCanta – Open Stage"
            },
            "short_description": {
                "fi": "Vapaus olla mitä vaan! Lauluyhtye BellaCanta tuo Espan lavalle musiikkikavalkadin rakastamisen, ajattelemisen, tuntemisen ja olemisen vapaudesta.",
                "sv": "Frihet att vara vad som helst! Sånggruppen BellaCanta bjuder på en musikkavalkad om friheten att älska, tänka, känna och vara på Esplanadestraden.",
                "en": "Freedom to be whatever you want! The vocal group BellaCanta presents a musical cavalcade about the freedom to love, think, feel and be, all on Espa Stage."
            },
            "description": {
                "fi": "<p>Vapaus olla mitä vaan! Lauluyhtye BellaCanta tuo Espan lavalle musiikkikavalkadin rakastamisen, ajattelemisen, tuntemisen ja olemisen vapaudesta.</p><p>Ohjelmistoon kuuluu niin rytmimusiikkia, pophittejä kuin kotimaista lauluyhtyemusiikkia. Laulamme pääosin a cappella -sovituksia, ja esitystä maustetaan kehorytmiikalla, koreografioilla, perkussiosoittimilla tai säestävillä soittimilla.</p><p>BellaCanta on helsinkiläinen, 16-henkinen lauluyhtye. Taiteellisena johtajana toimii laulupedagogi (MuM) Saija Kemppainen.</p>",
                "sv": "<p>Frihet att vara vad som helst! Sånggruppen BellaCanta bjuder på en musikkavalkad om friheten att älska, tänka, känna och vara på Esplanadestraden.</p><p>Såväl rytmmusik, pophits som finsk sånggruppsmusik står på programmet. Gruppen sjunger huvudsakligen a cappella-arrangemang och uppträdandet kryddas med kroppsrytmer, koreografi, perkussionsinstrument eller ackompanjerande instrument.</p><p>BellaCanta är en 16-manna sånggrupp från Helsingfors. Saija Kemppainen, sångpedagog (MuM), fungerar som konstnärlig ledare.</p>",
                "en": "<p>Freedom to be whatever you want! The vocal group BellaCanta presents a musical cavalcade about the freedom to love, think, feel and be, all on Espa Stage.</p><p>The programme includes rhythm music, pop hits and Finnish vocal ensemble music. The group will mainly be singing a cappella arrangements, and the performances will be spiced up with body rhythms, choreography, percussion or accompanying instruments.</p><p>BellaCanta is a 16-piece vocal group from Helsinki. The artistic director is Saija Kemppainen, a singing teacher (MMus).</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DF4FD8E11DC99EEACE600E610F01E042/BellaCanta_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DF4FD8E11DC99EEACE600E610F01E042/BellaCanta_",
                "en": "http://www.espanlava.fi/en/events/event/DF4FD8E11DC99EEACE600E610F01E042/BellaCanta_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68763/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68760",
            "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": 2084371,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T07:14:03.177231Z",
                    "last_modified_time": "2026-05-07T07:14:03.177246Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787445.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2084371/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T07:14:03.065082Z",
            "last_modified_time": "2026-05-20T10:15:22.449116Z",
            "date_published": null,
            "start_time": "2026-06-11T11: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": "Laula kanssamme Espalla – Allsång på Espa",
                "sv": "Laula kanssamme Espalla – Allsång på Espa",
                "en": "Sing with us in Esplanade Park – Allsång på Espa"
            },
            "short_description": {
                "fi": "Yhteislaulun iloa kesäisellä Espalla!",
                "sv": "Kom och sjung allsång på somriga Esplanaden!",
                "en": "The joy of singing together in summer in Esplanade Park!"
            },
            "description": {
                "fi": "<p>Yhteislaulun iloa kesäisellä Espalla!</p><p>Laulamme rakkaita lauluja Junnu Vainiosta ABBAan ja euroviisuklassikoista rakastettuihin valsseihin, uudempia hittejä unohtamatta! Laulukielinä suomi, ruotsi ja englanti.</p><p>Musiikissa: <br>J-Men: Joona Vallenius, Jere Valkonen, Johannes Erkkilä<br>Enna&Evi: Enna Snellman, Eveliina Saikkonen</p>",
                "sv": "<p>Kom och sjung allsång på somriga Esplanaden!</p><p>Tillsammans sjunger vi älskade låtar – från Junnu Vainio och ABBA till ikoniska Eurovisionlåtar och tidlösa valser, utan att glömma nyare hits. Vi sjunger på finska, svenska och engelska.</p>",
                "en": "<p>The joy of singing together in summer in Esplanade Park!</p><p>We will sing beloved songs from Junnu Vainio to ABBA and from Eurovision classics to evergreen waltzes, not forgetting newer hits! The songs will be sung in Finnish, Swedish and English.</p><p>Music by: <br>J-Men: Joona Vallenius, Jere Valkonen, Johannes Erkkilä<br>Enna&Evi: Enna Snellman, Eveliina Saikkonen</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1D70B0396CC1AE6F78B2F5687DFAA889/Laula_kanssamme_Espalla",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1D70B0396CC1AE6F78B2F5687DFAA889/Laula_kanssamme_Espalla",
                "en": "http://www.espanlava.fi/en/events/event/1D70B0396CC1AE6F78B2F5687DFAA889/Sing_with_us_in_Esplanade_Park"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68760/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68764",
            "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": 2089154,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T08:14:33.435223Z",
                    "last_modified_time": "2026-05-07T08:14:33.435240Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785479.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2089154/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T08:14:33.322386Z",
            "last_modified_time": "2026-05-20T10:15:22.166670Z",
            "date_published": null,
            "start_time": "2026-06-10T15: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": "Ulla Pirttijärvi & Ulda",
                "sv": "Ulla Pirttijärvi & Ulda",
                "en": "Ulla Pirttijärvi & Ulda"
            },
            "short_description": {
                "fi": "Ulla Pirttijärvi & Ulda esittää modernia saamelaismusiikkia, jossa perinne ja nykyaika kohtaavat herkällä ja voimakkaalla tavalla.",
                "sv": "Ulla Pirttijärvi & Ulda framför modern samisk musik, där tradition och modernitet möts på ett känsligt och kraftfullt sätt.",
                "en": "Ulla Pirttijärvi & Ulda perform modern Sámi music where tradition and contemporary expression meet with both subtlety and power."
            },
            "description": {
                "fi": "<p>Ulla Pirttijärvi & Ulda esittää modernia saamelaismusiikkia, jossa perinne ja nykyaika kohtaavat herkällä ja voimakkaalla tavalla.</p><p>Yhtyeen konsertti avaa kuulijalle pohjoisen luonnon maisemia ja siihen kietoutuvia teemoja luoden musiikillisen vuoropuhelun perinteisen saamelaiskulttuurin ja nykymaailman välille. Esityksen ytimessä on joiku ja sen rikas, sävykäs ja lähes maaginen äänimaailma, jolle akustinen soitinsäestys antaa tilaa hengittää ja loistaa. Herkkä mutta vahva kokonaisuus kantaa kuulijan ajasta ja paikasta toiseen.</p><p>Yhtye on julkaissut albumit <i>Ulda</i> (2012) ja <i>Roijk</i> (2018), ja esiintynyt vuodesta 2009 lähtien laajasti Suomen ja Pohjoismaiden lisäksi muun muassa Yhdysvalloissa, Saksassa ja Ranskassa. Espan lavalla juhlistetaan yhtyeen uuden albumin julkaisua.</p><p>Ulla Pirttijärvi & Ulda-joavkku konsearttas beassat gullat árbevirolaš ja ođđaáigásaš musihka gulahallama. Konsearta buktá ovdan erenomážit temáid, mat laktásit davvi lundui.</p><p>Instrumeanttat láhčet saji luođi viiddes ja magihkalaš jietnamáilbmái ja duvdet dan. Jagi 2012 almmustuvai debyhtta-CD “Ulda” ja jagi 2016 nubbi skearru “Roijk”. Joavku lea čuojahan omd. Suomas, davviriikkain, USA:s, Duiskkas, Frankriikkas.</p>",
                "sv": "<p>Ulla Pirttijärvi & Ulda framför modern samisk musik, där tradition och modernitet möts på ett känsligt och kraftfullt sätt.</p><p>Bandets konsert öppnar upp den nordliga naturens landskap och de teman som flätas samman med den, vilket skapar en musikalisk dialog mellan den traditionella samiska kulturen och dagens värld. I centrum för framförandet står jojken och dess rika, nyanserade och nästan magiska ljudvärld, som det akustiska instrumentackompanjemanget ger utrymme för att andas och lysa. En skör men stark helhet bär lyssnaren från en tid och plats till en annan.</p><p>Bandet har gett ut albumen <i>Ulda</i> (2012) och <i>Roijk</i> (2018), och har sedan 2009 uppträtt inte bara i Finland och Norden, utan också bland annat i USA, Tyskland, Frankrike. Bandets nya skivsläpp firas på Esplanadestraden.</p>",
                "en": "<p>Ulla Pirttijärvi & Ulda perform modern Sámi music where tradition and contemporary expression meet with both subtlety and power.</p><p>Their concert opens a window into the landscapes of the North, exploring themes deeply connected to nature while creating a musical dialogue between traditional Sámi culture and the present day.</p><p>At the heart of the performance is the joik, its rich, nuanced and almost magical sonic palette. The acoustic instrumentation gives space for the voice to breathe and resonate, supporting the unique sound world of the joik. The result is an intimate yet powerful experience that carries the listener across time and place.</p><p>The group has released two albums, <i>Ulda</i> (2012) and <i>Roijk</i> (2018), and has been performing since 2009 across Finland and the Nordic countries, as well as internationally in the United States, Germany and France. The concert at Espa celebrates the release of their new album.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D7551916EEDF827EC379B80CC3F30A18/Ulla_Pirttijarvi_Ulda_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D7551916EEDF827EC379B80CC3F30A18/Ulla_Pirttijarvi_Ulda_",
                "en": "http://www.espanlava.fi/en/events/event/D7551916EEDF827EC379B80CC3F30A18/Ulla_Pirttijarvi_Ulda_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68764/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68762",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2084369,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T07:14:02.577621Z",
                    "last_modified_time": "2026-05-07T07:14:02.577637Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785715.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2084369/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-07T07:14:02.460438Z",
            "last_modified_time": "2026-05-20T10:15:21.867168Z",
            "date_published": null,
            "start_time": "2026-06-10T13: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": "Laulavat tiedekysymykset",
                "sv": "Laulavat tiedekysymykset",
                "en": "Laulavat tiedekysymykset"
            },
            "short_description": {
                "fi": "Miksi porot eivät sano mitään? Mitä päivänkakkara tekee öisin? Entä Miksi mummo ei nuku talviunta?",
                "sv": "Varför säger inte renarna något? Vad gör prästkragen under nätterna? Och varför sover inte mormor vintersömn?",
                "en": "Why don't the reindeer say anything? What does a daisy do at night? And why doesn't Grandma hibernate?"
            },
            "description": {
                "fi": "<p>Miksi porot eivät sano mitään? Mitä päivänkakkara tekee öisin? Entä Miksi mummo ei nuku talviunta?</p><p>Laulavat tiedekysymykset on lasten- ja koko perheen musiikkia esittävä bändi, joka yhdistää musiikin ja tiedon iloiseksi kokonaisuudeksi.</p><p>Uusi albumi Laulavat tiedekysymykset 2 julkaistiin helmikuussa 2026. Bändiin kuuluvat Mari Rantasila, Suvi Isotalo, Jouni Raatikainen, Antti Kokkola ja Juha Räsänen.</p><p>Laulut ovat saaneet innoituksensa Helsingin Sanomien Lasten tiedekysymykset -palstasta, jossa lapset kysyvät ja eri alojen tutkijat vastaavat.</p><p>Ensimmäinen levy julkaistiin 2021. Se oli Emma-ehdokkaana ja palkittiin lastenmusiikin omassa Jellonagaalassa.</p><p>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p>",
                "sv": "<p>Varför säger inte renarna något? Vad gör prästkragen under nätterna? Och varför sover inte mormor vintersömn?</p><p>Barnkonsert på finska.</p><p>Laulavat tiedekysymykset är ett band som framför barn- och familjemusik som förenar musiken och kunskapen till en glädjefylld helhet. Det nya albumet Laulavat tiedekysymykset 2 gavs ut i februari 2026. Bandet består av Mari Rantasila, Suvi Isotalo, Jouni Raatikainen, Antti Kokkola och Juha Räsänen.</p><p>Sångerna är inspirerade av Helsingin Sanomats Lasten tiedekysymykset-spalt, där barn ställer frågor och forskare från olika branscher besvarar dem.</p><p>Första skivan släpptes 2021. Den var Emma-kandidat och prisbelönades på Jellonagaala, som är barnmusikens egen gala.</p><p>Framförandet genomförs i samarbete med Konsertcentralen.</p>",
                "en": "<p>Why don't the reindeer say anything? What does a daisy do at night? And why doesn't Grandma hibernate?</p><p>Children’s concert in Finnish.</p><p>Laulavat tiedekysymykset (‘Singing science questions’) is a band of children's and family music that combines music and knowledge into a joyful mix. Their new album Laulavat tiedekysymykset 2 was released in February 2026. The band consists of Mari Rantasila, Suvi Isotalo, Jouni Raatikainen, Antti Kokkola and Juha Räsänen.</p><p>The songs are inspired by the children’s science question column in the Helsingin Sanomat newspaper, where children ask questions and scientists from different fields answer them.</p><p>The group’s first album was released in 2021. It was nominated for an Emma Award and was awarded at Jellonagaala, a children's music award show.</p><p>The performance is produced in cooperation with Concert Centre Finland.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E42224A6FD1D112A86A95FAC7049504C/Laulavat_tiedekysymykset",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/E42224A6FD1D112A86A95FAC7049504C/Laulavat_tiedekysymykset",
                "en": "http://www.espanlava.fi/en/events/event/E42224A6FD1D112A86A95FAC7049504C/Laulavat_tiedekysymykset"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68762/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68759",
            "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": 2084368,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T07:14:02.030575Z",
                    "last_modified_time": "2026-05-07T07:14:02.030589Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785965.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2084368/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T07:14:01.930701Z",
            "last_modified_time": "2026-05-20T10:15:21.565436Z",
            "date_published": null,
            "start_time": "2026-06-09T14: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 Pickin' Crew",
                "sv": "The Pickin' Crew",
                "en": "The Pickin' Crew"
            },
            "short_description": {
                "fi": "Bluegrass-musiikkia Espan lavalla soittaa yhtye, jonka yhteenlaskettujen hiusten määrä on kääntäen verrannollinen kokemuksen määrään.",
                "sv": "Bluegrass-musik spelas på Esplanadestraden av ett band vars sammanlagda hårmängd omvänt motsvarar mängden erfarenhet.",
                "en": "A band whose combined hair is inversely proportional to the amount of experience will be bringing their bluegrass music to Espa Stage."
            },
            "description": {
                "fi": "<p>Bluegrass-musiikkia Espan lavalla soittaa yhtye, jonka yhteenlaskettujen hiusten määrä on kääntäen verrannollinen kokemuksen määrään.</p><p>Yhtye koostuu pitkän linjan suomalaisista bluegrass-vaikuttajista ja kyseisen genren kiistattomista veteraaneista. Bluegrass on näille maailman pohjoisempien appalakkien kasvateille elämäntapa, josta on vaikea, jollei suorastaan mahdoton irtautua.</p><p>Avarakatseisuus antaa välillä sijaa pienille syrjähypyille genrerajojen ulkopuolelle ja niinpä repertuaariin kuuluvat niin alan mehukkaimmat klassikot kuin vieraammatkin hedelmät.</p><p>Kokoonpano:<br>Tauri Oksala – banjo, laulu<br>Jonni Kuutsa – mandoliini<br>Kalle Tuovinen – kitara, laulu<br>Pekka Somerto – dobro, laulu<br>Vesa Vartiainen – basso, laulu</p><p>https://www.youtube.com/watch?v=Ytc2p5CG6x4<br>https://www.youtube.com/watch?v=xCD4onsbo3c</p>",
                "sv": "<p>Bluegrass-musik spelas på Esplanadestraden av ett band vars sammanlagda hårmängd omvänt motsvarar mängden erfarenhet.</p><p>Bandet består av långvariga finska bluegrass-påverkare och obestridda veteraner inom genren. Bluegrass är en livsstil för dessa barn av världens nordligaste del av Appalacherna, som det är svårt eller rentav omöjligt att frigöra sig från.</p><p>Deras vidsynthet tillåter ibland små utvikningar utanför genregränserna, och därför innehåller deras repertoar såväl branschens saftigaste klassiker som mer främmande frukter.</p><p>Sammansättning:<br>Tauri Oksala – banjo, sång<br>Jonni Kuutsa – mandolin<br>Kalle Tuovinen – gitarr, sång<br>Pekka Somerto – dobro, sång<br>Vesa Vartiainen – bas, sång</p><p>https://www.youtube.com/watch?v=Ytc2p5CG6x4<br>https://www.youtube.com/watch?v=xCD4onsbo3c</p>",
                "en": "<p>A band whose combined hair is inversely proportional to the amount of experience will be bringing their bluegrass music to Espa Stage.</p><p>The band consists of long-standing Finnish bluegrass influencers and undisputed veterans of the genre. For these musician, the world’s northernmost Appalachians, bluegrass is a way of life and it is difficult, if not impossible, to break away from it.</p><p>Their open-mindedness occasionally allows for small digressions outside genre boundaries, meaning that their repertoire also includes both the industry's juiciest classics and more exotic fruit.</p><p>Line-up:<br>Tauri Oksala – banjo, vocals<br>Jonni Kuutsa – mandolin<br>Kalle Tuovinen – guitar, vocals<br>Pekka Somerto – dobro, vocals<br>Vesa Vartiainen – bass, vocals</p><p>https://youtu.be/Ytc2p5CG6x4<br>https://youtu.be/xCD4onsbo3c</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A6D11B94C1C9162C410764A203891350/The_Pickin_Crew",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/A6D11B94C1C9162C410764A203891350/The_Pickin_Crew",
                "en": "http://www.espanlava.fi/en/events/event/A6D11B94C1C9162C410764A203891350/The_Pickin_Crew"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68759/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68737",
            "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": 2084367,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T07:14:01.686516Z",
                    "last_modified_time": "2026-05-07T07:14:01.686531Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785964.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2084367/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T07:14:01.580050Z",
            "last_modified_time": "2026-05-20T08:13:43.983371Z",
            "date_published": null,
            "start_time": "2026-06-09T13: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 Nervous Buffalo String Band",
                "sv": "The Nervous Buffalo String Band",
                "en": "The Nervous Buffalo String Band"
            },
            "short_description": {
                "fi": "Keski-Suomen kovimmat kielenkiristäjät sivakoivat bluegrass-musiikin liukkaita latuja niin perinteisellä kuin vapaallakin tyylillä.",
                "sv": "Mellersta Finlands tuffaste strängspännarna åker på bluegrassmusikens hala spår i såväl traditionell som fri stil.",
                "en": "Central Finland's toughest tongue twisters skirt the slippery slopes of bluegrass music in both traditional and free styles."
            },
            "description": {
                "fi": "<p>Keski-Suomen kovimmat kielenkiristäjät sivakoivat bluegrass-musiikin liukkaita latuja niin perinteisellä kuin vapaallakin tyylillä.</p><p>Instrumenttien tiukka tikutus ja vahva, neliääniseksikin kasvava stemmalaulu tarjoavat autenttisen live-elämyksen sitä parasta Ameriikan tanssimusiikkia.</p><p>Bluegrass-kirjaston vanhat ja tulevat klassikot sekä bändin oma Jyväskylä/Kentucky-peltomaata kuokkiva tuotanto pyöräyttävät kuulijalta ympäri niin sukat kuin stetsoninkin.</p><p>Tervetuloa tamppaamaan!</p><p>Kokoonpano:<br>Jani Suontausta – laulu, kitara<br>Tatu Lehto – kitara, laulu<br>Juho Kosonen – mandoliini, laulu<br>Hessu Isoniemi – banjo, laulu<br>Janne Maunu – basso, laulu</p><p>https://www.youtube.com/watch?v=ZK597qV9ytU<br>https://www.youtube.com/watch?v=sIaDhjcqQOE</p>",
                "sv": "<p>Mellersta Finlands tuffaste strängspännarna åker på bluegrassmusikens hala spår i såväl traditionell som fri stil.</p><p>Tätt spelande av instrument och den starka stämsången, som växer till fyra stämmor, ger en autentisk liveupplevelse av den bästa amerikanska dansmusiken. Gamla och framtida klassiker från bluegrassbiblioteket och bandets egen produktion, som gräftar åkermarken i Jyväskylä/Kentucky, får såväl publikens strumpor som stetsonhattar att snurra.</p><p>Välkommen att trampa!</p><p>Sammansättning:<br>Jani Suontausta – sång, gitarr<br>Tatu Lehto – gitarr, sång<br>Juho Kosonen – mandolin, sång<br>Hessu Isoniemi – banjo, sång<br>Janne Maunu – bas, sång</p><p>https://youtu.be/ZK597qV9ytU<br>https://youtu.be/sIaDhjcqQOE</p>",
                "en": "<p>Central Finland's toughest tongue twisters skirt the slippery slopes of bluegrass music in both traditional and free styles.</p><p>The tight ticking of the instruments and the strong harmonies, which grow to four-part singing, offer an authentic live experience of the best American dance music. Old and future classics from the bluegrass catalogue and the band's own works, which sound like the Jyväskylä/Kentucky farmland, will make your socks and stetsons spin.</p><p>Come along and put a step to your boots!</p><p>Line-up:<br>Jani Suontausta – vocals, guitar<br>Tatu Lehto – guitar, vocals<br>Juho Kosonen – mandolin, vocals<br>Hessu Isoniemi – banjo, vocals<br>Janne Maunu – bass, vocals</p><p>https://youtu.be/ZK597qV9ytU<br>https://youtu.be/sIaDhjcqQOE</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9397DB77671D645B3E4504B8D05C0090/The_Nervous_Buffalo_String_Band",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/9397DB77671D645B3E4504B8D05C0090/The_Nervous_Buffalo_String_Band",
                "en": "http://www.espanlava.fi/en/events/event/9397DB77671D645B3E4504B8D05C0090/The_Nervous_Buffalo_String_Band"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68737/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68769",
            "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": 2089152,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T08:14:31.916174Z",
                    "last_modified_time": "2026-05-07T08:14:31.916189Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787938.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2089152/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T08:14:31.810285Z",
            "last_modified_time": "2026-05-20T08:13:43.350818Z",
            "date_published": null,
            "start_time": "2026-06-06T11: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": "Mardi Tickle – Open Stage",
                "sv": "Mardi Tickle – Open Stage",
                "en": "Mardi Tickle – Open Stage"
            },
            "short_description": {
                "fi": "Mitä tapahtuu, kun pianisti päättää ryhtyä rocktähdeksi? Discon, popin ja rockin glitterinen ilotulitus todistaa, ettei rocktähteys ole soittimesta kiinni!",
                "sv": "Vad händer när en pianist bestämmer sig för att bli rockstjärna? Ett glittrande fyrverkeri av disco, pop och rock bevisar att rockstjärnstatusen inte bara handlar om instrumentet!",
                "en": "What happens when a pianist decides to become a rock star—without a guitar? A glittering firework of disco, pop, and rock is born, proving that rock stardom isn’t about the instrument."
            },
            "description": {
                "fi": "<p>Mitä tapahtuu, kun pianisti päättää ryhtyä rocktähdeksi? Discon, popin ja rockin glitterinen ilotulitus todistaa, ettei rocktähteys ole soittimesta kiinni!</p><p>Mardi Tickle tuo Espan lavalle säihkyvää poprockia, jossa disco-estetiikka, leikkisyys ja vahva live-energia kohtaavat. Kolmen hengen kokoonpano saa yleisön liikkeelle tarttuvilla melodioilla ja tanssittavalla soundillaan. Vuodesta 2018 lähtien musiikkia tehnyt Mardi Tickle on julkaissut albumin ja useita EP:itä – tuoreimpana vuonna 2025 ilmestynyt <i>Glitter Revolution</i>.</p>",
                "sv": "<p>Vad händer när en pianist bestämmer sig för att bli rockstjärna? Ett glittrande fyrverkeri av disco, pop och rock bevisar att rockstjärnstatusen inte bara handlar om instrumentet!</p><p>Mardi Tickle bjuder på gnistrande poprock på Esplanadestraden, där discoestetik, lekfullhet och stark liveenergi möts. Trion får publiken att röra på sig med sina medryckande melodier och dansanta sound. Mardi Tickle, som har gjort musik sedan 2018, har släppt ett album och flera EP-skivor – senast <i>Glitter Revolution</i> som utkom 2025.</p>",
                "en": "<p>What happens when a pianist decides to become a rock star—without a guitar? A glittering firework of disco, pop, and rock is born, proving that rock stardom isn’t about the instrument.</p><p>Mardi Tickle brings shimmering pop rock to the Espa stage, where disco aesthetics, playfulness, and strong live energy come together. This three-piece band gets the crowd moving with catchy melodies and danceable grooves. Making music since 2018, Mardi Tickle has released an album and several EPs, with the latest, <i>Glitter Revolution</i>, out in 2025.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1AEC861B3CA8F9A00EE7545BE9C627E1/Mardi_Tickle",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1AEC861B3CA8F9A00EE7545BE9C627E1/Mardi_Tickle",
                "en": "http://www.espanlava.fi/en/events/event/1AEC861B3CA8F9A00EE7545BE9C627E1/Mardi_Tickle"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68769/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68766",
            "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": 2089151,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T08:14:31.327366Z",
                    "last_modified_time": "2026-05-07T08:14:31.327379Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785728.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2089151/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T08:14:31.224552Z",
            "last_modified_time": "2026-05-20T08:13:43.003263Z",
            "date_published": null,
            "start_time": "2026-06-05T14: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": "INGINMAA",
                "sv": "INGINMAA",
                "en": "INGINMAA"
            },
            "short_description": {
                "fi": "Anna Inginmaan ajaton pop on täynnä melodraamaa, herkkyyttä, tummia varjoja ja vahvoja melodioita.",
                "sv": "Anna Inginmaas tidlösa popmusik är full av melodrama, känslighet, mörka skuggor och starka melodier.",
                "en": "Anna Inginmaa's timeless pop is full of melodrama, sensitivity, dark shadows and strong melodies."
            },
            "description": {
                "fi": "<p>Anna Inginmaan ajaton pop on täynnä melodraamaa, herkkyyttä, tummia varjoja ja vahvoja melodioita.</p><p>Musiikissa on kaikuja 70-luvun ranskalaisesta popista, trip hopista ja elokuvallisista tunnelmista, mutta retroilevan tyylileikin sijaan fokus on Inginmaan tulkitsijapersoonassa ja hänen musiikintekijyydessään. Levy on henkilökohtainen, rehellinen ja mielikuvituksen vapaata leikkiä.</p><p>Levyn tuotti muun muassa Lyyti-, Arppa- ja J. Karjalainen -yhtyeistä tuttu muusikko-tuottaja Antti Vuorenmaa. Mukana on kokonaan Inginmaan säveltämiä sekä yhdessä kitaristi Pekka Laineen ja Kyösti Salokorven kanssa kirjoitettuja kappaleita. Teksteistä vastaavat laulaja-muusikko Maritta Kuula, Finlandia-palkittu kirjailija Rosa Liksom, Rosita Luu -yhtyeestä tuttu Merita Berg ja Kauko Röyhkä.</p><p>Espan lavan keikkasetti sisältää, uusien INGINMAA-biisien lisäksi, jokusen maukkaan coverin sekä myös muutaman Inginmaa/Hypnomen -kappaleen.</p><p>INGINMAA-keikkakokoonpano on:</p><p>Anna Inginmaa – laulu<br>Otto Porkkala – kitara<br>Tyko Vaskivuori – koskettimet<br>Ilkka Tuovinen – basso<br>Ville Luukkonen – rummut</p><p>https://www.youtube.com/watch?v=Ts92FCOvUC8</p>",
                "sv": "<p>Anna Inginmaas tidlösa popmusik är full av melodrama, känslighet, mörka skuggor och starka melodier.</p><p>Musiken har influenser av fransk 70-talspop, triphop och filmiska atmosfärer, men istället för retrostil ligger fokus på Inginmaas uttolkarpersonlighet och hennes musikskapande. Albumet är personligt, ärligt och en fri fantasifull lek.</p><p>Albumet producerades av musikern och producenten Antti Vuorenmaa, som är känd från bland annat banden Lyyti, Arppa och J. Karjalainen. Låtarna är helt komponerade av Inginmaa och skrivna tillsammans med gitarristen Pekka Laine och Kyösti Salokorpi. Texterna är skrivna av sångerskan och musikern Maritta Kuula, den Finlandia-belönade författaren Rosa Liksom, Merita Berg från Rosita Luu-bandet och Kauko Röyhkä.</p><p>Utöver de nya INGINMAA-låtarna innehåller spelningssetet på Esplanadestraden några läckra coverlåtar och även några Inginmaa/Hypnomen-låtar.</p><p>INGINMAA-sammansättningen består av:<br>Anna Inginmaa – sång<br>Otto Porkkala – gitarr<br>Tyko Vaskivuori – keyboard<br>Ilkka Tuovinen – bas<br>Ville Luukkonen – trummor</p>",
                "en": "<p>Anna Inginmaa's timeless pop is full of melodrama, sensitivity, dark shadows and strong melodies.</p><p>The music echoes with 70s French pop, trip hop and cinematic atmospheres, but instead of playing around with a retro style, the focus is on Inginmaa's interpretive personality and her artistry. Their album is personal and honest and features free play for the imagination.</p><p>The album was produced by Musician-Producer Antti Vuorenmaa, who is known from bands such as Lyyti, Arppa and J. Karjalainen. The album includes songs entirely composed by Inginmaa and songs written together with Guitarist Pekka Laine and Kyösti Salokorvi. The lyrics are by Singer-Musician Maritta Kuula, Finlandia Prize-winning Author Rosa Liksom, Merita Berg of Rosita Luu and Kauko Röyhkä.</p><p>In addition to the new INGINMAA songs, the Espa Stage set will linclude some delightful covers and also a few Inginmaa/Hypnomen songs.</p><p>The INGINMAA concert line-up is:<br>Anna Inginmaa – vocals<br>Otto Porkkala – guitar<br>Tyko Vaskivuori – keyboards<br>Ilkka Tuovinen – bass<br>Ville Luukkonen – drums</p><p>https://www.youtube.com/watch?v=Ts92FCOvUC8</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1E87F3CC024481679608B49D542A8CC5/INGINMAA",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1E87F3CC024481679608B49D542A8CC5/INGINMAA",
                "en": "http://www.espanlava.fi/en/events/event/1E87F3CC024481679608B49D542A8CC5/INGINMAA"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68766/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68761",
            "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": 2084366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T07:14:00.338877Z",
                    "last_modified_time": "2026-05-07T07:14:00.338903Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774161.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2084366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T07:14:00.209198Z",
            "last_modified_time": "2026-05-20T08:13:42.745954Z",
            "date_published": null,
            "start_time": "2026-06-05T11: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": "MIL-Espa: Rakuunasoittokunta",
                "sv": "MiL-Espa: Dragonmusikkåren",
                "en": "MIL-Espa: The Dragoon Band"
            },
            "short_description": {
                "fi": "MIL-Espan lavalla Rakuunasoittokunta",
                "sv": "Dragonmusikkåren på scenen vid MIL-Espa!",
                "en": "The Dragoon Band on the MIL-Espa stage!"
            },
            "description": {
                "fi": "<p>MIL-Espan lavalla Rakuunasoittokunta</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa. Viihteelliset konsertit järjestetään Espan lavalla kesäperjantaisin ja lavan ottavat vuorollaan haltuunsa sotilassoittokuntien eri kokoonpanot ympäri Suomen.</p><p>Musiikillinen anti vaihtelee, ja tarjolla voi olla kokoonpanosta riippuen klassista puhallinmusiikkia, big band -musiikkia, perinteistä marssimusiikkia ja viihdemusiikkia - tai kaikkea siltä väliltä! Esiintyjinä ovat kuitenkin aina sotilassoittajat tai varusmiespalvelustaan soittokunnassa suorittavat varusmiehet.</p><p>Konsertteihin on vapaa pääsy, tervetuloa!</p>",
                "sv": "<p>Dragonmusikkåren på scenen vid MIL-Espa!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadparken på somrarna sedan 1927. De underhållande konserterna ordnas på sommarfredagar på Esplanadestraden, och scenen intas turvis av militärkårernas olika sammansättningar från olika håll i Finland.</p>",
                "en": "<p>The Dragoon Band on the MIL-Espa stage!</p><p>MIL-Espa summer park concerts have been taking place in Esplanade Park since 1927. The entertaining concerts are held on the Espa Stage on summer Fridays, with performances by different military band ensembles from across Finland.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/EEFD51492FBA2FB0265D62F7B8223579/MIL-Espa_Rakuunasoittokunta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/EEFD51492FBA2FB0265D62F7B8223579/MiL-Espa_Dragonmusikkaren",
                "en": "http://www.espanlava.fi/en/events/event/EEFD51492FBA2FB0265D62F7B8223579/MIL-Espa_The_Dragoon_Band_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68761/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}