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=20
{ "meta": { "count": 22677, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=21", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=19" }, "data": [ { "id": "kulke:68973", "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": 2201222, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T08:14:29.085654Z", "last_modified_time": "2026-05-12T08:14:29.085669Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785704.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201222/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T08:14:28.963815Z", "last_modified_time": "2026-05-29T12:13:33.730314Z", "date_published": null, "start_time": "2026-07-08T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vallilan Tango", "sv": "Vallilan Tango", "en": "Vallilan Tango" }, "short_description": { "fi": "Vuonna 2005 perustettu tanssiorkesteri Vallilan Tango esittää tuttuja, tuntemattomia ja ennen julkaisemattomia iskelmäklassikoita 1930–50-luvuilta.", "sv": "Dansorkestern Vallilan Tango, som grundades 2005, framför kända, okända och tidigare opublicerade schlagerklassiker från 1930–50-talen.", "en": "Founded in 2005, the Vallilan Tango dance orchestra performs familiar, unknown and previously unpublished pop classics from the 1930s and 50s." }, "description": { "fi": "<p>Vuonna 2005 perustettu tanssiorkesteri Vallilan Tango esittää tuttuja, tuntemattomia ja ennen julkaisemattomia iskelmäklassikoita 1930–50-luvuilta.</p><p>Vallilan Tangon vanhantyylinen kokoonpano – mm. viulu, klarinetti, saksofoni, trumpetti, haitari ja banjolele – herättää henkiin noiden aikojen rahisevat savikiekot. Ripauksen eksotiikkaa mukaan tuo yhtyeen laulaja, hollantilainen Hans Wessels, joka jätti kotimaansa ja päätyi Suomeen laulamaan melankolisia tangoja.</p>", "sv": "<p>Dansorkestern Vallilan Tango, som grundades 2005, framför kända, okända och tidigare opublicerade schlagerklassiker från 1930–50-talen.</p><p>Vallilan Tangos gammaldags sammansättning – med bland annat violin, klarinett, saxofon, trumpet, dragspel och banjolele – väcker tidsålderns rasslande stenkakor till liv. Bandets sångare, holländska Hans Wessels, som lämnade sitt hemland och kom till Finland för att sjunga melankoliska tangos, bidrar med en gnutta exotik.</p>", "en": "<p>Founded in 2005, the Vallilan Tango dance orchestra performs familiar, unknown and previously unpublished pop classics from the 1930s and 50s.</p><p>Vallilan Tango's old-style line-up – including violin, clarinet, saxophone, trumpet, accordion and banjolele – brings to life the clinky clay discs of yesteryear. A touch of exoticism is added by the band's lead singer, Dutchman Hans Wessels, who left his homeland and came to Finland to sing melancholy tangos.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/926B04E9516BC6DB5DF8369D855BFC87/Vallilan_Tango", "sv": "http://www.espanlava.fi/sv/evenemang/event/926B04E9516BC6DB5DF8369D855BFC87/Vallilan_Tango", "en": "http://www.espanlava.fi/en/events/event/926B04E9516BC6DB5DF8369D855BFC87/Vallilan_Tango" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68973/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68971", "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:51/?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/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": 2201221, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T08:14:28.700538Z", "last_modified_time": "2026-05-12T08:14:28.700551Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785718.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201221/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-05-12T08:14:28.599311Z", "last_modified_time": "2026-05-29T12:13:33.571345Z", "date_published": null, "start_time": "2026-07-08T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "To the Circus – Sirkukseen!", "sv": "To the Circus – Till cirkusen!", "en": "To the Circus!" }, "short_description": { "fi": "Peremmälle, tähän telttaan mahtuu jokainen! Tervetuloa katsomaan Kirsi Kunnaksen iki-ihaniin sirkusrunoihin perustuva englanninkielinen esitys: Sirkukseen!", "sv": "Kom in, det här tältet rymmer alla! Välkommen till den engelskspråkiga föreställning Till Cirkusen, som baserar sig på Kirsi Kunnas underbara cirkusdikter!", "en": "Roll up, Roll up! Come see the new spoken-in-English circus show based on Kirsi Kunnas' book Sirkukseen!" }, "description": { "fi": "<p>Peremmälle, tähän telttaan mahtuu jokainen! Tervetuloa katsomaan Kirsi Kunnaksen iki-ihaniin sirkusrunoihin perustuva englanninkielinen esitys: Sirkukseen!</p><p>Näe puuhakas klovni, villinä vispaavat vanteet, trapetsitaiteilijan kaunis liito ja lavalle pääsystä kovasti innostuva, steppaava hevonen. Voi olla, että tämän sirkuksen vahvin mies tarvitsee apuasi, ja taikuri saattaa saada pääsi pyörälle.</p><p>Kunnaksen tekstit heräävät Silja Palomäen taikomiin säveliin ja tunnelmat vaihtuvat laulun, kanteleen, ukuleleen ja klarinetin siivittäminä.</p><p>Tervetuloa siis ihan kaikki!</p>", "sv": "<p>Kom in, det här tältet rymmer alla! Välkommen till den engelskspråkiga föreställning Till Cirkusen, som baserar sig på Kirsi Kunnas underbara cirkusdikter!</p><p>Se en energisk clown, hula-hularingar som snurrar vilt, en trapetsartists sköna glidflykt och en stepparhäst som blir mycket entusiastisk när den får kliva upp på scenen. Det kan hända att den starkaste mannen i denna cirkus behöver din hjälp och trollkarlen kan få dig konfys.</p><p>Kunnas texter väcks till liv av Silja Palomäkis magiska melodier och stämningarna förändras med ackompanjemang av sång, kantele, ukulele och klarinett.</p><p>Välkomna allihopa!</p>", "en": "<p>Roll up, Roll up! Come see the new spoken-in-English circus show based on Kirsi Kunnas' book Sirkukseen!</p><p>The clowns will play, hoops will spin and the trapeze artists will fly. Witness the overly enthusiastic tap-dancing pony, the strongman who needs help from the audience, and the magician who will have your head in a twist!</p><p>All accompanied by live singing and musical playing of Kantele, ukulele and clarinet by Silja Palomäki.</p><p>Welcome one and all!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/38E1D4807F8093D42CCF0CD6A2C3C155/To_the_Circus_Sirkukseen_", "sv": "http://www.espanlava.fi/sv/evenemang/event/38E1D4807F8093D42CCF0CD6A2C3C155/To_the_Circus_Till_cirkusen_", "en": "http://www.espanlava.fi/en/events/event/38E1D4807F8093D42CCF0CD6A2C3C155/To_the_Circus_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68971/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68970", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201239, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T10:13:00.231789Z", "last_modified_time": "2026-05-12T10:13:00.231806Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785341.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201239/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T10:13:00.050592Z", "last_modified_time": "2026-05-29T12:13:33.190944Z", "date_published": null, "start_time": "2026-07-06T12:00:00Z", "end_time": "2026-07-06T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Päivitä Leino", "sv": "Päivitä Leino", "en": "Päivitä Leino" }, "short_description": { "fi": "Eino Leinon päivänä lavalla nähdään maan eturivin runoilijoita, spoken word -artisteja sekä laulaja-lauluntekijöitä jo perinteeksi muodostuneessa tapahtumassa.", "sv": "På Eino Leino-dagens evenemang, som redan blivit en tradition, får vi på scenen se landets ledande poeter, spoken word-artister samt sångare och låtskrivare.", "en": "On Eino Leino Day, the public will be treated to the country's leading poets, spoken word artists and singer-songwriters taking to the stage in what has become a tradition to honour our national poet." }, "description": { "fi": "<p>Eino Leinon päivänä lavalla nähdään maan eturivin runoilijoita, spoken word -artisteja sekä laulaja-lauluntekijöitä jo perinteeksi muodostuneessa tapahtumassa.</p><p>Tänä vuonna Espan lavalla esiintyy kahdesti Finlandia-palkittu kirjailija <b>Jukka Viikilä</b>, osattomuutta ja elämän yksityiskohdista pulppuavaa kauneutta kuvaava runoilija <b>Aura Nurmi</b>, laulaja-lauluntekijä <b>Miika Leivo</b>, Turussa asuva kirjoittaja ja kirjallisuusalan sekatyöläinen <b>Susinukke Kosola</b> (Daniil Kozlov) sekä spoken word -artisti <b>Rauhatäti</b>. Tapahtumassa julkistetaan lisäksi vuoden 2026 Eino Leinon palkinnon saaja.</p><p>Tilaisuuden järjestää Eino Leinon Seura Helsingin kaupungin tuella. Iltapäivän juontajana toimii runoilija <b>Harri Hertell</b>. Lämpimästi tervetuloa!</p><p><b>Aikataulu</p><p>15.00 | Jukka Viikilä</b><br>Jukka Viikilä on kahdesti Finlandia-palkittu kirjailija, joka on julkaissut sekä romaaneja että runoteoksia.</p><p><b>15.20 | Aura Nurmi</b><br>Aura Nurmi on helsinkiläinen palkittu runoilija ja kirjailija, joka käsittelee teksteissään usein köyhyyttä ja osattomuutta, mutta myös elämän yksityiskohdista pulppuavaa kauneutta ja onnea.</p><p><b>15.40 | Miika Leivo</b><br>Lahteen hiljattain tiensä löytänyt Miika Leivo yhdistelee suuren maailman folkkia ja indietä suomalaiseen lauluntekijäperinteeseen. Meno voi olla kotimaiseen tapaan melankolista muttei musertavaa. Vuonna 2024 julkaistu Nääj debyyttialbumi sai Pekka Laineen arvioissa neljä tähteä ja kappaleet soivat radiotaajuuksilla sekä soittolistoilla. Albumin tuotti Maustetyttöjen ensimmäisen albumin tuottanut Pentti Amore. Intensiivisistä keikoista tunnettu Miika on nähty lämmittämässä lavoja mm. Samuli Putrolle ja Edu Kettuselle. Uutta musiikkia on luvassa vuonna 2026.</p><p><b>16.00 | Eino Leinon palkinnon saajan julkistaminen</b><br>Eino Leinon palkinto on vuodesta 1956 alkaen jaettu kirjallisuuspalkinto, jonka palkintosumma on 5200 euroa ja sen lahjoittaa Suomen Kirjasäätiö. Vuoden 2025 palkinnon saaja julkaistaan Espan lavalla.</p><p><b>16.10 | Susinukke Kosola</b><br>Daniil Kozlov (s. 1991), taiteilijanimeltään Susinukke Kosola on pietarilaissyntyinen, Turussa asuva kirjoittaja ja kirjallisuusalan sekatyöläinen. Häneltä on julkaistu kolme runokirjaa, yksi genrehybridi ja yksi romaani, jotka ovat saaneet kriitikoiden suitsutusta, palkintoja ja ehdokkuuksia. Hänen kolmas teoksensa Varisto on kokeellinen myös julkaisumuodoltaan – kokonaan käsin kirjoitettua kokoelmaa ei voi ostaa, sen voi ainoastaan saada tunnustusta vastaan. Hänen neljäs teoksensa Turkoosi vyöhyke on genrehybridi, joka yhdistää runoutta, esseistiikkaa ja säeromaanimuotoa.<br> Kosolan viimeisin teos on henkilökohtaista proosaa edustava RYSSÄ. Kosola tunnetaan myös runouteen ja yhteiskunnalliseen kirjallisuuteen keskittyvän Kolera-kollektiivi -nimisen kustantamon perustajana ja lavarunoilijana, sekä kansallisen Runografi-hankkeen ideoijana ja vetäjänä. Taiteellisen työskentelyn lisäksi hän toimii lyriikan kirjoittamisen opettajana muun muassa Turun yliopistossa ja työskentelee aktiivisesti alueensa kirjallisella kentällä.</p><p><b>16.30 | Rauhatäti & Juissi Vainiola</b><br>Rauhatäti aka Hanna Yli-Tepsa on suomalainen rap- ja spoken word -artisti, joka on julkaissut musiikkia sekä esiintynyt rap- ja runolavoilla vuodesta 2007 alkaen. Kitaristi Juissi Vainiola tunnetaan postpunk kentältä, muun muassa luotsaamastaan Maaseudun tulevaisuus -triosta. Nyt Rauhatäti ja Vainiola vie kuulijat usvaisen ambienssin sylissä Kirken saarelle, Tallinnan öisille kaduille ja lopulta jokien virrassa kohti etelää.</p><p>Lisätiedot ja haastattelut: harri.hertell@gmail.com</p>", "sv": "<p>På Eino Leino-dagens evenemang, som redan blivit en tradition, får vi på scenen se landets ledande poeter, spoken word-artister samt sångare och låtskrivare.</p><p>På Esplanadestraden uppträder i år författaren <b>Jukka Viikilä</b>, som vunnit två Finlandiapris, poeten <b>Aura Nurmi</b>, som beskriver lottlöshet och den skönhet som detaljerna i livet sprudlar, sångaren och låtskrivaren <b>Miika Leivo</b>, författaren och mångsysslaren inom litteratur <b>Susinukke Kosola</b> (Daniil Kozlov) från Åbo samt spoken word-artisten <b>Rauhatäti</b>. Under evenemanget offentliggörs också mottagaren av Eino Leino-priset 2026.</p><p>Evenemanget ordnas av Eino Leino-sällskapet med stöd av Helsingfors stad. Programledaren för eftermiddagen är poeten <b>Harri Hertell</b>. Varmt välkommen!</p><p><b>Tidtabell</p><p>15.00 | Jukka Viikilä</b><br>Jukka Viikilä är en författare som har vunnit två Finlandiapris och skrivit både romaner och diktverk.</p><p><b>15.20 | Aura Nurmi</b><br>Aura Nurmi är en belönad poet och författare från Helsingfors. I sina texter behandlar hon ofta fattigdom och lottlöshet, men även den skönhet och lycka som detaljerna i livet sprudlar.</p><p><b>15.40 | Miika Leivo</b><br>Miika Leivo, som nyligen flyttat till Lahtis, kombinerar internationell folk och indie med finländsk låtskrivartradition. Stämningen kan vara melankolisk som i Finland, men inte nedslående. Debutalbumet Nääj, som släpptes 2024, fick fyra stjärnor av Pekka Laine i en recension och låtarna spelades i radion samt på spellistor. Albumet producerades av Pentti Amore, som också producerade det första albumet för Maustetytöt. Miika är känd för sina intensiva konserter och har spelat som förband till bland annat Samuli Putro och Edu Kettunen. Ny musik utlovas 2026.</p><p><b>16.00 | Mottagaren av Eino Leino-priset offentliggörs</b><br>Eino Leino-priset är ett litteraturpris som delats ut sedan 1956. Prissumman på 5 200 euro doneras av Finlands bokstiftelse. Pristagaren 2026 offentliggörs på Esplanadestraden.</p><p><b>16.10 | Susinukke Kosola</b><br>Daniil Kozlov (född 1991), artistnamn Susinukke Kosola, är en författare och mångsysslare inom litteratur som är född i S:t Petersburg och bor i Åbo. Han har publicerat tre diktböcker, en genrehybrid och en roman. Verken har fått beröm av kritiker, pris och nomineringar. Hans tredje verk, Varisto, är experimentellt också med tanke på publiceringsformen – samlingen är helt handskriven och kan inte köpas, utan bara fås mot ett erkännande. Det fjärde verket, Turkoosi vyöhyke, är en genrehybrid som förenar poesi, essäistik och roman i form av verser.<br> Kosolas senaste verk är RYSSÄ, ett personligt prosaverk. Kosola är också känd som grundare av och scenpoet hos förlaget Kolera-kollektiivi, som fokuserar på poesi och samhällelig litteratur, samt som idéskapare och ledare för det nationella projektet Runografi. Vid sidan av sitt konstnärliga arbete undervisar han i lyrikskrivande bland annat vid Åbo universitet och är aktiv på den litterära scenen i sin region.</p><p><b>16.30 | Rauhatäti & Jussi Vainiola</b><br>Rauhatäti, eller Hanna Yli-Tepsa, är en finländsk rap- och spoken word-artist som har publicerat musik och uppträtt på rap- och poesiscener sedan 2007. Gitarristen Juissi Vainiola är känd från postpunkscenen, bland annat för sin trio Maaseudun tulevaisuus. Nu tar Rauhatäti och Vainiola sina lyssnare in i en dimmig stämning på Kirkes ö, nattetid på gatorna i Tallinn samt till slut med flodernas strömmar mot söder.</p>", "en": "<p>On Eino Leino Day, the public will be treated to the country's leading poets, spoken word artists and singer-songwriters taking to the stage in what has become a tradition to honour our national poet.</p><p>This year, the programme will feature two-time Finlandia Prize-winning author <b>Jukka Viikilä</b>; poet <b>Aura Nurmi</b>, who writes about deprivation and the beauty of life's little details; singer-songwriter <b>Miika Leivo</b>; Turku-based writer and mixed literary worker <b>Susinukke Kosola</b> (Daniil Kozlov); and spoken word artist <b>Rauhatäti</b>. The recipient of the 2026 Eino Leino Prize will also be announced during the event.</p><p>The event is organised by the Eino Leino Society with the support of the City of Helsinki. The afternoon will be hosted by poet <b>Harri Hertell</b>. We hope to see you there!</p><p><b>Schedule</p><p>15.00 | Jukka Viikilä</b><br>Jukka Viikilä is a two-time Finlandia Prize-winning author who has published both novels and poetry.</p><p><b>15.20 | Aura Nurmi</b><br>Aura Nurmi is an award-winning poet and writer based in Helsinki, whose work often deals with poverty and deprivation, but also with the beauty and happiness that can be found in the little things in life.</p><p><b>15.40 | Miika Leivo</b><br>Miika Leivo, who recently found his way to Lahti, combines folk and indie music from around the globe with the Finnish songwriting tradition. It can be melancholy in the Finnish tradition, but it will not overwhelm the audience. His debut album Nääj released in 2024 received four stars in Pekka Laine's reviews and the songs are playing on radio frequencies and playlists. The album was produced by Pentti Amore, who produced the first record by Maustetytöt. Known for his intense performances, Miika has been seen opening for Samuli Putro and Edu Kettunen, among others. He will be releasing new music in 2026.</p><p><b>16.00 | Eino Leino Prize winner announcement</b><br>The Eino Leino Prize is a literary prize with an award sum of 5,200 euros awarded by the Finnish Book Foundation since 1956. The recipient of the 2025 prize will be announced on Espa Stage.</p><p><b>16.10 | Susinukke Kosola</b><br>Daniil Kozlov (b. 1991), pen name Susinukke Kosola, is a writer and a mixed literary worker from St Petersburg living in Turku. He has published three books of poetry, a genre hybrid work and a novel, which have received critical acclaim, awards and nominations. His third work, Varisto, is also experimental in its form – the collection written entirely by hand cannot be bought, only received in exchange for recognition. His fourth work, Turkoosi vyöhyke, is a genre hybrid that combines poetry, essays and the verse novel form. Kosola's latest work is RYSSÄ, a personal work of prose. Kosola is also known as the founder and lyric poet of the Kolera-kollektiivi collective, a publishing house focusing on poetry and social literature, and as the creator and leader of the national Runografi project. In addition to his artistic work, he teaches lyric writing at the University of Turku and is active in the local literary scene.</p><p><b>16.30 | Rauhatäti & Jussi Vainiola</b><br>Rauhatäti aka Hanna Yli-Tepsa is a Finnish rap and spoken word artist who has been releasing music and performing on rap and poetry stages since 2007. Guitarist Juissi Vainiola is known from the postpunk scene, among others for his trio Maaseudun tulevaisuus. Now Rauhatäti and Vainiola wrap the audience inside a foggy ambience and head to the island of Kirke, to the streets of Tallinn at night and finally to the rivers flowing southwards.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DC73C52E73AAA6943ABD57A05BB6781A/Paivita_Leino", "sv": "http://www.espanlava.fi/sv/evenemang/event/DC73C52E73AAA6943ABD57A05BB6781A/Paivita_Leino", "en": "http://www.espanlava.fi/en/events/event/DC73C52E73AAA6943ABD57A05BB6781A/Paivita_Leino" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68970/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68972", "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": 2201220, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T08:14:28.280524Z", "last_modified_time": "2026-05-12T08:14:28.280537Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785717.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201220/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T08:14:28.172322Z", "last_modified_time": "2026-05-29T12:13:32.722135Z", "date_published": null, "start_time": "2026-07-04T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hopeasiivet", "sv": "Hopeasiivet", "en": "Hopeasiivet" }, "short_description": { "fi": "Hopeasiivet ei jaksa musiikillista small talkia, vaan luottaa vilpittömyyden voimaan.", "sv": "Hopeasiivet orkar inte med musikalisk small talk utan litar på kraften av uppriktighet.", "en": "Hopeasiivet is not given to musical small talk but relies on the power of sincerity." }, "description": { "fi": "<p>Hopeasiivet ei jaksa musiikillista small talkia, vaan luottaa vilpittömyyden voimaan.</p><p>Yhtyeelle tunnusomaista on viitata alati vaihtelevien vaikutteidensa ääripisteisiin. Ehkä tänäänkin kännykän muistioon kirjataan tahti Kate Bushia, huomenna toinen Ultra Brata ja sunnuntaina kertosäkeellinen PMMP-tyyliin. Välillä kaikki on sirpaleista ja hupsuakin – ja juuri siinä piilee viehätys. Jokainen sana ja sävel merkitsee, tai niin Hopeasiivet ainakin uskoo.</p><p>Kahden EP:n ja useiden singlejulkaisujen jälkeen yhtye julkaisi odotetun esikoisalbuminsa tammikuussa 2026.</p>", "sv": "<p>Hopeasiivet orkar inte med musikalisk small talk utan litar på kraften av uppriktighet.</p><p>Bandet kännetecknas av referenser till ytterligheterna i sina ständigt föränderliga influenser. Kanske också i dag antecknas Kate Bush i mobilens anteckningsblock, i morgon Ultra Bra och på söndag en refräng i PMMP:s stil. Ibland är allt fragmenterat och fånigt – och det är just det som fascinerar. Varje ord och melodi är betydelsefull, eller åtminstone så tror Hopeasiivet.</p><p>Efter två EP:s och flera singlar släppte bandet sitt efterlängtade debutalbum i januari 2026.</p>", "en": "<p>Hopeasiivet is not given to musical small talk but relies on the power of sincerity.</p><p>The band is characterised by references to the extremes of their ever-changing influences. Today, a Kate Bush bar may be jotted down in the phone notes, tomorrow another one from Ultra Bra and on Sunday a PMMP-style chorus. Sometimes everything is fragmented and silly – and therein lies the charm. Every word and every tune counts, or so Hopeasiivet believes.</p><p>After two EPs and several singles, the band released their highly anticipated debut album in January 2026.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet", "sv": "http://www.espanlava.fi/sv/evenemang/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet", "en": "http://www.espanlava.fi/en/events/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68972/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68969", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201219, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T08:14:27.926807Z", "last_modified_time": "2026-05-12T08:14:27.926820Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785685.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201219/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-05-12T08:14:27.807313Z", "last_modified_time": "2026-05-29T12:13:32.566537Z", "date_published": null, "start_time": "2026-07-04T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skidit-disko", "sv": "Skidit-discot", "en": "Skidit-disko" }, "short_description": { "fi": "Skidit-disko on oodi elämälle, tanssille ja kavereille. Se on huippubiisejä, leikkiä ja kreisibailausta kaikenikäisille. Diskon puheosuudet englanniksi.", "sv": "Skidit-discot är ett ode till livet, dansen och kompisarna. Där utlovas de bästa låtarna, lek och galet festande för alla åldrar. De talade avsnitten på discot är på engelska.", "en": "Skidit-disko is an ode to life, dance, and friendship – crazy fun for all ages! Spoken in English." }, "description": { "fi": "<p>Skidit-disko on oodi elämälle, tanssille ja kavereille. Se on huippubiisejä, leikkiä ja kreisibailausta kaikenikäisille. Diskon puheosuudet englanniksi.</p><p>Jo kymmenen vuoden ajan Skidit-disko on tanssittanut laivoilla, museoissa, tuntureilla ja klubeilla. Kymmeniätuhansia bailaajia, litroittain pillimehua ja läjäpäin biisejä! Mukana menossa on aina DJ ja MC, välillä bileisiin kutsutaan kivoja vieraita.</p><p>Let’s BAILA!</p><p>IG: @skiditfestarit<br>FB: @skidit.fi<br>https://www.skidit.fi/</p>", "sv": "<p>Skidit-discot är ett ode till livet, dansen och kompisarna. Där utlovas de bästa låtarna, lek och galet festande för alla åldrar. De talade avsnitten på discot är på engelska.</p><p>Skidit-discot har redan i tio år fått publiken att dansa på fartyg, i museer, på fjäll och klubbar. Tiotusentals festdeltagare, otaliga liter sugrörssaft och massor av låtar! I discot deltar alltid en DJ och MC, ibland med roliga gäster.</p>", "en": "<p>Skidit-disko is an ode to life, dance, and friendship – crazy fun for all ages! Spoken in English.</p><p>For over ten years, Skidit-disko has been making people dance on boats, in museums, on mountaintops, and in clubs. Tens of thousands of partygoers, liters of lemonade, and tons of great tracks! Every party features a DJ and an MC, and sometimes special guests join the fun.</p><p>Let’s BAILA!</p><p>IG: @skiditfestarit<br>FB: @skidit.fi<br>https://www.skidit.fi/</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-disko", "sv": "http://www.espanlava.fi/sv/evenemang/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-discot", "en": "http://www.espanlava.fi/en/events/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-disko" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68969/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68968", "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": 2201218, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T08:14:27.568529Z", "last_modified_time": "2026-05-12T08:14:27.568542Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785716.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201218/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T08:14:27.460862Z", "last_modified_time": "2026-05-29T12:13:32.407060Z", "date_published": null, "start_time": "2026-07-03T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Rakkaudella Helena Lindgren & Jorma Uotinen", "sv": "Rakkaudella Helena Lindgren & Jorma Uotinen", "en": "Rakkaudella Helena Lindgren & Jorma Uotinen" }, "short_description": { "fi": "Uotisen ja Lindgrenin musiikillinen yhteistyö on kunnianosoitus elämälle ja taiteelle.", "sv": "Det musikaliska samarbetet mellan Uotinen och Lindgren är en hyllning till livet och konsten.", "en": "The musical collaboration between Uotinen and Lindgren is a tribute to life and art." }, "description": { "fi": "<p>Uotisen ja Lindgrenin musiikillinen yhteistyö on kunnianosoitus elämälle ja taiteelle.</p><p>Konsertti on kahden kokeneen tulkitsijan vuoropuhelu, joka sykkii samaa rytmiä kuin rakkaus itse. Se käsittelee taiteilijoiden omia elämänvaiheita, rakkautta, ystävyyttä ja kaipausta.</p><p><b>Jorma Uotinen</b> on suomalaisen taiteen monilahjakkuus. Hänen tumma äänensä ja vahva läsnäolonsa tekevät jokaisesta esiintymisestä ainutlaatuisen kokemuksen.</p><p><b>Helena Lindgren</b> on laulaja ja näyttelijä, jonka lämmin ja sävykäs ääni on kuin luotu chansonin, jazzin ja suomalaisten ikivihreiden tulkintaan.</p><p>Rakkaudella Helena & Jorma -konserteissa kuullaan rakastettuja suomalaisia ja kansainvälisiä (\"Hymne à l’amour\", \"Dance Me to the End of Love\", \"Puhu hiljaa rakkaudesta\") lauluja, teemoina rakkaus, aika ja ihmisyys.</p><p>Säestys: Trio Avec <br> <br><i>“Lauluja vuosien varrelta, yksin ja yhdessä. Lauluja rakkaudesta, kaipuusta, elämän illuusioista, ilosta, surusta, kielletyistä leikeistä, villeistä ruusuista, elämästä. Meistä itsestämme.”</i></p>", "sv": "<p>Det musikaliska samarbetet mellan Uotinen och Lindgren är en hyllning till livet och konsten.</p><p>Konserten är en dialog mellan två erfarna uttolkare och den pulserar i samma takt som kärleken själv. Den handlar om konstnärernas egna livsskeden, om kärlek, vänskap och längtan.</p><p><b>Jorma Uotinen</b> är en multitalang inom finländsk konst. Hans mörka röst och starka närvaro gör varje uppträdande till en unik upplevelse.</p><p><b>Helena Lindgren</b> är en sångare och skådespelare med en varm och nyanserad röst som är som skapad för tolkning av chanson, jazz och finländska evergreens.</p><p>Konserterna Rakkaudella Helena & Jorma bjuder på älskade finländska och internationella sånger (”Hymne à l’amour”, ”Dance Me to the End of Love”, ”Puhu hiljaa rakkaudesta”) med kärlek, tid och mänsklighet som teman.</p><p>Ackompanjemang: Trio Avec<br> <br><i>”Sånger från årens lopp, ensam och tillsammans. Sånger om kärlek, längtan, livets illusioner, glädje, sorg, förbjudna lekar, vilda rosor, livet. Om oss själva.”</i></p>", "en": "<p>The musical collaboration between Uotinen and Lindgren is a tribute to life and art.</p><p>The concert is a dialogue between two experienced interpreters, beating to the same rhythm as love itself. It deals with the artists' own lives, love, friendship and longing.</p><p><b> Jorma Uotinen</b> is a multi-talented Finnish artist. His dark voice and strong presence make every performance a unique experience.</p><p><b>Helena Lindgren</b> is a singer and actor whose warm voice rich in nuances seems made for interpreting chanson, jazz and Finnish evergreens</p><p>The Rakkaudella Helena & Jorma concerts will feature beloved Finnish and international songs (Hymne à l'amour, Dance Me to the End of Love, Puhu hiljaa rakkaudesta) on the themes of love, time and humanity.</p><p>Accompaniment: Trio Avec <br> <br><i>\"Songs from over the years, alone and together. Songs about love, longing, the illusions of life, joy, sorrow, forbidden games, wild roses, life. About ourselves.\"</i></p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen", "sv": "http://www.espanlava.fi/sv/evenemang/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen", "en": "http://www.espanlava.fi/en/events/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68968/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68966", "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": 2201216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T08:14:26.791140Z", "last_modified_time": "2026-05-12T08:14:26.791154Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786106.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T08:14:26.687495Z", "last_modified_time": "2026-05-29T12:13:32.198656Z", "date_published": null, "start_time": "2026-07-02T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "The Royal Band of India – Open Stage", "sv": "The Royal Band of India – Open Stage", "en": "The Royal Band of India – Open Stage" }, "short_description": { "fi": "Tule kuuntelemaan Intian eri alueiden perinteistä musiikkia!", "sv": "Kom och lyssna på traditionell musik från olika regioner i Indien!", "en": "Join us to experience folk songs from different regions of India!" }, "description": { "fi": "<p>Tule kuuntelemaan Intian eri alueiden perinteistä musiikkia!</p>", "sv": "<p>Kom och lyssna på traditionell musik från olika regioner i Indien!</p>", "en": "<p>Join us to experience folk songs from different regions of India!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B614D4144BF0A738D4D8D4011DB17A2C/The_Royal_Band_of_India", "sv": "http://www.espanlava.fi/sv/evenemang/event/B614D4144BF0A738D4D8D4011DB17A2C/The_Royal_Band_of_India", "en": "http://www.espanlava.fi/en/events/event/B614D4144BF0A738D4D8D4011DB17A2C/The_Royal_Band_of_India" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68966/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68965", "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": 2201210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T07:12:58.199796Z", "last_modified_time": "2026-05-12T07:12:58.199815Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786104.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201210/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T07:12:58.129368Z", "last_modified_time": "2026-05-29T12:13:32.027742Z", "date_published": null, "start_time": "2026-07-02T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sahaj Unlimited – Open Stage", "sv": "Sahaj Unlimited – Open Stage", "en": "Sahaj Unlimited – Open Stage" }, "short_description": { "fi": "Voiko omilta ajatuksilta saada rauhaa musiikin avulla?", "sv": "Kan musik hjälpa dig att finna ro från dina tankar?", "en": "Can music help you find peace of mind?" }, "description": { "fi": "<p>Voiko omilta ajatuksilta saada rauhaa musiikin avulla?</p><p>Sahaj Unlimited on intialaisella tyylillä soivaa folkpoppia, jonka juuret ovat henkisessä bhajan-genren perinteessä. Yhtye on ilman maarajoja liikkuva, usean erimaalaisen muusikon bändi, jonka jäseniä yhdistää meditointiharrastus. Mukana yhtyeessä on intialaisten muusikoiden lisäksi myös suomalaisia musiikin ammattilaisia, keskieurooppalainen laulaja sekä tabla-rumpujen soittaja.</p><p>Ohjelmassa on bhajan-lauluja, joita Sahaj Unlimited on levyttänyt studiossa 2000-luvun alkupuolella. Lisäksi luvassa on semiklassista intialaista tanssia, jota Sahaj Unlimited säestää elävällä musiikilla.</p><p>Yhtyeen musiikki liittyy Sahaja Yoga -meditaatioon, ja osana konserttia pystytämme Espan puistoon meditointipisteen, jossa ohikulkijat ja konserttiväki voivat kokeilla meditaatiota.</p><p>Tervetuloa nauttimaan intialaisen musiikin sointiväreistä, tanssista ja hyvistä meditointiviboista sekä testaamaan musiikin vaikutusta omaan sisäiseen rauhaan!</p>", "sv": "<p>Kan musik hjälpa dig att finna ro från dina tankar?</p><p>Sahaj Unlimited är folkpop med en indisk twist och rötter i den andliga bhajan-genrens tradition. Gruppen består av flera musiker från olika länder som alla delar en passion för meditation och som rör sig över ländernas gränser. Till bandet hör förutom indiska musiker även finländska yrkesmusiker, en mellaneuropeisk sångare samt en tabla-trumslagare.</p><p>Programmet innehåller bhajan-sånger som Sahaj Unlimited har spelat in på skiva i studion i början av 2000-talet. Det blir också semiklassisk indisk dans, som Sahaj Unlimited ackompanjerar med livemusik.</p><p>Gruppens musik är kopplad till Sahaja Yoga-meditation, och som en del av konserten ordnar vi en meditationsplats i Esplanadparken där förbipasserande och konsertdeltagare kan pröva meditation.</p><p>Välkommen att njuta av tonerna av indisk musik, dans och god meditationsstämning och testa musikens effekt på din inre frid!</p>", "en": "<p>Can music help you find peace of mind?</p><p>Sahaj Unlimited is Indian-style folk pop with roots in the spiritual tradition of the Bhajan genre. The group is a band of several musicians from different countries, all of whom share a passion for meditation. In addition to Indian musicians, the band also includes Finnish music professionals, a Central European singer and a tabla drummer.</p><p>The setlist features Bhajan songs recorded in the studio by Sahaj Unlimited in the early 2000s. The audience will also be treated to semi-classical Indian dance, accompanied by live music by Sahaj Unlimited.</p><p>The band's music is linked to Sahaja Yoga meditation, and as part of the concert we will set up a meditation station in Esplanade Park where passers-by and concert-goers can explore meditation.</p><p>Come along and enjoy the timbres of Indian music, dancing and good meditation vibes and see how music affects your inner peace!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/77FD3F21C800D9EA9C78E68D6E2878EA/Sahaj_Unlimited", "sv": "http://www.espanlava.fi/sv/evenemang/event/77FD3F21C800D9EA9C78E68D6E2878EA/Sahaj_Unlimited", "en": "http://www.espanlava.fi/en/events/event/77FD3F21C800D9EA9C78E68D6E2878EA/Sahaj_Unlimited" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68965/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68967", "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": 2201215, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T08:14:26.319575Z", "last_modified_time": "2026-05-12T08:14:26.319592Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785939.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201215/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T08:14:26.169449Z", "last_modified_time": "2026-05-29T12:13:31.748895Z", "date_published": null, "start_time": "2026-07-01T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Teini-Pää – indiespa", "sv": "Teini-Pää – indiespa", "en": "Teini-Pää – indiespa" }, "short_description": { "fi": "Teini-Pää soittaa suloisen riipivää indierockia, jonka ytimessä on herkkyys ja omaehtoisuus.", "sv": "Teini-Pää spelar sött skärande indierock med fokus på känslighet och spontanitet.", "en": "Teini-Pää plays sweetly infectious indie rock with sensitivity and independence at its core." }, "description": { "fi": "<p>Teini-Pää soittaa suloisen riipivää indierockia, jonka ytimessä on herkkyys ja omaehtoisuus.</p><p>Vuonna 2018 perustetun Teini-Pään debyyttialbumi <i>Maailma kyllä odottaa</i> (2022) oli ehdolla Emma Gaalan Kriitikoiden valinta -kategoriassa. Sittemmin ilmestyneet <i>Sata syytä aloittaa</i> (2023) ja <i>Mietin minne meet</i> -EP (2024) saivat niin ikään ylistävän vastaanoton. Yhtye on ihastuttanut yleisöään Suomen suurimmilla festareilla, lukuisilla klubeilla ja tietenkin bändille tärkeissä DIY-tapahtumissa. Keväällä 2024 Teini-Pää valloitti sydämiä Yhdysvaltojen-kiertueella.</p><p>Yhtyeen odotettu kolmas albumi julkaistiin tammikuussa 2026.</p><p>Teini-Pään oivaltavilla popkoukuilla varustellut biisit ylistävät yhteyttä muihin, mutta kertovat myös yksinäisyydestä ja yhteiskunnallisten rakenteiden kivuliaasta heijastumisesta yksilön elämään. Bändin hehkutettu live-energia käy suoraan kuulijoiden sydämiin.</p><p>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>Teini-Pää spelar sött skärande indierock med fokus på känslighet och spontanitet.</p><p>Teini-Pää grundades 2018 och dess debutalbum <i>Maailma kyllä odottaa</i> (2022) nominerades i Emmagalans kategori Kritikernas val. De senare albumen <i>Sata syytä aloittaa</i> (2023) och <i>Mietin minne meet</i> -EP:n (2024) togs också emot med beröm. Bandet har bedårat publiken på Finlands största festivaler, många klubbar och naturligtvis på DIY-evenemang, som är viktiga för bandet. Våren 2024 erövrade Teini-Pää hjärtan på en turné i Förenta Staterna.</p><p>Bandets efterlängtade tredje album släpptes i januari 2026.</p><p>Teini-Pääs insiktsfulla poplåtar hyllar kontakten med andra, men berättar också om ensamhet och den smärtsamma reflektionen av sociala strukturer i individens liv. Bandets berömda live-energi går rakt in i lyssnarnas hjärtan.</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>Teini-Pää plays sweetly infectious indie rock with sensitivity and independence at its core.</p><p>Founded in 2018, Teini-Pää's debut album <i>Maailma kyllä odottaa</i> (2022) was nominated in the critics' choice category at the Emma Gaala awards show. The subsequent <i>Sata syytä aloittaa</i> (2023) and <i>Mietin minne meet</i> EP (2024) were also well received. The band has delighted audiences at Finland's biggest festivals, numerous clubs and of course at DIY events that are important to the band. In the spring of 2024, Teini-Pää captured hearts with a tour of the United States.</p><p>The band's highly anticipated third album was released in January 2026.</p><p>Teini-Pää's insightful pop songs celebrate connection with others, but also speak of loneliness and the painful reflection of social structures in the life of the individual. The band's vaunted live energy aims at the listeners’ hearts and will not miss.</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>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6D53796EF9CC993F245277BC45C0B434/Teini-Paa", "sv": "http://www.espanlava.fi/sv/evenemang/event/6D53796EF9CC993F245277BC45C0B434/Teini-Paa", "en": "http://www.espanlava.fi/en/events/event/6D53796EF9CC993F245277BC45C0B434/Teini-Paa" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68967/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:746e9cd4-4f25-44b7-a00f-5198f01d007f", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41047/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2384784, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-05-29T11:39:28.645441Z", "last_modified_time": "2026-05-29T11:39:28.645458Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/aa9d7115-06d3-ef11-8eea-000d3adf4af4", "name": "Testikuva", "cropping": "", "photographer_name": "Molla Magia", "alt_text": "Testikuva", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384784/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-05-29T11:39:31.219769Z", "last_modified_time": "2026-05-29T11:39:31.219788Z", "date_published": "2026-05-28T11:58:03Z", "start_time": "2026-06-07T12:00:00Z", "end_time": "2026-06-07T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Uskomaton pellehyppytapahtuma!!" }, "short_description": { "fi": "Pellet hyppivät ja laulavat hauskasti" }, "description": { "fi": "<div><p>Pellet hyppivät ja laulavat hauskasti. Pellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskasti.</p></div>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Lisätietoja" }, "provider": { "fi": "Pellehyppytapahtumat Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:746e9cd4-4f25-44b7-a00f-5198f01d007f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69100", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/juha-tapio/juha-tapio-kaunis-ihminen-20-v-4165832/" }, "price": { "fi": "48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384762, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-26T13:14:04.777337Z", "last_modified_time": "2026-05-26T13:14:04.777352Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793256.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384762/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-26T13:14:04.601943Z", "last_modified_time": "2026-05-29T11:13:28.678605Z", "date_published": null, "start_time": "2026-10-02T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Juha Tapio: Kaunis ihminen 20 v" }, "short_description": { "fi": "Miltä kuulostaa yksi Juha Tapion rakastetuimmista albumeista 20 vuotta ilmestymisensä jälkeen?" }, "description": { "fi": "<p>Miltä kuulostaa yksi Juha Tapion rakastetuimmista albumeista 20 vuotta ilmestymisensä jälkeen?</p><p>Sen pääsee kokemaan ainutlaatuisessa juhlakonsertissa Helsingin Savoy-teatterissa perjantaina 02.10.2026 klo 18.00, kun Juha Tapio juhlistaa Kaunis ihminen -albuminsa 20-vuotisjuhlavuotta.</p><p>Juha Tapion Toisillemme Parhaat -konsertit myytiin samalla lavalla kahdesti loppuun aiemmin tänä vuonna. Nyt Savoy-teatterissa koetaan uusi erityinen ilta yhden suomalaisen popmusiikin tärkeimmän albumin parissa.</p><p>Kaunis ihminen oli Juha Tapion viides studioalbumi ja levy, joka nosti hänen uransa uudelle tasolle. Albumin laulut, tunnelma ja aiempaa bändivetoisempi soundi jättivät pysyvän jäljen suomalaisiin kuulijoihin – ja monet kappaleista elävät vahvasti edelleen.</p><p>Juhlakonsertissa albumi kuullaan kokonaisuudessaan. Mukana ovat tutut laulut, jotka ovat kulkeneet mukana vuosien ajan, mutta myös harvemmin kuullut kappaleet, joita ei ole usein päästy kokemaan livenä.</p><p>Edessä on ilta täynnä muistoja, suuria tunteita ja lauluja, jotka ovat saaneet vuosien myötä aivan uusia sävyjä.</p><p>Kesto n. 1 h 30 min, ei väliaikaa</p><p>Permanto K-18 anniskelualue. Parveke ikärajaton ei anniskelua.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6B69B52398909DE021169FCB183FCA24/Juha_Tapio_Kaunis_ihminen_20_v" }, "location_extra_info": null, "provider": { "fi": "Central Line Entertainment Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69100/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68964", "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": 2201209, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T07:12:57.888330Z", "last_modified_time": "2026-05-12T07:12:57.888347Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785938.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201209/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T07:12:57.777249Z", "last_modified_time": "2026-05-29T11:13:21.343043Z", "date_published": null, "start_time": "2026-07-01T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Rosita Luu (trio) – indiespa", "sv": "Rosita Luu (trio) – indiespa", "en": "Rosita Luu (trio) – indiespa" }, "short_description": { "fi": "Rosita Luu yhtyeineen on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen.", "sv": "Rosita Luu med sitt band är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse.", "en": "Rosita Luu and her band are a tough act to follow on stage and offer their audience a memorable experience." }, "description": { "fi": "<p>Rosita Luu yhtyeineen on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen.</p><p>Neljä albumia julkaissut <b>Rosita Luu</b> (Merita Berg) on omaehtoinen, omia kinttupolkujaan kulkeva artisti ja yhtye. Kiitetyillä albumeilla on kuultu ennakkoluulottomasti kaikuja laajalti musiikin eri tyylilajeista. Monipuolisuus lauluntekijänä onkin yksi artistin tavaramerkeistä vahvojen sanoitusten lisäksi. Lyriikoiden pohjavire on ihmisyyttä, erheitä ja isoja tunteita syvästi ymmärtävä, eikä Rosita Luun maailmassa mikään ole mustavalkoista tai pyhää.</p><p>Vuonna 2021 <i>Samettisuu</i>-albumi oli ehdolla Emma Gaalassa Kriitikoiden valinta ja Vuoden yleisöäänestys -kategorioissa. <i>Samettisuu</i>-albumi listattiin julkaisuvuotenaan mm. Soundin Vuoden kotimainen albumi -listan sijalle kolme. Samana vuonna Rosita Luu valittiin YleX:n tulevaisuuden tähtiä ennustavaan Läpimurto-listaukseen.</p><p>Rosita Luun viimeisin albumi <i>Yöeläin</i> huomioitiin muun muassa vuoden 2024 levylistauksissa Yleisradion musiikkitoimittaja Susanna Vainiolan poimintona sekä Soundi-lehdessä. Lisäksi albumi nousi tammikuussa 2025 ehdolle vuoden albumiksi riippumattomien levy- ja tuotantoyhtiöiden yhdistys IndieCo ry:n toimesta osana Indie Awards 2025 -tapahtumaa.</p><p>Atisti yhtyeineen on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen. Yhtyeen valovoimaisten soittajien säestyksellä välittyy vahvasti Rosita Luun sävykäs ja omintakeinen maailma. Rosita Luu keikkailee triokokoonpanolla erilaisissa ympäristöissä klubeilta festivaaleihin.</p><p>Trion jäsenet:<br>Merita Berg<br>Meri Wallenius<br>Tiia Schwartz</p><p>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>Rosita Luu med sitt band är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse.</p><p><b>Rosita Luu</b> (Merita Berg) är en unik artist och ett band som går sin egen väg och har släppt fyra album. De hyllade albumen har fördomsfria ekon av ett brett spektrum av olika musikgenrer. Mångsidigheten som låtskrivare är ett av artistens kännetecken, tillsammans med starka texter. Grundstämningen i texterna är en djup förståelse för mänskligheten, misstag och stora känslor, och ingenting i Rosita Luus värld är svartvitt eller heligt.</p><p>År 2021 var albumet <i>Samettisuu</i> nominerat i Emmagalan i kategorierna Kritikernas val och Publikens favorit. Albumet<i>Samettisuu</i> listades under publikationsåret bland annat på plats tre på Soundis lista över årets inhemska album (Vuoden kotimainen albumi) Samma år valdes Rosita Luu till YleX:s genombrottslista (Läpimurto), som förutspår framtida stjärnor.</p><p>Rosita Luus senaste album <i>Yöeläin</i> fanns bland annat med på skivlistor 2024 valt av Rundradions musikjournalist Susanna Vainiola samt i Soundi-tidskriften. Dessutom nominerade föreningen för oberoende skiv- och produktionsbolag IndieCo ry albumet i januari 2025 till årets album som en del av evenemanget Indie Awards 2025.</p><p>Artisten med sitt band är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse. Rosita Luus nyansrika och unika värld förmedlas starkt genom ackompanjemanget av bandets ljusstarka musiker. Rosita Luu uppträder med en triosammansättning i olika miljöer från klubbar till festivaler.</p><p>Medlemmarna i trion:<br>Merita Berg<br>Meri Wallenius<br>Tiia Schwartz<br> <br>_____</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>Rosita Luu and her band are a tough act to follow on stage and offer their audience a memorable experience.</p><p>With four albums, <b>Rosita Luu</b> (band leader Merita Berg) is the band of a self-made artist, following her own winding path. Their acclaimed albums feature unprejudiced echoes of a wide range of musical genres. In fact, versatility as a songwriter is one of the artist's trademarks, along with strong lyrics. A deep undercurrent of understanding humanity, mistakes and big emotions runs through the lyrics, and nothing in Rosita Luu's world is black and white or sacred.</p><p>In 2021, their album <i>Samettisuu</i> was nominated in the critics' choice and audience choice categories at the Emma Gaala awards show. <i>Samettisuu</i> was ranked number three on Soundi's Finnish album of the year list in the year of its release. In the same year, Rosita Luu was featured on the YleX breakthrough list predicting future stars.</p><p>Rosita Luu's latest album <i>Yöeläin</i> was one of Finnish Broadcasting Company YLE's music journalist Susanna Vainiola’s picks for best albums in 2024 and it was also featured in Soundi magazine. In addition to this, the record was nominated for album of the year in January 2025 by the association of independent production companies IndieCo as part of the Indie Awards 2025 event.</p><p>The artist and her band are a tough act to follow on stage and offer their audience a memorable experience. The luminous musicians of Rosita Luu's band allow for the band leader’s melodic and original world to fully shine through. Rosita Luu performs with her trio in a variety of environments from clubs to festivals.</p><p>Members of the trio:<br>Merita Berg<br>Meri Wallenius<br>Tiia Schwartz<br> <br>_____</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>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_trio_", "sv": "http://www.espanlava.fi/sv/evenemang/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_trio_", "en": "http://www.espanlava.fi/en/events/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_trio_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68964/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69116", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/toeyssy-konttinen-lets-vits-again-hyvaeae-joulua/toeyssy-konttinen-lets-vits-again-hyvaeae-joulua-4167597/" }, "price": { "fi": "43,50-47,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384781, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-29T09:13:30.142713Z", "last_modified_time": "2026-05-29T09:13:30.142728Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793325.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384781/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-29T09:13:30.010383Z", "last_modified_time": "2026-05-29T09:13:30.306511Z", "date_published": null, "start_time": "2026-12-01T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Töyssy & Konttinen: Let´s Vits Again - Hyvää joulua!" }, "short_description": { "fi": "Mikko ”Tökä” Töyssyn ja Mikael ”Micke” Konttisen yhteisprojekti Let´s Vits Again lähtee jälleen joulukiertueelle!" }, "description": { "fi": "<p>Mikko ”Tökä” Töyssyn ja Mikael ”Micke” Konttisen yhteisprojekti Let´s Vits Again lähtee jälleen joulukiertueelle!</p><p>Let´s Vits Again - Hyvää joulua! on musiikin ja komedian täyttämä viihdekonsertti, jossa kuullaan hauskoja juttuja ja hienoja tulkintoja rakkaimmista joululauluista. Tämän joulutunnelmaa ja iloista mieltä huokuvan konsertin ohjelmistoon kuuluvat esimerkiksi Oi jouluyö, Sydämeeni joulun teen, En etsi valtaa loistoa, Valkea joulu ja tietenkin Kulkuset. Olennainen osa Let´s Vits Again – Hyvää joulua! -konserttia on huumori ja hetkessä eläminen. Pojat tuntien yllätyksiltä ei voida välttyä ja luvassa on varmasti myös sopivissa määrin melskettä, helinää ja helskettä.</p><p>Mukana estradilla on erityisen lahjakas XMAS-band jossa Suomen eturivin muusikot pitävät jouluista swengiä yllä.</p><p>Laita joulukiireet hetkeksi tauolle ja tule viihtymään ja virittymään iloiseen joulutunnelmaan näiden pukin pikku apulaisten seurassa!</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4B9CB0BEE51E3015C805489FF35BFC8F/Toyssy_Konttinen_Let_s_Vits_Again_-_Hyvaa_joulua_" }, "location_extra_info": null, "provider": { "fi": "Let´s Vits Again Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69116/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agphfvd5jq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdtvy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvduoq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdu4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdvny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdv44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdwni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdw4i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdxly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdx2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdyme/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdy2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdzme/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdzzy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd2im/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd2wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd3di/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd3qq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd364/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd4me/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd44i/?format=api" } ], "images": [ { "id": 1493962, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2026-01-19T13:11:32.534323Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "name": "", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-05-29T08:03:54.359373Z", "last_modified_time": "2026-05-29T08:53:13.885921Z", "date_published": null, "start_time": "2026-08-04T13:00:00Z", "end_time": "2026-12-15T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits." }, "description": { "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "location_extra_info": { "fi": "Paja tai Sininen huone", "sv": "Verkstad eller Sininen huone", "en": "Maker Space or Sininen huone " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd5jq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agphgc6nau", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6koe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6ld4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6lte/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6mcq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6mr4/?format=api" } ], "images": [ { "id": 2384782, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-05-29T08:42:47.398908Z", "last_modified_time": "2026-05-29T08:42:47.398921Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a58c5b8c-bee6-4445-9e77-f7e325eb42d3.png", "name": "", "cropping": "178,0,1038,859", "photographer_name": "Elina Kulmala", "alt_text": "Kuvassa on kirjankansia ja teksti Entressen lukupiiri", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384782/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-29T08:49:36.648906Z", "last_modified_time": "2026-05-29T08:49:36.648918Z", "date_published": null, "start_time": "2026-08-20T11:00:00Z", "end_time": "2026-12-10T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Entressen lukupiiri" }, "short_description": { "fi": "Kokoonnumme keskustelemaan kirjoista; niiden hahmoista, juonista ja teemoista. Lukupiiri pidetään kirjaston Aisti huoneessa." }, "description": { "fi": "<p>kuukausittain klo 14:00-15:30</p><p><br></p><p>20.08. Vareda - Sven Mikser </p><p>17.09. Manillaköysi - Veijo Meri</p><p>15.10. Minne virta kuljettaa - Shelley Read </p><p>12.11. Fahrenheit 451 - Ray Bradbury</p><p>10.12. Venus ja minä - Emi Yagi</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6nau/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agphgc6p4q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6nqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6oba/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6opm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6o6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6pmy/?format=api" } ], "images": [ { "id": 2384783, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-05-29T07:50:43.289010Z", "last_modified_time": "2026-05-29T07:50:43.289023Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e511e06b-4ff0-4b96-8a95-154fe9fe9ce4.png", "name": "", "cropping": "180,0,1032,851", "photographer_name": "Elina Kulmala", "alt_text": "Kuvassa kirjan kansia ja teksti sellon lukupiiri", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-29T08:39:50.827769Z", "last_modified_time": "2026-05-29T08:39:50.827786Z", "date_published": null, "start_time": "2026-08-19T11:00:00Z", "end_time": "2026-12-09T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sellon lukupiiri" }, "short_description": { "fi": "Kokoonnumme keskustelemaan kirjoista; niiden hahmoista, juonista ja teemoista. Lukupiiri pidetään kirjaston Ilmari-huoneessa." }, "description": { "fi": "<p>kuukausittain klo 14:00-15:30</p><p><br></p><p>19.08. Vareda - Sven Mikser </p><p>16.09. Manillaköysi - Veijo Meri</p><p>14.10. Minne virta kuljettaa - Shelley Read </p><p>11.11. Fahrenheit 451 - Ray Bradbury</p><p>09.12. Venus ja minä - Emi Yagi</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6p4q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpe7jeeuq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jd7dm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jd7wi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeaiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeaz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jebki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeb4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jecnu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jedfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeeae/?format=api" } ], "images": [ { "id": 2212520, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-05-22T11:45:43.073404Z", "last_modified_time": "2026-05-22T11:45:43.073417Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/06c655ce-0314-41a2-beff-3f003d39ecd2.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Kirjasto Sellon Kesäterassilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2212520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-05-22T12:01:54.150736Z", "last_modified_time": "2026-05-29T08:38:20.306780Z", "date_published": null, "start_time": "2026-06-02T11:00:00Z", "end_time": "2026-07-28T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjasto Sellon Kesäterassilla" }, "short_description": { "fi": "Espoon kaupunginkirjasto järjestää viikkottain tapahtumaa Sellon Kesäterassilla" }, "description": { "fi": "<p>Kirjasto järjestää jälleen ohjelmaa Sellon Kesäterassilla joka tiistai klo 14-15 kesä- ja heinäkuun ajan. Ohjelmaa riittää kaikenikäisille pitkin kesää. Ohjelmaa löytyy kirjallisuudesta teatteriin ja kirjaston eri palveluihin. Huonon sään sattuessa ohjelma siirretään kirjaston sisätiloihin.</p><p><br></p><p>2.6. Antikirjavinkkaus</p><p>9.6. Muskarikonsertti klo 14 (0-6v) + musakirjavinkkaus klo 14.30</p><p>16.6. POC-lukupiirin kirjapiknik (klo 14-16)</p><p>23.6. Kamishibai-teatteria lapsille (esitykset klo 14 ja 14.30)</p><p>30.6. Lastenkirjavinkkejä</p><p>7.7. Senioritoimintavinkkaus</p><p>14.7. Nuoret taiteilijat: musa- ja kirjavinkkaus</p><p>21.7. Lautapelivinkkaus aikuisille</p><p>28.7. Eläinkirjavinkkaus ja lukukoira esittelyssä!</p><p><br></p><p>Tervetuloa kuuntelemaan ja osallistumaan!</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Sellon Kesäterassi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeeuq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agphfvd7u4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd5yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd6iy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd6ye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd7he/?format=api" } ], "images": [ { "id": 1493962, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2026-01-19T13:11:32.534323Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "name": "", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-05-29T07:28:16.768071Z", "last_modified_time": "2026-05-29T07:28:16.768083Z", "date_published": null, "start_time": "2026-06-02T13:00:00Z", "end_time": "2026-06-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits." }, "description": { "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "location_extra_info": { "fi": "Paja tai Sininen huone", "sv": "Verkstad eller Sininen huone", "en": "Maker Space or Sininen huone " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd7u4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68494", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 1824096, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-17T13:14:11.499294Z", "last_modified_time": "2026-04-17T13:14:11.499362Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786148.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-17T13:14:11.223722Z", "last_modified_time": "2026-05-28T12:13:48.244511Z", "date_published": null, "start_time": "2026-08-13", "end_time": "2026-08-22", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Malmin Tapahtumakesä 2026 – elokuun ohjelma", "sv": "Malms evenemangssommar 2026 – program för augusti", "en": "Malmi Summer of Events 2026 – August programme" }, "short_description": { "fi": "Tapahtumakesän elokuu täyttää Ala-Malmin torin upeilla keikoilla ja innostavilla työpajoilla. Tervetuloa nauttimaan loppukesän iloisista päivistä Malmille!", "sv": "Evenemangssommarens augusti fyller Nedre Malms torg med fantastiska spelningar och inspirerande verkstäder. Välkommen att njuta av sensommarens glada dagar i Malm!", "en": "The August of the Summer of Events brings great gigs and inspiring workshops to Ala-Malmi Square. Come and enjoy the happy days of late summer in Malmi!" }, "description": { "fi": "<p>Tapahtumakesän elokuu täyttää Ala-Malmin torin upeilla keikoilla ja innostavilla työpajoilla. Tervetuloa nauttimaan loppukesän iloisista päivistä Malmille!</p><p>Malmin tapahtumakesä 2026 järjestetään uudessa tapahtumapaikassa Ala Malmin torilla, kun Ala-Malmin puistoa remontoidaan.</p><p>Malmin tapahtumakesän Konttilavalle nousee elokuun aikana mm. Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Aarne Alligaattori, Lyyti, Steve ‘n’ Seagulls, Antti Paalanen, kukkatalo ja ANI ja muita huippuartisteja!</p><p>Konserttien lisäksi voit osallistua monipuolisiin ja inspiroiviin työpajoihin, joita järjestetään Ala-Malmin torin lisäksi Malmitalossa. Katso ohjelma alta.</p><p><b>Malmin tapahtumakesä 2026 elokuun ohjelma</b></p><p><b>Torstai 13.8. Teini-Pää ja pilvet pilvet</b><br>17.30–18.20 pilvet pilvet<br>19.00-20.00 Teini-Pää<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/F37BE84A4CCE43A58278904A8575886A/Teini-P___ja_pilvet_pilvet\">Katso päivän ohjelma</a></u></p><p><b>Perjantai 14.8. The Ghost of Bruce Springsteen & The E Street Band</b><br>19.00-20.00 The Ghost of Bruce Springsteen & The E Street Band<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/0716627EB9DCF697B90218F7403CD5D2/The_Ghost_of_Bruce_Springsteen___the_E_Street_Band\">Katso päivän ohjelma</a></u></p><p><b>Lauantai 15.8. Lasten lauantai: Aarne Alligaattori, Riemukas perhemuskari, työpajoja ja muuta puuhaa</b><br>11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle</b> <br>12.00–14.00 Yksin hanke: Minikirjoja ja matariki-tähtien punontaa <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Aarne Alligaattori & Viidakkorumpu<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/09855A8A174C6429C6717B077141CD98/Lasten_lauantai__Aarne_Alligaattori__Henna_Maijan_muskari_ja_muuta_puuhaa\">Katso päivän ohjelma</a></u></p><p><b>Tiistai 18.8. Lyyti, Salaliitto ja Kaupunkitanssit</b><br>16.00–16.45 Kaupunkitanssit<br>17.30–18.20 Salaliitto <br>19.00–20.00 Lyyti<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/052ED5E106362031879545CD1FA857B0/Lyyti__Salaliitto_ja_Kaupunkitanssit_\">Katso päivän ohjelma</a></u></p><p><b>Keskiviikko 19.8. Steve ’n’ Seagulls, William Öster & the Moonliners</b> <br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve__n__Seagulls__William__ster___the_Moonliners\">Katso päivän ohjelma</a></u></p><p><b>Torstai 20.8. Taiteiden yö: Lala Salama, Juhlat ja työpajoja</b>\t<br>16.00–18.00 Yksin hanke: Kangaskassien painatusta <br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Taiteiden_y___Lala_Salama__Juhlat_ja_ty_pajoja\">Katso päivän ohjelma</a></u></p><p><b>Perjantai 21.8. Aili Järvelä ja Antti Paalanen</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen__Aili_J_rvel__\">Katso päivän ohjelma</a></u></p><p><b>Lauantai 22.8. ANI ja kukkatalo</b> <br>15.00–16.00 kukkatalo<br>17.00–18.00 ANI<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/E18E1E966165087FFF8ECD2723E419EA/ANI__Kukkatalo\">Katso päivän ohjelma</a></u></p><p>Tapahtumiin on vapaa pääsy! Muutokset ovat mahdollisia. <br>Rankkasateen sattuessa tapahtumat siirtyvät sisätiloihin Malmitaloon.</p>", "sv": "<p>Evenemangssommarens augusti fyller Nedre Malms torg med fantastiska spelningar och inspirerande verkstäder. Välkommen att njuta av sensommarens glada dagar i Malm!</p><p>Malms evenemangssommar 2026 ordnas på den nya evenemangsplatsen på Nedre Malms torg, eftersom Nedre Malms park renoveras.</p><p>Under augusti stiger bland annat Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Arne Alligator, Lyyti, Steve ‘n’ Seagulls, Antti Paalanen, Kukkatalo och ANI samt andra toppartister upp på Containerscenen under Malms evenemangssommar!</p><p>Utöver konserterna kan du delta i mångsidiga och inspirerande verkstäder, som ordnas förutom på Nedre Malms torg också i Malms kulturhus. Se programmet nedan.</p><p><b>Malms evenemangssommar 2026: program för augusti</b></p><p><b>Torsdag 13.8 Teini-Pää och pilvet pilvet</b><br>17.30–18.20 pilvet pilvet<br>19.00–20.00 Teini-Pää<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/F37BE84A4CCE43A58278904A8575886A/Teini-P___ja_pilvet_pilvet\">Se dagens program</a></u></p><p><b>Fredag 14.8 The Ghost of Bruce Springsteen & The E Street Band</b><br>19.00–20.00 The Ghost of Bruce Springsteen & The E Street Band<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/0716627EB9DCF697B90218F7403CD5D2/The_Ghost_of_Bruce_Springsteen___the_E_Street_Band\">Se dagens program</a></u></p><p><b>Lördag 15.8 Barnens lördag: Arne Alligator, Glatt familjemusiklekis, verkstäder och annan sysselsättning</b><br>11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta<br>12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor<br>13.00–13.30 Glatt familjemusiklekis<br>14.00–14.45 Arne Alligator och Djungeltrumman<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/09855A8A174C6429C6717B077141CD98/Lasten_lauantai__Aarne_Alligaattori__Henna_Maijan_muskari_ja_muuta_puuhaa\">Se dagens program</a></u></p><p><b>Tisdag 18.8 Lyyti, Salaliitto och Stadsdans</b><br>16.00–16.45 Stadsdans<br>17.30–18.20 Salaliitto<br>19.00–20.00 Lyyti<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/052ED5E106362031879545CD1FA857B0/Lyyti__Salaliitto_ja_Kaupunkitanssit_\">Se dagens program</a></u></p><p><b>Onsdag 19.8 Steve ’n’ Seagulls, William Öster & the Moonliners</b><br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve__n__Seagulls__William__ster___the_Moonliners\">Se dagens program (på finska)</a></u></p><p><b>Torsdag 20.8 Konstens natt: Lala Salama, Juhlat och verkstäder</b><br>16.00–18.00 Yksin-projekt: Tryck på tygkasse<br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Konstens_natt__Lala_Salama__Juhlat_och_verkst_der\">Se dagens program</a></u></p><p><b>Fredag 21.8 Aili Järvelä och Antti Paalanen</b><br>17.00–18.00 Aili Järvelä<br>19.00–20.00 Antti Paalanen<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen__Aili_J_rvel__\">Se dagens program</a></u></p><p><b>Lördag 22.8 ANI och Kukkatalo</b><br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/E18E1E966165087FFF8ECD2723E419EA/ANI__Kukkatalo\">Se dagens program</a></u></p><p>Evenemangen har fritt inträde! Ändringar är möjliga.</p><p>Vid kraftigt regn ordnas evenemangen inomhus på Malms kulturhus.</p>", "en": "<p>The August of the Summer of Events brings great gigs and inspiring workshops to Ala-Malmi Square. Come and enjoy the happy days of late summer in Malmi!</p><p>Malmi Summer of Events 2026 will be held at a new venue on Ala-Malmi Square while Ala-Malmi Park is being renovated.</p><p>In August, the Container Stage of Malmi Summer of Events will host top acts such as Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Arnie Alligator, Lyyti, Steve 'n' Seagulls, Antti Paalanen, Kukkatalo, ANI and many others!</p><p>In addition to enjoying the concerts, you can take part in a wide range of inspiring workshops in Ala-Malmi Square and at Cultural Centre Malmitalo. Please see the programme below.</p><p><b>Malmi Summer of Events 2026 August programme</b></p><p><b>Thu 13 August Teini-Pää and pilvet pilvet</b><br>17.30–18.20 pilvet pilvet<br>19.00–20.00 Teini-Pää<br><u><a href=\"https://malmitalo.fi/en/events/event/F37BE84A4CCE43A58278904A8575886A/Teini-P___ja_pilvet_pilvet\">See the programme for the day</a></u></p><p><b>Friday 14 August The Ghost of Bruce Springsteen & The E Street Band</b><br>19.00–20.00 The Ghost of Bruce Springsteen & The E Street Band<br><u><a href=\"https://malmitalo.fi/en/events/event/0716627EB9DCF697B90218F7403CD5D2/The_Ghost_of_Bruce_Springsteen___the_E_Street_Band\">See the programme for the day</a></u></p><p><b>Sat 15 August Children’s Saturday: Arnie Alligator, Joyful family music playschool, workshops and much more</b><br>11.00–14.00 Malmin Varustamo parish: Nature activity point for young ones<br>12.00–14.00: The Yksin (‘Alone’) project: Miniature books and weaving matariki stars<br>13.00–13.30 Joyful family music playschool<br>14.00–14.45 Arnie Alligator & The Jungle Drum<br><u><a href=\"https://malmitalo.fi/en/events/event/09855A8A174C6429C6717B077141CD98/Children_s_Saturday__Arnie_Alligator__Henna_Maija_s_music_playschool_and_other_activities\">See the programme for the day</a></u></p><p><b>Tue 18 August Lyyti, Salaliitto and Dancing in the City</b><br>16.00–16.45 Dancing in the City<br>17.30–18.20 Salaliitto<br>19.00–20.00 Lyyti<br><u><a href=\"https://malmitalo.fi/en/events/event/052ED5E106362031879545CD1FA857B0/Lyyti__Salaliitto_and_Dancing_in_the_City\">See the programme for the day</a></u></p><p><b>Wed 19 August: Steve ’n’ Seagulls, William Öster & the Moonliners</b><br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve__n__Seagulls__William__ster___the_Moonliners\">See the programme for the day (in Finnish) </a></u></p><p><b>Thu 20 August The Night of the Arts: Lala Salama, Juhlat and workshops</b><br>16.00–18.00 Yksin (‘Alone’) project: Printing tote bags<br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama<br><u><a href=\"https://malmitalo.fi/en/events/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/The_Night_of_the_Arts__Lala_Salama__Juhlat_and_workshops\">See the programme for the day</a></u></p><p><b>Fri 21 August Aili Järvelä and Antti Paalanen</b><br>17.00–18.00 Aili Järvelä<br>19.00–20.00 Antti Paalanen<br><u><a href=\"https://malmitalo.fi/en/events/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen__Aili_J_rvel__\">See the programme for the day</a></u></p><p><b>Sat 22 August ANI and Kukkatalo</b><br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI<br><u><a href=\"https://malmitalo.fi/en/events/event/E18E1E966165087FFF8ECD2723E419EA/ANI__Kukkatalo\">See the programme for the day</a></u></p><p>Entry to the events is free of charge! Changes are possible.</p><p>In the event of heavy rain, the events will be held inside Malmitalo.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F137D945311F42A01E82737A62AF349B/Malmin_Tapahtumakesa_2026", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F137D945311F42A01E82737A62AF349B/Malms_evenemangssommar_2026", "en": "http://www.malmitalo.fi/en/events/event/F137D945311F42A01E82737A62AF349B/Malmi_Summer_of_Events_2026" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68494/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68381", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 1803240, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-08T07:17:54.730847Z", "last_modified_time": "2026-04-08T07:17:54.730863Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787918.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1803240/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-08T07:17:54.573682Z", "last_modified_time": "2026-05-28T12:13:42.229266Z", "date_published": null, "start_time": "2026-06-12T12:00:00Z", "end_time": "2026-06-12T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Welcome Day Vuotalo", "sv": "Welcome Day Vuotalo", "en": "Welcome Day Vuotalo" }, "short_description": { "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!", "sv": "Welcome Day välkomnar Finlands nyinflyttade invånare välkomna till Helsingfors!", "en": "Cultural Centre Vuotalo welcomes the recently arrived international residents to Helsinki!" }, "description": { "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tänä vuonna osana Helsinki-päivän ohjelmaa järjestettävässä tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Dayssa kaupungin palvelut ja harrastustoimintaa järjestävät yhdistykset esittelevät toimintaansa ja vastaavat asukkaiden kysymyksiin. Tapahtuma tarjoaa yleisölle hyödyllisen tiedon lisäksi Circus Simonin ja Säilättärien innostavat sirkusesitykset sekä glittertatuointipisteen. <br>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton, eikä siihen tarvitse ilmoittautua.</p><p>Tapahtuma järjestetään ulkotiloissa Vuotalon edustalla. Huomioi tämä vaatetuksessasi. Kovalla sateella tapahtuma siirretään Vuotaloon sisälle.</p><p>Welcome Day -palvelutorin lisäksi yleisö voi nauttia Vuotalon Helsinki-päivän konserteista, joita tarjoilevat lastenmusiikkiyhtye INDABA sekä Stig. Tervetuloa myös kirjaston legotyöpajaan ja Vuotalon tutustumiskierrokselle. Kaikki päivän ohjelma on maksutonta! <br> <br><b>Klo 15.45 ja 17.30 Circus Simon: We Are the Champions -sirkusesitys</b> <br> <br>We Are the Champions on iloinen ja osallistava sirkusesitys saavutuksista, osallistumisesta ja jaetusta menestyksestä. Show yhdistää ainutlaatuiset sirkustaidot, lämpimän huumorin ja vahvan vuorovaikutuksen yleisön kanssa. Esityksestä nauttiminen ei vaadi kielitaitoa.</p><p>Show nähdään iltapäivän aikana kaksi kertaa. Lisäksi yleisö pääsee nauttimaan Freestyle jalkapallo -työpajasta!</p><p><b>Klo 16.30 Circus Simon: Freestyle jalkapallo -työpaja</b> <br> <br><b>Klo 15-18 Säilättäret </b> <br> <br>Säilättärien alue-esiintyvät taiteilijat kiertelevät tapahtuma-alueella viihdyttäen yleisöä erilaisilla taidoilla, kuten jongleeraten ja tasapainoillen. Voit myös bongata erikoispitkän kolmimetrisen sirkustaiteilijan, tule moikkaamaan ja nappaa vaikka yhteiskuva! <br> <br>Säilättäret ovat sirkustaiteilijat Kanerva Keskinen, Milla Kurronen ja Sini Napari sekä musiikkiteatteritaiteilija Juuli Hyttinen.</p><p><b>Klo 15 INDABA</b></p><p>INDABA tarjoaa energisen ja monikielisen show’n, jossa yhdistyvät voimakas laulu, tanssi ja taitavat instrumenttisuoritukset. Kolmen muusikon muodostama ryhmä ammentaa vaikutteita tansanialaisesta perinteestä, hiphopista ja omista tarinoistaan. Yleisön kanssa pohditaan kevyesti identiteettiä ja sitä, miten monta kotia yhteen ihmiseen mahtuu. <br>Musiikki soi suomeksi, englanniksi, espanjaksi, swahiliksi ja sumbwaksi. <br>Esiintyjät: Ayla Brinkmann, Kasheshi Makena ja Yoandy Jimeno.</p><p><b>Klo 18 Stig</b></p><p>Päivä huipentuu Stigin konserttiin! STIG tunnetaan lukuisista kulta- ja platinasingleistä sekä hiteistä, kuten Puumaa mä metsästän, Original gigolo ja Roy Orbison. Hän on hurmannut myös Vain elämää -ohjelmassa ja noussut suosioon Kuningaskobra-tulkinnallaan. <br> <br><b>Unelmien kaupunki -legorakennuspaja klo 14–16 kirjaston lastenalueella</b></p><p>Miltä näyttäisi sinun unelmakaupunkisi? Rakenna se legoilla! Voit myös kirjoittaa runon ja lainata kirjoja kaikenlaisista kaupungeista. <br> <br><b>Vuotalokävelyt klo 12 ja 16</b></p><p>Kävelyllä tutustutaan Vuotalon ulko- ja sisäpuoleen, sekä historiaan että tiloihin ja toimintoihin. Tutustumme myös viime vuonna remontoituun kirjastoon. Kierrokselle lähdetään Vuotalon pääovien ulkopuolelta. Kierroksen alussa ollaan ulkotiloissa. Kesto noin 40 minuuttia.</p>", "sv": "<p>Welcome Day välkomnar Finlands nyinflyttade invånare välkomna till Helsingfors!</p><p>Evenemanget ordnas i år som en del av programmet för Helsingforsdagen. Vid det får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Stadens tjänster samt organisationer som ordnar hobbyverksamhet presenterar sin verksamhet och svarar på invånarnas frågor på Welcome Day. Förutom nyttig information innehåller evenemangsprogrammet också inspirerande cirkusföreställningar av Circus Simon och Säilättäret samt en glittertatueringstation för barn.</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning enligt behov. Evenemanget är avgiftsfritt och kräver ingen anmälan.</p><p>Vid sidan av Welcome Day-servicetorget kan publiken också njuta av Nordhusets konserter på Helsingforsdagen. Under dagen uppträder barnmusikgruppen INDABA samt Stig.</p><p><b>kl. 15.45 ja 17.30 Circus Simon: We Are the Champions – cirkusföreställning </b></p><p>We Are the Champions är en glad och inkluderande cirkusföreställning om prestationer, deltagande och delade framgångar. Föreställningen kombinerar unika cirkusfärdigheter, varm humor och stark interaktion med publiken. Det krävs inga språkkunskaper för att njuta av föreställningen.</p><p>Cirkusgruppen uppträder två gånger under eftermiddagen. – cirkusföreställning. – cirkusföreställning. Dessutom får publiken delta i en freestylefotbollsverkstad!</p><p><b>Kl. 16.30 Circus Simon: freestylefotbollsverkstad</b></p><p><b>kl. 15–18 Säilättäret</b></p><p>Säilättäret-gruppens scenkonstnärer går runt i evenemangsområdet och underhåller publiken med olika talanger, såsom jonglering och balanserande. Du kan också se en tre meter lång cirkusartist, som du kan hälsa på och ta ett foto med om du vill!</p><p>Säilättäret består av cirkusartisterna Kanerva Keskinen, Milla Kurronen och Sini Napari samt musikteaterartisten Juuli Hyttinen.</p><p><b>kl. 15 INDABA</b></p><p>INDABA bjuder på en energisk och flerspråkig show som kombinerar kraftfull sång, dans och skickliga instrumentprestationer. Gruppen på tre musiker tar inspiration av tanzanisk tradition, hiphop och sina egna berättelser. De funderar lätt och tillsammans med publiken på identitet och hur många hem som ryms i en människa. <br>Musiken är på finska, engelska, spanska, swahili och sumbwa. <br>På scenen: Ayla Brinkmann, Kasheshi Makena och Yoandy Jimeno.</p><p><b>kl. 18 Stig</b></p><p>Dagen kulminerar i Stigs konsert! Stig är känd för sina talrika guld- och platinasinglar samt hittar, såsom Puumaa mä metsästän, Original gigolo och Roy Orbison. Han har också förtjust i programmet Vain elämää och blivit populär med sin tolkning av Kuningaskobra.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>Cultural Centre Vuotalo welcomes the recently arrived international residents to Helsinki!</p><p>In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods.</p><p>At the Welcome Day, City services and associations organising leisure time activities will present their operations and answer residents' questions. In addition to useful information, visitors can enjoy inspiring circus performances by Circus Simon and Säilättäret, as well as a glitter tattoo station for children at the event.</p><p>At the Welcome Day, we speak English and offer interpretation if required. The event is free of charge and no registration is required.</p><p>The event will be held outdoors in front of Vuotalo. Please dress for the weather. In the event of heavy rain, the event will be held indoors at Vuotalo.</p><p>In addition to the Welcome Day event, Cultural Centre Vuotalo will also be hosting Helsinki Day concerts by the children's music group INDABA and Stig. Welcome also to the library’s LEGO workshop and to the Vuotalo guided tour. The full-day program is free of charge.<br> <br><b>15.45 and 17.30 Circus Simon: We Are the Champions circus performance</b> <br> <br>‘We Are the Champions’ is a joyful and participatory circus performance about achievement, participation and shared success. The show combines unique circus skills, warm humour and strong interaction with the audience. No language skills are required to enjoy the show.</p><p>The show will be performed twice during the afternoon. In addition to this, the public will be able to attend freestyle football workshop!</p><p><b>16.30 Circus Simon: freestyle football workshop</b> <br> <br><b>15.00–18.00 Säilättäret</b> <br> <br>Performing artists from the Säilättäret group will tour the event area, entertaining the audience with a variety of skills, such as juggling and balancing. You will also be able to spot an extraordinary three-metre tall circus artist – come and say hello and take a photo with them! <br> <br>Säilättäret are circus artists Kanerva Keskinen, Milla Kurronen and Sini Napari as well as musical theatre artist Juuli Hyttinen.</p><p><b>15.00 INDABA</b></p><p>INDABA will put on an energetic and multilingual show, combining powerful singing, dancing and skilful instrumental performances. The group of three musicians draws inspiration from Tanzanian tradition, hip hop and their own stories. The performance will feature light-hearted interactive reflection on identity and how many homes can fit into one person. <br>The concert will be performed in Finnish, English, Spanish, Swahili and Sumbwa. <br>Performers: Ayla Brinkmann, Kasheshi Makena and Yoandy Jimeno.</p><p><b>18.00 Stig</b></p><p>The day culminates with a concert by Stig! STIG is known for numerous gold and platinum singles and hits such as Puumaa mä metsästän, Original gigolo and Roy Orbison. He was also a hit on the TV show Vain elämää and rose to fame with his interpretation of the Kuningascobra evergreen.</p><p><b>Dream City LEGO Workshop 14.00-16.00 in the library's children's area</b></p><p>What would your dream city look like? Build it with LEGOs! You can also write a poem and borrow books about all types of cities.<br> <br><b>Vuotalo Walks at 12.00 and 16.00</b></p><p>The walk introduces you to the exterior and interior of Vuotalo, including its history, facilities, and activities. We will also visit the library, which was renovated last year. The tour starts outside Vuotalo's main doors. The beginning of the tour takes place outdoors. Duration is approximately 40 minutes.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C395BDDB30D1A914AB4A2A1DFF79D4A6/Welcome_Day_Vuotalo", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C395BDDB30D1A914AB4A2A1DFF79D4A6/Welcome_Day_Vuotalo", "en": "http://www.vuotalo.fi/en/events/event/C395BDDB30D1A914AB4A2A1DFF79D4A6/Welcome_Day_Vuotalo" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68381/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }