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
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 ordering is descending order by -last_modified_time
. 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&page=163
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=164", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=162" }, "data": [ { "id": "espoo_le:agmk22zdiq", "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/yso:p11406/?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:p1650/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zeza/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490292, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-27T06:31:21.112478Z", "last_modified_time": "2025-05-27T06:31:21.112490Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/14e63a65-c71e-41e4-a7f2-3b38c03bf78f.jpg", "cropping": "400,0,1400,1000", "photographer_name": "", "alt_text": "Satukirja talo metsä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490292/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-27T06:34:19.640406Z", "last_modified_time": "2025-05-27T06:34:19.640417Z", "date_published": null, "start_time": "2025-09-18T07:00:00Z", "end_time": "2025-09-18T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. Tarinoiden äärelle ovat tervetulleita osallistumaan kaikki lapset, vanhemmat, isovanhemmat kuin myös varhaiskasvatuksen opettajat ja kasvattajat ryhmänsä kanssa. Luemme tarinoita suomenkielellä.</p>", "sv": "<p>Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. Alla barn, föräldrar, mor- och farföräldrar samt lärare och utbildare inom småbarnspedagogik är välkomna att delta i sagostunden med sin grupp. Vi läser sagor på finska.</p><p><br></p>", "en": "<p>Every second Thursday, Sello Library organises an open story time in the children's section of the library. All children, parents, grandparents as well as early childhood teachers and educators are welcome to join the storytime with their group. We read stories in Finnish.</p><p><br></p><p><br></p>" }, "name": { "fi": "Avoin satuhetki", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "short_description": { "fi": "Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. ", "sv": "Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. ", "en": "Every second Thursday, Sello Library organises an open story time in the children's section of the library. " }, "location_extra_info": { "fi": "Lastenmaa, Jaminurkka", "sv": "Lastenmaa, Jaminurkka", "en": "Lastenmaa, Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zdiq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22zdu4", "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/yso:p11406/?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:p1650/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zeza/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490292, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-27T06:31:21.112478Z", "last_modified_time": "2025-05-27T06:31:21.112490Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/14e63a65-c71e-41e4-a7f2-3b38c03bf78f.jpg", "cropping": "400,0,1400,1000", "photographer_name": "", "alt_text": "Satukirja talo metsä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490292/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-27T06:34:19.525751Z", "last_modified_time": "2025-05-27T06:34:19.525762Z", "date_published": null, "start_time": "2025-09-04T07:00:00Z", "end_time": "2025-09-04T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. Tarinoiden äärelle ovat tervetulleita osallistumaan kaikki lapset, vanhemmat, isovanhemmat kuin myös varhaiskasvatuksen opettajat ja kasvattajat ryhmänsä kanssa. Luemme tarinoita suomenkielellä.</p>", "sv": "<p>Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. Alla barn, föräldrar, mor- och farföräldrar samt lärare och utbildare inom småbarnspedagogik är välkomna att delta i sagostunden med sin grupp. Vi läser sagor på finska.</p><p><br></p>", "en": "<p>Every second Thursday, Sello Library organises an open story time in the children's section of the library. All children, parents, grandparents as well as early childhood teachers and educators are welcome to join the storytime with their group. We read stories in Finnish.</p><p><br></p><p><br></p>" }, "name": { "fi": "Avoin satuhetki", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "short_description": { "fi": "Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. ", "sv": "Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. ", "en": "Every second Thursday, Sello Library organises an open story time in the children's section of the library. " }, "location_extra_info": { "fi": "Lastenmaa, Jaminurkka", "sv": "Lastenmaa, Jaminurkka", "en": "Lastenmaa, Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zdu4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22zebu", "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/yso:p11406/?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:p1650/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zeza/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490292, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-27T06:31:21.112478Z", "last_modified_time": "2025-05-27T06:31:21.112490Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/14e63a65-c71e-41e4-a7f2-3b38c03bf78f.jpg", "cropping": "400,0,1400,1000", "photographer_name": "", "alt_text": "Satukirja talo metsä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490292/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-27T06:34:19.409133Z", "last_modified_time": "2025-05-27T06:34:19.409144Z", "date_published": null, "start_time": "2025-08-21T07:00:00Z", "end_time": "2025-08-21T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. Tarinoiden äärelle ovat tervetulleita osallistumaan kaikki lapset, vanhemmat, isovanhemmat kuin myös varhaiskasvatuksen opettajat ja kasvattajat ryhmänsä kanssa. Luemme tarinoita suomenkielellä.</p>", "sv": "<p>Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. Alla barn, föräldrar, mor- och farföräldrar samt lärare och utbildare inom småbarnspedagogik är välkomna att delta i sagostunden med sin grupp. Vi läser sagor på finska.</p><p><br></p>", "en": "<p>Every second Thursday, Sello Library organises an open story time in the children's section of the library. All children, parents, grandparents as well as early childhood teachers and educators are welcome to join the storytime with their group. We read stories in Finnish.</p><p><br></p><p><br></p>" }, "name": { "fi": "Avoin satuhetki", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "short_description": { "fi": "Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. ", "sv": "Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. ", "en": "Every second Thursday, Sello Library organises an open story time in the children's section of the library. " }, "location_extra_info": { "fi": "Lastenmaa, Jaminurkka", "sv": "Lastenmaa, Jaminurkka", "en": "Lastenmaa, Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zebu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22zenm", "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/yso:p11406/?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:p1650/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zeza/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490292, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-27T06:31:21.112478Z", "last_modified_time": "2025-05-27T06:31:21.112490Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/14e63a65-c71e-41e4-a7f2-3b38c03bf78f.jpg", "cropping": "400,0,1400,1000", "photographer_name": "", "alt_text": "Satukirja talo metsä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490292/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-27T06:34:19.254679Z", "last_modified_time": "2025-05-27T06:34:19.254691Z", "date_published": null, "start_time": "2025-08-07T07:00:00Z", "end_time": "2025-08-07T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. Tarinoiden äärelle ovat tervetulleita osallistumaan kaikki lapset, vanhemmat, isovanhemmat kuin myös varhaiskasvatuksen opettajat ja kasvattajat ryhmänsä kanssa. Luemme tarinoita suomenkielellä.</p>", "sv": "<p>Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. Alla barn, föräldrar, mor- och farföräldrar samt lärare och utbildare inom småbarnspedagogik är välkomna att delta i sagostunden med sin grupp. Vi läser sagor på finska.</p><p><br></p>", "en": "<p>Every second Thursday, Sello Library organises an open story time in the children's section of the library. All children, parents, grandparents as well as early childhood teachers and educators are welcome to join the storytime with their group. We read stories in Finnish.</p><p><br></p><p><br></p>" }, "name": { "fi": "Avoin satuhetki", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "short_description": { "fi": "Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. ", "sv": "Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. ", "en": "Every second Thursday, Sello Library organises an open story time in the children's section of the library. " }, "location_extra_info": { "fi": "Lastenmaa, Jaminurkka", "sv": "Lastenmaa, Jaminurkka", "en": "Lastenmaa, Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zenm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22zeza", "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/yso:p11406/?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:p1650/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zbbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zbnu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zbzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zcfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zcq4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zc4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zdiq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zdu4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zebu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zenm/?format=api" } ], "images": [ { "id": 1490292, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-27T06:31:21.112478Z", "last_modified_time": "2025-05-27T06:31:21.112490Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/14e63a65-c71e-41e4-a7f2-3b38c03bf78f.jpg", "cropping": "400,0,1400,1000", "photographer_name": "", "alt_text": "Satukirja talo metsä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490292/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-27T06:34:18.354104Z", "last_modified_time": "2025-05-27T06:34:18.354115Z", "date_published": null, "start_time": "2025-08-07T07:00:00Z", "end_time": "2025-12-11T08: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. Tarinoiden äärelle ovat tervetulleita osallistumaan kaikki lapset, vanhemmat, isovanhemmat kuin myös varhaiskasvatuksen opettajat ja kasvattajat ryhmänsä kanssa. Luemme tarinoita suomenkielellä.</p>", "sv": "<p>Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. Alla barn, föräldrar, mor- och farföräldrar samt lärare och utbildare inom småbarnspedagogik är välkomna att delta i sagostunden med sin grupp. Vi läser sagor på finska.</p><p><br></p>", "en": "<p>Every second Thursday, Sello Library organises an open story time in the children's section of the library. All children, parents, grandparents as well as early childhood teachers and educators are welcome to join the storytime with their group. We read stories in Finnish.</p><p><br></p><p><br></p>" }, "name": { "fi": "Avoin satuhetki", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "short_description": { "fi": "Sellon kirjastossa järjestetään joka toinen torstai avoin satuhetki kirjaston lastenosastolla. ", "sv": "Varannan torsdag anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. ", "en": "Every second Thursday, Sello Library organises an open story time in the children's section of the library. " }, "location_extra_info": { "fi": "Lastenmaa, Jaminurkka", "sv": "Lastenmaa, Jaminurkka", "en": "Lastenmaa, Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zeza/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22zffi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:39350/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490122, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-27T05:21:29.951276Z", "last_modified_time": "2025-05-27T05:21:29.951291Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/29a6cd05-71cd-4816-b8ad-fcc2286246e4.jpg", "cropping": "500,0,2500,2001", "photographer_name": "Kerttu Penttilä.", "alt_text": "Ihmisiä jumppaamassa ulkona vihreällä nurmella. Taustalla näkyy Senioripaku Välkky.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-27T05:38:05.791723Z", "last_modified_time": "2025-05-27T05:38:05.791742Z", "date_published": null, "start_time": "2025-06-04T06:15:00Z", "end_time": "2025-06-04T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espoo.fi/senioripaku", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/esbos-senioripaku-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/espoos-senioripaku-valkky" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntapalvelut | Espoon kulttuuripalvelut | Espoon kaupunginkirjasto", "sv": "Esbo stads idrotts- och motionstjänster | Esbo stads kulturtjänster | Esbo stadsbibliotek", "en": "Espoo City Sport Services | Espoo City Cultural Services | Espoo City Library" }, "description": { "fi": "<p>Senioripaku Välkky tuo kulttuuria, liikuntaa ja neuvontaa lähellesi tiistaisin ja keskiviikkoisin klo 10.30–12.30 toukokuun lopusta syyskuun alkuun. Tule ja ota läheisesi mukaan!</p><p>Senioripakun pysäkki 4.6.2025 klo 9.15–14.00 Nokkalan satama, Nokkalanniemi 2.</p><p>Tapahtuma on maksuton.</p><p>Ohjelma:</p><p>Esiintymässä Tomi Pulkkinen – esiintyvä taiteilija ja trubaduuri. Saaristopäivän ohjelmaa myös Isossa Vasikkasaaressa klo 10–14.</p><p>Toiminta toteutetaan liikunta- ja kulttuuripalvelujen, kirjastopalveluiden, Omnia Espoon työväenopiston, Länsi-Uudenmaan hyvinvointialueen, sekä järjestöjen ja vapaaehtoistoimijoiden yhteistyönä.</p><p>Lisätietoja osoitteessa <a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/espoon-senioripaku-valkky\">espoo.fi/senioripaku</a>.</p>", "sv": "<p>Senioripaku Välkky kommer med kultur, motion och seniorrådgivning till platser nära dig på tisdagar och onsdagar klockan 10.30-12.30 från slut av maj till början av september. Kom och ta med dig dina anhöriga!</p><p>Senioripakus event kommer att hållas den 4.6. kl. 9.15–14.00 Nokkala småbåtshamn, Stora kalvholmen, Nokkala udd 2.</p><p>På programmet:</p><p>Esbo skärgårdsdag 10.00–14.00 med bland annat program av Tomi Pulkkinen – scenkonstnär och trubadur.</p><p>Verksamheten bedrivs i samarbete mellan idrotts- och kulturtjänsten, bibliotekstjänster, arbetarinstitutet Omnia Espoo, Västra Nylands välfärdsområde samt organisationer och frivilliga aktörer.</p><p>Mer information på webbsidan <a href=\"https://www.espoo.fi/sv/kultur-och-fritid/esbos-senioripaku-valkky\">esbo.fi/senioripaku</a>.</p>", "en": "<p>Senioripaku Välkky (Elderly people’s van) brings culture, guided exercise and guidance near you every Tuesday and Wednesday at 10:30–12:30 from end of May to the beginning of September. Come for a visit and bring a friend with you!</p><p>Senioripakus event event will be organized on 4 June from 9:15 to 14:00, Matinkylä, Nokkala Harbour, Nokkalanniemi 2.</p><p>Participation is free of charge.</p><p>On the program:</p><p>Featuring Tomi Pulkkinen - performing artist and troubadour. The programme of the Archipelago Day is arranged also at Iso Vasikkasaari from 10-14.</p><p>The activities are coordinated by sports and culture services, library services, Omnia Espoo Adult Education Centre, Western Uusimaa Wellbeing Services County, as well as organisations and volunteer workers.</p><p>More information at <a href=\"https://www.espoo.fi/en/culture-and-leisure/espoos-senioripaku-valkky\">espoo.fi/en/senioripaku</a>.</p>" }, "name": { "fi": "Senioripaku Välkky lähelläsi Matinkylässä", "sv": "Senioripaku Välkky närä dig i Mattby", "en": "Senioripaku Välkky near you in Matinkylä" }, "short_description": { "fi": "Senioripaku Välkky tuo kulttuuria, liikuntaa ja neuvontaa lähellesi.", "sv": "Senioripaku Välkky kommer med kultur, motion och seniorrådgivning till platser nära dig.", "en": "Senioripaku Välkky (Elderly people’s van) brings culture, guided exercise and guidance near you." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zffi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22zfz4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20379/?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/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490122, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-27T05:21:29.951276Z", "last_modified_time": "2025-05-27T05:21:29.951291Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/29a6cd05-71cd-4816-b8ad-fcc2286246e4.jpg", "cropping": "500,0,2500,2001", "photographer_name": "Kerttu Penttilä.", "alt_text": "Ihmisiä jumppaamassa ulkona vihreällä nurmella. Taustalla näkyy Senioripaku Välkky.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-27T05:27:33.573825Z", "last_modified_time": "2025-05-27T05:27:33.573841Z", "date_published": null, "start_time": "2025-06-03T07:30:00Z", "end_time": "2025-06-03T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espoo.fi/senioripaku", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/esbos-senioripaku-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/espoos-senioripaku-valkky" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntapalvelut | Espoon kulttuuripalvelut | Espoon kaupunginkirjasto", "sv": "Esbo stads idrotts- och motionstjänster | Esbo stads kulturtjänster | Esbo stadsbibliotek", "en": "Espoo City Sport Services | Espoo City Cultural Services | Espoo City Library" }, "description": { "fi": "<p>Senioripaku Välkky tuo kulttuuria, liikuntaa ja neuvontaa lähellesi tiistaisin ja keskiviikkoisin klo 10.30–12.30 toukokuun lopusta syyskuun alkuun. Tule ja ota läheisesi mukaan!</p><p>Senioripakun pysäkki 3.6.2025 klo 10.30–12.30 Suvelan asukaspuisto, Kirstintie 24, Espoo.</p><p>Tapahtuma on maksuton.</p><p>Ohjelma:</p><p>Esiintymässä Pasi Pihlaja – käyrätorvi ja tarinointia.</p><p>Toiminta toteutetaan liikunta- ja kulttuuripalvelujen, kirjastopalveluiden, Omnia Espoon työväenopiston, Länsi-Uudenmaan hyvinvointialueen, sekä järjestöjen ja vapaaehtoistoimijoiden yhteistyönä.</p><p>Lisätietoja osoitteessa <a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/espoon-senioripaku-valkky\">espoo.fi/senioripaku</a>.</p>", "sv": "<p>Senioripaku Välkky kommer med kultur, motion och seniorrådgivning till platser nära dig på tisdagar och onsdagar klockan 10.30-12.30 från slut av maj till början av september. Kom och ta med dig dina anhöriga!</p><p>Senioripakus event kommer att hållas den 3.6. kl. 10.30-12.30 Södriks invånarpark, Kirstivägen 24, Esbo.</p><p>På programmet:</p><p>Pasi Pihlaja - Valthorn och berättelser.</p><p>Verksamheten bedrivs i samarbete mellan idrotts- och kulturtjänsten, bibliotekstjänster, arbetarinstitutet Omnia Espoo, Västra Nylands välfärdsområde samt organisationer och frivilliga aktörer.</p><p>Mer information på webbsidan <a href=\"https://www.espoo.fi/sv/kultur-och-fritid/esbos-senioripaku-valkky\">esbo.fi/senioripaku</a>.</p>", "en": "<p>Senioripaku Välkky (Elderly people’s van) brings culture, guided exercise and guidance near you every Tuesday and Wednesday at 10:30–12:30 from end of May to the beginning of September. Come for a visit and bring a friend with you!</p><p>Senioripakus event event will be organized on 3 June from 10.30 to 12.30 at Suvela Residents' Park, Kirstinkatu 24, Espoo.</p><p>Participation is free of charge.</p><p>On the program:</p><p>Featuring Pasi Pihlaja - horn music and storytelling.</p><p>The activities are coordinated by sports and culture services, library services, Omnia Espoo Adult Education Centre, Western Uusimaa Wellbeing Services County, as well as organisations and volunteer workers.</p><p>More information at <a href=\"https://www.espoo.fi/en/culture-and-leisure/espoos-senioripaku-valkky\">espoo.fi/en/senioripaku</a>.</p>" }, "name": { "fi": "Senioripaku Välkky lähelläsi Suvelassa", "sv": "Senioripaku Välkky närä dig i Södrik", "en": "Senioripaku Välkky near you in Suvela" }, "short_description": { "fi": "Senioripaku Välkky tuo kulttuuria, liikuntaa ja neuvontaa lähellesi.", "sv": "Senioripaku Välkky kommer med kultur, motion och seniorrådgivning till platser nära dig.", "en": "Senioripaku Välkky (Elderly people’s van) brings culture, guided exercise and guidance near you." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zfz4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22zgma", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490122, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-27T05:21:29.951276Z", "last_modified_time": "2025-05-27T05:21:29.951291Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/29a6cd05-71cd-4816-b8ad-fcc2286246e4.jpg", "cropping": "500,0,2500,2001", "photographer_name": "Kerttu Penttilä.", "alt_text": "Ihmisiä jumppaamassa ulkona vihreällä nurmella. Taustalla näkyy Senioripaku Välkky.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-27T05:21:53.050233Z", "last_modified_time": "2025-05-27T05:21:53.050253Z", "date_published": null, "start_time": "2025-05-27T07:30:00Z", "end_time": "2025-05-27T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espoo.fi/senioripaku", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/esbos-senioripaku-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/espoos-senioripaku-valkky" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntapalvelut | Espoon kulttuuripalvelut | Espoon kaupunginkirjasto", "sv": "Esbo stads idrotts- och motionstjänster | Esbo stads kulturtjänster | Esbo stadsbibliotek", "en": "Espoo City Sport Services | Espoo City Cultural Services | Espoo City Library" }, "description": { "fi": "<p>Senioripakun kauden avajaisia juhlitaan 27.5.2025 klo 10.30-12.00 Lippulaivan kirjaston Salonki-tilassa, Espoonlahdenkatu 8, Espoo.</p><p>Tapahtuma on maksuton.</p><p>Ohjelma:</p><p>Jordy Valderrama ja tuolisirkus, jumppahetki ja neuvontaa. Tapahtumassa on kahvi- ja pullatarjoilu.</p><p>Senioripaku Välkky tuo kulttuuria, liikuntaa ja neuvontaa lähellesi tiistaisin ja keskiviikkoisin klo 10.30–12.30 toukokuun lopusta syyskuun alkuun. Tule ja ota läheisesi mukaan!</p><p>Toiminta toteutetaan liikunta- ja kulttuuripalvelujen, kirjastopalveluiden, Omnia Espoon työväenopiston, Länsi-Uudenmaan hyvinvointialueen, sekä järjestöjen ja vapaaehtoistoimijoiden yhteistyönä.</p><p>Lisätietoja osoitteessa <a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/espoon-senioripaku-valkky\">espoo.fi/senioripaku</a>.</p>", "sv": "<p>Senioripakus säsongsöppning kommer att hållas den 27.5. kl. 10.30-12.00 i Lippulaiva biblioteket, Salonki-salen, Esboviksgatan 8, Esbo.</p><p>Evenemangen är gratis.</p><p>På programmet:</p><p>Stolscirkus och Jordy Valderrama, seniorirådgivning och kaffeservering (kaffe och bulle).</p><p>Senioripaku Välkky kommer med kultur, motion och seniorrådgivning till platser nära dig på tisdagar och onsdagar klockan 10.30-12.30 från slut av maj till början av september. Kom och ta med dig dina anhöriga!</p><p>Verksamheten bedrivs i samarbete mellan idrotts- och kulturtjänsten, bibliotekstjänster, arbetarinstitutet Omnia Espoo, Västra Nylands välfärdsområde samt organisationer och frivilliga aktörer.</p><p>Mer information på webbsidan <a href=\"https://www.espoo.fi/sv/kultur-och-fritid/esbos-senioripaku-valkky\">esbo.fi/senioripaku</a>.</p>", "en": "<p>Senioripakus season opening event will be organized on 27 May from 10.30 to 12.00, at Lippulaiva Library, Espoonlahdenkatu 8, Espoo.</p><p>Participation is free of charge.</p><p>On the program:</p><p>Chair Circus with Jordy Valderrama, sports activities and advice. Free coffee and snack will be served at the event.</p><p>Senioripaku Välkky (Elderly people’s van) brings culture, guided exercise and guidance near you every Tuesday and Wednesday at 10:30–12:30 from end of May to the beginning of September. Come for a visit and bring a friend with you!</p><p>The activities are coordinated by sports and culture services, library services, Omnia Espoo Adult Education Centre, Western Uusimaa Wellbeing Services County, as well as organisations and volunteer workers.</p><p>More information at <a href=\"https://www.espoo.fi/en/culture-and-leisure/espoos-senioripaku-valkky\">espoo.fi/en/senioripaku</a>.</p>" }, "name": { "fi": "Senioripaku Välkky - kauden avajaiset Espoonlahdessa", "sv": "Senioripaku Välkky - säsongsöppning i Esboviken", "en": "Senioripaku Välkky - season opening event in Enpoonlahti" }, "short_description": { "fi": "Senioripaku Välkky tuo kulttuuria, liikuntaa ja neuvontaa lähellesi.", "sv": "Senioripaku Välkky kommer med kultur, motion och seniorrådgivning till platser nära dig.", "en": "Senioripaku Välkky (Elderly people’s van) brings culture, guided exercise and guidance near you." }, "location_extra_info": { "fi": "Salonki-sali", "sv": "Salonki-salen", "en": "Salonki Hall" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22zgma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:aglq5ajrfq", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "" }, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:00001", "sub_events": [], "images": [], "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:p1393/?format=api" } ], "created_time": "2025-05-26T21:30:37.267902Z", "last_modified_time": "2025-05-26T21:30:37.267918Z", "date_published": null, "start_time": "2025-11-26T07:00:00Z", "end_time": "2025-11-26T07:15: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": 2, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "" }, "provider_contact_info": null, "provider": { "fi": "" }, "description": { "fi": "<p>Korvapuusti</p><p>Jättegott</p><p>Cinnamon</p>" }, "name": { "fi": "Testitapahtuma kolmella kielella" }, "short_description": { "fi": "Testataan indeksointinopeutta" }, "location_extra_info": { "fi": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:aglq5ajrfq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66327", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 746776, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T13:14:05.691302Z", "last_modified_time": "2025-05-12T13:14:05.691328Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771456.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/746776/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T13:14:05.619367Z", "last_modified_time": "2025-05-26T14:14:58.506192Z", "date_published": null, "start_time": "2025-06-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A1365FB17D038B52112BE154B62AF173/Vastamyrkky", "sv": "http://www.espanlava.fi/sv/evenemang/event/A1365FB17D038B52112BE154B62AF173/Vastamyrkky", "en": "http://www.espanlava.fi/en/events/event/A1365FB17D038B52112BE154B62AF173/Vastamyrkky" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Vastamyrkky on kahdeksanhenkinen, omien sanojensa mukaan punk-sambaa soittava yhtye, jonka ensijulkaisu \"VASTAMYRKKY\" ilmestyi tammikuussa.</p><p>Bändin musiikki on ottanut vaikutteita erityisesti brasilialaisesta sambamusiikista, jota kuitenkin lähestytään suomalaisen kulttuurin ja punk-estetiikan tinkimättömyyden kautta. Lopputuloksena on musiikkia, joka saa jalat liikkumaan rytmin tahtiin ja samalla takoo kuulijoidensa tajuntaan sanomaa kulttuurirajojen yhtymäkohdista.</p><p>Yhtyeen tarkoitus on haastaa kuulijansa poikkeuksellisilla vaikuteyhdistelmillä, ja saada heidät lumoutumaan musiikin ja raa'an tunteen yhteisvoimin. Tule yllättymään!</p><p>Max Tallgrén – basso/sävellys<br>Helleka Tallgrén – laulu<br>Annukka Kauppi – laulu<br>Pihla Pallas – tenorisaksofoni<br>Joel Kolehmainen – baritonisaksofoni<br>Milena Albanese – piano<br>Elias Nieminen – rummut<br>Santeri Saari – perkussiot</p>", "sv": "<p>Vastamyrkky är ett band med åtta personer som enligt egna ord spelar punksamba och deras första platta ”VASTAMYRKKY” släpptes i januari.</p><p>Bandet har påverkats särskilt av brasiliansk sambamusik, som de dock närmar sig genom den finländska kulturens och punk-estetikens stil där man inte prutar på något. Slutresultatet är musik som får benen att röra sig i takt med rytmen och samtidigt övertygar sina åhörare om kulturgränsernas beröringspunkter.</p><p>Orkesterns mål är att utmana sina åhörare med exceptionella påverkanskombinationer och få dem att förlita sig med hjälp av gemensam musik och rå känsla. Kom och bli överraskad!</p><p>Max Tallgrén – bas/komposition<br>Helleka Tallgrén – sång<br>Annukka Kauppi – sång<br>Pihla Pallas – tenorsaxofon<br>Joel Kolehmainen – barytonsaxofon<br>Milena Albanese – piano<br>Elias Nieminen – trummor<br>Santeri Saari – perkussion</p>", "en": "<p>‘Vastamyrkky’ are an eight-piece group playing what they describe as ‘punk-samba’. Their first album, Vastamyrkky, was released in January.</p><p>The band’s music is inspired by Brazilian samba music, in particular, but they approach it from the perspective of Finnish culture and uncompromising punk aesthetics. This results in music that will make your feet move to the rhythm while hammering in the message about what unites our cultures.</p><p>The band aim at challenging the audience with unique combinations of influences and enchanting them with a mix of music and raw emotion. Come along and prepare to be surprised!</p><p>Max Tallgrén – bass/composition<br>Helleka Tallgrén – vocals<br>Annukka Kauppi – vocals<br>Pihla Pallas – tenor saxophone<br>Joel Kolehmainen – baritone saxophone<br>Milena Albanese – piano<br>Elias Nieminen – drums<br>Santeri Saari – perkussion</p>" }, "name": { "fi": "Vastamyrkky – Open Stage", "sv": "Vastamyrkky – Open Stage", "en": "Vastamyrkky – Open Stage" }, "short_description": { "fi": "Vastamyrkky on kahdeksanhenkinen, omien sanojensa mukaan punk-sambaa soittava yhtye, jonka ensijulkaisu \"VASTAMYRKKY\" ilmestyi tammikuussa.", "sv": "Vastamyrkky är ett band med åtta personer som enligt egna ord spelar punksamba och deras första platta ”VASTAMYRKKY” släpptes i januari.", "en": "‘Vastamyrkky’ are an eight-piece group playing what they describe as ‘punk-samba’. Their first album, Vastamyrkky, was released in January." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66327/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66326", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 746775, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T13:14:05.404655Z", "last_modified_time": "2025-05-12T13:14:05.404673Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771455.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/746775/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T13:14:05.331369Z", "last_modified_time": "2025-05-26T14:14:58.261113Z", "date_published": null, "start_time": "2025-06-24T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/93B130687B30570DB2CB875478D288CF/Riekko_Salama", "sv": "http://www.espanlava.fi/sv/evenemang/event/93B130687B30570DB2CB875478D288CF/Riekko_Salama", "en": "http://www.espanlava.fi/en/events/event/93B130687B30570DB2CB875478D288CF/Riekko_Salama" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Riekko Salaman keikkaa on kuvattu kehoa ravistelevaksi alkuvoimaksi ja pitelemättömäksi rockshowksi.</p><p>Uusi tamperelaislähtöisten muusikkojen helsinkiläinen yhtye soittaa pastellinsävyistä rockia. Sähkökitarat, isot melodiset kertosäkeet ja tarkkanäköiset lyriikat ovat syvällä Riekko Salaman dna:ssa.</p><p>Bändin keväällä 2024 julkaistu ensimmäinen single ’Kesänmurha’ valloitti paikallisradioiden soittolistat sekä Yle:n levylautakunnan. <br>Kappale soi kesän aikana viidellä eri radiokanavalla yhteensä toistasataa kertaa.</p><p>Yhtye haluaa levittää ympärilleen positiivista energiaa ja jättää keikoillaan pastellinsävyisen muistijäljen arjen harmauden keskelle.</p>", "sv": "<p>Riekko Salamas jobb har beskrivits som en primärkraft som skakar kroppen och som en ostoppbar rockshow.</p><p>Den nya Helsingforsorkestern med musiker med Tammerforsbakgrund spelar pastellfärgad rock. Elgitarrer, stora melodiska refränger och skarpsynt lyrik sitter djupt i Riekko Salamas dna.</p><p>Deras första singel ”Kesämurha” som kom ut våren 2024 i bandet erövrade de lokala radiernas spellistor och Yle:s skivnämnd. Under sommaren spelades låten på fem olika radiokanaler sammanlagt flera hundra gånger.</p><p>Orkestern vill sprida positiv energi omkring sig och lämna pastellfärgade minnesspår mitt i den gråa vardagen.</p>", "en": "<p>Riekko Salama’s performances have been described as primal events shaking up the body in an unadulterated rock show.</p><p>The new Helsinki-based group consisting of musicians from Tampere play pastel-coloured rock. Electric guitars, big melodic choruses and perceptive lyrics are ingrained in Riekko Salama’s DNA.</p><p>The band’s debut single released in spring 2024, Kesänmurha, took over local radio playlists and won the hearts of the participants in the show ‘Levylautakunta’ on Yle. The song was played more then one hundred times on five different radio stations over the summer.</p><p>The group want to spread positive energy around, leaving audiences at their shows with a pastel-coloured imprint on their otherwise grey daily lives.</p>" }, "name": { "fi": "Riekko Salama – Open Stage", "sv": "Riekko Salama – Open Stage", "en": "Riekko Salama – Open Stage" }, "short_description": { "fi": "Riekko Salaman keikkaa on kuvattu kehoa ravistelevaksi alkuvoimaksi ja pitelemättömäksi rockshowksi.", "sv": "Riekko Salamas jobb har beskrivits som en primärkraft som skakar kroppen och som en ostoppbar rockshow.", "en": "Riekko Salama’s performances have been described as primal events shaking up the body in an unadulterated rock show." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66325", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 746774, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T13:14:05.160365Z", "last_modified_time": "2025-05-12T13:14:05.160392Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771478.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/746774/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T13:14:05.096169Z", "last_modified_time": "2025-05-26T14:14:58.095940Z", "date_published": null, "start_time": "2025-06-24T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/BD93D01F7B0FF6DAF3427D436F5B55AF/Maria_Mono_Ville_Raitio", "sv": "http://www.espanlava.fi/sv/evenemang/event/BD93D01F7B0FF6DAF3427D436F5B55AF/Maria_Mono_Ville_Raitio", "en": "http://www.espanlava.fi/en/events/event/BD93D01F7B0FF6DAF3427D436F5B55AF/Maria_Mono_Ville_Raitio" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Duo Maria Mono & Ville Raitio soittaa jännitteistä ja melodista tummaa folkia kahdella kitaralla.</p><p>Marian kirjoittamat kappaleet ovat lyriikkavetoisia, elokuvallisia sukelluksia syviin sielunmaisemiin.</p><p>Kaksikko työstää parhaillaan ensilevyään.</p>", "sv": "<p>Duo Maria Mono & Ville Raitio spelar mörk och melodisk folk med spänningar på två gitarrer.</p><p>Låtarna som Maria skrivit är lyriska, filmatiska dykningar in i själslandskapet.</p><p>Duon arbetar för närvarande med sin första skiva.</p>", "en": "<p>The duo Maria Mono & Ville Raitio play intense and melodic dark folk on two guitars.</p><p>The songs, written by Maria, are lyrics-driven cinematic deep dives into the soul.</p><p>The duo are currently working on their debut album.</p>" }, "name": { "fi": "Maria Mono & Ville Raitio – Open Stage", "sv": "Maria Mono & Ville Raitio – Open Stage", "en": "Maria Mono & Ville Raitio – Open Stage" }, "short_description": { "fi": "Duo Maria Mono & Ville Raitio soittaa jännitteistä ja melodista tummaa folkia kahdella kitaralla.", "sv": "Duo Maria Mono & Ville Raitio spelar mörk och melodisk folk med spänningar på två gitarrer.", "en": "The duo Maria Mono & Ville Raitio play intense and melodic dark folk on two guitars." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66325/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66324", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 746773, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T13:14:04.843922Z", "last_modified_time": "2025-05-12T13:14:04.843942Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767749.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/746773/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T13:14:04.764221Z", "last_modified_time": "2025-05-26T14:14:57.802867Z", "date_published": null, "start_time": "2025-06-19T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C9EFAE292D843E6903713165ECC2F4D7/indiespa_Ne_Lintuizet", "sv": "http://www.espanlava.fi/sv/evenemang/event/C9EFAE292D843E6903713165ECC2F4D7/indiespa_Ne_Lintuizet", "en": "http://www.espanlava.fi/en/events/event/C9EFAE292D843E6903713165ECC2F4D7/indiespa_Ne_Lintuizet" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kotimaisen folkin superyhtye Ne Lintuizet julkaisee debyyttialbuminsa toukokuussa.</p><p>Vuonna 2024 perustetun yhtyeen muodostavat pitkän linjan lauluntekijät Pekko Käppi, Laura Moisio, Kielo Kärkkäinen ja Lauri Myllymäki. Nelikon upea yhteislaulusoundi ja vapaasti hengittävä musiikillinen vuoropuhelu herättivät ihastusta jo yhtyeen ensimmäisellä kiertueella viime syksynä. Esikoislevyllä esittäytyy rosoinen ja herkkä yhtye, neljä omaäänistä laulajaa yhdessä tilassa.</p><p>Ne Lintuizet on harras ja hilpeä kokoontuminen, virittyminen uudelle yhteiselle taajuudelle: lauluja yliluonnollisista vieraista ja ystävien jokapäiväisestä yhteydestä sekä unista, rahasta ja kuoleman lopullisesta vallasta, kukkien ajasta.</p><p><b>indiespa</b> tulee jälleen! Espan lavalla aiempinakin kesinä tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja saa tänä kesänä jatkoa kolmen illan ja kuuden eri yhtyeen voimin.</p><p>Helatorstaina 29.5. starttaava indiespa tarjoaa kesäisen Espan kuulijoille tunnelmia gangstafolkista kauniin maalaileviin melodioihin ja tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>", "sv": "<p>Den finländska folkmusikens supergrupp Ne Lintuizet publicerar sitt debututalbum i maj.</p><p>Gruppen som bildades 2024 består av de erfarna sångförfattarna Pekko Käppi, Laura Moisio, Kielo Kärkkäinen och Lauri Myllymäki. De fyras fantastiska samsångssound och musikdialogen som andas fritt väckte beundran redan under gruppens första turné förra hösten. På debutalbumet hör vi en karg och känslig orkester, fyra sångare med egen röst i ett utrymme.</p><p>Ne Lintuizet är en ömtålig och glad sammankomst, en impuls till en ny gemensam frekvens: sånger om övernaturliga gäster och vardagliga kontakter med vänner samt drömmar, pengar och dödens slutliga makt, och blommornas tid.</p><p><b>indiespa</b> är här igen! Konsertserien indiespa som redan under tidigare somrar presenterat den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning den här sommaren under tre kvällar med sex olika orkestrar.</p><p>På Kristi himmelsfärdsdag 29.5 erbjuder indiespa sommarens espa-åhörare stämningar från gangstafolk till vackra målande melodier och en tuff rockandroll. Speltider kl. 17 och 18, alltid fritt inträde!</p>", "en": "<p>Finnish folk super group Ne Lintuizet release their debut album in May.</p><p>The group, founded in 2024, consists of songwriters Pekko Käppi, Laura Moisio, Kielo Kärkkäinen and Lauri Myllymäki. The beautiful harmonies and the breathy musical dialogue of the four musicians enchanted listeners right from the band’s first tour last autumn. Their debut album showcases a rough but sensitive group of four unique singers coming together.</p><p>Ne Lintuizet is a passionate and joyful coming together on a new shared frequency: songs about supernatural visitors and the daily connections between friends as well as dreams, money and the ultimate power of death, and the time of flowers.</p><p><b>indiespa</b> is here again! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on the Espa Stage in previous summers, continues this summer with six acts over three nights.</p><p>Indiespa starts on Ascension Thursday 29 May and will be immersing the Espa Stage audience in atmospheric moments from gangstafolk to colourful melodies and intense rock and roll. Bands start playing at 17.00 and 18.00, always free entry!</p>" }, "name": { "fi": "indiespa: Ne Lintuizet", "sv": "indiespa: Ne Lintuizet", "en": "indiespa: Ne Lintuizet" }, "short_description": { "fi": "Kotimaisen folkin superyhtye Ne Lintuizet julkaisee debyyttialbuminsa toukokuussa.", "sv": "Den finländska folkmusikens supergrupp Ne Lintuizet publicerar sitt debututalbum i maj.", "en": "Finnish folk super group Ne Lintuizet release their debut album in May." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66324/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66323", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 746772, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T13:14:04.485891Z", "last_modified_time": "2025-05-12T13:14:04.485958Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767748.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/746772/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T13:14:04.365868Z", "last_modified_time": "2025-05-26T14:14:57.515412Z", "date_published": null, "start_time": "2025-06-19T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/01AD65C40652A296DBF8444E4787FBBE/indiespa_Matka_maailman_ympari", "sv": "http://www.espanlava.fi/sv/evenemang/event/01AD65C40652A296DBF8444E4787FBBE/indiespa_Matka_maailman_ympari", "en": "http://www.espanlava.fi/en/events/event/01AD65C40652A296DBF8444E4787FBBE/indiespa_Matka_maailman_ympari" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Matka maailman ympäri on Miro Palokallion, Saara ”Sape” Niemelän ja Aarni Palokallion muodostama suomirock-yhtye, joka perustettiin loppukesästä 2017.</p><p>Yhtyeen kehuttu debyyttialbumi Kolme julkaistiin kesällä 2018. Albumi sai Soundissa 4/5 tähteä ja HS kehui levyä vakuuttavaksi kokonaisuudeksi. Levyn sinkut Ei mikään palaa ennalleen ja Älä soita mulle tänä iltana ovat olleet ahkerassa radiosoitossa mm. Radio Suomessa, Suomirockilla ja YleX:llä.</p><p>Yhtye julkaisi keväällä 2020 toisen albuminsa, joka kantaa osuvaa nimeä Toinen. Levyn kappaleet käsittelevät tuttujen ihmissuhdeteemojen lisäksi ilmastokatastrofia, elämää postapokalyptisessa maailmassa ja toivoa uudesta mahdollisuudesta toisella planeetalla.</p><p>Toinen-albumilta julkaistu single Jotenkin näin oli Radio Suomen soitetuin kappale heinäkuussa 2019. Biisiä on kuunneltu Spotifyssa yli 460 000 kertaa.</p><p>Tällä hetkellä yhtye valmistelee kolmatta albumiaan, jolta julkaistu single Turvaan kaikelta on kerännyt Spotifyssa jo reilut 420 000 kuuntelua.<br> <br><b>indiespa</b> tulee jälleen! Espan lavalla aiempinakin kesinä tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja saa tänä kesänä jatkoa kolmen illan ja kuuden eri yhtyeen voimin.</p><p>Helatorstaina 29.5. starttaava indiespa tarjoaa kesäisen Espan kuulijoille tunnelmia gangstafolkista kauniin maalaileviin melodioihin ja tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>", "sv": "<p>Matka maailman ympäri är en suomirock-orkester bestående av Miro Palokallio, Saara ”Sape” Niemelä och Aarni Palokallio och som grundades i slutet av sommaren 2017.</p><p>Deras debututalbum Kolme släpptes sommaren 2018 med fina recensioner. Albumet fick 4/5 stjärnor i Soundi och HS kallade skivan för en övertygande helhet. Skivans singlar Ei mikään palaa ennalleen och Älä soita minulle tänä iltana har spelats flitigt i radio på bl.a. RadioSuomi, Suomirock och YleX.</p><p>Bandet gav våren 2020 ut sitt andra album, som bär det träffande namnet Toinen. Skivans låtar handlar förutom om bekanta mänskliga relationer också om klimatkatastrofen, livet i en postapokalyptisk värld och hoppet om en ny möjlighet på en annan planet.</p><p>Singlen Jotenkin näin som publicerades från albumet Toinen var Radio Suomis mest spelade låt i juli 2019. Låten har spelat mer än 460 000 gånger i Spotify.</p><p>För närvarande förbereder grupperingen den tredje albumen, från vilken singlen Turva redan har samlat över 420 000 uppspelningar i Spotify.</p><p><b>indiespa</b> är här igen! Konsertserien indiespa som redan under tidigare somrar presenterat den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning den här sommaren under tre kvällar med sex olika orkestrar.</p><p>På Kristi himmelsfärdsdag 29.5 erbjuder indiespa sommarens espa-åhörare stämningar från gangstafolk till vackra målande melodier och en tuff rockandroll. Speltider kl. 17 och 18, alltid fritt inträde!</p>", "en": "<p>‘Matka maailman ympäri’ is a Finnish rock group founded by Miro Palokallio, Saara ‘Sape’ Niemelä and Aarni Palokallio in late summer 2017.</p><p>Their critically acclaimed debut album Kolme was released in summer 2018. Soundi gave the album 4/5 stars and HS called the album a convincing entity. Singles from the album, Ei mikään palaa ennalleen and Älä soita mulle tänä iltana, have had plenty of radio play on Radio Suomi, Suomirock and YleX, to name a few.</p><p>The group released their second album in spring 2020 with the apt name Toinen (second). In addition to familiar themes of interpersonal relationships, the songs on the album discuss the climate disaster, life in a post-apocalyptic world and hope for a second chance on another planet.</p><p>The single Jotenkin näin from the album Toinen was the most played song on Radio Suomi in July 2019. The song has been streamed more than 460,000 times on Spotify.</p><p>The band are currently preparing their third album. The single Turvaan kaikelta from the album has already been streamed more than 420,000 times on Spotify.</p><p><b>indiespa</b> is here again! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on the Espa Stage in previous summers, continues this summer with six acts over three nights.</p><p>Indiespa starts on Ascension Thursday 29 May and will be immersing the Espa Stage audience in atmospheric moments from gangstafolk to colourful melodies and intense rock and roll. Bands start playing at 17.00 and 18.00, always free entry!</p>" }, "name": { "fi": "indiespa: Matka maailman ympäri", "sv": "indiespa: Matka maailman ympäri", "en": "indiespa: Matka maailman ympäri" }, "short_description": { "fi": "Matka maailman ympäri on Miro Palokallion, Saara ”Sape” Niemelän ja Aarni Palokallion muodostama suomirock-yhtye, joka perustettiin loppukesästä 2017.", "sv": "Matka maailman ympäri är en suomirock-orkester bestående av Miro Palokallio, Saara ”Sape” Niemelä och Aarni Palokallio och som grundades i slutet av sommaren 2017.", "en": "‘Matka maailman ympäri’ is a Finnish rock group founded by Miro Palokallio, Saara ‘Sape’ Niemelä and Aarni Palokallio in late summer 2017." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66323/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66322", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 746771, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T13:14:04.151859Z", "last_modified_time": "2025-05-12T13:14:04.151878Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766363.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/746771/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T13:14:04.067460Z", "last_modified_time": "2025-05-26T14:14:57.298083Z", "date_published": null, "start_time": "2025-06-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/FD48443BAFB50B8B3C1D924954DB8D99/DDT_Jazzband_-_Traditional_jazz", "sv": "http://www.espanlava.fi/sv/evenemang/event/FD48443BAFB50B8B3C1D924954DB8D99/DDT_Jazzband_-_Traditional_jazz", "en": "http://www.espanlava.fi/en/events/event/FD48443BAFB50B8B3C1D924954DB8D99/DDT_Jazzband_-_Traditional_jazz" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>DDT Jazzband on vuodesta 1958 alkaen pitänyt yllä dixieland- ja swing-tyylin perinnettä Suomessa.</p><p>Yhtyeen tyyli onkin yhdistelmä perinnejazzia ja swing-kauden vaikutteita. Laajaan ohjelmistoon kuuluu mm. King Oliverin ja Duke Ellingtonin sävellyksiä.</p><p>Orkesteri on genressään maamme vanhin, esiintyy edelleen säännöllisesti ja on erinomaisessa iskussa.</p>", "sv": "<p>DDT Jazzband har sedan 1958 upprätthållit dixieland- och swingstilarnas traditioner i Finland.</p><p>Orkesterns stil är en kombination av traditionell jazz med influenser från swingperioden. I det omfattande programutbudet ingår bl.a. kompositioner från King Oliver och Duke Ellington.</p><p>Orkestern är den äldsta i sin genre i vårt land, de uppträder fortfarande regelbundet och är i utmärkt skick.</p>", "en": "<p>Since 1958, DDT Jazzband have kept the tradition of dixieland and swing alive in Finland.</p><p>The band combine traditional jazz with swing influences. Their extensive repertoire includes compositions by King Oliver and Duke Ellington, to name a few.</p><p>The band is the oldest in its genre in Finland, still performs regularly and is in full swing.</p>" }, "name": { "fi": "DDT Jazzband - Traditional jazz", "sv": "DDT Jazzband - Traditional jazz", "en": "DDT Jazzband - Traditional jazz" }, "short_description": { "fi": "DDT Jazzband on vuodesta 1958 alkaen pitänyt yllä dixieland- ja swing-tyylin perinnettä Suomessa.", "sv": "DDT Jazzband har sedan 1958 upprätthållit dixieland- och swingstilarnas traditioner i Finland.", "en": "Since 1958, DDT Jazzband have kept the tradition of dixieland and swing alive in Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66322/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66319", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 746769, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T13:14:03.337095Z", "last_modified_time": "2025-05-12T13:14:03.337115Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764960.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/746769/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T13:14:03.174817Z", "last_modified_time": "2025-05-26T14:14:56.628602Z", "date_published": null, "start_time": "2025-06-17T09:30:00Z", "end_time": "2025-06-17T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C0A20A953A7B3350C9F839F2D9EEEA74/Festa_della_Musica_Italiana_Italian_Music_Festival", "sv": "http://www.espanlava.fi/sv/evenemang/event/C0A20A953A7B3350C9F839F2D9EEEA74/Festa_della_Musica_Italiana_Italian_Music_Festival", "en": "http://www.espanlava.fi/en/events/event/C0A20A953A7B3350C9F839F2D9EEEA74/Festa_della_Musica_Italiana_Italian_Music_Festival" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Festa della Musica Italiana 2025 juhlistaa italialaisen musiikin rikasta perintöä kahdella poikkeuksellisella konsertilla!</p><p>Konsertit on kuratoinut Helsingissä asuva italialainen jazzrumpali ja taiteellinen johtaja <b>Alessandro D’Anna.</b></p><p>Ensimmäinen konsertti alkaa klo 12.30, jossa esiintyy italialainen duo <b>Chiara Orlandi</b> ja <b>Stefano Cirilli.</b></p><p>He esittelevät Italian populaarimusiikin perinteen eleganssia ja syvyyttä, yhdistäen siihen jazzin ja popin elementtejä sävellyksissä, jotka heijastavat Italian ajatonta panosta musiikin maailmassa.</p><p>Chiara Orlandi: laulu<br>Stefano Cirilli: kitara</p><p>Toinen konsertti alkaa klo 14, jossa esiintyy loistava jazzkvintetti legendaarisen italialaisen saksofonistin <b>Rosario Giulianin</b> johdolla. Konsertti yhdistää italialaisen jazzin elinvoiman suomalaisen jazzin vivahteisiin, Rosario Giulianin omien sävellysten ja muutamien sovitettujen jazzstandardien kautta.</p><p>Rosario Giuliani: alttosaksofoni<br>Manuel Dunkel: tenorisaksofoni<br>Joonas Haavisto: piano<br>Antti Lötjönen: kontrabasso<br>Alessandro D’Anna: rummut</p><p>Molemmat konsertit tuovat esiin Italian monimuotoisuutta ja kulttuurista rikkautta, yhdistäen klassisen musiikin ja jazzin ainutlaatuiseksi elämykseksi. Tapahtuma on avoin yleisölle ja tarjoaa mahdollisuuden sukeltaa italialaisen musiikkiperinteen kauneuteen aivan Helsingin sydämessä.</p><p>Tapahtuma järjestetään yhteistyössä Italian kulttuuri-instituutin kanssa.</p>", "sv": "<p>Festa della Musica Italiana 2025 firar det rika arvet av italiensk musik med två exceptionella konserter!</p><p>Konserterna är kurerade av en italiensk jazztrummis bosatt i Helsingfors, och av den konstnärliga ledaren Alessandro D' Anna.<br>Den första konserten inleds kl. 12.30 med den italienska duon Chiara Orlandi och Stefano Cirilli. De presenterar elegansen och djupet i den italienska populärmusiktraditionen, med element av jazz och pop i musikområden som återspeglar Italiens tidslösa insats i musikens värld.</p><p>Chiara Orlandi: sång<br>Stefano Cirilli: gitarr</p><p>Den andra konserten inleds kl. 14, med uppträdande av en ypperlig jazzkvintett under ledning av den legendariska italienska saxofonisten Rosario Giuliani. Konserten förenar den italienska jazzens livskraft med den finländska jazzens nyanser, genom Rosario Giulianis egna kompositioner och några arrangerade jazzstandarder.</p><p>Rosario Giuliani: altsaxofon<br>Manuel Dunkel: tenorsaxofon<br>Joonas Haavisto: piano<br>Antti Lötjönen: kontrabas<br>Alessandro D' Anna: trummor</p><p>Båda konserterna lyfter fram Italiens mångfald och kulturella rikedom och förenar klassisk musik och jazz till en unik upplevelse. Evenemanget är öppet för allmänheten och erbjuder en möjlighet att dyka ner i den italienska musiktraditionens skönhet alldeles i hjärtat av Helsingfors.</p>", "en": "<p>Festa della Musica Italiana 2025 will celebrate the rich heritage of Italian music through two exceptional concerts!</p><p>Concerts are curated by <b>Alessandro D’Anna</b>, the renowned Italian jazz drummer and art director based in Helsinki.</p><p>The first set at 12.30 will feature a concert held by the Italian duo of <b>Chiara Orlandi</b> and <b>Stefano Cirilli</b>, showcasing the elegance and depth of Italy’s popular song tradition mixed with jazz and pop elements, with compositions that reflect Italy’s timeless contribution to the world of music.</p><p>Chiara Orlando: voice<br>Stefano Cirilli: guitar</p><p>The second performance at 14.00 will present an outstanding jazz quintet, led by the legendary Italian saxophone player <b>Rosario Giuliani.</b> This concert will blend the vitality of the Italian jazz with the Finnish jazz scene, with the nuances of Rosario’s original compositions and few arranged jazz standards.</p><p>Rosario Giuliani: alto saxophone<br>Manuel Dunkel: tenor saxophone<br>Joonas Haavisto: piano<br>Antti Lötjönen: double bass<br>Alessandro D’Anna: drums</p><p>Both concerts are designed to highlight the diversity and cultural richness of Italy, bringing together classical and jazz elements for an unforgettable musical experience. This event, open to the public, is an opportunity to immerse yourself in the beauty of Italian music traditions, right in the heart of Helsinki.</p>" }, "name": { "fi": "Festa della Musica Italiana – Italian Music Festival", "sv": "Festa della Musica Italiana – Italian Music Festival", "en": "Festa della Musica Italiana – Italian Music Festival" }, "short_description": { "fi": "Festa della Musica Italiana 2025 juhlistaa italialaisen musiikin rikasta perintöä kahdella poikkeuksellisella konsertilla!", "sv": "Festa della Musica Italiana 2025 firar det rika arvet av italiensk musik med två exceptionella konserter!", "en": "Festa della Musica Italiana 2025 will celebrate the rich heritage of Italian music through two exceptional concerts!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66319/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66272", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 716033, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-08T13:14:03.595400Z", "last_modified_time": "2025-05-08T13:14:03.595417Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764933.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/716033/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-08T13:14:03.507996Z", "last_modified_time": "2025-05-26T14:14:56.331207Z", "date_published": null, "start_time": "2025-06-16T15:00:00Z", "end_time": "2025-06-16T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3F0F9B110CD80354CE11290DEC65427E/Helsinki_City_Folk_kansantanssia_ja_pelimannisoittoa", "sv": "http://www.espanlava.fi/sv/evenemang/event/3F0F9B110CD80354CE11290DEC65427E/Helsinki_City_Folk_folkdans_och_spelmannaspelning", "en": "http://www.espanlava.fi/en/events/event/3F0F9B110CD80354CE11290DEC65427E/Helsinki_City_Folk_folk_dance_and_music" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Helsinki City Folk käynnistää juhannusviikon Espan lavalla!</p><p>Juhannusviikko käynnistyy mukavissa tunnelmissa, kun pääkaupunkiseudun kansantanssijat ja pelimannit värikkäine kansallispukuineen valtaavat Espan lavan! Lavalla nähdään ja kuullaan iloista, taidokasta ja viihdyttävää tanssia ja soittoa.</p><p>Inspiraatiota esityksiin on haettu kansanmusiikin ja kansantanssin tämän vuoden teemasta ”ME YHDESSÄ”.</p><p>Mukana Seurasaaren Kansantanssijoiden ryhmät Hiillos, Lieke ja Välke, Pääkaupungin Karjalaisten Nuorten ryhmä Roigu, Tanhu-Visa, Helsingin pitäjän tanhuujat ja spelarit, Karjalan Nuorten Kuokkavieraat-kuoro ja tanssiryhmä Roihu, Helsingin Kansantanssin Ystävien ryhmä Rutistus, Espoon Kansantanssijat ja Pörriäiset Nurmijärveltä.</p>", "sv": "<p>Helsinki City Folk inleder midsommarveckan på Esplanadestraden!</p><p>Midsommarveckan börjar i trevliga stämningar när huvudstadsregionens folkdansare och spelmän med färgglada folkdräkter invaderar Esplanadestraden! På estraden får du se och höra glad, skicklig och underhållande dans och musik. Inspirationen till uppträdandena har hämtats från temat ”VI TILLSAMMANS” i år för folkmusik och folkdans.</p><p>Deltagare är Seurasaaren Kansantanssijats grupper Hiillos, Lieke och Välke, Pääkaupungin Karjalaisten Nuorten ryhmä Roigu, Tanhu-Visa, folkdansare och spelmän från Helsingin pitäjän tanhuujat ja spelarit, Karjalan Nuorten Kuokkavieraat-kör och dansgruppen Roihu, Helsingin Kansantanssin Ystäväts grupp Rutistus, Espoon Kansantanssijat och Pörriäiset från Nurmijärvi.</p>", "en": "<p>Midsummer week starts with Helsinki City Folk at Espa Stage!</p><p>Midsummer week will be kicked off with a pleasant atmosphere when folk dancers and musicians from the Helsinki metropolitan area in their colourful costumes take over the Espa Stage! The audience will be fully immersed in happy, skilful and entertaining dance and playing. Inspiration for the performances comes from the folk music and dance theme for this year: US TOGETHER.</p><p>Helsinki City Folk performers include Seurasaaren Kansantanssijat folk dance association groups Hiillos, Lieke and Välke, the Roigu group from Pääkaupungin Karjalaiset Nuoret, Tanhu-Visa, Helsingin pitäjän tanhuujat ja spelarit, the Kuokkavieraat choir and dance group Roihu from Karjalan Nuoret, the Rutistus group from Helsingin Kansantanssin Ystävät, Espoon Kansantanssijat and Pörriäiset from Nurmijärvi.</p>" }, "name": { "fi": "Helsinki City Folk – kansantanssia ja pelimannisoittoa", "sv": "Helsinki City Folk – folkdans och spelmannaspelning", "en": "Helsinki City Folk – folk dance and music" }, "short_description": { "fi": "Helsinki City Folk käynnistää juhannusviikon Espan lavalla!", "sv": "Helsinki City Folk inleder midsommarveckan på Esplanadestraden!", "en": "Midsummer week starts with Helsinki City Folk at Espa Stage!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66272/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66271", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 716032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-08T13:14:03.279479Z", "last_modified_time": "2025-05-08T13:14:03.279496Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765231.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/716032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-08T13:14:03.180086Z", "last_modified_time": "2025-05-26T14:14:56.116511Z", "date_published": null, "start_time": "2025-06-16T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6DA5DF08B10A7E471BBF33BA837CBE6A/Sulasol_yhteislaulutuokio", "sv": "http://www.espanlava.fi/sv/evenemang/event/6DA5DF08B10A7E471BBF33BA837CBE6A/Sulasol_allsangsstund", "en": "http://www.espanlava.fi/en/events/event/6DA5DF08B10A7E471BBF33BA837CBE6A/Sulasol_singalong" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule Espan lavalle kokemaan yhteislaulun voima ja riemu!</p><p>Sulasolin yhteislauluissa laulattajat ja teemat vaihtuvat, mutta yksi on ja pysyy: yhteislaulun riemu!</p><p>Kesäkuun yhteislaulutilaisuudessa laulattajana toimii Kati Sannelvuo.</p><p>Tapahtuma kutsuu laulamaan laulutaustasta riippumatta. Kokeneet laulattajat ja yhteisöllinen henki tekevät näistä äänenavaustilaisuuksista turvallisen tavan aloittaa uusi yhteislauluharrastus.</p><p>Laulu, piano ja innoittavat juonnot kutsuvat laulamaan yhdessä kesäisiä suomalaisia hittejä kautta aikain valovoimaisen laulaja-pianisti-kuoronjohtaja Kati Sannelvuon johdolla. <br>Kati Sannelvuo on Sibelius-Akatemiasta valmistunut musiikin moniammattilainen, joka nauttii yleisöjen laulattamisesta ja saa yhteislaulun riemun elämään!</p><p>Klo 17 alkavaan laulutuokioon on vapaa pääsy, eikä lippuja tarvita! Yhteislauluhetken kesto on noin 45 minuuttia.</p><p>Laulukirjana käytetään Sulasolin Helsingin piiri ry:n julkaisemaa yhteislaulukirjaa, jota voi tilaisuuksien alussa ostaa hintaan 10 €/kpl. Huomioithan, että vain käteinen kelpaa maksuvälineeksi.</p><p>Tervetuloa mukaan yhteiseen lauluhetkeen!</p>", "sv": "<p>Kom till Esplanadestraden för att uppleva kraften och glädjen i allsång!</p><p>I Sulasols allsångsstunder varierar sångledarna och temana, men ett är och förblir: allsångens glädje! Sångledare under allsången i juni är Kati Sannelvuo.</p><p>Evenemanget bjuder in folk att sjunga oberoende av sin sångbakgrund. Erfarna sångare och en gemensam anda gör dessa röstöppningstillfällen till ett tryggt sätt att inleda en ny gemensam sånghobby.</p><p>Sången, pianot och de inspirerande mellanspeaken lockar publiken att sjunga finländska hits tillsammans under ledning av Kati Sannelvuo, den ljusmäktiga sångare-pianist-körledare. <br>Kati Sannelvuo är en multiprofessionell musiker som har utexaminerats från Sibeliusakademin och som njuter av att få publiken sjunga och ge allsångsglädje i livet!</p><p>Fritt inträde till sångstunden som börjar kl. 17, inga biljetter behövs. Allsångsstunden är cirka 45 minuter lång.</p><p>Som sångbok används Sulasolin Helsingin piiri ry:s allsångsbok, som i början av evenemangen kan köpas till ett pris av 10 €/st. Observera att bara kontanter duger som betalningsmedel.</p><p>Välkommen med och sjung tillsammans!</p>", "en": "<p>Come to the Espa Stage to experience the power and joy of singalongs!</p><p>Sulasol singalongs have different hosts and themes, but one thing is constant: the joy of singing together! The June singalong is hosted by Kati Sannelvuo.</p><p>The event invites everyone to sing regardless of whether they have any background in singing. Experienced hosts and community spirit make these vocal warm-up events a comfortable way to start a new singing hobby.</p><p>Song, piano and inspiring words invite the audience to sing Finnish hits from through the years together with the brilliant singer, pianist and conductor Kati Sannelvuo. <br>Kati Sannelvuo is a multitalented musician with a degree from Sibelius Academy who enjoys getting audiences singing and will bring some life into singing together!</p><p>The song event starts at 17.00 and admission is free! The singalong will last about 45 minutes.</p><p>A songbook published by the Helsinki district of the Finnish Amateur Musicians' Association will be used during the singalong. You can purchase the book at the event for 10 euros. Please note that only cash can be used as payment.</p><p>Come and sing together with others!</p>" }, "name": { "fi": "Sulasol: yhteislaulutuokio – laulattajana Kati Sannelvuo", "sv": "Sulasol: allsångsstund – Kati Sannelvuo leder sången", "en": "Sulasol: singalong – hosted by Kati Sannelvuo" }, "short_description": { "fi": "Tule Espan lavalle kokemaan yhteislaulun voima ja riemu!", "sv": "Kom till Esplanadestraden för att uppleva kraften och glädjen i allsång!", "en": "Come to the Espa Stage to experience the power and joy of singalongs!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66271/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66269", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 716030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-08T13:14:02.507912Z", "last_modified_time": "2025-05-08T13:14:02.507928Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760254.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/716030/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-08T13:14:02.390506Z", "last_modified_time": "2025-05-26T14:14:55.598237Z", "date_published": null, "start_time": "2025-06-13T14:30:00Z", "end_time": "2025-06-13T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/25FB90573DD40122F18D7302856003A7/Helsinki_Samba_Carnaval_avajaiset", "sv": "http://www.espanlava.fi/sv/evenemang/event/25FB90573DD40122F18D7302856003A7/Invigning_av_Helsinki_Samba_Carnaval_", "en": "http://www.espanlava.fi/en/events/event/25FB90573DD40122F18D7302856003A7/Helsinki_Samba_Carnaval_Opening_Ceremony" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Helsinki Samba Carnaval® 2025 käynnistyy näyttävällä avajaistapahtumalla Espan lavalla!</p><p>Avajaistapahtuma tuo Helsingin sydämeen väriloistoa, sykähdyttävää musiikkia ja tanssin iloa, kun karnevaalitunnelma valtaa kaupungin.</p><p>Illan ohjelmassa nähdään perinteinen fantasiapukukilpailu, jossa kilpailijat esittelevät toinen toistaan upeampia, käsin valmistettuja pukuluomuksia. Lisäksi useat sambaryhmät tarjoavat näyttäviä tanssiesityksiä, ja yleisöllä on mahdollisuus osallistua tanssiopetukseen ja tutustua samban maailmaan.</p><p>Helsinki Samba Carnaval® on vuosittain järjestettävä sambajuhla, joka tuo Brasilian karnevaalien rytmin ja ilon Suomen kesään. Avajaistilaisuus johdattaa yleisön viikonlopun päätapahtumaan, suureen karnevaalikulkueeseen, joka järjestetään lauantaina 14. kesäkuuta Helsingin keskustassa.</p><p>Klo 17.30 alkaen yleisölle avoin, ilmainen Helsinki Samba -tanssitunti, jonka vetävät Samba Queen Finland 2025 Maiju Virtala, 1. Samba Princess Sara Echahid ja 2. Samba Princess Veera Virta.</p><p>Klo 18.30 alkaen Helsinki Samba Carnavalin avajaiset, tanssiesityksiä, fantasiapukukilpailu ym. ohjelmaa.</p><p>Tapahtuman tarkempi ohjelma päivittyy verkkosivuille: https://www.helsinkisambacarnaval.fi/ohjelma-qr/</p>", "sv": "<p>Helsinki Samba Carnaval® 2025 inleds med en imponerande öppningsceremoni på Esplanaden!</p><p>Invigningen ger inspirerande musik och glädje till dans i hjärtat av Helsingfors, när karnevalsstämningen erövrar staden.</p><p>Under programmet på kvällen ser vi en traditionell fantasidräkttävling där de tävlande presenterar underbara, handsydda klädesplagg. Dessutom erbjuder flera sambagrupper imponerande dansföreställningar och publiken har möjlighet att delta i dansundervisningen och bekanta sig med sambans värld.</p><p>Helsinki Samba Carnaval® är en årlig sambafest som för rytm och glädje från karnevalen i Brasilien till sommaren i Finland. Öppningsceremonin leder publiken till veckoslutets huvudevenemang, den stora karnevalparaden, som ordnas <br>lördagen den 14 juni i Helsingfors centrum.</p><p>Från kl. 17.30 en Helsinki Samba-danslektion öppen för allmänheten. Den leds av Samba Queen Finland 2025 Maiju Virtala, 1:a Samba Princess Sara Echahid och 2:a Samba Princess Veera Virta.</p><p>Från kl. 18.30 Helsinki Samba Carnavals invigning, dansföreställningar, fantasidräkttävling och övrigt program.</p><p>Det exakta programmet uppdateras på webbplatsen:<br>https://www.helsinkisambacarnaval.fi/ohjelma-qr/</p>", "en": "<p>Helsinki Samba Carnaval® 2025 will be kicked off with an impressive opening ceremony on Espa Stage!</p><p>The opening celebrations will bring vibrant colours, rhythmic music and the joy of dancing to Helsinki city centre as carnival atmosphere descends on the city.</p><p>The programme includes the traditional fantasy costume competition, where contestants showcase handmade pieces of costume art, each more impressive than the last. Several samba groups will also offer spectacular dance performances and the public will have the opportunity to participate in dance classes and learn about the world of samba.</p><p>Helsinki Samba Carnaval® is an annual samba jubilee that brings the rhythm and joy of the Brazilian carnival to the summer of Finland. The opening celebration will lead the public to the main event of the weekend, a major carnival to be held on Saturday 14 June in Helsinki city centre.</p><p>Starting from 17.30, anyone can participate in the free-of-charge Helsinki Samba dance class with instructors Samba Queen Finland 2025 Maiju Virtala, 1. Samba Princess Sara Echahid and 2. Samba Princess Veera Virta.</p><p>The Helsinki Samba Carnaval opening ceremony will start at 18.30: dance performances, fantasy costume competition and much more.</p><p>A more detailed programme for the event will be updated on the website: https://www.helsinkisambacarnaval.fi/ohjelma-qr/</p>" }, "name": { "fi": "Helsinki Samba Carnaval® avajaiset", "sv": "Invigning av Helsinki Samba Carnaval®", "en": "Helsinki Samba Carnaval® Opening Ceremony" }, "short_description": { "fi": "Helsinki Samba Carnaval® 2025 käynnistyy näyttävällä avajaistapahtumalla Espan lavalla!", "sv": "Helsinki Samba Carnaval® 2025 inleds med en imponerande öppningsceremoni på Esplanaden!", "en": "Helsinki Samba Carnaval® 2025 will be kicked off with an impressive opening ceremony on Espa Stage!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66269/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66268", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 716029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-08T13:14:02.092896Z", "last_modified_time": "2025-05-08T13:14:02.092914Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764942.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/716029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-08T13:14:01.992433Z", "last_modified_time": "2025-05-26T14:14:55.324230Z", "date_published": null, "start_time": "2025-06-13T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/85A794F2E6FB5C2C99022F9FF07B7A2D/MIL-Espa_Rakuunasoittokunta", "sv": "http://www.espanlava.fi/sv/evenemang/event/85A794F2E6FB5C2C99022F9FF07B7A2D/MIL-Espa_Dragonmusikkaren", "en": "http://www.espanlava.fi/en/events/event/85A794F2E6FB5C2C99022F9FF07B7A2D/MIL-Espa_The_Finnish_Army_Band_Dragoon_Band" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Rakuunasoittokunta hyppää vartioparaatin jälkimainingeissa albatrossin siivelle. Tervetuloa nauttimaan ikivihreistä sävelistä Junnu Vainion hengessä!</p><p>Kotkan poika Junnu Vainio tunnetaan yhtenä hienoimmista suomalaisista tekstintekijöistä. Tämän sanataiturin kynästä on lähtöisin yli 2400 sanoitusta, joiden joukossa monen monta jokaisen tuntemaa laulua. Konsertti toteutetaan yhteistyössä Kaartin soittokunnan varusmiesyhtyeen kanssa ja sen johtaa musiikkimajuri Tero Haikala.</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa. Viihteellinen konsertti järjestetään Espan lavalla kesäperjantaisin ja lavan ottavat vuorollaan haltuun sotilassoittokuntien eri kokoonpanot ympäri Suomen.</p>", "sv": "<p>Efter vaktparaden hoppar dragonmusikkåren upp på albatrossens vingar. Välkommen att njuta av toner i Junnu Vainios anda!</p><p>Kotkas son Junnu Vainio är känd som en av de finaste finländska textskribenterna. Från hans konstnärliga penna kom mer än 2 400 sångtexter varav många är kända av alla finländare. Konserten genomförs i samarbete med beväringssammanslutningen för Gardets musikkår och leds av musikmajor Tero Haikala.</p><p>Mil-Espa-parkkonserter har ordnats på somrarna sedan 1927 i Esplanadsparken. På sommarfredagar ordnas underhållande konserter på Esplanadestraden då scenen turvis erövras av militärkårernas olika sammansättningar från runtom Finland.</p>", "en": "<p>Following the guard parade, the Finnish Army Band Dragoon Band will jump onto the wings of the albatross. Come and enjoy some evergreens in the spirit of Junnu Vainio!</p><p>Junnu Vainio from Kotka was known as one of the best Finnish lyricists. This virtuoso writer penned lyrics to more than 2,400 songs, including many evergreen favourites. The concert is produced in collaboration with the Conscript Band of The Guards Band and it will be conducted by Major Tero Haikala.</p><p>MIL-Espa summer park concerts have been taking place in the Esplanade Park since 1927. The entertaining concerts will be held on the Espa Stage on summer Fridays, with performances by different military band ensembles from across Finland.</p>" }, "name": { "fi": "MIL-Espa: Rakuunasoittokunta", "sv": "MIL-Espa: Dragonmusikkåren", "en": "MIL-Espa: The Finnish Army Band Dragoon Band" }, "short_description": { "fi": "Rakuunasoittokunta hyppää vartioparaatin jälkimainingeissa albatrossin siivelle. Tervetuloa nauttimaan ikivihreistä sävelistä Junnu Vainion hengessä!", "sv": "Efter vaktparaden hoppar dragonmusikkåren upp på albatrossens vingar. Välkommen att njuta av toner i Junnu Vainios anda!", "en": "Following the guard parade, the Finnish Army Band Dragoon Band will jump onto the wings of the albatross. Come and enjoy some evergreens in the spirit of Junnu Vainio!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66268/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27037, "next": "