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 normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&max_duration=3d&page=162
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=163", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=161" }, "data": [ { "id": "kulke:66465", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 828180, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-22T12:12:42.757850Z", "last_modified_time": "2025-05-22T12:12:42.757864Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765836.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/828180/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-22T12:12:42.705207Z", "last_modified_time": "2025-06-12T12:13:47.992294Z", "date_published": null, "start_time": "2025-07-16T15: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Vodou Fusionin musiikki on täynnä energiaa! Musiikin rytmit kumpuavat alun perin muinaisista länsiafrikkalaisista voodoo-rytmeistä.</p><p>Nämä saavat seurakseen nykyaikaisempia vivahteita, kuten afrobeat, funk, reaggae ja afropop. Monikulttuurinen musiikkimme on täynnä iloa ja saa sinut varmasti tanssimaan!</p><p>Kaikki Vodou Fusionin kappaleet on säveltänyt ja sovittanut Gildas Houessou sekä yhtye. Kappaleiden teemat ovat tuttuja jokaiselle: kunnioitus, rakkaus, moraali, rauha sekä elämän kaikki puolet. Sanat ovat osittain ranskaa, osittain englantia sekä minan kieltä, joka on yksi paikallisista Beninissä puhutuista kielistä.</p><p>Vodou Fusion villitsi Espan lavan Open Stage -sarjassa viime kesänä, ja yleisön pyynnöstä heidät kutsuttiin heti takaisin!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>", "sv": "<p>Vodou Fusions musik är full av energi! Musikens rytmer har sitt ursprung i gamla västafrikanska voodoo-rytmer.</p><p>Dessa får sällskap av modernare inslag, som afrobeat, funk, reaggae och afropop. Vår mångkulturella musik är fylld av glädje och får dig helt säkert att dansa!</p><p>Alla Vodou Fusions låtar är skrivna och arrangerade av Gildas Houessou och gruppen. Låtarnas teman är bekanta för alla: respekt, kärlek, moral, fred och livets alla sidor. Texterna är delvis på franska, delvis på engelska och delvis på språket mina, som är ett av de lokala språken i Benin.</p><p>Vodou Fusion deltog i Open Stage på Esplanadestraden förra sommaren, och på publikens begäran fick de genast en ny inbjudan!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>", "en": "<p>Vodou Fusion’s music is full of energy! The beat of the music originally stems from ancient West African voodoo rhythms.</p><p>They are accompanied by more contemporary flair, such as afrobeat, funk, reggae and afropop. Our multicultural music is full of joy and is guaranteed to make you dance!</p><p>All songs by Vodou Fusion have been composed and arranged by Gildas Houessou and the band. The themes of the songs are familiar to everyone: respect, love, morality, peace and all sides of life. The lyrics are partly in French, partly in English and Gen, which is one of the local languages spoken in Benin.</p><p>Vodou Fusion made the crowd go wild on Espa Stage in the Open Stage series last summer, and they are now back by popular demand!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>" }, "name": { "fi": "Vodou Fusion", "sv": "Vodou Fusion", "en": "Vodou Fusion" }, "provider_contact_info": null, "short_description": { "fi": "Vodou Fusionin musiikki on täynnä energiaa! Musiikin rytmit kumpuavat alun perin muinaisista länsiafrikkalaisista voodoo-rytmeistä.", "sv": "Vodou Fusions musik är full av energi! Musikens rytmer har sitt ursprung i gamla västafrikanska voodoo-rytmer.", "en": "Vodou Fusion’s music is full of energy! The beat of the music originally stems from ancient West African voodoo rhythms." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion", "sv": "http://www.espanlava.fi/sv/evenemang/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion", "en": "http://www.espanlava.fi/en/events/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66465/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65774", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 689403, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T06:13:45.983794Z", "last_modified_time": "2025-05-05T06:13:45.983812Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767408.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/689403/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-05T06:13:45.828458Z", "last_modified_time": "2025-06-12T11:13:58.760022Z", "date_published": null, "start_time": "2025-06-12T11:00:00Z", "end_time": "2025-06-12T16: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Kokoonnutaan yhteen juhlimaan 475 vuotta täyttävää kotikaupunkiamme. Luvassa on sirkustunnelmaa: hauskoja temppuja, hattaraa ja klovneja!</p><p>Juhlitaan Helsinkiä sateesta huolimatta! <br>Suuri osa ohjelmasta siirtyy Kanneltalon sisätiloihin. Hattaraa ja sirkushuvia tarjoillaan Sitratorilla. Tervetuloa!</p><p>Blind Gut Companyn sirkustaiteilijat viihdyttävät meitä urakalla ja me muut voimme nauttia hattarasta, musiikista ja käsillä tekemisestä ilman huolen häivää. Illan aikana Sitratori ja Kanneltalo täyttyvät pikkuklovneista, kun kasvomaalaajat loihtivat sirkusaiheiset ilmeet ja klovninnenät perheen pienimille. Tapahtumassa juhlistetaan myös Sitratorin uutta vehreää keidasta.</p><p>Tapahtuman juontaa näyttelijä <b>Minna Kivelä.</b></p><p><b>OHJELMA:</b></p><p><b>PERUTTU sateen vuoksi: klo 14–16 Kirjojen Kannelmäki -kirjakävely</b><br>Miltä Kantsu näyttää kirjallisuudessa – tule kirjalliselle kävelylle Kantsuun. Voit lainata kirjastosta kävelyn kirjat.</p><p><b>14-18 Korupaja</b><br>Punottuja rannekoruja ja pienemmille lapsille puuhelmi-rannekoruja.</p><p><b>klo 14.30–16.15 Flowtaiteen lajikokeilu - Ulkona</b><br>Come flow with us! Työpajassa vannetanssin ammattilaiset antavat neuvoja flowtaiteeseen kuuluvien vannetanssivanteiden kanssa temppuiluun matalalla kynnyksellä. Ota mukaan kevyeen liikuntaan sopivat vaatteet. Toteuttaja Belenos studio, vannetanssi.fi</p><p><b>14.30–16.30 Pop-Up D-asema Kannelmäki - Rauhan paikka</b></p><p><b>klo 16–18 Kukkabuffet</b><br>Väriloistoa tulviva Kukkabuffet on katettu aidoilla kukilla. Kukkabistron virkistävä menu tarjoilee värikkäitä leikkokukkia, vehreitä koristeita ja ripauksen kimalletta. Ilahduta kukkakoristeilla itseäsi tai anna lahjaksi ystävälle! Tapahtumassa hyödynnetään aina sesongin kukkia sekä hävikkikukkia saatavuuden mukaan. Työpajan toteuttaa Hupsansaa.</p><p><b>klo 16–17.30 Sitratorin kaupunkikeitaan avajaiset ja muraalikierros - Ulkona</b></p><p><b>klo 16–19 ACTION-RATA </b><br>Tule pelastamaan Helsingin karkit! Suorita huikea tehtävärata, jossa kohtaat vesipyssytaistelun, lusikkapingiksen, kuppitornit, lattia on laavaa -haasteen ja paljon muuta jännää. Uskallatko ottaa haasteen vastaan? Järjestäjänä Nuorisopalvelut.</p><p><b>klo 16–19.30 Kasvomaalausta</b> <br>Perheen pienimmät saavat itselleen upean sirkusilmeen. Toteuttaja Lilla-Millan Juhlat.</p><p><b>klo 16-18.30 Naamiotyöpaja</b><br>House of New Theatren eli HNT:n työpajassa pääset luomaan oman ainutlaatuisen Kannelmäki-naamiosi. HNT:n upeat opiskelijat vetävät hauskoja ja mukaansatempaavia improleikkejä, tervetuloa mukaan! Et tarvitse aiempaa näyttelijän kokemusta. <br> <br><b>klo 16–18 Huudeilla: Red Nose Company & FiBO – Suomalainen barokkiorkesteri</b><br>Huudeilla ovat myös Red Nose Companyn klovnit ja Suomalaisen barokkiorkesterin aluemuusikot, jotka kohtaavat, ilahduttavat ja yllättävät juhlakansan keskellä.</p><p><b>klo 16.30–17 Back 2 the Future -työpaja</b></p><p><b>klo 18–18.45 Back 2 the Future -konsertti</b><br>Tässä live-musiikin, tanssin, laulun, tarinankerronan, räppäämisen ja freestylen hullunmyllyssä yleisö pääsee osallistumaan konsertin kulkuun ja hyppäämään mukaan rytmin vietäväksi. Matka alkaa 70-luvun New Yorkista ja päätyy 80-luvun Chicagon ja vuosituhannen vaihteen Pariisin kautta tulevaisuuteen!<br>Esiintyjät: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>klo 17 ja klo 19 - Sitratorilla<br>Blind Gut Company: Viihdy! Viihdy! Viihdy! – halpahintaista viihdettä kovalla pöhinällä!</b><br>Viihdy! Viihdy! Viihdy! -esitys tuo narriperinteen nykypäivään! Tule markkinakojulle kokemaan unohtumattomia sirkuselämyksiä! Kaupan on niin ammattiviihdyttäjien esityksiä kuin omille some-tileille soveltuvia sisältöjä, ja halvalla lähtee, sillä esiintyjät maksavat ostoksista asiakkaille!<br>Viihdyttäjät: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Kesto: 30 minuuttia</p><p>Yhteistyössä: Kanneltalo, Nuorisopalvelut, Kannelmäen kirjasto, Helsingin tapahtumasäätiö, D-asema Kannelmäki, Helsingin aikuissosiaalityö ja Kaupunkiympäristön toimiala, Sibelius-Akatemian Global Music -osasto, FiBO - Suomalainen barokkiorkesteri, Red Nose Company ja House of New Theatre</p>", "sv": "<p>Vi samlas för att fira vår hemstad som fyller 475 år. Cirkusstämning utlovas: roliga trick, spunnet socker och clowner!</p><p>Låt oss fira Helsingfors trots regnet!<br>En stor del av programmet kommer att flytta inomhus till Gamlasgården. Spunnet socker och cirkuskonst serveras på Cittertorget. Välkommen!</p><p>Blind Gut Companys cirkusartister underhåller oss så det står härliga till, och vi andra kan njuta av spunnet socker, musik och att skapa med händerna utan ett problem i världen. Under kvällen fylls Gamlasgården av små clowner, när ansiktsmålare ger familjens minstingar clownnäsor och ansiktsmålningar med cirkustema. Vid evenemanget firas också den nya grönskande oasen på Cittertorget.</p><p>Programledare för evenemanget är skådespelaren <b>Minna Kivelä.</b></p><p><b>PROGRAM:</b></p><p><b>kl. 14.30–16.15 Prova på flowkonst</b><br>Come flow with us! I verkstaden har du möjlighet att på egen hand prova på olika former av flowkonst, såsom tunnband och poi. Ta med kläder som lämpar sig för lätt motion. Genomförs av Belenos studio, vannetanssi.fi.</p><p><b>kl. 14–18 Smyckesverkstad</b><br>Flätade armband och armband av träpärlor för yngre barn.</p><p><b>kl. 16–18 Blombuffé</b> <br>En blombuffé som svämmar över av färgprakt är dukad med äkta blommor. Den uppfriskande menyn i blombistron serverar färgglada snittblommor, grönskande dekorationer och en gnutta glitter. Gläd dig själv med blomsterdekorationer eller ge bort som gåva till en vän! På evenemanget utnyttjas alltid säsongens blommor och svinnblommor enligt tillgång. Verkstaden genomförs av Hupsansaa.</p><p><b>kl. 16–19.30 Ansiktsmålning</b> <br>Familjens minsta får ett strålande cirkusutseende. Genomförs av Lilla-Miljan Juhlat.</p><p><b>kl. 16–18: Huudeilla: Red Nose Company & FiBO - Finländska barockorkestern</b><br>Också Red Nose Companys clowner och Finländska barockorkesterns regionmusiker kommer inom ramarna för projektet Huudeilla för att möta, glädja och överraska besökarna.</p><p><b>kl. 16.30–17 Verkstaden Back 2 the Future</b></p><p><b>kl. 18–18.45 Konserten Back 2 the Future</b><br>I den här villervallan av livemusik, dans, sång, berättande, rappande och freestyle får publiken delta i konsertens gång och låta sig hänföras av rytmerna. Resan börjar i 70-talets New York samt går via 80-talets Chicago och millennieskiftets Paris in i framtiden!<br>På scenen: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>kl. 17 och kl. 19<br>Blind Gut company: Viihdy! Viihdy! Viihdy! – simpel underhållning med buller och bång!</b><br>Föreställningen Viihdy! Viihdy! Viihdy! (Trivs! Trivs! Trivs!) tar narrtraditionen till nutiden! Kom till marknadsståndet för oförglömliga cirkusupplevelser! Såväl föreställningar av yrkesunderhållare som innehåll för dina egna sociala mediekonton är till salu, och det billigt, eftersom de som uppträder betalar inköpen till kunderna!<br>Underhållare: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Längd: 30 minuter</p><p>I samarbete: Gamlasgården, Ungdomstjänsterna, Gamlas bibliotek, Helsingfors evenemangsstiftelse, D-asema Kannelmäki, Helsingfors vuxensocialarbete och stadsmiljösektor, Sibelius-Akademins avdelning Global music, FiBO - Finländska barockorkestern, Red Nose Company och House of New Theatre</p>", "en": "<p>We come together to celebrate the 475th anniversary of our home city. Come and enjoy the circus atmosphere: fun tricks, candy floss and clowns!</p><p>Let’s celebrate Helsinki! <br>Most of the programs will be held indoors due to the rain. Cotton candy and Blind Gut Company’s circus performance will be served at Sitratori square. <br>You are warmly welcome!</p><p>The circus performers of Blind Gut Company will entertain us while we enjoy eating candy floss, listening to music and doing crafts without a care in the world. The evening will fill the square with little clowns, when face painters design circus-themed looks and clown noses for the youngest in the family. The event is also a celebration for the new green oasis of Sitratori Square.</p><p>The event is hosted by actress <b>Minna Kivelä.</b></p><p>In case of bad weather, the music programme and workshops will be held in Kanneltalo's lobby.</p><p><b>PROGRAMME:</b></p><p><b>CANCELLED due the rain: 14.00–16.00 Kirjojen Kannelmäki – ‘Kannelmäki in literature’ walking tour </b></p><p><b>14–18 Bracelet workshop </b><br>Braided bracelets and wooden bead bracelets for the little ones.</p><p><b>14.30-16.30 Pop-up D-station Kannelmäki – A Place for Peace </b></p><p><b>14.30–16.15 Experiment with Flow Art - OUTDOORS</b><br>Come flow with us! This workshop lets you experiment with different forms of flow art, such as hooping and poi spinning. Wear clothing suitable for light exercise. Implemented by Belenos studio, vannetanssi.fi</p><p><b>16-17.30 Opening of the Sitratori summer oasis and a mural warking tour - Outdoors </b></p><p><b>16.00–18.00 Flower Buffet </b><br>The lush and colourful Flower Buffet is served! The fresh menu of the flower ‘bistro’ offers bright cut flowers, lush decorations and a sprinkle of sparkle. Delight yourself or your friends with beautiful real flower decor! The event always utilises seasonal flowers and surplus flowers based on availability. The workshop is hosted by Hupsansaa.</p><p><b>16-18.30 Masquarade Workshop </b></p><p><b>16.00–19.30 Face painting</b> <br>The youngest in the family will get fun circus looks. Implemented by Lilla-Millan Juhlat.</p><p><b>16.00–18.00 Huudeilla – In the ‘hood: Red Nose Company & FiBO – Finnish Baroque Orchestra</b><br>The clowns of the Red Nose Company will also be in the ‘hood, along with the regional musicians of the Finnish Baroque Orchestra, meeting with, delighting and surprising the visitors.</p><p><b>16.30–17.00 Back 2 the Future workshop</b></p><p><b>18.00–18.45 Back 2 the Future concert</b><br>In this carnival of live music, dance, song, storytelling, rapping and freestyle, the audience will have the chance to alter the flow of the concert and jump into the rhythm. The journey will start from 1970s New York, move to Chicago of the 1980s and to Paris in the turn of the millennium, ending up in the future!<br>Performers: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>At 17.00 and 19.00 @Sitratori Square<br>Blind Gut Company: Fun! Fun! Fun! – cheap entertainment at a full run!</b><br>Fun! Fun! Fun! performance by modern-day jesters! Visit the market stand for unforgettable circus experiences! You can choose from performances by professional entertainers or content that would be perfect for your own social media channels – and everything is a bargain, as the performers will pay the customers for their purchases!<br>Entertainers: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Duration: 30 minutes</p><p>In cooperation with: Cultural Centre Kanneltalo, Youth Services, Kannelmäki Library, Helsinki Events Foundation, D-asema Kannelmäki, Helsinki Adult Social Work and Urban Environment Division, Global Music department of the Sibelius Academy, FiBO – Finnish Baroque Orchestra, Red Nose Company and House of New Theatre</p>" }, "name": { "fi": "Helsinki-päivä Sitratorilla – tule, naura, nauti ja viihdy!", "sv": "Helsingforsdagen på Cittertorget – kom, skratta, njut och trivs!", "en": "Helsinki Day on Sitratori Square – joy, pleasure and fun!" }, "provider_contact_info": null, "short_description": { "fi": "Kokoonnutaan yhteen juhlimaan 475 vuotta täyttävää kotikaupunkiamme. Luvassa on sirkustunnelmaa: hauskoja temppuja, hattaraa ja klovneja!", "sv": "Vi samlas för att fira vår hemstad som fyller 475 år. Cirkusstämning utlovas: roliga trick, spunnet socker och clowner!", "en": "We come together to celebrate the 475th anniversary of our home city. Come and enjoy the circus atmosphere: fun tricks, candy floss and clowns!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9B07E92B29795833DC176AE034874414/Helsinki-paiva_Sitratorilla_tule_naura_nauti_ja_viihdy_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9B07E92B29795833DC176AE034874414/Helsingforsdagen_pa_Cittertorget_kom_skratta_njut_och_trivs_", "en": "http://www.kanneltalo.fi/en/events/event/9B07E92B29795833DC176AE034874414/Helsinki_Day_on_Sitratori_Square_joy_pleasure_and_fun_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65774/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22tcna", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 1490210, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-19T13:38:22.730727Z", "last_modified_time": "2024-12-19T13:38:22.730786Z", "name": "rumpuja soittava hirvi", "url": "https://tapahtumasyotto.espoo.fi/media/images/7a641321-18e9-4aef-b659-b5c6fa27bb9d.png", "cropping": "257,0,823,566", "photographer_name": "", "alt_text": "Svengaava hirvi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490210/?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-28T10:50:40.384100Z", "last_modified_time": "2025-06-12T08:57:38.562843Z", "date_published": null, "start_time": "2025-06-24T11:00:00Z", "end_time": "2025-06-24T11: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, "location_extra_info": { "fi": "Kesäterassi" }, "provider": null, "description": { "fi": "<p>Lastenmusiikkiorkesteri Svengaavat hirvet soittavat tuttuja lastenlauluja raikkaalla otteella. Tässä konsertissa lapset pääsevät itse osallistumaan laulamalla, tanssimalla ja soittamalla laulujen mukana. Kirjaston musiikkipedagogit Lauri ja Sakari ohjaavat lapsia leikkien ja laulujen avulla rytmin, melodian ja harmonian maailmaan. </p><p>Tervetuloa konserttiin Sellon kesäterassille klo 14!</p><p><br></p><p>#konsertti #musiikki </p>" }, "name": { "fi": "Lastenmusiikkiorkesteri Svengaavat hirvet" }, "provider_contact_info": null, "short_description": { "fi": "Lastenmusiikkiorkesteri Svengaavat hirvet soittavat tuttuja lastenlauluja raikkaalla otteella." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tcna/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66619", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1001174, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-12T08:13:57.270285Z", "last_modified_time": "2025-06-12T08:13:57.270301Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775117.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1001174/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-12T08:13:57.034321Z", "last_modified_time": "2025-06-12T08:13:57.562884Z", "date_published": null, "start_time": "2025-08-14T12:00:00Z", "end_time": "2025-08-14T17: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Outsider Art Festivalin avajaisia juhlistetaan 14.8.2025 Taiteiden yönä Elannon Leipätehtaan alueella Kulttuurikeskus Caisassa ja Tekstin talolla.</p><p>Leipätehtaalle rakentuu avajaisviikonloppuna elämyksellinen tapahtumakokonaisuus Outsider Art Festivalin, Kulttuurikeskus Caisan ja Tekstin talon yhteistyönä.<br> <br>Caisassa nähdään mm. outsider-taiteen taidenäyttely, keraamisia veistoksia ja noisea yhdistävä installaatio, performansseja ja musiikkiesityksiä. Tekstin talolla OAF järjestää yhdessä WSOY:n kanssa runostagen.</p><p><b>Avajaisten ohjelma Kulttuurikeskus Caisalla:</b></p><p><b>15.00–15.45 Ryhmänäyttelyn avajaiset Caisan galleriassa</b><br>Outsider-taiteen tuoreimpia virtauksia esittelevän ryhmänäyttelyn teema on tulevaisuus. Näyttely on avoinna koko illan ja jatkuu lauantaihin 23.8. asti.</p><p><b>16.00–21.00 Ksenia Voy Kheninen & Zherbin – Plants -installaatio Caisan takahuonetilassa</b><br>Taiteilijaduon installaatio Plants on keinotekoisesti ääntelevä puutarha, jossa yhdistyy noise ja veistokset. Installaatio on koettavissa myös perjantaina 15.8. 16–21.</p><p><b>18.00–20.00 RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart</b><br>Sali</p><p>I RÄKÄlicious on performatiivinen pop-punk-duo, jonka muodostavat videotaiteilija Sandra Marins ja äänitaiteilija Mai Pesonen. RÄKÄliciousin ydin on tee-se-itse-toiminnassa ja queer-kokemusta korostavassa, hieman vinksahtaneessa lähestymistavassa.</p><p>Jussi P Niinku Pekka & Vähäsähkö-duo esittää suomenkielistä kokeellista aivofolkia. Jussi P on tehnyt aivofolkia vuodesta 2017 ja tätä ennen muuta omaa musiikkia jo vuodesta 2006 lähtien. Vähäsähkö eli Harri Vähänissi tekee noisea, ambientia, ääniä ja rytmejä itse rakentamillaan elektronisilla soittimilla, luoden rikkaan äänimaailman ympäröimään Jussi P:n laulua ja akustista kitaraa.</p><p>Milla Heart on helsinkiläinen, suomenkielistä dreamypop-musiikkia esittävä lauluntekijä. Millan musiikissa on toivoa, iloa ja rakkautta. Milla haluaa vaikuttaa musiikillaan positiivisesti ja saada ihmiset näkemään itsensä täydellisinä kaikkine virheineen.</p><p>Illan aikana nähdään myös OAF:n esittävän taiteen ohjelmasta Pekka Luodeslammen ja LIPGLOSSBOYn performanssit.</p><p><b>Avajaisten ohjelma Tekstin talolla:</b></p><p><b>20.15–22.00 OAF Runostage permantosalissa:</b><br>OAF:n ja WSOY:n yhteinen runostage tutkii millaista on kirjallisuuden ulkopuolinen kirjallisuus. Runostagella kuullaan OAF:n kirjallisuuden ohjelman taiteilijoiden tekstejä heidän itsensä lukeminaan.</p><p>Taiteiden yön ohjelma on ilmainen!</p>", "sv": "<p>Outsider Art Festival öppnas den 14 augusti 2025 under Konstens natt på Elantos Leipätehdas, Kulturcentret Caisa och Textens hus.</p><p>Under öppningshelgen byggs en evenemangshelhet fylld av upplevelser på Leipätehdas som ett samarbete mellan Outsider Art Festival, Kulturcentret Caisa och Textens hus.<br> <br>På Caisa får vi till exempel se en utställning med outsider-konst, en installation som kombinerar keramikskulpturer och noise, performanceföreställningar och musikframträdanden. OAF ordnar runostage på Textens hus tillsammans med WSOY.</p><p><b>Program på Kulturcentret Caisa under öppningen:</b></p><p><b>15.00–15.45 Grupputställningen öppnas i Caisas galleri</b><br>Outsider-konstens senaste strömningar visas i en grupputställning på temat framtiden. Utställningen är öppen hela kvällen och pågår till lördagen den 23 augusti.</p><p><b>16.00–21.00 Ksenia Voy Kheninen & Zherbin – Plants-installation i Caisas bakre rum</b><br>Konstnärsduons installation Plats är en trädgård med konstgjorda ljud, som kombinerar noise med skulpturer. Du kan uppleva installationen även fredagen den 15 augusti kl. 16–21.</p><p><b>18.00–20.00 RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart-konsert i Caisas sal</b><br>I kvällens dukning ingår dreamypop som andas positivitet, performativ pop-punk och folk som lyfter fram queer-upplevelser samt hjärnfolk som kombinerar noise och ambient på ett experimentellt sätt.</p><p>Under kvällen får vi också se performanceföreställningar av Pekka Luodeslampi och LIPGLOSSBOY från OAF:s scenkonstprogram.</p><p><b>Öppningens program på Textens hus:</p><p>20.15–22.00 OAF Runostage i parkettsalen.</b></p><p>OAF:s och WSOY:s gemensamma runostage utforskar hur det är att vara litteratur utanför litteraturen. Under Runostage får vi höra texter av konstnärer som deltar i OAF:s litteraturprogram, lästa av dem själva.</p><p>Programmet under Konstens natt är gratis!</p>", "en": "<p>The opening of OAF 2025 will be celebrated on the Night of the Arts 14.8.2025!</p><p>The place is located on the site of the old Elanto Bread Factory block, at the Cultural Centre Caisa and the House of Text.</p><p>On the opening weekend, Leipätehdas will be the venue for an experiential event, a collaboration between Outsider Art Festival, Cultural Centre Caisa and the House of Text.</p><p>At Caisa, you can see an outsider art exhibition, various performances and music acts and an installation combining ceramic sculptures and noise. At The House of Text, OAF will organize a poetry stage together with the publisher WSOY.</p><p><b>Opening Program at Cultural Centre Caisa:</p><p>3.00 PM – 3.45 PM Opening of the group exhibition at Caisa’s gallery.</b><br>The theme for the group exhibition showcasing the latest currents of outsider art is Future. The exhibition will remain open all evening and continues until Saturday 23rd of August.</p><p><b>4.00 PM – 9.00 PM Ksenia Voy Kheninen & Zherbin – Plants -installation in Caisa’s backstage area.</b><br>The installation of the artist duo, Plants is an artificial sounding garder, which combines noise and sculptures. Installation can be experienced also on Friday 15th of August from 4.00 PM to 9.00 PM.</p><p><b>6.00 PM – 8.00 PM RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart -concert at Caisa Hall.</b><br>The musical offerings include dreamy pop oozing of positivity, performative pop-punk emphasizing queer experience and aivofolk which is experimental combination of folk, noise and ambience.<br>Throughout the evening, there will be performances by OAF performance art artists Pekka Luodeslampi and LIPGLOSSBOY.</p><p><b>Opening Program at the House of Text:</p><p>8.15 PM – 10.00 PM: OAF Poetry Stage at Permantosali.</b></p><p>A joint poetry stage by OAF and WSOY, exploring what “literature beyond literature” could mean. At Poetry Stage artists from the OAF literature program read their own texts to the audience.</p><p>All Night of the Arts events are free of charge.</p>" }, "name": { "fi": "OAF – Outsider Art Festival – Taiteiden yö Caisassa", "sv": "OAF – Outsider Art Festival – Konstens natt på Caisa", "en": "OAF – Outsider Art Festival – The Night of Arts" }, "provider_contact_info": null, "short_description": { "fi": "Outsider Art Festivalin avajaisia juhlistetaan 14.8.2025 Taiteiden yönä Elannon Leipätehtaan alueella Kulttuurikeskus Caisassa ja Tekstin talolla.", "sv": "Outsider Art Festival öppnas den 14 augusti 2025 under Konstens natt på Elantos Leipätehdas, Kulturcentret Caisa och Textens hus.", "en": "The opening of OAF 2025 will be celebrated on the Night of the Arts 14.8.2025!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival", "sv": "http://www.caisa.fi/sv/evenemang/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival", "en": "http://www.caisa.fi/en/events/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66619/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22tcyi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-06T07:09:15.319308Z", "last_modified_time": "2025-06-12T08:08:39.588844Z", "date_published": "2025-05-06T06:00:07.318000Z", "start_time": "2025-06-12T14:00:00Z", "end_time": "2025-06-12T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa mukaan soittamaan kesäisiä lauluja ukulelella, kitaralla tai muulla akustisella soittimella. Nuotit annetaan jameissa. Vetäjinä musiikkipedagogit Sakari Heikka ja Lauri Iljin.</p><p>SATEISEN SÄÄN TAKIA SIIRRETTY TAPIOLAN KIRJASTON HEIKKI TAPAHTUMATILAAN</p><p><strong>#ukulele #ukulelejamit #yhteislaulu #yhteislaulut</strong></p>", "en": "<p>Welcome to play summer songs on the ukulele, guitar or any other acoustic instrument or just sing together. You will get the sheet music at the event. The event is led by music pedagogues Sakari Heikka and Lauri Iljin.</p><p>DUE TO RAINY WEATHER THE JAM IS MOVED TO TAPIOLA LIBRARY, EVENT SPACE HEIKKI</p><p>#ukulele #ukulelejam #singalong</p>" }, "name": { "fi": "Ukulele puistojamit SIIRRETTY SISÄTILOIHIN", "en": "Ukulele Park Jam MOVED TO TAPIOLA LIBRARY" }, "provider_contact_info": null, "short_description": { "fi": "Soitetaan ja lauletaan yhdessä kesäisiä lauluja ukulelella Tapiolan kirjastossa. ", "en": "Let's begin the summer by playing and singing summer songs together in Tapiola Library. " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tcyi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22tdei", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490259, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-04T06:51:28.774422Z", "last_modified_time": "2025-06-04T06:51:28.774481Z", "name": "Kuva: Heidi Piiroinen", "url": "https://tapahtumasyotto.espoo.fi/media/images/f93c1195-30ae-4b5c-b566-d0f2fcda2da1.png", "cropping": "150,0,757,607", "photographer_name": "Heidi Piiroinen", "alt_text": "Kuvassa on pinkki auto, jonka ikkunasta katsoo kirjailija Miia Saari. Auton ovessa lukee teksti\"Ken tästä käy saa kaiken toivon heittää\"", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490259/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-04T07:04:13.504246Z", "last_modified_time": "2025-06-12T06:36:54.709101Z", "date_published": null, "start_time": "2025-09-04T15:00:00Z", "end_time": "2025-09-04T16: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, "location_extra_info": { "fi": "Kaija" }, "provider": null, "description": { "fi": "Näin potkut jalostuivat kehutuksi komediaksi/Nämä asiat ensimmäinen vuoteni kirjailijana opetti<p><br></p><p>Miia Saari jalosti ahdistavat yt-kokemuksensa hulvattomaksi ja yllättäviä käänteitä sisältäväksi tragikomediaksi esikoiskirjassaan Toimenpidepäivät (Enostone 2024). Saari, entinen Länsiväylänkin toimittaja, kertoo, miten alun perin dekkariksi suunniteltu tarina muuttui komediaksi ja mitä kaikkea kiinnostavaa hänelle on kirjailijan uransa alkumetreillä tapahtunut. </p><p>Kirjassa on myös dekkarimaisia piirteitä ja se on ajankohtainen myös tekoälyyn liittyvän juonikuvion vuoksi. Kirjan yksi juonilinja kertoo kirjan päähenkilön Tiia Rautasen Roosa-äidin vaikeuksista hoivakodissa.</p><p>Saari opiskeli kirjan juoneen liittyvän sarjakuvan piirtämistä Aalto-yliopiston kaikille avoimella kurssilla.</p><p>\"En ollut koskaan ennen piirtänyt oikein mitään, saati sitten sarjakuvaa, mutta ei ollut kirjani päähenkilökään. Opettajani Matti Hagelberg oli superkannustava ja antoi kurssista minulle arvosanaksi 3/5. Olen siitä yhtä ylpeä kuin kirjan kirjoittamisesta\", Saari sanoo.</p><p>Lue lisää Miia Saaren tarinasta ja hänen kirjastaan osoitteessa<a href=\" sainpotkut.fi\"> sainpotkut.fi</a></p><p>Kuva: Heidi Piiroinen</p>" }, "name": { "fi": "Kirjailijavieraana Miia Saari ja Toimenpidepäivät" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kuuntelemaan Miia Saaren kirjailijavierailu Tapiolan kirjastoon 4.9. klo 18.00 alkaen!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tdei/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22tdse", "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/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tfji/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490260, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T12:02:13.309605Z", "last_modified_time": "2025-06-11T12:02:13.309619Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/13b0cdc5-d4f6-4c5b-812c-5e77f2d11a0d.jpg", "cropping": "216,0,1508,1293", "photographer_name": "", "alt_text": "kuvituskuva, jossa kirjakerhoon valitut kirjat ja kahvikuppi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490260/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T12:33:28.361295Z", "last_modified_time": "2025-06-12T06:30:30.827996Z", "date_published": null, "start_time": "2025-09-09T09:00:00Z", "end_time": "2025-09-09T10: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja, josta keskustelemme. Vaikket ehtisi tai haluaisi lukea kyseistä kirjaa, voit silti osallistua.</p><p>Tapaamme Lippulaivan kirjaston Salongissa kultareunaisten kuppien äärellä tiistaisin 9.9., 7.10., 4.11. ja 16.12. klo 12-13. Ei ennakkoilmoittautumista.</p><p><br></p><p>9.9. Ann-Christin Antell: Puuvillatehtaan varjossa</p><p>7.10. Maija Kajanto: Korvapuustikesä</p><p>4.11. Liina Putkonen: Unohdettujen unelmien kirjasto</p><p>16.12. Maeve Binchy: Kastanjakadun väki</p>" }, "name": { "fi": "Hyvän mielen kirjakerho Lippulaivan kirjastossa" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tdse/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22teai", "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/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tfji/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490260, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T12:02:13.309605Z", "last_modified_time": "2025-06-11T12:02:13.309619Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/13b0cdc5-d4f6-4c5b-812c-5e77f2d11a0d.jpg", "cropping": "216,0,1508,1293", "photographer_name": "", "alt_text": "kuvituskuva, jossa kirjakerhoon valitut kirjat ja kahvikuppi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490260/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T12:33:28.468939Z", "last_modified_time": "2025-06-12T06:30:30.773691Z", "date_published": null, "start_time": "2025-10-07T09:00:00Z", "end_time": "2025-10-07T10: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja, josta keskustelemme. Vaikket ehtisi tai haluaisi lukea kyseistä kirjaa, voit silti osallistua.</p><p>Tapaamme Lippulaivan kirjaston Salongissa kultareunaisten kuppien äärellä tiistaisin 9.9., 7.10., 4.11. ja 16.12. klo 12-13. Ei ennakkoilmoittautumista.</p><p><br></p><p>9.9. Ann-Christin Antell: Puuvillatehtaan varjossa</p><p>7.10. Maija Kajanto: Korvapuustikesä</p><p>4.11. Liina Putkonen: Unohdettujen unelmien kirjasto</p><p>16.12. Maeve Binchy: Kastanjakadun väki</p>" }, "name": { "fi": "Hyvän mielen kirjakerho Lippulaivan kirjastossa" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22teai/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22teoa", "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/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tfji/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490260, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T12:02:13.309605Z", "last_modified_time": "2025-06-11T12:02:13.309619Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/13b0cdc5-d4f6-4c5b-812c-5e77f2d11a0d.jpg", "cropping": "216,0,1508,1293", "photographer_name": "", "alt_text": "kuvituskuva, jossa kirjakerhoon valitut kirjat ja kahvikuppi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490260/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T12:33:28.577281Z", "last_modified_time": "2025-06-12T06:30:30.647225Z", "date_published": null, "start_time": "2025-11-04T10:00:00Z", "end_time": "2025-11-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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja, josta keskustelemme. Vaikket ehtisi tai haluaisi lukea kyseistä kirjaa, voit silti osallistua.</p><p>Tapaamme Lippulaivan kirjaston Salongissa kultareunaisten kuppien äärellä tiistaisin 9.9., 7.10., 4.11. ja 16.12. klo 12-13. Ei ennakkoilmoittautumista.</p><p><br></p><p>9.9. Ann-Christin Antell: Puuvillatehtaan varjossa</p><p>7.10. Maija Kajanto: Korvapuustikesä</p><p>4.11. Liina Putkonen: Unohdettujen unelmien kirjasto</p><p>16.12. Maeve Binchy: Kastanjakadun väki</p>" }, "name": { "fi": "Hyvän mielen kirjakerho Lippulaivan kirjastossa" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22teoa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22te3u", "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/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tfji/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490260, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T12:02:13.309605Z", "last_modified_time": "2025-06-11T12:02:13.309619Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/13b0cdc5-d4f6-4c5b-812c-5e77f2d11a0d.jpg", "cropping": "216,0,1508,1293", "photographer_name": "", "alt_text": "kuvituskuva, jossa kirjakerhoon valitut kirjat ja kahvikuppi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490260/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T12:33:28.683993Z", "last_modified_time": "2025-06-12T06:30:30.530773Z", "date_published": null, "start_time": "2025-12-16T10:00:00Z", "end_time": "2025-12-16T11: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja, josta keskustelemme. Vaikket ehtisi tai haluaisi lukea kyseistä kirjaa, voit silti osallistua.</p><p>Tapaamme Lippulaivan kirjaston Salongissa kultareunaisten kuppien äärellä tiistaisin 9.9., 7.10., 4.11. ja 16.12. klo 12-13. Ei ennakkoilmoittautumista.</p><p><br></p><p>9.9. Ann-Christin Antell: Puuvillatehtaan varjossa</p><p>7.10. Maija Kajanto: Korvapuustikesä</p><p>4.11. Liina Putkonen: Unohdettujen unelmien kirjasto</p><p>16.12. Maeve Binchy: Kastanjakadun väki</p>" }, "name": { "fi": "Hyvän mielen kirjakerho Lippulaivan kirjastossa" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22te3u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66522", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "48-104 €", "en": "48-104 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/koiran-sydaen-sobachie-serdce-3912835/", "en": "https://www.lippu.fi/artist/savoy-teatteri/koiran-sydaen-sobachie-serdce-3912835/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 952725, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-06T12:13:59.672262Z", "last_modified_time": "2025-06-06T12:13:59.672278Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774765.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/952725/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-06T12:13:59.555981Z", "last_modified_time": "2025-06-11T14:12:41.101722Z", "date_published": null, "start_time": "2025-12-07T17: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, "location_extra_info": null, "provider": { "fi": "Aftersunset Oy", "en": "Aftersunset Oy" }, "description": { "fi": "<p><b>The Play “Heart of a Dog”</b><br>Based on the cult novella by Mikhail Bulgakov</p><p>A story brought back to life on stage to inspire, astonish, and provoke reflection.<br><i>Heart of a Dog</i> is more than just a play — it's a profound exploration of human nature, society, and timeless questions of power, morality, and progress.</p><p>Bulgakov’s classic, in this production, becomes a modern mirror in which we can see not only the past, but also our present.</p><p>The familiar plot takes on new colors thanks to the unique approach of director Konstantin Kamensky. The play incorporates modern technology, video design, and interactive elements to immerse you in the world of 1920s Moscow.</p><p>Duration: 1 hour 45 minutes (no intermission)</p><p>Language: Performed in Russian without subtitles</p><p><b>Cast:</b><br>Alexander Feklistov<br>Artur Smolyaninov<br>Semyon Shteinberg<br>Grigory Služitel<br>Sasha Aleksis<br>Irina Soboleva</p><p><b>Director:</b><br>Konstantin Kamensky</p>", "en": "<p><b>The Play “Heart of a Dog”</b><br>Based on the cult novella by Mikhail Bulgakov</p><p>A story brought back to life on stage to inspire, astonish, and provoke reflection.<br><i>Heart of a Dog</i> is more than just a play — it's a profound exploration of human nature, society, and timeless questions of power, morality, and progress.</p><p>Bulgakov’s classic, in this production, becomes a modern mirror in which we can see not only the past, but also our present.</p><p>The familiar plot takes on new colors thanks to the unique approach of director Konstantin Kamensky. The play incorporates modern technology, video design, and interactive elements to immerse you in the world of 1920s Moscow.</p><p>Duration: 1 hour 45 minutes (no intermission)</p><p>Language: Performed in Russian without subtitles</p><p><b>Cast:</b><br>Alexander Feklistov<br>Artur Smolyaninov<br>Semyon Shteinberg<br>Grigory Služitel<br>Sasha Aleksis<br>Irina Soboleva</p><p><b>Director:</b><br>Konstantin Kamensky</p>" }, "name": { "fi": "Koiran sydän / Sobachie serdce", "en": "Heart of a Dog / Sobachie serdce" }, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0D9FB8AB33EEEDEE17B7E188E1A1B9E2/Koiran_sydan_Sobachie_serdce", "en": "http://www.savoyteatteri.fi/en/events/event/0D9FB8AB33EEEDEE17B7E188E1A1B9E2/Heart_of_a_Dog_Sobachie_serdce" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66522/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66137", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 689402, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T06:13:45.443930Z", "last_modified_time": "2025-05-05T06:13:45.443948Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752332.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/689402/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-05T06:13:45.275589Z", "last_modified_time": "2025-06-11T13:12:33.220787Z", "date_published": null, "start_time": "2025-06-12T07:00:00Z", "end_time": "2025-06-12T16: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Tule juhlimaan Helsinki-päivää Vuotorille! Päivä alkaa koko perheen konserteilla ja huipentuu Anssi Kelan keikkaan. Ohjelmassa myös lavatanssit ja Taidepihan avajaiset.</p><p>Vuoden 2025 Helsinki-päivä alkaa Vuotorilla koko perheen konserteilla, kun lavalle nousevat Vuomun Näppärit, IHMO:n jättimuskari sekä ruotsiksi esiintyvä Aarne Alligaattori & Viidakkorumpu.</p><p>Iltapäivällä tanssitaan Unelmien lavatansseissa Matti-Sakarin ja Pekkaniskan Poikien tahdissa. Illalla ihanan Taidepihan avajaiset ja huikea pääesiintyjä Anssi Kela!</p><p><b>Päivän ohjelma</b><br>klo 10 Vuomun näppärit Vuotalon aulassa<br>klo 10.30 IHMO:n Jättimuskari<br>klo 11 Arne Alligator & Djungeltrumman</p><p>klo 13.30 Unelmien lavatanssit:<br>klo 13.30–14 Tanssin opetusta<br>klo 14.15–15 Unelmien lavatanssit: Matti-Sakari ja Pekkaniskan Pojat<br>klo 15.15–15.30 Asahi-terveysliikuntaa</p><p>klo 16–18 Taidepihan avajaiset Vuotalon alapihalla</p><p>klo 18 Anssi Kela</p><p>Kaikkiin tapahtumiin vapaa pääsy – nähdään Vuotorilla!</p><p><b>Lisätietoja ohjelmasta</b><br>klo 10 Vuomun näppärit<br>Vuotorilla esiintyy Vuosaaren musiikkiopiston lapsista ja nuorista koostuva pelimanniryhmä Näppärit! Näppäri-orkesteriin ei ole pääsykokeita, kuten ei Vuosaaren musiikkiopistoonkaan. Mukaan soittamaan pääsevät kaikki iästä tai tasosta riippumatta.<br> <br><b>IHMO:n Jättimuskari</b> <br>Lämpimästi tervetuloa kesäiselle muskariretkelle! Itä-Helsingin musiikkiopisto eli lyhyemmin IHMO laittaa pystyyn Jättimuskarin: Muskariopettajat ja bändi laulattavat ja leikittävät koko perhettä!</p><p><b>klo 11 Aarne Alligaattori & Viidakkorumpu</b> soittaa viidakon iloisinta ja tarttuvinta lastenmusiikkia. Ihastuttavan ja halattavan Aarnen lisäksi lavalla pomppii myös kaksi safariasuista kaveria, Tobbe ja Jocke. Tobbe laulaa ja säätää ja Jocke soittaa kitaraa. Aarne hassuttelee ja keksii aina jotain kepposia, ja soittaa viidakkorumpuja. Aarne Alligaattori & Viidakkorumpu esiintyy Vuotorilla ruotsiksi.</p><p>Konsertin kesto on n. 35–40 min. sekä meet and greet Arne Alligaattorin kanssa konsertin jälkeen.</p><p><b>klo 13.30–15.30 Unelmien lavatanssit: Matti-Sakari ja Pekkaniskan Pojat </b><br>Helsinki-päivän kunniaksi Vuotorilla tanssahdellaan ja jumpataan torstaina 12.6. kello 13.30–15.30. Unelmien lavatanssien esiintyjänä toimii maineikas orkesteri Matti-Sakari ja Pekkaniskan Pojat.</p><p>Maksuttomien lavatanssien lisäksi ohjelmassa on tanssinopetusta, Asahi-terveysliikuntaa, tasapainoilua sekä puristusvoiman mittaamista. Lisäksi tapahtuman aikana esitellään Helsingin liikuntapalveluiden Alueliikunta-palvelua.</p><p><b>Unelmien lavatanssien ohjelma Vuotorilla:</b> <br>klo 13.30–14 Tanssin opetusta <br>klo 14.15–15 Matti-Sakari ja Pekkaniskan Pojat <br>klo 15.15–15.30 Asahi-terveysliikuntaa</p><p>Vuotorilla myös klo 13.30–15.30 <br> – tasapainorata <br> – puristusvoimatesti <br> – alueliikunta esittäytyy</p><p><b>klo 16–18 Taidepihan avajaiset Vuotalon alapihalla</b> <br>Helsingin kuvataidekoulun ympäristötaidenäyttely avautuu Vuotalon alapihalla, josta näin ollen tulee Taidepiha! Avajaisten aikana nonstop-työpajoissa voit tehdä viirejä ja rekileijan lennätettäväksi kesätaivaan tuuliin. Lisäksi Helsingin tanssiopiston Tulilinnut ja Pisarat -tanssiryhmät esiintyvät avajaisissa klo 16.15 ja klo 17.</p><p><b>klo 18 Anssi Kela Vuotorilla</b><br>Anssi Kela singahti koko kansan sydämiin vuosituhannen taitteessa, kun hänen \"Nummela\"-klassikkoalbumistaan muodostui yksi maamme kaikkien aikojen menestyksekkäimmistä pitkäsoitoista. Rakastettu esiintyjä ei jäänyt kuitenkaan kieriskelemään hetkelliseen suosioon, vaan on pysynyt relevanttina läpi vuosikymmenten. <br> <br>Loputtomasta luovuudestaan tunnettu, palkittu laulaja-lauluntekijä esiintyy ympäri Suomea elämänsä liveiskussa, huippuunsa viritetyn bändin kera. Livekokoonpanon muodostavat maestron itsensä lisäksi Mikko Kosonen, Antti Karisalmi, Saara Metsberg sekä Ville Kela.</p>", "sv": "<p>Kom och fira Helsingforsdagen på Nortorget! Dagen börjar med konserter för hela familjen och kulminerar i Anssi Kelas uppträdande. I programmet ingår även logdans och invigning av Konstgården.</p><p>Helsingforsdagen 2025 börjar på Nortorget med konserter för hela familjen med Vuomus Näppärit, Vuomus och IHMO:s Jättimuskari samt Arne Alligator & Djungeltrumman som uppträder på svenska.</p><p>På eftermiddagen dansar vid i Drömmarnas logdans med dansorkestern Matti-Sakari & Pekkaniskan Pojat. <br>Kvällen bjuder på invigning av den underbara Konstgården samt den fantastiska huvudartisten Anssi Kela!</p><p><b>Dagens program</b><br>kl. 10 Vuomus Näppärit och IHMO:s Jättimuskari<br>kl. 11 Arne Alligator & Djungeltrumman<br>kl. 13.30–14 Dansundervisning<br>kl. 14.15–15 Drömmarnas logdans: Matti-Sakari & Pekkaniskan Pojat<br>kl. 15.15–15.30 Asahi hälsomotion<br>kl. 16–18 Invigning av Konstgården <br>kl. 18 Anssi Kela</p><p>Fritt inträde till alla evenemang – vi ses på Nortorget!</p><p><b>Mer information om programmet</b><br>kl. 10 Vuomus Näppärit och IHMO:s Jättimuskari på Nortorget<br>På Nortorget uppträder spelmansgruppen Näppärit, som består av barn och unga från Vuosaaren musiikkiopisto! Det finns inget inträdesprov till orkestern Näppäri eller Vuosaaren musiikkiopisto. Alla får vara med oavsett ålder eller nivå.</p><p><b>IHMO:s Jättimuskari</b> <br>Varmt välkomna till den somriga musiklekisutflykten! I Nordsjöområdet kan barn och unga studera musik vid Vuosaaren musiikkiopisto och Itä-Helsingin musiikkiopisto. Musiklekislärarna och bandet sjunger och leker med hela familjen!</p><p><b>kl. 11 Arne Alligator & Djungeltrumman</b> spelar djungelns gladaste och mest medryckande barnmusik. Förutom den förtjusande och kramgoda Arne studsar även två safariklädda kompisar, Tobbe och Jocke, på scenen. Tobbe sjunger och fixar och Jocke spelar gitarr. Aarne larvar sig och hittar alltid på några upptåg och spelar djungeltrummor. Arne Alligator & Djungeltrumman uppträder på svenska på Nortorget.</p><p>Konsertens längd är cirka 35–40 minuter, och efter konserten är det meet and greet med Arne Alligator.</p><p><b>kl. 13.30–15.30 Drömmarnas logdans: Matti-Sakari & Pekkaniskan Pojat </b><br>Helsingforsdagen firas med dans och gymnastik på Nortorget torsdagen den 12 juni kl. 13.30–15.30. Den berömda orkestern Matti-Sakari & Pekkaniskan Pojat uppträder under Drömmarnas logdans.</p><p>Förutom avgiftsfri logdans innehåller programmet dansundervisning, Asahi hälsomotion, balansering och mätning av tryckkraft. Under evenemanget presenteras dessutom Helsingfors idrottstjänsters Förortsmotionstjänst.</p><p><b>Program för Drömmarnas logdans på Nortorget:</b> <br>kl. 13.30–14 Dansundervisning <br>kl. 14.15–15 Matti-Sakari & Pekkaniskan Pojat <br>kl. 15.15–15.30 Asahi hälsomotion</p><p><b>Kl. 13.30–15.30 även på Nortorget</b> <br> – Balansbana <br> – Tryckkrafttest <br> – Förortsmotionen presenterar sig</p><p><b>kl. 16–18 Invigning av Konstgården på Nordhusets nedre gård</b> <br>Helsingin kuvataidekoulus miljökonstutställning öppnas på Nordhusets nedre gård, som därmed blir Konstgården! I nonstop-verkstaden under invigningen kan du tillverka en pappersdrake för att flyga i sommarhimlens vindar. Helsingin tanssiopistos dansgrupper Tulilinnut och Pisarat uppträder vid invigningen kl. 16.15 och kl. 17.</p><p><b>kl. 18 Anssi Kela på Nortorget</b><br>Anssi Kela intog hela folkets hjärtan i millennieskiftet, då hans klassikeralbum Nummela blev ett av de mest framgångsrika och länge spelade albumen i vårt land genom tiderna. Den älskade artisten stannade dock inte på stället för att vältra sig i den tillfälliga populariteten, utan han har förblivit relevant genom årtiondena. <br> <br>Den prisbelönta sångaren och låtskrivaren, känd för sin oändliga kreativitet, uppträder live runtom i Finland med ett toppenband. Livesammansättningen består förutom av maestron själv av Mikko Kosonen, Antti Karisalmi, Saara Metsberg och Ville Kela.</p>", "en": "<p>Come and celebrate Helsinki Day at Vuotori Square! The day will kick off with concerts for the whole family and culminate in a concert by Anssi Kela.</p><p>The programme also includes traditional dancing and the opening of the Vuotalo Art Yard.</p><p>The 2025 Helsinki Day will start at Vuotori Square with concerts for the whole family, featuring the Vuomun Näppärit orchestra of Vuosaari Music Institute, a music playschool event by East Helsinki Music Institute, and a concert in Swedish by Arnie Alligator & the Jungle Drum.</p><p>In the afternoon, there will be open-air dancing accompanied by Matti-Sakari & Pekkaniskan Pojat.</p><p>The evening will culminate with the opening of the Vuotalo Art Yard and a concert by the amazing headliner, Anssi Kela!</p><p><b>The day’s programme</b><br>10.00 Vuomun Näppärit in Vuotalo's Aula and IHMO's Jättimuskari – a music playschool event by Vuosaari Music Institute and East Helsinki Music Institute<br>11.00 Arnie Alligator & the Jungle Drum<br>13.30–14.00 Dance lesson<br>14.15–15.00 Open-air dancing: Matti-Sakari & Pekkaniskan Pojat<br>15.15–15.30 Asahi exercise<br>16.00–18.00 Opening of the Vuotalo Art Yard <br>18.00 Anssi Kela</p><p>Free entry to all events – see you at Vuotori Square!</p><p><b>Further information about the programme</b></p><p><b>10.00 Vuomun Näppärit and Jättimuskari, a music playschool event by Vuosaari Music Institute and East Helsinki Music Institute, at Vuotori Square</b><br>Näppärit, a string group formed by children and young people from Vuosaari Music Institute, will perform at Vuotori Square.</p><p><b>Jättimuskari – a music playschool event by East Helsinki Music Institute</b> <br>Come and join us for a summertime music playschool excursion! Music playschool teachers and the band will invite the entire family to sing and play along!</p><p><b>11.00 Arnie Alligator & the Jungle Drum</b> will play the happiest and catchiest children’s music of the jungle. The charming and huggable Arnie will be joined on the stage by his two friends in safari outfits: Tobbe and Jocke. Tobbe sings and putters about, while Jocke plays the guitar. Arnie fools around, always comes up with some sort of mischief and plays the jungle drums. Arnie Alligator & the Jungle Drum will perform in Swedish at Vuotori Square.</p><p>The concert will last for around 35–40 minutes, and there will be a meet and greet session with Arnie Alligator after the concert.</p><p><b>13.30–15.30 Open-air dancing: Matti-Sakari & Pekkaniskan Pojat</b> <br>In honour of Helsinki Day, there will be dancing and exercise at Vuotori Square on Thursday 12 June between 13.30 and 15.30. The renowned orchestra Matti-Sakari & Pekkaniskan Pojat will perform at the open-air dance.<br> <br>In addition to free-of-charge open-air dancing, the programme includes a dance lesson, Asahi exercise, balancing and measurement of people’s grip strength. The regional exercise services offered by the City of Helsinki's Sports Services will also introduce themselves during the event.</p><p><b>Programme of the open-air dance at Vuotori Square:</b> <br>13.30–14.00 Dance lesson <br>14.15–15.00 Matti-Sakari & Pekkaniskan Pojat <br>15.15–15.30 Asahi exercise</p><p><b>Other activities at Vuotori Square 13.30–15.30</b> <br> – balance track <br> – grip strength test <br> – self-introduction by regional exercise services.</p><p><b>16.00–18.00 Opening of the Art Yard in the lower yard of Vuotalo</b> <br>An exhibition of environmental art by Helsingin kuvataidekoulu (Art School for children and youth) will open in the lower yard of Vuotalo, turning the area into the Vuotalo Art Yard! In non-stop workshops, participants can make pennants or a Japanese-style reki kites and let them fly in the summer sky. The Tulilinnut and Pisarat dance groups from Helsinki Dance Institute will perform at the opening event, too.</p>" }, "name": { "fi": "Anssi Kela, Unelmien lavatanssit, Jättimuskari, Arne Alligator – Vuotalon Helsinki-päivä", "sv": "Anssi Kela, Drömmarnas logdans, Jättimuskari och Arne Alligator – Helsingforsdagen i Nordhuset", "en": "Anssi Kela, open-air dancing, music playschool and Arnie Alligator – Helsinki Day at Vuotalo" }, "provider_contact_info": null, "short_description": { "fi": "Tule juhlimaan Helsinki-päivää Vuotorille! Päivä alkaa koko perheen konserteilla ja huipentuu Anssi Kelan keikkaan. Ohjelmassa myös lavatanssit ja Taidepihan avajaiset.", "sv": "Kom och fira Helsingforsdagen på Nortorget! Dagen börjar med konserter för hela familjen och kulminerar i Anssi Kelas uppträdande. I programmet ingår även logdans och invigning av Konstgården.", "en": "Come and celebrate Helsinki Day at Vuotori Square! The day will kick off with concerts for the whole family and culminate in a concert by Anssi Kela." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/55E97BAE54FA4169B52A1FC429546FA7/Anssi_Kela_Unelmien_lavatanssit_Jattimuskari_Arne_Alligator", "sv": "http://www.vuotalo.fi/sv/evenemang/event/55E97BAE54FA4169B52A1FC429546FA7/Anssi_Kela_Drommarnas_logdans_Jattimuskari_och_Arne_Alligator", "en": "http://www.vuotalo.fi/en/events/event/55E97BAE54FA4169B52A1FC429546FA7/Anssi_Kela_open-air_dancing_music_playschool_and_Arnie_Alligator" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66555", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 993921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T11:13:59.980629Z", "last_modified_time": "2025-06-11T11:13:59.980646Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764948.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/993921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T11:13:59.864594Z", "last_modified_time": "2025-06-11T11:14:00.123237Z", "date_published": null, "start_time": "2025-08-22T11: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!<br>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>", "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>", "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>" }, "name": { "fi": "MIL-Espa: Laivaston soittokunta", "sv": "MIL-Espa: Laivaston soittokunta", "en": "MIL-Espa: Laivaston soittokunta" }, "provider_contact_info": null, "short_description": { "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.", "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.", "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8D4BC588128A1FFBDB7930D190193D95/MIL-Espa_Laivaston_soittokunta", "sv": "http://www.espanlava.fi/sv/evenemang/event/8D4BC588128A1FFBDB7930D190193D95/MIL-Espa_Laivaston_soittokunta", "en": "http://www.espanlava.fi/en/events/event/8D4BC588128A1FFBDB7930D190193D95/MIL-Espa_Laivaston_soittokunta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66604", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 993920, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T11:13:58.543870Z", "last_modified_time": "2025-06-11T11:13:58.543888Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764947.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/993920/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T11:13:58.417185Z", "last_modified_time": "2025-06-11T11:13:58.713383Z", "date_published": null, "start_time": "2025-08-15T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!<br>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>", "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>", "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>" }, "name": { "fi": "MIL-Espa: Kaartin soittokunta", "sv": "MIL-Espa: Kaartin soittokunta", "en": "MIL-Espa: Kaartin soittokunta" }, "provider_contact_info": null, "short_description": { "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.", "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.", "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/FE574C442F7A70D632F4CFD746F47681/MIL-Espa_Kaartin_soittokunta", "sv": "http://www.espanlava.fi/sv/evenemang/event/FE574C442F7A70D632F4CFD746F47681/MIL-Espa_Kaartin_soittokunta", "en": "http://www.espanlava.fi/en/events/event/FE574C442F7A70D632F4CFD746F47681/MIL-Espa_Kaartin_soittokunta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66604/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66480", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 836706, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-23T13:12:43.963014Z", "last_modified_time": "2025-05-23T13:12:43.963027Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764946.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/836706/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-23T13:12:43.910071Z", "last_modified_time": "2025-06-11T11:13:56.353885Z", "date_published": null, "start_time": "2025-07-25T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>", "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>", "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>" }, "name": { "fi": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband", "sv": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband", "en": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband" }, "provider_contact_info": null, "short_description": { "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.", "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.", "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1435742BEC458B87105F7151C0473B6A/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband", "sv": "http://www.espanlava.fi/sv/evenemang/event/1435742BEC458B87105F7151C0473B6A/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband", "en": "http://www.espanlava.fi/en/events/event/1435742BEC458B87105F7151C0473B6A/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66421", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 810534, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-20T08:12:40.230017Z", "last_modified_time": "2025-05-20T08:12:40.230031Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771482.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/810534/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-20T08:12:40.181098Z", "last_modified_time": "2025-06-11T11:13:53.567448Z", "date_published": null, "start_time": "2025-07-01T13: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>The Seatbelts on Väinö Honkasen, Ada Katzin ja Onni Rajaniemen muodostama The Beatles -tribuuttiyhtye.</p><p>Bändin repertuaari koostuu Beatlesin tuotannon kaikkien aikakausien helmistä, joita se tarjoilee yleisölleen poikkeuksellisella antaumuksella, kekseliäisyydellä ja tiukalla trio-energialla.</p><p>Vuonna 2023 The Seatbelts voitti Helsinki Beatles Weekendin bändikilpailun ja valloitti kyseisen festivaalin päälavan, minkä jälkeen yhtye on keikkaillut ahkerasti ympäri Suomea ja tanssittanut kaikenikäisiä yleisöjä.</p>", "sv": "<p>The Seatbelts är ett The Beatles-tributeband som består av Väinö Honkanen, Ada Katx och Onni Rajaniemi.</p><p>Bandets repertoar består av pärlor från alla perioder av Beatles repertoar, som det framför för publiken med en exceptionell entusiasm, påhittighet och kompakt trio-energi.</p><p>År 2023 vann The Seatbelts bandtävlingen under Helsinki Beatles Weekend och erövrade festivalens huvudscen. Sedan dess har gruppen turnerat flitigt runtom i Finland och fått alla slags publiker att dansa.</p>", "en": "<p>The Seatbelts is a The Beatles tribute band consisting of Väinö Honkanen, Ada Katz and Onni Rajaniemi.</p><p>The repertoire of the band consists of gems from all eras of The Beatles’ material, which they serve with extraordinary dedication, ingenuity and tight trio energy.</p><p>In 2023, The Seatbelts won the Helsinki Beatles Weekend band competition and took the main stage of the festival in question by storm, after which the group have toured all over Finland and made audiences of all ages dance.</p>" }, "name": { "fi": "The Seatbelts – Open Stage", "sv": "The Seatbelts – Open Stage", "en": "The Seatbelts – Open Stage" }, "provider_contact_info": null, "short_description": { "fi": "The Seatbelts on Väinö Honkasen, Ada Katzin ja Onni Rajaniemen muodostama The Beatles -tribuuttiyhtye.", "sv": "The Seatbelts är ett The Beatles-tributeband som består av Väinö Honkanen, Ada Katx och Onni Rajaniemi.", "en": "The Seatbelts is a The Beatles tribute band consisting of Väinö Honkanen, Ada Katz and Onni Rajaniemi." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/06016609160D75E33646B20AF9CAA4C4/The_Seatbelts", "sv": "http://www.espanlava.fi/sv/evenemang/event/06016609160D75E33646B20AF9CAA4C4/The_Seatbelts", "en": "http://www.espanlava.fi/en/events/event/06016609160D75E33646B20AF9CAA4C4/The_Seatbelts" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66421/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66158", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 690067, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T08:13:46.513925Z", "last_modified_time": "2025-05-05T08:13:46.513943Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756129.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690067/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-05T08:13:46.374741Z", "last_modified_time": "2025-06-11T11:13:50.737049Z", "date_published": null, "start_time": "2025-06-12T14:00:00Z", "end_time": "2025-06-12T17: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Stoan aukiolla juhlitaan Helsinki-päivää upeiden artistien kanssa!</p><p>Ykspihlajan Kino-orkesteri kuljettaa kuulijansa iskelmien ja elokuvamusiikin valloittavaan tunnelmaan. Lavalle nousee myös suomalaista sielunmaisemaa ja poeettisuutta kansainvälisiin soundeihin yhdistelevä ANI, joka on yksi tämän hetken kiinnostavimmista pop-lupauksista.</p><p>Aukiolla nähdään kahden tanssijan ja muusikon sykkivä naruhyppelyesitys HOPP, johon myös yleisö pääsee osallistumaan.</p><p>Lisäksi kesäisiä työpajoja ja ravintola Box Stoa on avoinna tapahtuman ajan.</p><p><b>Aikataulu</b><br>17–17.30 HOPP<br>17.30–18.30 Ykspihlajan Kino-orkesteri<br>18.30–19 HOPP<br>19.15–20.15 ANI</p><p><b>HOPP</b><br>HOPP on naruhyppelyesitys. Kaksi tanssijaa ja muusikko luovat sykkivän maiseman, jossa innostuminen ja väsyminen on väistämätöntä. Yleisö kutsutaan kokeilemaan naruhyppelyä konsertin päätteeksi. <br> <br>Teoksen koreografit Sara Grotenfelt ja Selma Reynisdóttir aloittivat naruhyppelyn yhdessä eri puolilla Helsinkiä vuonna 2022. HOPP on ystävyyden ja riemukkaan harrastuksen tulos. <br> <br>Koreografia: Sara Grotenfelt and Selma Reynisdóttir<br>Esiintyjät: Selma Reynisdóttir and Terhi Hartikainen<br>Muusikko: Diego Manatrizio<br>Puvut: Ella Snellman</p><p><b>Ykspihlajan Kino-orkesteri</b><br>Ykspihlajan Kino-orkesteri on Kokkolan satamakaupunginosasta lähtöisin oleva yhtye, joka on kiertänyt yli 10 vuotta eurooppalaisia elokuvafestivaaleja säestäen mykkäelokuvia, pääasiassa Juho Kuosmasen mykkäelokuvatrilogian osia.</p><p>Kino-orkesterissa laulavat ja soittavat sisarukset Anna, Oona ja Laura Airola, sekä kitaristit Miika Snåre ja Tuomas Asanti, trumpetisti Miia Reko, basisti Reetta Kuisma sekä rumpali Ilkka Tolonen (jota toisinaan tuuraa Aapo Niininen).</p><p><b>ANI</b><br>ANIn lavapreesens, sanoitukset ja tarttuvat melodiat ovat luoneet hänestä yhden tämän hetken mielenkiintoisimmista pop-lupauksista. Artistin musiikissa suomalainen sielunmaisema ja poeettisuus yhdistyvät nuorekkaaseen soundiin ja huippuluokan tuotantoon. Laulaja-lauluntekijän osuutta tuotannossa on kuultu lukuisilla kultaa ja platinaa striimanneilla kappaleilla, joilla esiintyy muun muassa JVG, BESS, BEHM sekä Evelina. ANIn luovuus ja lahjakkuus on huomioitu myös kriitikoiden toimesta Emma-ehdokkuuksilla: 2022 Vuoden musiikintekijä sekä 2023 ja 2024 Vuoden pop!</p><p>Live-esiintymisessään ANI sulauttaa taitavasti yhteen lavakarismansa ja upean äänenkäytön, taaten energisen ja vuorovaikutteisen elämyksen kuulijoille. ANIn palo musiikkia kohtaan välittyy kappale kappaleelta yleisölle, tehden jokaisesta liveshowsta ainutkertaisen.</p><p><b>Maksuttomat työpajat klo 17-20</b></p><p><b>Eläviä koruja</b><br>Helsinki-päivän ja kesän kunniaksi solmitaan villejä kukkaseppeleitä tai rannekoruja. Tervetuloa mukaan!<br>Alle 8-vuotiaat aikuisen kanssa. Ohjaaja: Chloé Mahy-Hulkko</p><p><b>Liitävät lokit</b><br>Krakaraak! Lokit kaartelevat Helsingin yllä ja voivat yllättää varomattoman kulkijan. Siivekkäät ja kovaääniset helsinkiläiset ovat ovelia, viisaita ja luonnonsuojelulailla rauhoitettuja. Tässä työpajassa iloitaan kaupunkilinnustamme ja tehdään paperista liiteleviä lokkeja, jotka ripustetaan riippuvaksi koristeeksi Ohjaaja: Greta Salonen</p><p><b>Kaarnalaivakeidas</b><br>Taiteillaan kevyinä keinuvia kaarnalaivoja. Annetaan alusten kuljettaa lätäköistä laineille ja saarten salaisuuksista kesästadin pyörteisiin. Ohjaaja: Jenni Vilander</p><p><b>Kesätaidefillari</b><br>Seikkailutaidekoulun ja Stoan yhteinen taidetarvikkeilla lastattu kuormapyörä kruisailee Stoan aukiolle! Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita.</p><p><b>Kirjaston työpajat</b><br>Tule kirjaston pisteelle kokeilemaan hyppynarua perinteisin loruin klo 17:30 ja 19:00 – muulloin omatoimisesti. Heitä noppa ja voita poistokirja kesälukemiseksi! Lainattavia soittimia voi testata vapaasti klo 17–18 (sateella sisällä kirjastossa). Kaikenikäiset tervetuloa!</p>", "sv": "<p>På Stoaplatsen firar vi Helsingforsdagen med fantastiska artister!</p><p>Ykspihlajan Kino-orkesteri tar med sig lyssnaren in i schlagerlåtarnas och filmmusikens värld. ANI, som kombinerar det finländska själslandskapet och poesin med ett internationellt sound och som är ett av de intressantaste poplöftena just nu, stiger upp på scenen.</p><p>På Stoaplatsen får vi se den pulserande hopprepsföreställningen HOPP med två dansare och en musiker, där även publiken får delta.<br> <br>Dessutom utlovas somriga verkstäder. Restaurang Box Stoa är öppen under evenemanget. <br> <br>kl. 17–17.30 HOPP <br>kl. 17.30–18.30 Ykspihlajan Kino-orkesteri <br>kl. 18.30-19 HOPP <br>kl. 19.15-20.15 ANI <br> <br><b>HOPP</b><br>HOPP är en hopprepsföreställning. Två dansare och en musiker skapar ett pulserande landskap där man oundvikligen blir både inspirerad och trött. Som avslutning på konserten inbjuds publiken att testa att hoppa hopprep.<br>Koreograferna Sara Grotenfelt och Selma Reynisdóttir började med hopprep på olika håll i Helsingfors år 2022. HOPP är resultatet av vänskap och en glad hobby.<br>Koreografi: Sara Grotenfelt och Selma Reynisdóttir <br>På scenen: Selma Reynisdóttir och Terhi Hartikainen <br>Musiker: Diego Manatrizio <br>Dräkter: Ella Snellman</p><p><b>Ykspihlajan Kino-orkesteri </b><br>Ykspihlajan Kino-orkesteri är en grupp från hamnstadsdelen Yxpila i Karleby, som i mer än tio års tid har rest runt till europeiska filmfestivaler för att ackompanjera stumfilmer, huvudsakligen delarna i Juho Kuosmanens stumfilmstrilogi. Kino-orkesteri har också skrivit musik till Kuosmanens film Den lyckligaste dagen i Olli Mäkis liv (2016) samt skrivit och framfört musik till stumfilmsklassiker som William A. Wellmans tågfilm Beggars of Life från 1920-talet.</p><p>I Kino-orkesteri sjunger och spelar systrarna Anna, Oona och Laura Airola samt gitarristerna Miika Snåre och Tuomas Asanti, trumpetisten Miia Reko, basisten Reetta Kuisma och trummisen Ilkka Tolonen (som ibland ersätts av Aapo Niininen). Programmet under spelningarna består huvudsakligen av klassiska filmlåtar som har fått ett nytt liv med Laura Airolas texter.</p><p><b>ANI</b> <br>ANIs scennärvaro, texter och fängslande melodier har gjort honom till ett av de intressantaste poplöftena just nu. Hans musik kombinerar det finländska själslandskapet och poesin med ett ungdomligt sound och produktion i toppklass. Sångarens och låtskrivarens andel i produktionen har hörts i många låtar med bland andra JVG, BESS, BEHM och Evelina som strömmat guld och platina. ANIs kreativitet och begåvning har också uppmärksammats av kritiker i form av Emma-nomineringar: 2022 Årets musikskapare samt 2023 och 2024 Årets pop!</p><p>I sina liveuppträdanden smälter ANI samman sin scenkarisma och sin fantastiska röstanvändning på ett skickligt sätt, vilket garanterar en energisk och interaktiv upplevelse för lyssnarna. ANIs passion för musiken förmedlas till publiken för varje låt och gör varje liveshow unik.</p>", "en": "<p>We will celebrate Helsinki Day at Stoa Square with fabulous artists!</p><p>The band Ykspihlajan Kino-orkesteri will take us to the wonderful world of evergreens and film music. Taking the stage is also ANI, one of Finland's most fascinating and promising pop artists at the moment, who combines a poetic Finnish mindset with international sounds. <br>The Square will also host the rhythmic HOPP rope-skipping performance by two dancers and a musician that will even involve the audience. <br>We will also have summer-themed workshops. Restaurant Box Stoa will be open during the event. <br> <br>17.00–17.30 HOPP <br>17.30–18.30 Ykspihlajan Kino-orkesteri <br>18.30–19.00 HOPP <br>19.15–20.15 ANI <br> <br><b>HOPP</b><br>HOPP is a rope-skipping performance. Together, two dancers and a musician create a rhythmic landscape where both energy and fatigue are inevitable. At the end of the concert, the audience is invited to try out rope-skipping.<br>The choreographers Sara Grotenfelt and Selma Reynisdóttir started rope-skipping together around Helsinki in 2022. HOPP is the result of friendship and a joyful hobby.<br>Choreography: Sara Grotenfelt and Selma Reynisdóttir <br>Performers: Selma Reynisdóttir and Terhi Hartikainen <br>Musician: Diego Manatrizio <br>Costumes: Ella Snellman</p><p><b>Ykspihlajan Kino-orkesteri </b><br>The band Ykspihlajan Kino-orkesteri come from the Ykspihlaja port district in the town of Kokkola. They have toured European film festivals for over 10 years, accompanying silent films, mostly the silent film trilogy by Juho Kuosmanen. Kino-orkesteri have also composed music for Kuosmanen's film The Happiest Day in the Life of Olli Mäki (2016) and composed and performed music for classics of the silent film era, such as the train film Beggars of Life by William A. Wellman from the 1920s.</p><p>Kino-orkesteri includes vocalist and instrumentalist siblings Anna, Oona and Laura Airola, guitarists Miika Snåre and Tuomas Asanti, trumpetist Miia Reko, bassist Reetta Kuisma, and drummer Ilkka Tolonen (occasionally stood in by Aapo Niininen). Their concert programme consists primarily of well-known classic film tunes into which Laura Airola's lyrics breathe new life.</p><p><b>ANI</b> <br>ANI's stage presence, lyrics and catchy melodies have made him one of the most fascinating and promising pop artists at the moment. The artist's music combines a poetic Finnish mindset with a youthful sound and top-class production. The singer-songwriter has been involved in the production of several songs that have streamed gold and platinum, from artists such as JVG, BESS, BEHM, and Evelina. ANI's creativity and talent have also been recognised by critics with Emma award nominations: Music Creator of the Year 2022 and Pop Act of the Year 2023 and 2024!<br> <br>In his live performances, ANI skilfully merges his stage charisma and wonderful use of vocals, offering an energetic and interactive experience for the audience. The audience can sense ANI's passion for music song by song, making each live show unique.</p>" }, "name": { "fi": "ANI, Ykspihlajan Kino-orkesteri, HOPP – Stoan Helsinki-päivä", "sv": "ANI, Ykspihlajan Kino-orkesteri, HOPP – Helsingforsdagen på Stoa", "en": "ANI, Ykspihlajan Kino-orkesteri, HOPP – Helsinki Day at Cultural Centre Stoa" }, "provider_contact_info": null, "short_description": { "fi": "Stoan aukiolla juhlitaan Helsinki-päivää upeiden artistien kanssa!", "sv": "På Stoaplatsen firar vi Helsingforsdagen med fantastiska artister!", "en": "We will celebrate Helsinki Day at Stoa Square with fabulous artists!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/12E5FC868C097E84276B2A1E0C3E651B/ANI_Ykspihlajan_Kino-orkesteri_HOPP", "sv": "http://www.stoa.fi/sv/evenemang/event/12E5FC868C097E84276B2A1E0C3E651B/ANI_Ykspihlajan_Kino-orkesteri_HOPP", "en": "http://www.stoa.fi/en/events/event/12E5FC868C097E84276B2A1E0C3E651B/ANI_Ykspihlajan_Kino-orkesteri_HOPP" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66158/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65856", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 613187, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T12:13:17.753914Z", "last_modified_time": "2025-04-25T12:13:17.753930Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767688.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613187/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-25T12:13:17.674419Z", "last_modified_time": "2025-06-11T11:13:49.831608Z", "date_published": null, "start_time": "2025-06-11T12:00:00Z", "end_time": "2025-06-11T14: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa istuttamaan oma yllätyskasvi. Loitsua kasvatuslorua, koristele ruukkua ja ripauta sekaan kasvuonnea!</p><p>Arvaatko mikä kasvistasi voisi kasvaa? Nappaa istutus mukaan kotiin ja seuraa kasvua.</p><p><b>Kanneltalon Kesäkeidas Sitratorilla 11.6., 18.6., 16.7. ja 14.8.</b> <br>Kesäkeidas johdattaa koko perheen monipuolisten ja riemukkaiden työpajojen äärelle!</p><p>Sateen sattuessa työpajat toteutetaan Kanneltalon aulassa.</p><p>Työpajoissa loihditaan kukkakoristeita, istutetaan yllätyskasveja ja pelataan juhannusbingoa. Loihdimme myös metsän materiaaleista asetelmia.</p><p>Työpajojen ohessa voit loikoilla rantatuolilla, bongata värikkään jättidonitsin ja nauttia aurinkovarjojen loisteesta. Kokeile leikkisää kalastusta veikeällä lötköpötkö-ongella, nappaako kala? Keidas on katettu viherkasveilla ja värikkäillä kukilla. Sopii koko perheelle ja kaikenikäisille.</p><p>Vapaa pääsy</p>", "sv": "<p>Välkommen att plantera en egen överraskningsväxt!</p><p>Säg trollformeln som får fröet att växa, dekorera krukan och dutta på lite växtlycka. Gissar du vad din växt kan bli till? Ta med planteringen hem och följ tillväxten.</p><p><b>Gamlasgårdens sommaroas på Sitratorget 11.6, 18.6, 16.7 och 14.8</b><br>Sommaroasen leder hela familjen till mångsidiga och glada verkstäder.</p><p>Workshopparna bjuder på blomsterdekorationer, vi planterar överraskningsväxter och spelar midsommarbingo. Vi skapar också stilleben av skogens material.</p><p>Vid sidan av workshopparna kan du slappa i en solstol, hitta den färgglada jättedonitsen och njuta av de skinande parasollen. Prova på det lekfulla fisket med en poolnudel, nappar fisken? Oasen är täckt med grönväxter och färgglada blommor. Lämpar sig för hela familjen och personer i alla åldrar.</p>", "en": "<p>Come along and plant a mystery seed! Chant the growing rhyme, decorate the pot and sprinkle with a pinch of luck.</p><p>Can you guess what your plant is going to be? Take the pot home with you and see what happens.</p><p><b>Kanneltalo Summer Oasis at Sitratori on June 11, June 18, July 16 and August 14</b></p><p>In case of bad wather the workshops will be held in Kannaltalo's lobby.</p><p>The summer oasis (Kesäkeidas) introduces the entire family to versatile and enjoyable workshops.</p><p>The workshop activities include making flower decorations, planting mystery seeds and playing Midsummer bingo. We will also conjure up still lives made from forest materials.</p><p>In addition to participating in workshops, you can lounge on deckchairs, spot the colourful giant donut and enjoy the sparkle of sunshades. Try playful fishing with a fun pool noodle fishing rod. Will you have any luck? The oasis is decorated with green plants and colourful flowers. Suitable for the entire family and people of all ages.</p>" }, "name": { "fi": "Puutarhakeidas – yllätyskasvin istutus – Kanneltalon Kesäkeidas Sitratorilla", "sv": "Trädgårdsoasen – plantera en överraskningsväxt – Gamlasgårdens Sommaroas på Cittertorget", "en": "Garden oasis – plantings of mystery seeds – Kanneltalo summer oasis on Sitratori square" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa istuttamaan oma yllätyskasvi. Loitsua kasvatuslorua, koristele ruukkua ja ripauta sekaan kasvuonnea!", "sv": "Välkommen att plantera en egen överraskningsväxt!", "en": "Come along and plant a mystery seed! Chant the growing rhyme, decorate the pot and sprinkle with a pinch of luck." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/EAD714B8CB93F601B95E3AFE9B34E890/Puutarhakeidas_yllatyskasvin_istutus_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EAD714B8CB93F601B95E3AFE9B34E890/Tradgardsoasen_plantera_en_overraskningsvaxt_", "en": "http://www.kanneltalo.fi/en/events/event/EAD714B8CB93F601B95E3AFE9B34E890/Garden_oasis_plantings_of_mystery_seeds_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65856/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:e3c2da99-c293-4808-935c-1231937bb73a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": { "fi": "0" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=592_Linked_events_-_yksittinen_tapahtuma2801546760" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "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:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-06-11T10:18:29.401597Z", "last_modified_time": "2025-06-11T10:21:48.397716Z", "date_published": "2025-06-11T10:13:27Z", "start_time": "2025-06-16T05:00:00Z", "end_time": "2025-06-16T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 8, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-06-16T15:30:00+03:00", "enrolment_end_time": "2025-06-17T08:00:00+03:00", "local": false, "replaced_by": null, "location_extra_info": { "fi": "Huone 1" }, "provider": { "fi": "Annantalo" }, "description": { "fi": "<div><p>Kuvaus </p><p>sisältö:</p><ul><li><p>aihe 1</p></li><li><p>aihe 2</p></li></ul></div>" }, "name": { "fi": "592 Linked events - yksittäinen tapahtuma" }, "provider_contact_info": null, "short_description": { "fi": "Lyhyt kuvaus" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e3c2da99-c293-4808-935c-1231937bb73a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22tfw4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490261, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-11T07:44:09.806790Z", "last_modified_time": "2025-06-11T07:44:09.806804Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/af7ae7d8-ee34-4da3-94c0-4634aabb1350.jpg", "cropping": "69,0,411,342", "photographer_name": "Pirkko Sillanpää", "alt_text": "Kirkkojarven pienoismalli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490261/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T07:54:49.163794Z", "last_modified_time": "2025-06-11T07:54:49.163811Z", "date_published": null, "start_time": "2025-08-30T09:00:00Z", "end_time": "2025-08-30T12: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, "location_extra_info": { "fi": "Sininen huone" }, "provider": { "fi": "Keski-Espoo Seura ry." }, "description": { "fi": "<p> Keski-Espoo-seura järjestää Espoo-päivänä lauantaina 30.8.2025 kaksi luentoa Entressen kirjaston Sinisessä huoneessa ja rollup-näyttelyn Espoon historiasta. </p>\n<strong>Espoo-päivän ohjelma lauantaina 30.8.2025 klo 12–15</strong><p><br></p><p> Klo 12.00–13.00 Kansallinen kaupunkipuisto Espooseen, Rainer Lahti, Keski-Espoo-seuran hallituksen jäsen</p><p> Klo 13.15–14.00 Espoonjoki peilaa kaupunkiympäristön tilaa, Heikki Simola, Pro Espoonjoki ry:n puheenjohtaja </p><p> Klo 14.00–14.30 Vapaata keskustelua Espoon keskuksen nykytilanteesta</p><p><br></p><p><a href=\"https://keskiespooseura.fi/\">Keski-Espoo Seura ry.</a></p>" }, "name": { "fi": "Keski-Espoo-seuran luento " }, "provider_contact_info": null, "short_description": { "fi": " Keski-Espoo-seura järjestää Espoo-päivänä lauantaina 30.8.2025 kaksi luentoa Entressen kirjaston Sinisessä huoneessa ja rollup-näyttelyn Espoon historiasta. " }, "info_url": { "fi": "https://keskiespooseura.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tfw4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26239, "next": "