Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
Full-text search
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
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
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=18
{ "meta": { "count": 22659, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=19", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=17" }, "data": [ { "id": "kulke:69019", "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": 2201281, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T09:14:03.838242Z", "last_modified_time": "2026-05-13T09:14:03.838263Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782099.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201281/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-13T09:14:03.723383Z", "last_modified_time": "2026-05-29T13:13:36.156943Z", "date_published": null, "start_time": "2026-08-17T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C60BE1A8B53761A1C7F86335635A124E/Sulasol_yhteislaulutuokio", "sv": "http://www.espanlava.fi/sv/evenemang/event/C60BE1A8B53761A1C7F86335635A124E/Sulasol_allsang", "en": "http://www.espanlava.fi/en/events/event/C60BE1A8B53761A1C7F86335635A124E/Sulasol_Singalong" }, "location_extra_info": null, "provider": null, "name": { "fi": "Sulasol: yhteislaulutuokio", "sv": "Sulasol: allsång", "en": "Sulasol Singalong" }, "provider_contact_info": null, "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69019/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69018", "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": 2201280, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T09:14:03.471052Z", "last_modified_time": "2026-05-13T09:14:03.471066Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786039.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201280/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-13T09:14:03.373685Z", "last_modified_time": "2026-05-29T13:13:36.002477Z", "date_published": null, "start_time": "2026-08-17T13: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, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8F669B88C3CB6D5863A756E3BEC03F70/Kesainen_jumppatuokio", "sv": "http://www.espanlava.fi/sv/evenemang/event/8F669B88C3CB6D5863A756E3BEC03F70/Sommargympa", "en": "http://www.espanlava.fi/en/events/event/8F669B88C3CB6D5863A756E3BEC03F70/Summer_exercise_session" }, "location_extra_info": null, "provider": null, "name": { "fi": "Kesäinen jumppatuokio", "sv": "Sommargympa", "en": "Summer exercise session" }, "provider_contact_info": null, "short_description": { "fi": "Helsingin kaupungin liikuntapalvelut kutsuu mukaan jumppaamaan leppoisasti yhdessä!", "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ä!</p><p>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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69018/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68988", "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": 2201243, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T10:13:02.198692Z", "last_modified_time": "2026-05-12T10:13:02.198707Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785546.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201243/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T10:13:02.119306Z", "last_modified_time": "2026-05-29T13:13:33.928073Z", "date_published": null, "start_time": "2026-07-20T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D6FA99F40F87FAB2B573A11A3677F6DB/Jori_Otsa", "sv": "http://www.espanlava.fi/sv/evenemang/event/D6FA99F40F87FAB2B573A11A3677F6DB/Jori_Otsa", "en": "http://www.espanlava.fi/en/events/event/D6FA99F40F87FAB2B573A11A3677F6DB/Jori_Otsa" }, "location_extra_info": null, "provider": null, "name": { "fi": "Jori Otsa", "sv": "Jori Otsa", "en": "Jori Otsa" }, "provider_contact_info": null, "short_description": { "fi": "Jori Otsa orkestereineen esittää Itämeren alueen unohtumattomimpia ja kauneimpia kansanlauluja, laulelmia, romansseja, iskelmiä ja valsseja.", "sv": "Jori Otsa och hans orkester framför de mest oförglömliga och vackra folkvisorna, sångerna, romanserna, schlagrarna och valsarna från Östersjöområdet.", "en": "Jori Otsa and his orchestra will perform the most unforgettable and beautiful folk songs, melodies, romances, shlagers and waltzes from the Baltic Sea region." }, "description": { "fi": "<p>Jori Otsa orkestereineen esittää Itämeren alueen unohtumattomimpia ja kauneimpia kansanlauluja, laulelmia, romansseja, iskelmiä ja valsseja.</p><p>Vuosina 2020–22 Jori Otsa julkaisi kolmen albumin trilogiasarjan. Trilogia perustui legendaarisen virolaisen laulajan Georg Otsin tunnetuksi tekemiin levylauluihin. Kokoonpanon neljäs ja viimeisin albumi ”Valikoituja lauluja sattumanvaraiselle elämälle” julkaistiin lokakuussa 2024.</p><p>Jori Otsan ja hänen orkesterinsa musiikki on akustisilla soittimilla soitettua ja väkevästi tulkittua menneiden aikojen musiikkia, niin keikoilla kuin levyilläkin.</p><p>Orkesterin instrumentaatiossa on harmonikkaa, balalaikkoja, puhaltimia, jousisoittimia ja taustalaulajia.</p><p>Muuttuvat laulut: https://www.youtube.com/watch?v=r4eUgcu8_AI<br>Laulu on iloni ja työni: https://www.youtube.com/watch?v=yCYYYrVaEgY</p>", "sv": "<p>Jori Otsa och hans orkester framför de mest oförglömliga och vackra folkvisorna, sångerna, romanserna, schlagrarna och valsarna från Östersjöområdet.</p><p>Under 2020–22 släppte Jori Otsa en trilogiserie med tre album. Trilogin bygger på de skivsånger som legendariska estniska sångaren Georg Ots gjorde kända. Sammansättningens fjärde och senaste album ”Valikoituja lauluja sattumanvaraiselle elämälle” släpptes i oktober 2024.</p><p>Jori Otsas och hans orkesters musik är musik från det förflutna, spelad på akustiska instrument och kraftfullt tolkad, både live och på skiva.</p><p>Orkesterns instrument omfattar dragspel, balalajkor, blåsinstrument och stråkinstrument, och dessutom har den bakgrundssångare.</p>", "en": "<p>Jori Otsa and his orchestra will perform the most unforgettable and beautiful folk songs, melodies, romances, shlagers and waltzes from the Baltic Sea region.</p><p>In 2020–2022, Jori Otsa released a trilogy of three albums. The trilogy was based on the recordings made famous by the legendary Estonian singer Georg Ots. Their fourth and latest album Valikoituja lauluja sattumanvaraiselle elämälle was released in October 2024.</p><p>The music of Jori Otsa and his orchestra is music of the past, played on acoustic instruments and interpreted powerfully, both live and on record.</p><p>The orchestra's instrumentation includes accordions, balalaikas, wind instruments, strings and backing singers.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68988/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68990", "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": 2201241, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T10:13:01.660599Z", "last_modified_time": "2026-05-12T10:13:01.660612Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791123.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201241/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T10:13:01.590779Z", "last_modified_time": "2026-05-29T13:13:33.685360Z", "date_published": null, "start_time": "2026-07-17T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A422202A36EBD6F66128649F162059E4/Emma_Salokoski_Voices", "sv": "http://www.espanlava.fi/sv/evenemang/event/A422202A36EBD6F66128649F162059E4/Emma_Salokoski_Voices", "en": "http://www.espanlava.fi/en/events/event/A422202A36EBD6F66128649F162059E4/Emma_Salokoski_Voices" }, "location_extra_info": null, "provider": null, "name": { "fi": "Emma Salokoski Voices", "sv": "Emma Salokoski Voices", "en": "Emma Salokoski Voices" }, "provider_contact_info": null, "short_description": { "fi": "Emma Salokoski Voices on lauluyhtye, kuoro ja kollektiivi, joka tekee musiikkia ennakkoluulottomasti ja genrerajoja rikkoen.", "sv": "Emma Salokoski Voices är en sånggrupp, en kör och ett kollektiv som skapar musik utan fördomar och bryter mot genregränser.", "en": "Emma Salokoski Voices is a vocal ensemble, choir and collective that creates music boldly, breaking genre boundaries." }, "description": { "fi": "<p>Emma Salokoski Voices on lauluyhtye, kuoro ja kollektiivi, joka tekee musiikkia ennakkoluulottomasti ja genrerajoja rikkoen.</p><p>Kuoro on tehnyt sound painting -improvisaatiota, luonut modernia kabareeta Sara Mellerin ja Marcus Grothin ohjauksessa ja esiintynyt eri tilaisuuksissa aina Flow Festivalin päälavalta mielenterveyskuntoutujien taidenäyttelyyn.</p><p>Keskiössä on aina kunnianhimoisen rytmimusiikin toteuttaminen omaleimaisella tavalla. Emma Salokoski Voices esiintyy 10-20 hengen kokoonpanoissa.</p><p>Emma Salokoski Voicesin juuret juontavat vuoden 2010 Kuorosota-ohjelmaan ja Emma Salokosken luotsaaman Helsingin joukkueeseen.</p><p>Pieni a cappella -naislauluyhtye on sittemmin kasvanut suuremmaksi kollektiiviksi, mutta edelleen porukan liimana toimivat yhteishenki, vertaistuki ja ystävyys – mikä myös näkyy ja kuuluu kaikessa tekemisessä.</p>", "sv": "<p>Emma Salokoski Voices är en sånggrupp, en kör och ett kollektiv som skapar musik utan fördomar och bryter mot genregränser.</p><p>Kören har gjort sound painting-improvisation, skapat modern kabaré under Sara Mellers och Marcus Groths ledning samt uppträtt på olika evenemang, från Flow Festivals huvudscen till en konstutställning för rehabiliteringspatienter inom mentalvården.</p><p>Fokuset ligger alltid på att förverkliga ambitiös rytmisk musik på ett unikt sätt. Emma Salokoski Voices uppträder i grupper om 10–20 personer.</p><p>Emma Salokoski Voices har sina rötter i 2010 års Kuorosota-program och Helsingforsteamet som Emma Salokoski ledde.</p><p>Den lilla a cappella-kvinnosånggruppen har sedan dess vuxit till ett större kollektiv, men gruppen hålls fortfarande samman av gemenskapsanda, kamratstöd och vänskap – vilket också syns och hörs i allt som gruppen gör.</p>", "en": "<p>Emma Salokoski Voices is a vocal ensemble, choir and collective that creates music boldly, breaking genre boundaries.</p><p>The choir has performed sound painting improvisation, created modern cabaret under the direction of Sara Melleri and Marcus Groth, and performed at events ranging from the main stage at Flow Festival to an art exhibition for mental health rehabilitees.</p><p>The focus is always on ambitiously creating distinctive rhythm music. Emma Salokoski Voices performs in groups of 10–20 people.</p><p>Emma Salokoski Voices has its roots in the 2010 Kuorosota programme and the Helsinki team led by Emma Salokoski.</p><p>The small a cappella women's singing group has since grown into a larger collective, but the glue of the group is still the spirit of togetherness, peer support and friendship – which can be seen and heard in everything they do.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68990/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68987", "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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@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": 2201240, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T10:13:01.387103Z", "last_modified_time": "2026-05-12T10:13:01.387116Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785711.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201240/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-05-12T10:13:01.309281Z", "last_modified_time": "2026-05-29T13:13:33.505502Z", "date_published": null, "start_time": "2026-07-17T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3DBF59A5A737DFA04F7ADBA1D4F9EA6F/Rakas_paivakirja_-musikaalikonsertti", "sv": "http://www.espanlava.fi/sv/evenemang/event/3DBF59A5A737DFA04F7ADBA1D4F9EA6F/Musikalkonserten_Rakas_paivakirja", "en": "http://www.espanlava.fi/en/events/event/3DBF59A5A737DFA04F7ADBA1D4F9EA6F/Rakas_paivakirja_-musikaalikonsertti" }, "location_extra_info": null, "provider": null, "name": { "fi": "Rakas päiväkirja -musikaalikonsertti", "sv": "Musikalkonserten Rakas päiväkirja", "en": "Rakas päiväkirja -musikaalikonsertti" }, "provider_contact_info": null, "short_description": { "fi": "Musikaalikonsertti koululaisen elämästä tuo musikaalimaailman ilmiöineen alakouluikäisten ulottuville.", "sv": "Musikalkonserten om en skolelevs liv gör musikalvärlden och dess fenomen tillgängliga för barn i lågstadieåldern.", "en": "A musical concert about the life of a schoolchild will bring the world of musicals and their phenomena close to primary school children." }, "description": { "fi": "<p>Musikaalikonsertti koululaisen elämästä tuo musikaalimaailman ilmiöineen alakouluikäisten ulottuville.</p><p>Oppilaiden elämää ja arjen teemoja käsitellään sekä tuttujen että vähemmän tunnettujen musikaalikappaleiden kautta, vilinää ja vilskettä unohtamatta.</p><p>Esiintyjinä nähdään Joel Mäkinen ja Nea-Maria Alanko, jotka ovat koulutettuja musikaalialan ammattilaisia ja musiikkipedagogeja.</p><p>Säestävänä muusikkona toimii musiikkiteatteriin erikoistunut pianisti Maritta Manner.</p><p>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p><p>Linkki traileriin: https://www.dropbox.com/scl/fi/w7wdghfwlsw8dsvcpq7hv/Rakas-p-iv-kirja.mov?rlkey=dp1skt1eo3vet8iky6o00gruu&st=1ak1u2u9&dl=0</p>", "sv": "<p>Musikalkonserten om en skolelevs liv gör musikalvärlden och dess fenomen tillgängliga för barn i lågstadieåldern.</p><p>Elevernas liv och vardagsteman behandlas genom både bekanta och mindre kända musikallåtar, utan att glömma liv och rörelse.</p><p>På scenen uppträder Joel Mäkinen och Nea-Maria Alanko, som är utbildade yrkespersoner inom musikalbranschen och musikpedagoger. Maritta Manner, pianist med musikteater som specialitet, ackompanjerar framförandet.</p><p>Framförandet genomförs i samarbete med Konsertcentralen.</p>", "en": "<p>A musical concert about the life of a schoolchild will bring the world of musicals and their phenomena close to primary school children.</p><p>Pupils' lives and everyday themes are explored through both familiar and lesser-known musical songs with all the activity they entail.</p><p>The performers are Joel Mäkinen and Nea-Maria Alanko, both trained music professionals and music teachers. The performance will be accompanied by Maritta Manner, a pianist specialising in musical theatre.</p><p>The performance is produced in cooperation with Concert Centre Finland.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68987/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68985", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T09:13:00.739608Z", "last_modified_time": "2026-05-12T09:13:00.739623Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787907.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T09:13:00.674452Z", "last_modified_time": "2026-05-29T13:13:33.281830Z", "date_published": null, "start_time": "2026-07-16T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2042FD4D4F44AAFD0147BC11EAB86F42/Siivet", "sv": "http://www.espanlava.fi/sv/evenemang/event/2042FD4D4F44AAFD0147BC11EAB86F42/Siivet", "en": "http://www.espanlava.fi/en/events/event/2042FD4D4F44AAFD0147BC11EAB86F42/Siivet" }, "location_extra_info": null, "provider": null, "name": { "fi": "Siivet – Open Stage", "sv": "Siivet – Open Stage", "en": "Siivet – Open Stage" }, "provider_contact_info": null, "short_description": { "fi": "Siivet on monipuolinen ja vivahteikas pop-bändi, joka maalaa maisemaa eri aikakausien tyylein.", "sv": "Siivet är ett mångsidigt och nyansrikt popband som målar ett landskap med stilar från olika tidsperioder.", "en": "Siivet is a versatile and nuanced pop band that paints a landscape in different styles from different eras." }, "description": { "fi": "<p>Siivet on monipuolinen ja vivahteikas pop-bändi, joka maalaa maisemaa eri aikakausien tyylein.</p><p>Yhtyeen musiikki on puhdasta soiton riemua. Kappaleissa käsitellään kattavasti jokapäiväisen elämän ihmeellisyyttä, rakkautta sekä maailmantuskaa tinkimättömällä elämänmyönteisyydellä.</p><p>Ison kokoonpanon maailmaa syleilevä sointi on tuhti ja täyteläinen, mutta dynaaminen. Jokainen Siivet-keikka on erilainen ja erityinen kokemus – tule siis kokemaan se itse Espan lavalle!</p>", "sv": "<p>Siivet är ett mångsidigt och nyansrikt popband som målar ett landskap med stilar från olika tidsperioder.</p><p>Bandets musik är ren spelglädje. Låtarna behandlar brett underligheten i det vardagliga livet, kärlek samt lidandet i världen med en orubblig livsbejakelse.</p><p>Den stora sammansättningens världsomfamnande klang är präktig och fyllig, men dynamisk. Varje konsert med Siivet är olik och en unik upplevelse – kom alltså och upplev den på Esplanadestraden!</p>", "en": "<p>Siivet is a versatile and nuanced pop band that paints a landscape in different styles from different eras.</p><p>The band's music is an expression of the pure joy of playing. The songs deal comprehensively with the wonders of everyday life, love and worldly wisdom with an uncompromisingly positive outlook on life.</p><p>The large ensemble embraces the world with its lush, full-bodied and dynamic sound. Every Siivet show is a different and special experience – so come and experience it for yourself on Espa Stage!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68985/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68982", "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": 2201233, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T09:13:00.529618Z", "last_modified_time": "2026-05-12T09:13:00.529632Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789610.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201233/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T09:13:00.451171Z", "last_modified_time": "2026-05-29T13:13:33.108946Z", "date_published": null, "start_time": "2026-07-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, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A497D7E2380EA20BA053BA5A652E937F/Sudenmorsiamet", "sv": "http://www.espanlava.fi/sv/evenemang/event/A497D7E2380EA20BA053BA5A652E937F/Sudenmorsiamet", "en": "http://www.espanlava.fi/en/events/event/A497D7E2380EA20BA053BA5A652E937F/Sudenmorsiamet" }, "location_extra_info": null, "provider": null, "name": { "fi": "Sudenmorsiamet – Open Stage", "sv": "Sudenmorsiamet – Open Stage", "en": "Sudenmorsiamet – Open Stage" }, "provider_contact_info": null, "short_description": { "fi": "Sudenmorsiamet on inkerinsuomalainen kansanlauluyhtye, jonka juuret ulottuvat Inkerinmaan rikkaaseen ja monimuotoiseen itämerensuomalaiseen perinteeseen.", "sv": "Sudenmorsiamet är en ingermanländsk folkmusikgrupp med rötter i den rika och mångsidiga östersjöfinska traditionen i Ingermanland.", "en": "Sudenmorsiamet is a Finnish-Ingrian folk singing group with roots in the rich and diverse Eastern Finnish tradition of the historical Ingria region." }, "description": { "fi": "<p>Sudenmorsiamet on inkerinsuomalainen kansanlauluyhtye, jonka juuret ulottuvat Inkerinmaan rikkaaseen ja monimuotoiseen itämerensuomalaiseen perinteeseen.</p><p>Yhtye syntyi lapsuudenystävien kohdatessa toisensa uudelleen pitkän ajan jälkeen – hetkestä, jossa yhteinen sävel löytyi välittömästi ja johti syvempään yhteyteen musiikin ja perinnön kautta.</p><p>Sudenmorsiamien laulukokoelma rakentuu eri vuosisatojen kerrostumista. Yhtye etsii arkistoihin sekä laulu- ja runokokoelmiin unohtuneita tekstejä ja sävelmiä, tutkii niiden taustoja ja herättää ne eloon omien sävellystensä ja sovitustensa kautta. Samalla syntyy myös uutta musiikkia: lauluja, jotka pohjautuvat sukujen muistoihin ja tarinoihin, kuvaten esi-isien ja -äitien arkista elämää ja kokemuksia.</p><p>Inkerinsuomalainen kansanperinne on pitkälti jäänyt historian varjoon, eikä moni enää tunne sen rikkautta. Sudenmorsiamet työskentelevät aktiivisesti tämän perinnön säilyttämiseksi ja elävöittämiseksi konsertoimalla, järjestämällä työpajoja sekä äänittämällä aineistoa. Heidän tavoitteenaan on tuoda edes osa tästä kauniista kulttuuriperinnöstä takaisin ihmisten tietoisuuteen – ja antaa sille uusi, elävä tulevaisuus.</p>", "sv": "<p>Sudenmorsiamet är en ingermanländsk folkmusikgrupp med rötter i den rika och mångsidiga östersjöfinska traditionen i Ingermanland.</p><p>Gruppen grundades när barndomsvänner möttes igen efter en lång tid – i en stund där de genast hittade en samstämmighet som ledde till en djupare kontakt genom musik och arv.</p><p>Sudenmorsiamets sångsamling består av skikt från flera århundraden. Gruppen söker efter bortglömda texter och melodier till sina arkiv samt sång- och diktsamlingar, utforskar deras bakgrund och väcker dem till liv genom egna kompositioner och arrangemang. Samtidigt uppstår också ny musik: sånger som bygger på släkters minnen och berättelser och beskriver förfädernas och anmödrarnas vardagsliv och erfarenheter.</p><p>Den ingermanländska folktraditionen har i stor utsträckning hamnat i skuggan av historien och många känner inte längre dess rikedom. Sudenmorsiamet arbetar aktivt för att bevara och återuppliva detta arv genom konserter, verkstäder och inspelningar. Deras mål är att återföra åtminstone en del av detta vackra kulturarv till det allmänna medvetandet – och ge det en ny, levande framtid.</p>", "en": "<p>Sudenmorsiamet is a Finnish-Ingrian folk singing group with roots in the rich and diverse Eastern Finnish tradition of the historical Ingria region.</p><p>The band was born when childhood friends reunited after a long time – a moment where a common thread was immediately found, leading to a deeper connection through music and heritage.</p><p>The Sudenmorsiamet catalogue consists of material from layers of different centuries. The band searches for texts and melodies that have been forgotten in archives and song and poetry collections, explores their backgrounds and brings them to life through their own compositions and arrangements. At the same time, they create new music: songs based on family memories and stories, describing the everyday lives and experiences of ancestral figures.</p><p>Finnish-Ingrian folklore has been largely overshadowed by history, and many people are no longer familiar with its rich heritage. Sudenmorsiamet is actively working to preserve and revitalise this heritage through concerts, workshops and recordings. Their aim is to bring at least part of this beautiful cultural heritage back into the public consciousness – and give it a new, living future.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68982/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68981", "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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 2201231, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T09:12:59.879828Z", "last_modified_time": "2026-05-12T09:12:59.879843Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201231/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-05-12T09:12:59.816080Z", "last_modified_time": "2026-05-29T13:13:32.826934Z", "date_published": null, "start_time": "2026-07-15T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/443836076B997EFFDB04D57A293736A8/Riesa-Pelle", "sv": "http://www.espanlava.fi/sv/evenemang/event/443836076B997EFFDB04D57A293736A8/Riesa-Pelle", "en": "http://www.espanlava.fi/en/events/event/443836076B997EFFDB04D57A293736A8/Riesa-Pelle" }, "location_extra_info": null, "provider": null, "name": { "fi": "Riesa-Pelle", "sv": "Riesa-Pelle", "en": "Riesa-Pelle" }, "provider_contact_info": null, "short_description": { "fi": "Riesa-Pellen vauhdikkaassa esityksessä nähdään klovnerian lisäksi hauskoja taikatemppuja sekä pieni jongleeraustuokio.", "sv": "Riesa-Pelles fartfyllda föreställning innehåller förutom clowneri även roliga trollkonster och en liten jongleringsstund.", "en": "In addition to clownery, Riesa-Pelle's upbeat performance will include fun magic tricks and a small juggling act." }, "description": { "fi": "<p>Riesa-Pellen vauhdikkaassa esityksessä nähdään klovnerian lisäksi hauskoja taikatemppuja sekä pieni jongleeraustuokio.</p><p>Ohjelma on vuorovaikutteinen yleisön kanssa, ja viihdyttää kaiken ikäisiä katsojia. Show’n jälkeen Riesa vääntelee tenaville huippusuosittuja taikailmapalloja.</p>", "sv": "<p>Riesa-Pelles fartfyllda föreställning innehåller förutom clowneri även roliga trollkonster och en liten jongleringsstund.</p><p>Programmet interagerar med publiken och underhåller deltagare i alla åldrar. Efter showen gör Riesa mycket populära magiska ballonger för barn.</p>", "en": "<p>In addition to clownery, Riesa-Pelle's upbeat performance will include fun magic tricks and a small juggling act.</p><p>The programme is interactive and will entertain viewers of all ages. After the show, Riesa will create highly popular balloon animals for children.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68981/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68980", "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": 2201230, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T09:12:59.614147Z", "last_modified_time": "2026-05-12T09:12:59.614161Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787901.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201230/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T09:12:59.535735Z", "last_modified_time": "2026-05-29T13:13:32.568918Z", "date_published": null, "start_time": "2026-07-14T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F4573AA2EB50F55BE7A79E542428D290/Karelia_Ooppera", "sv": "http://www.espanlava.fi/sv/evenemang/event/F4573AA2EB50F55BE7A79E542428D290/Karelia_Ooppera", "en": "http://www.espanlava.fi/en/events/event/F4573AA2EB50F55BE7A79E542428D290/Karelia_Ooppera" }, "location_extra_info": null, "provider": null, "name": { "fi": "Karelia Ooppera – Open Stage", "sv": "Karelia Ooppera – Open Stage", "en": "Karelia Ooppera – Open Stage" }, "provider_contact_info": null, "short_description": { "fi": "Karelia Ooppera tuo Espan lavalle tänäkin kesänä kimalletta ja glamouria!", "sv": "Karelia Ooppera ger Esplanadestraden glitter och glamour även i sommar!", "en": "Karelia Opera brings glitter and glamour to Espa Stage this summer!" }, "description": { "fi": "<p>Karelia Ooppera tuo Espan lavalle tänäkin kesänä kimalletta ja glamouria!</p><p>Sopraano <b>Senja Syrjälä</b> ja tenori <b>Jere Hölttä</b> hurmaavat yhdessä laulajaystäviensä kanssa: luvassa on laulumusiikin rakastetuimpia helmiä ja suurimpia hittejä pianon säestyksellä. Illan aikana kuullaan myös ainutlaatuinen maistiainen oopperasta <i>Imatran Impi</i>, joka saa esityksensä Suomen Kansallisoopperan Alminsalissa syyskuussa 2026.</p><p>Tule kokemaan unohtumaton kesäpäivä täynnä tunnetta, säihkettä ja suuria melodioita!</p>", "sv": "<p>Karelia Ooppera ger Esplanadestraden glitter och glamour även i sommar!</p><p>Sopranen <b>Senja Syrjälä</b> och tenoren <b>Jere Hölttä</b> tjusar tillsammans med sina sångarvänner: Det utlovas de mest älskade pärlorna och största hittarna inom sångmusik med pianoackompanjemang. Under kvällen får vi också höra en unik smakbit av operan <i>Imatran Impi</i>, som framförs i Almisalen på Finlands Nationalopera i september 2026.</p><p>Kom och upplev en oförglömlig sommardag full av känslor, glitter och stora melodier!</p>", "en": "<p>Karelia Opera brings glitter and glamour to Espa Stage this summer!</p><p>Soprano <b>Senja Syrjälä</b> and tenor <b>Jere Hölttä</b>, together with their singing friends, will enchant you with the most beloved gems and greatest hits of vocal music, accompanied by piano. The evening will also include a unique taster of the opera <i>Imatran Impi</i>, which will be performed at the Finnish National Opera and Ballet's Almi Hall in September 2026.</p><p>Come and experience an unforgettable summer day full of emotion, sparkle and larger-than-life melodies!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68980/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69017", "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": 2201279, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T09:14:02.763928Z", "last_modified_time": "2026-05-13T09:14:02.763943Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785928.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201279/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-13T09:14:02.653760Z", "last_modified_time": "2026-05-29T12:13:38.582869Z", "date_published": null, "start_time": "2026-08-14T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3DB252E5ACD0489ACCEBDB54C67BC56C/Jukka_Tolonen_Ramblin_Jazz_Quartet", "sv": "http://www.espanlava.fi/sv/evenemang/event/3DB252E5ACD0489ACCEBDB54C67BC56C/Jukka_Tolonen_Ramblin_Jazz_Quartet", "en": "http://www.espanlava.fi/en/events/event/3DB252E5ACD0489ACCEBDB54C67BC56C/Jukka_Tolonen_Ramblin_Jazz_Quartet" }, "location_extra_info": null, "provider": null, "name": { "fi": "Jukka Tolonen Ramblin’ Jazz Quartet", "sv": "Jukka Tolonen Ramblin’ Jazz Quartet", "en": "Jukka Tolonen Ramblin’ Jazz Quartet" }, "provider_contact_info": null, "short_description": { "fi": "Jotain vanhaa, jotain uutta ja jotain lainattua vuosien varrelta! Tämä on Tolosta!", "sv": "Något gammalt, något nytt och något lånat från årens lopp! Det här är Tolonen!", "en": "Something old, something new and something borrowed from over the years! This is Tolonen!" }, "description": { "fi": "<p>Jotain vanhaa, jotain uutta ja jotain lainattua vuosien varrelta! Tämä on Tolosta!</p><p>Maamme yhden kansainvälisesti arvostetumman kitarataiteilijan, <b>Jukka Tolosen</b> uusin bändi syntyi kohtaamisesta Tolonen-dokumenttielokuvaa tekevän, myös kitaraa hienosti soittavan <b>Lasse Keson</b> kanssa. Kesolla on musiikin historiaa myös jo 70-luvun alusta alkaen.</p><p>Bändille otettiin uusvanha nimi Jukan alkuvuosilta ja mukaan pianoon saatiin Jukan kanssa jo aikaisemmin soittanut <b>Antti Utriainen</b>, rumpuihin <b>Vesa Lapinkero</b>.</p><p>Hypnoottista, jazzillista improvisaatiomusiikkia, basson ja rumpujen auratessa helpon tuntuisesti tietä, joka ei katkea! Basson nyanssit tuntuvat välillä kuin kitaran viesteiltä, ja yhtyeen klubeilla lähes kaksituntisiksi venyneet esiintymiset ovat pitäneet ihmiset vallassaan ja lumoutuneina.</p>", "sv": "<p>Något gammalt, något nytt och något lånat från årens lopp! Det här är Tolonen!</p><p>En av de internationellt mest uppskattade gitarrartisterna i vårt land, <b>Jukka Tolonen</b>, grundade sitt nyaste band efter ett möte med <b>Lasse Keso</b>, som gör dokumentärfilmen Tolonen och som också spelar gitarr skickligt. Keso har också erfarenhet inom musik redan från början av 70-talet.</p><p>Bandet fick ett nygammalt namn från Jukkas tidiga år och bandet fick <b>Antti Utriainen</b>, som redan tidigare spelat med Jukka, som pianist samt <b>Vesa Lapinkero</b> som trumslagare.</p><p>Hypnotisk improvisationsmusik i jazzstil, där bas och trummor lätt banar väg, vilken inte bryts! Basens nyanser känns ibland som gitarrmeddelanden, och bandets nästan två timmar långa uppträdanden på klubbar har hållit människorna fängslade och förtrollade.</p>", "en": "<p>Something old, something new and something borrowed from over the years! This is Tolonen!</p><p>The latest band of one of our country's most internationally acclaimed guitarists, <b>Jukka Tolonen</b>, was born out of a meeting with <b>Lasse Keso</b>, who is also a great guitarist and is making a documentary film about Tolonen. Keso also has a musical history dating back to the early 70s.</p><p>A new name from Jukka's early years was added to the band, and <b>Antti Utriainen</b>, who has played with Jukka before, was added on piano and <b>Vesa Lapinkero</b> on drums.</p><p>Hypnotic, jazzy improvisational music, with bass and drums ploughing an easy path that will not quit! The bass's nuances sometimes feel like messages from a guitar, and the band's performances in clubs, which have stretched to almost two hours, have kept people captivated and enthralled.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69017/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69118", "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": 2384789, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-29T12:13:38.112828Z", "last_modified_time": "2026-05-29T12:13:38.112842Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792476.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384789/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-29T12:13:38.000530Z", "last_modified_time": "2026-05-29T12:13:38.251230Z", "date_published": null, "start_time": "2026-08-13T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1297826BFC9646727B0D9B99C662EC92/Rajayttajat", "sv": "http://www.espanlava.fi/sv/evenemang/event/1297826BFC9646727B0D9B99C662EC92/Rajayttajat", "en": "http://www.espanlava.fi/en/events/event/1297826BFC9646727B0D9B99C662EC92/Rajayttajat" }, "location_extra_info": null, "provider": null, "name": { "fi": "Räjäyttäjät – indiespa", "sv": "Räjäyttäjät – indiespa", "en": "Räjäyttäjät – indiespa" }, "provider_contact_info": null, "short_description": { "fi": "Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan.", "sv": "Räjäyttäjät är känt för sina fartfyllda liveshower och sin finska rockmusik.", "en": "Räjäyttäjät have become known for their fast-paced live performances and rock sung in Finnish." }, "description": { "fi": "<p>Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan.</p><p>Yli kymmenvuotisella urallaan yhtye on ansaitusti vakiinnuttanut paikkansa aikamme kotimaisen indieskenen kaanonissa. Räjä ’n’ rollia soittava yhtyeen ilmaisussa on juuri sopiva ripaus hölmöä tee-se-itse-tykittelyä, kunnon meininkiä sekä tarkkanäköisen rehellistä rokkia. Räjäyttäjät räjäyttää! Pauhu mahtava kertoo totuuden!<br> <br>Taitaa tulla <b>indiespa</b>! Espan lavalla tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja jatkuu tänä vuonna kolmen illan ja kuuden eri yhtyeen voimin.<br>Heinä- ja elokuulle sijoittuvat keikat tarjoavat kesäisen Espan kuulijoille äänikuvia herkästä pop-tunnelmoinnista tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>", "sv": "<p>Räjäyttäjät är känt för sina fartfyllda liveshower och sin finska rockmusik.</p><p>Under sin över tio år långa karriär har bandet med rätta etablerat sig på vår tids inhemska indiescen. I bandets Räjä ’n’ roll finns precis en lagom touch av fånig gör-det-själv-bombardering, en ordentlig stämning och klarsynt ärlig rock. Räjäyttäjät spränger! Det mäktiga dundret säger sanningen!<br> <br>Jag tror att det blir <b>indiespa</b>! Konsertserien indiespa som presenterar den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning i år under tre kvällar med sex olika band.<br>Konserterna, som ordnas i juli och augusti, erbjuder publiken vid Esplanadestraden ljudbilder från känsliga popstämningar till hård rock'n’roll. Speltider kl. 17 och 18, alltid fritt inträde!</p><p>Jag tror att det blir <b>indiespa</b>! Konsertserien indiespa som presenterar den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning i år under tre kvällar med sex olika band.</p><p>Konserterna, som ordnas i juli och augusti, erbjuder publiken vid Esplanadestraden ljudbilder från känsliga popstämningar till hård rock'n’roll. Speltider kl. 17 och 18, alltid fritt inträde!</p>", "en": "<p>Räjäyttäjät have become known for their fast-paced live performances and rock sung in Finnish.</p><p>Over their decade-long career, they have rightfully cemented their place in the canon of contemporary Finnish indie. Playing what they call räjä'n'roll, the band's sound is a perfectly measured mix of goofy DIY firepower, solid attitude and sharp, honest rock. Räjäyttäjät are going to blow your socks off! Turn up the volume!<br> <br>I think we’re headed for <b>indiespa</b>! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on Espa Stage, continues this summer with six acts over three nights.<br>The gigs scheduled for July and August will offer summery Espa soundscapes to visitors, ranging from delicate pop tunes to aggressive rock 'n' roll. Bands will start playing at 17.00 and 18.00, always free entry!</p><p>I think we’re headed for <b>indiespa</b>! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on Espa Stage, continues this summer with six acts over three nights.</p><p>The gigs scheduled for July and August will offer summery Espa soundscapes to visitors, ranging from delicate pop tunes to aggressive rock 'n' roll. Bands will start playing at 17.00 and 18.00, always free entry!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69118/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69117", "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": 2384788, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-29T12:13:37.594972Z", "last_modified_time": "2026-05-29T12:13:37.594988Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792475.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384788/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-29T12:13:37.451547Z", "last_modified_time": "2026-05-29T12:13:37.767512Z", "date_published": null, "start_time": "2026-08-13T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/4CEC3C09495F633F7A10D4BBA460DCD0/Krypta", "sv": "http://www.espanlava.fi/sv/evenemang/event/4CEC3C09495F633F7A10D4BBA460DCD0/Krypta", "en": "http://www.espanlava.fi/en/events/event/4CEC3C09495F633F7A10D4BBA460DCD0/Krypta" }, "location_extra_info": null, "provider": null, "name": { "fi": "Krypta – indiespa", "sv": "Krypta – indiespa", "en": "Krypta – indiespa" }, "provider_contact_info": null, "short_description": { "fi": "Oletko koskaan haaveillut eläväsi todellisuudessa, jossa Freeman ja Blue Öyster Cult tekisivät musiikkia yhdessä?", "sv": "Har du någonsin drömt om att leva i en verklighet där Freeman och Blue Öyster Cult skulle göra musik tillsammans?", "en": "Have you ever wished to live in a reality where Freeman and Blue Öyster Cult would make music together?" }, "description": { "fi": "<p>Oletko koskaan haaveillut eläväsi todellisuudessa, jossa Freeman ja Blue Öyster Cult tekisivät musiikkia yhdessä?</p><p>Jos vastauksesi on kyllä, niin okkulttisesta rockista ja suomalaisesta melankoliasta vaikutteita ammentava Krypta on musiikkia, jota herkkä, mystiikanjanoinen sielusi kaipaa. Iskelmällisiä koukkuja ja melodisia särökitaroita yhdistelevän yhtyeen runollisen haikea sanallinen ilmaus kumpuaa mielen mystiikasta, kauhusta ja romantiikasta. Kryptan kappaleissa ihmismieli on kuin laakso, jossa mikään ei ole sitä miltä näyttää – omat harhaiset ajatukset johtavat poluille, joille ei koskaan tiennyt päätyvänsä kulkemaan. Melankoliasta huolimatta sanoituksissa on kuitenkin mukana aina ripaus toivoa. Kryptan uusin, järjestyksessään toinen albumi <i>Unen oma</i> julkaistiin huhtikuussa 2026 Svart Recordsin toimesta.<br> <br>Taitaa tulla <b>indiespa</b>! Espan lavalla tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja jatkuu tänä vuonna kolmen illan ja kuuden eri yhtyeen voimin.</p><p>Heinä- ja elokuulle sijoittuvat keikat tarjoavat kesäisen Espan kuulijoille äänikuvia herkästä pop-tunnelmoinnista tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>", "sv": "<p>Har du någonsin drömt om att leva i en verklighet där Freeman och Blue Öyster Cult skulle göra musik tillsammans?</p><p>Om ditt svar är ja så är Krypta, inspirerat av ockult rock och finländsk melankoli, den musik som din känsliga, mystiktörstiga själ längtar efter. Bandet kombinerar drag av schlager med melodisk gitarrdistortion, och bandets poetiska, vemodiga lyriska uttryck väller fram ur sinnets mystik, skräck och romantik. I Kryptas låtar är det mänskliga sinnet som en dal där ingenting är som det ser ut – egna vanföreställningar leder lyssnaren in på stigar hen aldrig visste hen skulle ta. Trots melankolin finns det alltid en gnutta hopp i texterna. Kryptas senaste album <i>Unen oma</i>, som är bandets andra album, släpptes i april 2026 av Svart Records.</p><p>Jag tror att det blir <b>indiespa</b>! Konsertserien indiespa som presenterar den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning i år under tre kvällar med sex olika band.</p><p>Konserterna, som ordnas i juli och augusti, erbjuder publiken vid Esplanadestraden ljudbilder från känsliga popstämningar till hård rock'n’roll. Speltider kl. 17 och 18, alltid fritt inträde!</p>", "en": "<p>Have you ever wished to live in a reality where Freeman and Blue Öyster Cult would make music together?</p><p>If your answer is yes, then Krypta, who draw influences from occult rock and Finnish melancholia, is the music your delicate, mystic-hungry soul desires.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69117/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69002", "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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@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": 2201262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T13:12:59.509146Z", "last_modified_time": "2026-05-12T13:12:59.509168Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785669.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-05-12T13:12:59.438027Z", "last_modified_time": "2026-05-29T12:13:36.687577Z", "date_published": null, "start_time": "2026-07-25T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/946B8C27F1608A13EE4EFFFEB727C1D1/Jokeri_Pokeri_Box_Ihan_Simona_-show", "sv": "http://www.espanlava.fi/sv/evenemang/event/946B8C27F1608A13EE4EFFFEB727C1D1/Jokeri_Pokeri_Box_Ihan_Simona_-show", "en": "http://www.espanlava.fi/en/events/event/946B8C27F1608A13EE4EFFFEB727C1D1/Jokeri_Pokeri_Box_Ihan_Simona_-show" }, "location_extra_info": null, "provider": null, "name": { "fi": "Jokeri Pokeri Box – Ihan Simona! -show", "sv": "Jokeri Pokeri Box – Ihan Simona! -show", "en": "Jokeri Pokeri Box – Ihan Simona! -show" }, "provider_contact_info": null, "short_description": { "fi": "Taikuri Simo Aallon ja avustaja Kirsti Aallon riemukas koko perheen taikashow vie kaikenikäiset katsojat taikamaailmaan, jossa mikään ei ole mahdotonta.", "sv": "Trollkarlen Simo Aaltos och assistenten Kirsti Aaltos glädjefyllda trollkarlsshow för hela familjen tar deltagare i alla åldrar till en magisk värld där ingenting är omöjligt.", "en": "Magician Simo Aalto and assistant Kirsti Aalto's exhilarating family magic show takes audience members of all ages into a magical world where nothing is impossible." }, "description": { "fi": "<p>Taikuri Simo Aallon ja avustaja Kirsti Aallon riemukas koko perheen taikashow vie kaikenikäiset katsojat taikamaailmaan, jossa mikään ei ole mahdotonta.</p><p>Mukana seikkailuissa ovat tietysti Simon ja Kirstin eläinkaverit Erkki-kani ja Paloma-kyyhky sekä itsepäinen papukaija Eino. Ja lapset saavat toki auttaa taikuria taikapuhalluksin ja taikasanoin!</p><p>Simo kertoo: ”Tänä vuonna vietän 50-vuotistaiteilijajuhlaani. Pitkän urani aikana on jo yksi sukupolvi kasvanut aikuisiksi, ja he tulevat nyt omien lastensa kanssa katsomaan lapsuutensa suosikkia. Tämä on minulle ja Kirstille suuri ilo. Siksi haluan tarjota iloa ja ihmetystä kaikenikäisille.”</p>", "sv": "<p>Trollkarlen Simo Aaltos och assistenten Kirsti Aaltos glädjefyllda trollkarlsshow för hela familjen tar deltagare i alla åldrar till en magisk värld där ingenting är omöjligt.</p><p>I äventyren deltar naturligtvis också Simos och Kirstis djurvänner kaninen Erkki och duvan Paloma samt den envisa papegojan Eino. Och barnen får hjälpa trollkarlen med magiska blåsningar och trollformler!</p><p>Simo berättar: ”I år firar jag mitt 50-årsjubileum som konstnär. Under min långa karriär har en generation redan blivit vuxen och kommer nu med sina egna barn för att se sin barndoms favorit. Detta är ett stort nöje för mig och Kirsti. Därför vill jag erbjuda glädje och förundran till personer i alla åldrar.”</p>", "en": "<p>Magician Simo Aalto and assistant Kirsti Aalto's exhilarating family magic show takes audience members of all ages into a magical world where nothing is impossible.</p><p>Of course, Simo and Kirsti's animal friends Erkki the rabbit and Paloma the pigeon, as well as Eino the stubborn parrot, will also be on board. And of course children can help the magician with magic blows and magic words!</p><p>Simo says: \"I am celebrating my 50th anniversary as an artist this year. In my long career, I have already seen a generation grow up, and they are now attending my shows with their own children to watch their childhood favourite. This is a great pleasure for me and Kirsti. That is why I want to bring joy and wonder to people of all ages.\"</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69001", "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": 2201261, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T13:12:59.267096Z", "last_modified_time": "2026-05-12T13:12:59.267110Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785707.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201261/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T13:12:59.200847Z", "last_modified_time": "2026-05-29T12:13:36.522814Z", "date_published": null, "start_time": "2026-07-24T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6BB9461E557291E1410F5615E6C1815C/Arja_Koriseva", "sv": "http://www.espanlava.fi/sv/evenemang/event/6BB9461E557291E1410F5615E6C1815C/Arja_Koriseva", "en": "http://www.espanlava.fi/en/events/event/6BB9461E557291E1410F5615E6C1815C/Arja_Koriseva" }, "location_extra_info": null, "provider": null, "name": { "fi": "Arja Koriseva", "sv": "Arja Koriseva", "en": "Arja Koriseva" }, "provider_contact_info": null, "short_description": { "fi": "Espan lavalla kuullaan tuttuja, nostalgisia säveliä sekä Arja Korisevan oman tuotannon rakastetuimpia lauluja vuosien varrelta.", "sv": "På Esplanadestraden hörs bekanta, nostalgiska melodier samt de mest älskade sångerna från Arja Korisevas egen produktion från årens lopp.", "en": "The audience will be treated to familiar, nostalgic tunes as well as some of Arja Koriseva's most beloved songs from her own production over the years on Espa Stage." }, "description": { "fi": "<p>Espan lavalla kuullaan tuttuja, nostalgisia säveliä sekä Arja Korisevan oman tuotannon rakastetuimpia lauluja vuosien varrelta.</p><p>Luvassa on lämminhenkinen ja iloinen konserttihetki, jossa musiikki syntyy lähellä kuulijaa – akustisesti ja vahvasti läsnä.</p><p><b>Arja Koriseva</b> ja pianisti <b>Minna Lintukangas</b> ovat konsertoineet yhdessä jo viidentoista vuoden ajan. Heidän yhteinen akustinen albuminsa <i>Majakanvartijat</i> julkaistiin syksyllä 2019.</p>", "sv": "<p>På Esplanadestraden hörs bekanta, nostalgiska melodier samt de mest älskade sångerna från Arja Korisevas egen produktion från årens lopp.</p><p>Det blir en varm och glad konsertupplevelse, där musiken skapas nära lyssnaren – akustiskt och med stark närvaro.</p><p><b>Arja Koriseva</b> och pianisten <b>Minna Lintukangas</b> har uppträtt tillsammans redan i femton år. Deras gemensamma akustiska album <i>Majakanvartijat</i> släpptes hösten 2019.</p>", "en": "<p>The audience will be treated to familiar, nostalgic tunes as well as some of Arja Koriseva's most beloved songs from her own production over the years on Espa Stage.</p><p>It will be a warm and joyful concert experience, where music is created close to the listener – acoustically and up close and personal.</p><p><b>Arja Koriseva</b> and Pianist <b>Minna Lintukangas</b> have been performing together for fifteen years. Their joint acoustic album <i>Majakanvartijat</i> was released in autumn 2019.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69001/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69000", "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": 2201260, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T13:12:58.987422Z", "last_modified_time": "2026-05-12T13:12:58.987447Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787781.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201260/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T13:12:58.896450Z", "last_modified_time": "2026-05-29T12:13:36.301122Z", "date_published": null, "start_time": "2026-07-23T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/AEF7874F859B75009FB3AD36F7A5153B/Joni_Heinakuu_Pekka_Saukkonen_Toisin_tuntevat", "sv": "http://www.espanlava.fi/sv/evenemang/event/AEF7874F859B75009FB3AD36F7A5153B/Joni_Heinakuu_Pekka_Saukkonen_Toisin_tuntevat", "en": "http://www.espanlava.fi/en/events/event/AEF7874F859B75009FB3AD36F7A5153B/Joni_Heinakuu_Pekka_Saukkonen_Toisin_tuntevat" }, "location_extra_info": null, "provider": null, "name": { "fi": "Joni Heinäkuu & Pekka Saukkonen: Toisin tuntevat – Open Stage", "sv": "Joni Heinäkuu & Pekka Saukkonen: Toisin tuntevat – Open Stage", "en": "Joni Heinäkuu & Pekka Saukkonen: Toisin tuntevat – Open Stage" }, "provider_contact_info": null, "short_description": { "fi": "Indie-iskelmäkesä on täällä jälleen!", "sv": "Indie-schlagersommaren är här igen!", "en": "Indie schlager summer is here again!" }, "description": { "fi": "<p>Indie-iskelmäkesä on täällä jälleen!</p><p>Joni Heinäkuu on kypsään ikään ehtinyt sukupuoleton runohenkilö, joka ei koskaan kasvanut isoksi, vaikka vuodet vierivät verkalleen. Heinäkuun musiikki on lyriikkavetoista indie-iskelmää, jonka ytimessä on aina tunne. Tunne kuuluu melodiakoukuissa, sanoitusten teemoissa ja kappaleiden humanismissa. Musiikki ottaa vaikutteita varsinkin suomenkielisen popin ja rockin suurilta omaehtoisilta tekijöiltä. Omien sanojensa mukaan Heinäkuu on ilmestynyt maan pinnalle muistuttaakseen kuulijoita iankaikkisesta musiikin voimasta:</p><p>“Olen sepittänyt biisejä jo vuosien ajan, lähinnä terapiaksi itselleni painiskellessani tunne-elämäni ja mieleni terveyden kanssa. Laulut ovat yhdistelmä unia, elettyä elämää ja kohtaloita, joita olen kokenut, tavannut tai joskus myös keksinyt vaikka kadulla näkemilleni ihmisille. Suurin osa on kuitenkin totta myös konkreettisesti. Toiveeni on, että ihmiset voisivat löytää näistä biiseistä jotain positiivista elämäänsä. Jos se pitää paikkansa edes yhden yksilön kohdalla, niin silloin ne on kannattanut tehdä.”</p><p>Tuottajavelho Pekka Saukkonen on tuottanut Heinäkuun musiikin lisäksi lukemattoman määrän iskusävelmiä, hittikipaleita ja queer-anthemeita. Muille artisteille tekemänsä musiikin lisäksi Saukkonen on säveltänyt itselleen, ja näistä kappaleista kuullaan otos valikoituja helmiä vuosikymmenten varrelta artistin itsensä esittämänä.</p><p>Espan keikalla nähdään tänä kesänä kvartettikokoonpano, jossa nämä kaksi toisin tuntevaa yhdistävät voimansa ja lyövät kättä erilaisuuden ja rakkauden puolesta. Kitara, laulu, koskettimet ja viekas live-elektroniikan käyttö saavat seurakseen Suomen kenties johtavan Loota-rumpalin Joose Vihreän sekä palkitun viulutaitelijan High-D:n.</p>", "sv": "<p>Indie-schlagersommaren är här igen!</p><p>Joni Heinäkuu är en erfaren, könlös poet, som aldrig blev vuxen fastän åren flög förbi. Heinäkuus musik är lyrikdriven indie-schlager, där känslan alltid står i centrum. Känslan hörs i melodikrokarna, i textens teman och i låtarnas humanism. Musiken är influerad särskilt av finsk pop och rock från stora självständiga musikskapare. Heinäkuu säger sig ha kommit hit till jorden för att påminna lyssnarna om musikens eviga kraft:</p><p>”Jag har snickrat ihop låtar i åratal, närmast som terapi åt mig själv när jag har brottats med mitt känsloliv och min psykiska hälsa. Sångerna är kombinationer av drömmar, det liv jag levt och öden som jag har upplevt, mött eller ibland hittat på till exempel för någon som jag sett på gatan. Största delen är ändå sant även helt konkret. Jag hoppas att människor kan hitta något positivt i sitt liv genom de här låtarna. Om det stämmer för ens någon så var det värt det.”</p><p>Producenten Pekka Saukkonen har utöver Heinäkuus musik producerat ett oräkneligt antal schlagers, hittar och queer-anthems. Förutom att skapa musik för andra artister har Saukkonen också skrivit för sig själv, och vi får höra ett urval av dessa låtar från decenniernas lopp, framförda av artisten själv.</p><p>På Esplanadestraden får vi i sommar se en kvartettsammansättning när dessa två förenar sina krafter och slår ett slag för olikheter och för kärleken. Gitarr, sång, klaviatur och smart användning av live-elektronik medföljs av Finlands kanske ledande Loota-trumslagare Joose Vihreä samt prisbelönta violinkonstnären High-D.</p>", "en": "<p>Indie schlager summer is here again!</p><p>Joni Heinäkuu is a mature, genderless poetry person, and they have never grown up even though the years keep rolling by. Heinäkuu’s music is lyrics-driven indie schlager, always centred around emotions. Feelings come through in the melodic hooks, the themes of the lyrics and the humanity of the songs. The music is influenced by the independent greats in Finnish pop and rock, in particular. In their own words, Heinäkuu came to earth to remind the listeners of the eternal power of music:</p><p>“I have been writing songs for years, mostly as therapeutic outlets for myself as I wrestle with my emotions and mental health. The songs are a combination of dreams, lived experience and fates that I have experienced, met or sometimes even just thought up for people I see on the streets. Most of them are true, though. I wish that people could find something positive for their lives in my songs. If that happens for even one person, it will have been worth it.”</p><p>Producer wizard Pekka Saukkonen has produced countless schlagers, hit songs and queer anthems in addition to Heinäkuu's music. On top of music for other artists, Saukkonen has composed his own music, and a curated selection of these songs from over the years will be heard as performed by the artist himself.</p><p>The Espa gig will feature a quartet with these two people who feel differently joining forces and shaking hands for diversity and love. Guitar, vocals, keyboards and a sly use of live electronics are joined by possibly the best Loota drummer in Finland, Joose Vihreä, and award-winning violinist High-D.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69000/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68997", "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": 2201253, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T12:14:22.286703Z", "last_modified_time": "2026-05-12T12:14:22.286721Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787870.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201253/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T12:14:22.170574Z", "last_modified_time": "2026-05-29T12:13:36.151341Z", "date_published": null, "start_time": "2026-07-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, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3C9D5511DFFED4517FFA7EE7D553FA38/Runoen", "sv": "http://www.espanlava.fi/sv/evenemang/event/3C9D5511DFFED4517FFA7EE7D553FA38/Runoen", "en": "http://www.espanlava.fi/en/events/event/3C9D5511DFFED4517FFA7EE7D553FA38/Runoen" }, "location_extra_info": null, "provider": null, "name": { "fi": "Runoen – Open Stage", "sv": "Runoen – Open Stage", "en": "Runoen – Open Stage" }, "provider_contact_info": null, "short_description": { "fi": "Runoen on yhtye, jonka musiikki ei jätä kylmäksi: se koskettaa, lohduttaa, herättää, ravistelee.", "sv": "Runoen är ett band vars musik aldrig lämnar lyssnaren kall: den griper, tröstar, väcker, ruskar om.", "en": "Runoen is a band whose music never leaves you cold: it touches, comforts, awakens and shakes the listener to their core." }, "description": { "fi": "<p>Runoen on yhtye, jonka musiikki ei jätä kylmäksi: se koskettaa, lohduttaa, herättää, ravistelee.</p><p>Pianisti Juha Granlundin pop/jazz/folk-henkisissä sävellyksissä rakastettujen runoilijoiden tekstit saavat uuden elämän. Konsertissa kuullaan mm. Edith Södergranin, Eino Leinon, Uuno Kailaan sekä Aleksis Kiven runoutta.</p><p>Yhtyeen kokoonpano:</p><p>Juha Granlund, piano<br> Satu Mattila, laulu<br> Tamara Vanhanen, laulu ja viulu<br> Esa Hiltunen laulu ja basso</p>", "sv": "<p>Runoen är ett band vars musik aldrig lämnar lyssnaren kall: den griper, tröstar, väcker, ruskar om.</p><p>Pianisten Juha Granlunds pop/jazz/folk-kompositioner ger nytt liv åt älskade poeters texter. På konserten får vi höra bland annat Edith Södergrans, Eino Leinos, Uuno Kailas och Aleksis Kivis poesi.</p>", "en": "<p>Runoen is a band whose music never leaves you cold: it touches, comforts, awakens and shakes the listener to their core.</p><p>Runoen is a band whose music never leaves you cold: it touches, comforts, awakens and shakes the listener to their core. Pianist Juha Granlund's pop/jazz/folk compositions bring new life to the texts by beloved poets. The concert will feature poetry by Edith Södergran, Eino Leino, Uuno Kailas and Aleksis Kivi, among others.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68997/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68996", "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": 2201252, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T12:14:21.910345Z", "last_modified_time": "2026-05-12T12:14:21.910360Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791028.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201252/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T12:14:21.590048Z", "last_modified_time": "2026-05-29T12:13:35.987530Z", "date_published": null, "start_time": "2026-07-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, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/01227C9A6E03C59BF0EFC3FEB0E527E5/Neon_Puutarha", "sv": "http://www.espanlava.fi/sv/evenemang/event/01227C9A6E03C59BF0EFC3FEB0E527E5/Neon_Puutarha", "en": "http://www.espanlava.fi/en/events/event/01227C9A6E03C59BF0EFC3FEB0E527E5/Neon_Puutarha" }, "location_extra_info": null, "provider": null, "name": { "fi": "Neon Puutarha – Open Stage", "sv": "Neon Puutarha – Open Stage", "en": "Neon Puutarha – Open Stage" }, "provider_contact_info": null, "short_description": { "fi": "Neon Puutarha on kaleidoskooppinen yhtye, joka taiteilee popin, psykerockin ja kokeellisen jazzin rajapinnoilla.", "sv": "Neon Puutarha är ett kalejdoskopiskt band som skapar konst i gränslandet mellan pop, psykedelisk rock och experimentell jazz.", "en": "Neon Puutarha is a kaleidoscopic band that operates on the interfaces between pop, psych-rock and experimental jazz." }, "description": { "fi": "<p>Neon Puutarha on kaleidoskooppinen yhtye, joka taiteilee popin, psykerockin ja kokeellisen jazzin rajapinnoilla.</p><p>Sen soundi rakentuu orgaanisesta yhdessä soittamisesta, jossa muusikoiden välinen kemia, improvisaatio ja jatkuva muuntuvuus synnyttävät maanläheisen ja kiehtovan kokonaisuuden. Neon Puutarha on sekä instrumentaalisen musiikin että folk-vivahteisien sanoitusten varaan hengittävää tarinankerrontaa. Bändi on nähty viime vuonna mm. Qstock-festivaalilla Oulu2026 -lavalla sekä Raahen Rantajazzeilla.</p>", "sv": "<p>Neon Puutarha är ett kalejdoskopiskt band som skapar konst i gränslandet mellan pop, psykedelisk rock och experimentell jazz.</p><p>Dess sound skapas genom organiskt, gemensamt spelande där kemin mellan musikerna, improvisation och kontinuerlig omvandling skapar en jordnära och fascinerande helhet. Neon Puutarha är historieberättande som andas med hjälp av både instrumentell musik och sångtexter med intryck av folk. Bandet uppträdde i fjol bland annat på Oulu2026-scenen på Qstock-festivalen samt på Rantajatsit i Brahestad.</p>", "en": "<p>Neon Puutarha is a kaleidoscopic band that operates on the interfaces between pop, psych-rock and experimental jazz.</p><p>Their sound is built on organic playing together, where the chemistry between the musicians, improvisation and constant transformation create an earthy and engaging sound. Neon Puutarha is all about storytelling in the form of folk-influenced lyrics on a backdrop of instrumental music. Last year, the band performed at the Qstock festival, on the Oulu2026 stage and at Rantajazzit in Raahe.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68996/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68998", "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": 2201251, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T12:14:21.294989Z", "last_modified_time": "2026-05-12T12:14:21.295038Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785422.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201251/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T12:14:21.164082Z", "last_modified_time": "2026-05-29T12:13:35.790909Z", "date_published": null, "start_time": "2026-07-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/EFC1A4E7E33AFB7FF06416456987DA43/Helsinki_Cotonou_Ensemble", "sv": "http://www.espanlava.fi/sv/evenemang/event/EFC1A4E7E33AFB7FF06416456987DA43/Helsinki_Cotonou_Ensemble", "en": "http://www.espanlava.fi/en/events/event/EFC1A4E7E33AFB7FF06416456987DA43/Helsinki_Cotonou_Ensemble" }, "location_extra_info": null, "provider": null, "name": { "fi": "Helsinki Cotonou Ensemble", "sv": "Helsinki Cotonou Ensemble", "en": "Helsinki Cotonou Ensemble" }, "provider_contact_info": null, "short_description": { "fi": "Suomalais-beniniläis-tansanialainen, 8-henkinen kokoonpano on hioutunut 13 vuoden aikana saumattomaksi rytmiryhmäksi.", "sv": "Den finländsk-beninsk-tanzaniska sammansättningen med åtta personer har under 13 år blivit en sömlös rytmgrupp.", "en": "The dynamic 8-piece joyfully mixes afrobeat with jazz grooves and harmonies." }, "description": { "fi": "<p>Suomalais-beniniläis-tansanialainen, 8-henkinen kokoonpano on hioutunut 13 vuoden aikana saumattomaksi rytmiryhmäksi.</p><p>Yhtye on julkaissut kuusi studioalbumia, joista viimeisin \"Vive l'amour\" ilmestyi 1.11.2024 (Rockadillo Records). Levyllä HCE palaa musiikillisesti juurilleen sekoittaen beniniläisiä perinnerytmejä länsimaalaisiin ja afroamerikkalaisiin harmonisiin ja melodisiin ideoihin. Bändin dynaamiset ja energiset livekeikat ovat saaneet yleisöt tanssimaan ympäri maailmaa, Koreasta Kanadaan, Ruotsista Ranskaan ja Chilestä Tsekkeihin. Yhtye on tullut valituksi myös merkittäviin showcase-tapahtumiin, esimerkkinä WOMEX, Mundial Montreal ja Visa for Music. HCE valloittaa niin jazz- kuin maailmanmusiikkifanit, ikään katsomatta!</p><p>KOKOONPANO:<br> Noël Saïzonou – lyömäsoittimet, laulu<br> Janne Halonen – kitara, laulu<br> Sampo Riskilä – basso, laulu<br> Juha Räsänen – rummut, laulu<br> Mikko Pettinen – trumpetti, laulu<br> Joakim Berghäll – saksofoni, laulu<br> Kasheshi Makena – lyömäsoittimet, laulu<br> Visa Oscar – koskettimet</p>", "sv": "<p>Den finländsk-beninsk-tanzaniska sammansättningen med åtta personer har under 13 år blivit en sömlös rytmgrupp.</p><p>Grupperingen har publicerat sex studioalbum, av vilka det senaste, ”Vive l’amour”, kom ut den 1 november 2024 (Rockadillo Records). På albumet återvänder HCE till sina musikaliska rötter och blandar traditionella beninska rytmer med västerländska och afroamerikanska harmoniska och melodiska idéer. Bandets dynamiska och energiska livekonserter har fått publiken att dansa runtom i världen, från Korea till Kanada, Sverige till Frankrike och Chile till Tjeckien. Bandet har också valts till stora showcase-evenemang som WOMEX, Mundial Montreal och Visa for Music. HCE förtjusar både jazz- och världsmusikfans, oavsett ålder!</p>", "en": "<p>The dynamic 8-piece joyfully mixes afrobeat with jazz grooves and harmonies.</p><p>The vocalist and percussionist NOËL SAIZONOU and guitarist JANNE HALONEN have led the band through four continents and six studio sessions over the past 13 years, operating between North Europe and West Africa. The latest album Vive l’amour was released in 2024 (Rockadillo Records). Major appearances include tours in e.g. Canada and Chile, and they have played concerts all over Europe including e.g. Sziget, Pohoda and Musica Mundo. HCE was an official showcase artist at WOMEX 2018, at Mundial Montreal 2022 and Visa for Music 2024, to name a few international platforms. Their energetic live shows leave nobody sitting whether a world music or a jazz fan.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68998/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68995", "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": 2201250, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T12:14:20.871230Z", "last_modified_time": "2026-05-12T12:14:20.871243Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785641.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201250/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T12:14:20.734087Z", "last_modified_time": "2026-05-29T12:13:35.592630Z", "date_published": null, "start_time": "2026-07-22T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/77C51CB496D0FC3B153FB3E0340E9F04/Zangoma", "sv": "http://www.espanlava.fi/sv/evenemang/event/77C51CB496D0FC3B153FB3E0340E9F04/Zangoma", "en": "http://www.espanlava.fi/en/events/event/77C51CB496D0FC3B153FB3E0340E9F04/Zangoma" }, "location_extra_info": null, "provider": null, "name": { "fi": "Zangoma", "sv": "Zangoma", "en": "Zangoma" }, "provider_contact_info": null, "short_description": { "fi": "Vuonna 1996 Kolomwen kylässä, Sambian ytimessä, asui nuori poika nimeltään Waina.", "sv": "År 1996 bodde en ung pojke vid namn Waina i byn Kolomwe i hjärtat av Zambia.", "en": "In 1996 in the village of Kolomwe, in the heart of Zambia, lived a young boy named Waina." }, "description": { "fi": "<p>Vuonna 1996 Kolomwen kylässä, Sambian ytimessä, asui nuori poika nimeltään Waina.</p><p>Yhtenä päivänä hän kohtasi paikallisen poppamiehen, joka kertoi nähneensä näyn, jossa Waina tulee tapaamaan kolme rokkaria tuhansien järvien maasta. Yhdessä he aloittavat zamrockin uuden tulemisen. Ja niin ZANGOMA oli syntynyt.</p><p>Zangoma on uusi suomalais-sambialainen bändi, joka on ottanut tehtäväkseen tuoda zamrockin tälle vuosikymmenelle.</p><p>Dynaamisilla soittajilla ja vahvalla solistilla varustettu yhtye vie sinut maailmaan, josta et halua tulla takaisin. History in the making!</p><p>Kokoonpano:<br>Waina Kolomwe – laulu<br> Ville Salonen - kitara & laulu<br> Riku Pirttiniemi - basso & laulu (Death Hawks, Dust Mountain)<br> Miikka Heikkinen – rummut (Death Hawks)</p>", "sv": "<p>År 1996 bodde en ung pojke vid namn Waina i byn Kolomwe i hjärtat av Zambia.</p><p>En dag träffade han en lokal medicinman, som berättade att han haft en vision om att Waina skulle träffa tre rockare från ett land med tusentals sjöar. Tillsammans inleder de zamrockens återkomst. Och så föddes ZANGOMA.</p><p>Zangoma är ett nytt finsk-zambiskt band som har gjort det till sin uppgift att ta zamrocken till detta årtionde.</p><p>Med dynamiska musiker och en stark solist tar bandet dig till en värld du inte vill återvända från. History in the making!</p>", "en": "<p>In 1996 in the village of Kolomwe, in the heart of Zambia, lived a young boy named Waina.</p><p>One day, he encountered a local witch doctor who said that they had had a vision of Waina meeting three rockers from the land of a thousand lakes. Together, they would start the new coming of zamrock. And that's how ZANGOMA was born.</p><p>Zangoma is a new Finnish-Zambian band that has taken it upon itself to update zamrock to the current decade.</p><p>The dynamic musicians and strong vocalist will transport you to a world that you will never want to leave. History in the making!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68995/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68992", "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": 2201245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T10:13:02.656351Z", "last_modified_time": "2026-05-12T10:13:02.656364Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787936.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T10:13:02.599241Z", "last_modified_time": "2026-05-29T12:13:35.434411Z", "date_published": null, "start_time": "2026-07-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, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1AFDA4BDC6C79E2D4562B8E0792453C6/Pohjolan_Ilmari", "sv": "http://www.espanlava.fi/sv/evenemang/event/1AFDA4BDC6C79E2D4562B8E0792453C6/Pohjolan_Ilmari", "en": "http://www.espanlava.fi/en/events/event/1AFDA4BDC6C79E2D4562B8E0792453C6/Pohjolan_Ilmari" }, "location_extra_info": null, "provider": null, "name": { "fi": "Pohjolan Ilmari – Open Stage", "sv": "Pohjolan Ilmari – Open Stage", "en": "Pohjolan Ilmari – Open Stage" }, "provider_contact_info": null, "short_description": { "fi": "Taiteellisesti tinkimättömän ja pitkään taukoa pitäneen Pohjolan Ilmarin tarinat kertovat surullisista kohtaloista, läheisten kuolemasta, tyydytyksestä ihmiskunnan lopun edessä ja reissuista sairaalaan, mutta kaikkea leimaa silti inhimillinen lempeys ja huumori.", "sv": "Konstnärligt kompromisslösa Pohjolan Ilmari, som var på en lång paus, berättar historier om sorliga öden, närståendes död, tillfredsställelse inför mänsklighetens slut samt resor till sjukhuset, men allt präglas ändå av mänsklig välvillighet och humor.", "en": "The stories of the artistically uncompromising Pohjolan Ilmari, who is back after an extended break, feature sad fates, the death of loved ones, the satisfaction of facing the end of humanity and trips to the hospital, with human kindness and humour nevertheless running through them." }, "description": { "fi": "<p>Taiteellisesti tinkimättömän ja pitkään taukoa pitäneen Pohjolan Ilmarin tarinat kertovat surullisista kohtaloista, läheisten kuolemasta, tyydytyksestä ihmiskunnan lopun edessä ja reissuista sairaalaan, mutta kaikkea leimaa silti inhimillinen lempeys ja huumori.</p><p>Musiikillisesti yhtyeen uudempi tuotanto on polveilevaa eikä pidättäydy tiukasti enää Emma-ehdokkuuden (kriitikon valinta) saaneen esikoisalbuminsa \"Enkä mä rakasta ketään\" hahmottelemissa Kallio-romanttisissa raameissa, vaan luottaa esteettiseen näkemykseensä sitovana elementtinä kappaleiden välillä.</p>", "sv": "<p>Konstnärligt kompromisslösa Pohjolan Ilmari, som var på en lång paus, berättar historier om sorliga öden, närståendes död, tillfredsställelse inför mänsklighetens slut samt resor till sjukhuset, men allt präglas ändå av mänsklig välvillighet och humor.</p><p>Ur ett musikaliskt perspektiv är bandets nyare produktion böljande och håller sig inte längre strikt inom de Berghäll-romantiska ramarna som bandets första album \"Enkä mä rakasta ketään” med Emma-nominering (kritikernas val) skapade, utan litar på sin estetiska syn som ett bindande element mellan sina sånger.</p>", "en": "<p>The stories of the artistically uncompromising Pohjolan Ilmari, who is back after an extended break, feature sad fates, the death of loved ones, the satisfaction of facing the end of humanity and trips to the hospital, with human kindness and humour nevertheless running through them.</p><p>Musically, the band's newer material is polished and no longer sticks strictly to the Kallio romantic framework outlined by their Emma-nominated (critics' choice) debut album Enkä mä rakasta ketään, but relies on their aesthetic vision as a binding element between songs.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68992/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }