Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=168&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 12783, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=169&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=167&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:65853", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 404315, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-25T15:13:53.596353Z", "last_modified_time": "2025-03-25T15:13:53.596370Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767368.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/404315/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-25T15:13:53.581429Z", "last_modified_time": "2025-05-15T11:14:44.676352Z", "date_published": null, "start_time": "2025-08-19T12:00:00Z", "end_time": "2025-08-19T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sami Saari & Jazzpojat sekä yhteislaulua, kaupunkitanssit ja kehonhuoltoa – Malmin tapahtumakesä", "sv": "Sami Saari & Jazzpojat, allsång, stadsdans och fitness – Malms evenemangssommar", "en": "Sami Saari & Jazzpojat and a singalong, Dancing in the City and body maintenance – Malmi Summer of Events" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Vietä yhteisöllinen ilta luontoaiheen ja musiikin parissa!", "sv": "Tillbringa en gemenskaplig kväll med naturtema och musik!", "en": "Enjoy a nature-themed night of music and communal spirit!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F7C2531A031609D657AAB46700B25895/Sami_Saari_Jazzpojat_seka_yhteislaulua_kaupunkitanssit_ja_kehonhuoltoa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F7C2531A031609D657AAB46700B25895/Sami_Saari_Jazzpojat_allsang_stadsdans_och_fitness", "en": "http://www.malmitalo.fi/en/events/event/F7C2531A031609D657AAB46700B25895/Sami_Saari_Jazzpojat_and_a_singalong_Dancing_in_the_City_and_body_maintenance" }, "description": { "fi": "<p>Vietä yhteisöllinen ilta luontoaiheen ja musiikin parissa!</p><p>Ensin tarjolla on kehonhuoltoa ja ihastuttavat kaupunkitanssit sekä Longinojapuiston hoito- ja kehittämissuunnitelman luonnoksen esittely.</p><p>Illan konsertit lämmitellään käyntiin yhteislauluilla Pauli Kainulaisen ja Jukka Okkosen johdolla. <b>Sami Saari & Jazzpojat</b> esittää svengaavaa jazzia ja suomalaisen soulin parhaita paloja illan päätteeksi.</p><p><b>Aikataulu</b><br>15–15.50 Kehonhuolto<br>16–16.45 Kaupunkitanssit<br>16–19.30 Forum Virium Helsinki: Malmin vihreä sydän - Longinojanpuiston hoito- ja kehittämissuunnitelman luonnos<br>17–18 Yhteislaulut: Pauli Kainulainen ja Jukka Okkonen<br>19–20 Sami Saari & Jazzpojat</p><p><b>klo 16-19:30<br>Forum Virium Helsinki: Malmin vihreä sydän - Longinojanpuiston hoito- ja kehittämissuunnitelman luonnos </b><br>Longinojanpuiston hoito- ja kehittämissuunnitelman luonnos on malmilaisten saatavilla ja suunniteltuihin toimenpiteisiin kaivataan asukkaiden mielipiteitä!</p><p><b>klo 17–18<br>Yhteislaulut: Pauli Kainulainen ja Jukka Okkonen</b><br>Suuren suosion saavuttaneet Malmitalon yhteislaulut ovat mukana myös Malmin tapahtumakesässä. Tule mukaan laulamaan!</p><p>Soveltuu kaikenikäisille. Ohjaus suomeksi.</p><p><b>klo 19-20<br>Sami Saari & Jazzpojat</b><br>Sami Saari – Suomisoulin kuningas nyt Malmin tapahtumakesässä! <br>Saari on julkaissut jo 8 sooloalbumia, ja hänet tunnetaan myös hiteistään ”Ainutkertainen”, ”Sen luonteinen mies”, ”Mä teen oikein”, ”Onnen kyyneleet” ja ”Iisimmin”. Monet muistavat hänet myös Veeti & The Velvets ja Dallapé -kokoonpanoista.<br>Samilta onnistuvat niin svengaavat klubikeikat kuin pienimuotoiset soolokeikat sekä ammattitaidolla toteutetut firmakeikat – suurestradeja unohtamatta.</p><p>Sami Saari & Jazzpojat kokoonpanolla ohjelmistossa on 60-luvun jazzia ja omia biisejä. Korvia hivelevää ja tanssittavan svengaavaa jazzia ja soulia meiltä ja muualta. Suomalaisen soulmusiikin pienviljelijänä ja suurkuluttajana tunnettu Saari on aina ollut sielultaan jazzmies, ja on siitä syystä koonnut yhtyeen, jossa vahva solismi sekä pettämätön svengi yhdistävät voimansa karismaattisen solistin kanssa.</p><p>Tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Tillbringa en gemenskaplig kväll med naturtema och musik!</p><p>Först blir vi bjudna på fitness och förtjusande stadsdans samt på en presentation av utkastet till skötsel- och utvecklingsplan för Stickelbackaparken.</p><p>Vi värmer upp inför kvällens konserter med allsång under ledning av Pauli Kainulainen och Jukka Okkonen. Som avslutning på kvällen framför Sami Saari & Jazzpojat svängig jazz och de bästa bitarna av den finländska soulen.</p><p><b>Tidtabell</b><br>15–15.50 Fitness<br>16–16.45 Stadsdans<br>16–19.30 Forum Virium Helsinki: Malms gröna hjärta – Utkast till skötsel- och utvecklingsplan för Stickelbackaparken<br>17–18 Allsång: Pauli Kainulainen och Jukka Okkonen<br>19–20 Sami Saari & Jazzpojat</p><p><b>kl. 16–19.30<br>Forum Virium Helsinki: Malms gröna hjärta – Utkast till skötsel- och utvecklingsplan för Stickelbackaparken</b><br>Utkastet till skötsel- och utvecklingsplan för Stickelbackaparken är tillgängligt för Malmborna och invånarnas åsikter behövs för de planerade åtgärderna!</p><p><b>kl. 17–18<br>Allsång: Pauli Kainulainen och Jukka Okkonen</b><br>Allsången på Malms kulturhus, som blivit mycket populär, är också med i Malms evenemangssommar. Kom med och sjung!</p><p>Passar för alla åldrar. Leds på finska.</p><p><b>kl. 19-20<br>Sami Saari & Jazzpojat</b><br>Sami Saari, Finlands soulkung, är nu med i Malms evenemangssommar!<br>Saari har redan gett ut åtta soloalbum och är också känd för sina hittar Ainutkertainen, Sen luonteinen mies, Mä teen oikein, Onnen kyyneleet och Iisimmin. Många minns honom också från sammansättningarna Veeti & The Velvets och Dallapé.</p><p>Sami lyckas med såväl svängande klubbspelningar som småskaliga solospelningar och professionellt utförda företagsspelningar – utan att glömma storestraderna.</p><p>I Sami Saari & Jazzpojats repertoar finns 60-tals jazz och egna låtar. Den dansande svängande jazzen och soulen som smeker öronen är hämtad från Finland och annat håll. Saari, känd som småbrukare och storkonsument av finländsk soulmusik, har alltid själsligen varit en jazzman och har därför bildat ett band där starka solon och den osvikliga svängande musiken förenar sina krafter med den karismatiska solisten.</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>Enjoy a nature-themed night of music and communal spirit!</p><p>First, visitors can take a body maintenance class and join in the delightful Dancing in the City event as well as listen to a presentation of the management and development plan for Longinoja Park.</p><p>The concerts for the evening will be preceded by a singalong led by Pauli Kainulainen and Jukka Okkonen. Sami Saari & Jazzpojat will play swinging jazz and the best of Finnish soul to top off the evening.</p><p><b>Programme</b><br>15.00–15.50 Body maintenance<br>16.00–16.45 Dancing in the City<br>16.00–19.30 Forum Virium Helsinki: Malmi’s green heart – Draft Longinoja Park management and development plan<br>17.00–18.00 Singalong: Pauli Kainulainen and Jukka Okkonen<br>19.00–20.00 Sami Saari & Jazzpojat</p><p><b>16.00–19.30<br>Forum Virium Helsinki Malmi’s green heart – Draft Longinoja Park management and development plan</b><br>The draft Longinoja Park management and development plan is available to the public, and we would like the residents of Malmi to provide feedback on the planned measures!</p><p><b>17.00–18.00<br>Singalong: Pauli Kainulainen and Jukka Okkonen</b><br>The wildly popular Malmitalo singalong events are also included in the Malmi Summer of Events programme. Come and sing along!</p><p>Suitable for all ages. The guidance is provided in Finnish.</p><p><b>19.00–20.00<br>Sami Saari & Jazzpojat</b><br>Sami Saari – king of Finnish soul at the Malmi Summer of Events!<br>Saari has published as many as eight solo albums, and he is known for his hits, such as ‘Ainutkertainen’, ‘Sen luonteinen mies’, ‘Mä teen oikein’, ‘Onnen kyyneleet’ and ‘Iisimmin’. Many also remember him from groups such as Veeti & The Velvets and Dallapé.</p><p>Sami is at home at groovy club gigs and small, intimate solo performances as well as professionally executed corporate events – not to mention large arenas.</p><p>Sami Saari & Jazzpojat play 60s jazz and original music. They serve pleasant and groovy jazz and soul beats from Finland and abroad. As a connoisseur and heavy user of Finnish soul music, Saari has always been a jazz man at heart, which has led him to put together a band where his strong presence as the charismatic lead singer and the musicians’ unfaltering groove come together.</p><p>Entry to the events is free of charge.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65853/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65810", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 375245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-20T14:14:56.762960Z", "last_modified_time": "2025-03-20T14:14:56.762975Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761392.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/375245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-20T14:14:56.743551Z", "last_modified_time": "2025-05-15T11:14:43.969155Z", "date_published": null, "start_time": "2025-08-15T15:00:00Z", "end_time": "2025-08-15T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Erja Lyytinen, AT’s Roots & Ramblin’ – Malmin tapahtumakesä", "sv": "Erja Lyytinen, AT’s Roots & Ramblin’ – Malms evenemangssommar", "en": "Erja Lyytinen, AT’s Roots & Ramblin’ – Malmi Summer of Events" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rytmikästä rootsia ja autenttista bluesia! Esiintymässä AT’s Roots & Ramblin’ sekä Suomen blues-kuningatar Erja Lyytinen.", "sv": "Rytmisk roots och autentisk blues! AT's Roots & Ramblin' och Finlands bluesdrottning Erja Lyytinen uppträder.", "en": "Rhythmic roots and authentic blues! AT’s Roots & Ramblin’ and the Finnish queen of blues Erja Lyytinen on stage." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen_AT_s_Roots_Ramblin_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen_AT_s_Roots_Ramblin_", "en": "http://www.malmitalo.fi/en/events/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen_AT_s_Roots_Ramblin_" }, "description": { "fi": "<p>Rytmikästä rootsia ja autenttista bluesia! Esiintymässä AT’s Roots & Ramblin’ sekä Suomen blues-kuningatar Erja Lyytinen.</p><p><b>Aikataulu</b><br>klo 18–19 AT’s Roots & Ramblin’<br>klo 20–21 Erja Lyytinen</p><p><b>klo 18–19<br>AT’s Roots & Ramblin’</b> <br>AT’s Roots & Ramblin’ on nuori ja energinen trio, omalla uniikilla soundillaan ja freshillä kosketuksellaan rock’n’rolliin. Yhtye julkaisi debyyttialbuminsa ”Notes From The Backwoods” toukokuussa 2019 ja he kiersivät kotimaan lisäksi mm. Ruotsissa Fatboyn kanssa sekä Englannissa Rockabilly Rave -festareilla.</p><p>2021 lopussa yhtye julkaisi toisen albuminsa ”Golden Lane”, joka on ehjä kokonaisuus perinteikästä rock-, swing-, jazz-, big band-, roots-, country ja rhythm’n’blues -musiikkia. Levy nojaa isoihin sovituksiin ja pelkistettyyn, mutta samaan aikaan massiiviseen, soundimaailmaan.</p><p>Albumilta julkaistut singlet ”Sticks & Stones with Hannu Kiviaho from FATBOY”, ”New Doll”, ”Smokey Page Bettie” ja ”House of the Grooves” ovat päätyneet sekä kotimaan että ulkomaiden isoimmille Spotify-soittolistoille (mm. useasti puoli miljoonaa kuuntelijaa omaavalle ”Rockabilly Mania” -listalle) ja soineet ympäri maailmaa radiokanavilla. Yhtyeen kolmas albumi julkaistaan keväällä 2025.</p><p><b>klo 20-21<br>Erja Lyytinen</b><br>Suomibluesin kuningatar Erja Lyytinen saapuu Malmille elokuun iltaan!</p><p>Lokakuussa 2023 julkaistun livelevyn ”Diamonds on the Road” nimeä kantavalla kiertueella Lyytinen bändeineen tarjoilee yleisölle käsinkosketeltavaa tunnelmaa, taituruutta ja progella maustettua bluesrockia.</p><p>Kansainvälisesti palkittu kitaristi Erja Lyytinen on pitkän ja menestyksekkään uransa aikana esiintynyt maailman kärkikaartiin kuuluvien kitaristien, kuten Sonny Landrethin, Jennifer Battenin ja Joe Bonamassan rinnalla sekä ollut lämmittelijänä Tom Jonesille, Robert Plantille ja Carlos Santanalle. Syksyllä 2023 Lyytinen nähtiin myös vierailemassa Kaija Koon Superstadion-konsertissa Helsingin Olympiastadionilla.</p><p>Lyytisen musiikillinen paletti on laaja. Hän yhdistää musiikissaan modernia ja vanhaa bluesia progressiivisiin sävyihin. Lyytinen on kasvattanut itselleen vankan kuulijakunnan, josta kertovat parhaan kitaristin tunnustus European Blues Awardseissa (2017), toinen sija Total Guitar -lehden lukijaäänestyksessä 10 Maailman Parasta Kitaristia Nyt (2020) sekä ehdokkuus Kanadan Maple Blues Awardseissa 2022. Vuonna 2022 julkaistun ”Waiting For The Daylight” -albumin ensisingle Bad Seedin kitarasoolo äänestettiin Guitar World -lehden lukijaäänestyksessä vuoden 2022 parhaiden kitarasoolojen joukkoon sijalle 10.</p><p>Harri Taittonen on virtuoosimainen kosketinsoittaja, joka on kotonaan koskettimien takana tyylilajista riippumatta. Hersyvällä luonteella varustettu Taittonen on kysytty soittaja niin keikkalavoille kuin studiosessioihin. Taittonen kuuluu myös Lyytisen luottopakkeihin, ja onkin soittanut kaikilla Lyytisen studioalbumeilla. <br> <br>Lyytinen & Taittonen ovat esiintyneet duona jo toista vuosikymmentä. Tunnelma kaksikon keikoilla on omaa luokkaansa, kahden bluesartistin yhdistäessä musiikillisen osaamisensa aitoon hauskanpitoon lavalla. Konstailematon ja viihdyttävä blues-keikka on siis taattu!</p><p>Tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Rytmisk roots och autentisk blues! AT's Roots & Ramblin' och Finlands bluesdrottning Erja Lyytinen uppträder.</p><p><b>Tidtabell</b><br>kl. 18–19 AT's Roots & Ramblin'<br>kl. 20–21 Erja Lyytinen</p><p><b>kl. 18–19<br>AT's Roots & Ramblin'</b><br>AT's Roots & Ramblin' är en ung och energisk trio, med ett eget unikt sound och en fräsch kontakt med rock'n'roll. Gruppen släppte sitt debutalbum Notes From The Backwoods i maj 2019 och turnerade förutom i Finland bland annat i Sverige med Fatboy och i England på festivalen Rockabilly Rave.</p><p>I slutet av 2021 släppte bandet sitt andra album, Golden Lane, som är en hel helhet av traditionell rock-, swing-, jazz-, big band-, roots-, country- och rhythm'n'blues-musik. Skivan stöder sig på stora arrangemang och en avskalad men samtidigt massiv, soundvärld.</p><p>Singlarna Sticks & Stones with Hannu Kiviaho from FATBOY, New Doll, Smokey Page Bettie och House of the Grooves har kommit med på de största spellistorna i Spotify både i Finland och utomlands (bland annat på listan Rockabilly Mania med en halv miljon lyssnare) och har spelats på radiokanaler världen över. Gruppens tredje album släpps våren 2025.</p><p><b>kl. 20–21<br>Erja Lyytinen</b><br>Finlands bluesdrottning Erja Lyytinen kommer till Malm under augustikvällen!</p><p>Under turnén med samma namn som titeln på liveskivan Diamonds on the Road, som släpptes i oktober 2023, bjuder Lyytinen och hennes band publiken på en handgriplig stämning, bravur och proge-kryddad bluesrock.</p><p>Den internationellt prisbelönta gitarristen Erja Lyytinen har under sin långa och framgångsrika karriär uppträtt vid sidan av gitarrister som hör till världens främsta gardister, såsom Sonny Landreth, Jennifer Batten och Joe Bonamassa, samt varit uppvärmare åt Tom Jones, Robert Plant och Carlos Santana. Hösten 2023 sågs Lyytinen också på Kaija Koos konsert Superstadion på Olympiastadion i Helsingfors.</p><p>Lyytis musikaliska palett är omfattande. I sin musik kombinerar hon modern och gammal blues med progressiva toner. Lyytinen har fått erkännandet bästa gitarrist vid European Blues Awards (2017), en andra plats i Total Guitars läsaromröstning om 10 av världens bästa gitarrister nu (2020) samt en nominering i Kanadas Maple Blues Awards 2022, vilket berättar om hennes gedigna lyssnarskara. Gitarrsolot på första singeln Bad Seed från albumet Waiting For The Daylight, som släpptes 2022, kom på tionde plats i en läsaromröstning i Guitar World om de bästa gitarrsolona 2022.</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>Rhythmic roots and authentic blues! AT’s Roots & Ramblin’ and the Finnish queen of blues Erja Lyytinen on stage.</p><p><b>Programme</b><br>18.00–19.00 AT’s Roots & Ramblin’<br>20.00–21.00 Erja Lyytinen</p><p><b>18.00–19.00<br>AT’s Roots & Ramblin’</b><br>AT’s Roots & Ramblin’ is a young and energetic trio with their own unique sound and fresh approach to rock’n’roll. The group released their debut album ‘Notes From The Backwoods’ in May 2019 and toured Sweden with Fatboy and the Rockabilly Rave festival in England in addition to Finland.</p><p>In late 2021 the group published their second album ‘Golden Lane,’ which is a cohesive record containing traditional rock, swing, jazz, big band, roots, country and rhythm’n’blues music. The album is built on larger-than-life arrangements and a simplified, yet massive soundscape.</p><p>Album singles ‘Sticks & Stones with Hannu Kiviaho from FATBOY,’ ‘New Doll,’ ‘Smokey Page Bettie’ and ‘House of the Grooves’ have been featured on the biggest Spotify playlists in Finland and abroad (e.g. several times on the ‘Rockabilly Mania’ list with 500,000 listeners) and they have been played on radio around the world. The group’s third album will be released in spring 2025.</p><p><b>20.00–21.00<br>Erja Lyytinen</b><br>The queen of blues in Finland, Erja Lyytinen, will perform in Malmi in August!</p><p>On the tour, named after the October 2023 live record ‘Diamonds on the Road,’ Lyytinen and her band serve a tangible atmosphere, virtuosity and blues rock seasoned with progressive rock.</p><p>During her long and illustrious career, internationally esteemed guitarist Erja Lyytinen has performed with the world’s top guitarists, such as Sonny Landreth, Jennifer Batten and Joe Bonamassa, and has warmed up for Tom Jones, Robert Plant and Carlos Santana. In autumn 2023, Lyytinen also made a guest appearance at Kaija Koo’s ‘Superstadion’ concert in the Helsinki Olympic Stadium.</p><p>Lyytinen can play many kinds of music. She combines modern and old blues with progressive hues in her music. Lyytinen has amassed a devoted following, which is evident in her many accolades: best guitarist at the European Blues Awards (2017), second place in the ‘10 World's Best Guitarists Now’ reader survey by Total Guitar magazine (2020) and nomination in the Maple Blues Awards 2022 in Canada. The guitar solo of her first single, ‘Bad Seed’, from the ‘Waiting For The Daylight’ album published in 2022, was voted the tenth best guitar solo in 2022 by the readers of Guitar World magazine.</p><p>Entry to the events is free of charge.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65810/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66376", "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: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:44/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-782/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-juhlaviikot/helsingin-juhlaviikot-von-krahl-fundamentalisti-3851112/", "sv": "https://www.lippu.fi/artist/helsingin-juhlaviikot/helsingin-juhlaviikot-von-krahl-fundamentalisti-3851112/", "en": "https://www.lippu.fi/artist/helsingin-juhlaviikot/helsingin-juhlaviikot-von-krahl-fundamentalisti-3851112/" }, "description": null, "price": { "fi": "45 € / 29,40 €", "sv": "45 € / 29,40 €", "en": "45 € / 29,40 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 770355, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-15T10:14:14.987885Z", "last_modified_time": "2025-05-15T10:14:14.987916Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765763.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/770355/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-15T10:14:14.863407Z", "last_modified_time": "2025-05-15T10:14:15.133819Z", "date_published": null, "start_time": "2025-08-21T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Von Krahl: Fundamentalisti – Helsingin juhlaviikot", "sv": "Von Krahl: Fundamentalisten – Helsingfors festspel", "en": "Von Krahl: Fundamentalist – Helsinki Festival" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Fundamentalisti on tarina rakkaudesta, vallasta ja uskosta.", "sv": "Fundamentalisten är en berättelse om kärlek, makt och tro.", "en": "“Fundamentalist” is a story about love, power and faith." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DBB3AA7DC6B4B21F3DDCCF57D83BBBC8/Von_Krahl_Fundamentalisti", "sv": "http://www.stoa.fi/sv/evenemang/event/DBB3AA7DC6B4B21F3DDCCF57D83BBBC8/Von_Krahl_Fundamentalisten_", "en": "http://www.stoa.fi/en/events/event/DBB3AA7DC6B4B21F3DDCCF57D83BBBC8/Von_Krahl_Fundamentalist" }, "description": { "fi": "<p>Fundamentalisti on tarina rakkaudesta, vallasta ja uskosta.</p><p>Näytelmän päähenkilöt ovat uudistushenkinen pastori Markus, jota on julkisesti kutsuttu “paholaisen välikappaleeksi”, ja hänen entinen hyvä ystävänsä Heidi, joka on ajelehtinut elämässään paikasta toiseen. Eräänä syysiltana Markus ja Heidi kohtaavat jälleen ja ajautuvat henkiseen kamppailuun ja totuuden etsintään. Molemmat joutuvat arvioimaan uudelleen uskomuksiaan ja niiden syitä.<br> <br>Mikä on totuus? Voiko totuuksia olla useampia? Voiko toisia ihmisiä auttaa pyyteettömästi? Kuinka pitkälle avunannon voi viedä? Kuinka pitkälle ulottuu yhden ihmisen vastuu toisesta? Mitä on fanatismi, ja milloin siitä tulee vaarallista?<br> <br>Juha Jokelan Fundamentalisti sai ensi-iltansa vuonna 2006 Teatteri Jurkassa. Näytelmä palkittiin Pohjoismaisella näytelmäkirjailijapalkinnolla ja se on käännetty yhdeksälle kielelle.</p><p>Von Krahl on esittänyt Fundamentalistia loppuunmyydyille katsomoille Tallinnassa vuodesta 2021 saakka – yli 100 esityksellään teos on tehnyt historiaa ollen ensimmäinen teatterin tuotanto, joka on saavuttanut tämän virstanpylvään. Nyt Viron arvostetuimpiin kuuluva teatteri-instituutio tuo vironkielisen tulkintansa Juhlaviikoille.<br> <br>Kesto: 2 tuntia ja 30min, väliaika on<br> <br>Kieli: viro<br>Tekstitys ja audiotulkkaus suomeksi Subtitles Cloud -mobiiliapplikaation kautta. Voit seurata esitystä joko tekstityksen tai audiotulkkauksen avulla.</p><p>Audiotulkkausta varten otathan esitykseen omat kuulokkeesi mukaan. Tarkemmat ohjeet tekstityksen ja audiotulkkauksen käytöstä julkaistaan lähempänä esitystä tällä sivulla. <br> <br>Teksti: Juha Jokela<br>Kääntäjä: Kai Aareleid<br>Ohjaaja: Marta Aliide Jakovski<br>Lavastaja: Kristel Zimmer<br>Valosuunnittelu: Priidu Adlas<br>Musiikki: Henrik Esse, Marta Aliide Jakovski<br>Rooleissa: Liisa Saaremäel, Erki Laur</p>", "sv": "<p>Fundamentalisten är en berättelse om kärlek, makt och tro.</p><p>Pjäsen kretsar kring pastorn Markus, en reformistisk präst som offentligt har kallats ”djävulens redskap”, och hans tidigare goda vän Heidi, som har drivit runt i livet utan fast riktning. En höstkväll möts Markus och Heidi igen och dras in i en andlig kamp och en sökande efter sanningen. Båda tvingas omvärdera sina övertygelser och varför de tror på dem.<br> <br>Vad är sanning? Kan det finnas flera sanningar? Kan man hjälpa andra människor helt osjälviskt? Hur långt kan man gå i sin vilja att hjälpa? Hur långt sträcker sig en människas ansvar för en annan? Vad är fanatism, och när blir den farlig?<br> <br>Juha Jokelas Fundamentalisten hade urpremiär 2006 på Teatteri Jurkka i Helsingfors. Pjäsen belönades med det Nordiska dramatikerpriset och har översatts till nio språk. Von Krahl har spelat Fundamentalisten för utsålda hus i Tallinn sedan 2021 – med över 100 föreställningar har produktionen skrivit historia som den första teateruppsättningen från Von Krahl som nått denna milstolpe. Nu kommer en av Estlands mest ansedda teaterinstitutioner till Helsingfors festspel med sin estniskspråkiga tolkning.<br> <br>Längd: 2 h 30 min, paus</p><p>Språk: Estniska<br>Textning och audiotolkning på finska via Subtitles Cloud-mobilappen. <br>Du kan följa föreställningen antingen med textning eller audiotolkning.</p><p>För audiotolkning behöver du ta med egna hörlurar.<br>Mer information om hur textning och audiotolkning fungerar publiceras på denna sida närmare föreställningen.<br> <br>Text: Juha Jokela<br>Översättning: Kai Aareleid<br>Regi: Marta Aliide Jakovski<br>Scenografi: Kristel Zimmer<br>Ljusdesign: Priidu Adlas<br>Musik: Henrik Esse, Marta Aliide Jakovski<br>Medverkande: Liisa Saaremäel, Erki Laur</p>", "en": "<p>“Fundamentalist” is a story about love, power and faith.</p><p>The main characters are a reformist pastor, Markus, who has publicly been called “a tool for the devil”, and his former good friend Heidi, who has drifted from one place to another during her life. On an autumn evening, Markus and Heidi meet again and engage in mutual spiritual warfare and a quest for truth. They have to reassess what they believe in and why. <br> <br>What is truth? Can there ever be more than one truth? Can you selflessly help other people? How far should you take it? How far does one person’s accountability for another human being stretch? What is fanaticism, and at what point does it become dangerous?</p><p>Juha Jokela's Fundamentalist premiered in 2006 at Teatteri Jurkka. The play was awarded the Nordic Drama Award and has been translated into eight languages. Von Krahl has repeatedly performed Fundamentalist to sold-out audiences in Tallinn since 2021. With over 100 performances, Fundamentalist has made history as the first production at Von Krahl Theatre to reach this milestone. Now, one of Estonia's most esteemed theatre institutions brings its Estonian-language interpretation to the Helsinki Festival.</p><p>Duration: 2h 30min, including an intermission.</p><p>Language: Estonian</p><p>Subtitles and audio interpretation in Finnish available via the Subtitles Cloud mobile application.\u2028You can follow the performance either with subtitles or audio interpretation.\u2028For audio interpretation, please bring your own headphones to the performance.\u2028Detailed instructions on how to use the subtitles and audio interpretation will be published on this page closer to the performance.</p><p>Author: Juha Jokela<br>Translator: Kai Aareleid<br>Director: Marta Aliide Jakovski <br>Art director: Kristel Zimmer <br>Lighting designer: Priidu Adlas<br>Music designer: Henrik Esse, Marta Aliide Jakovski<br>Cast: Liisa Saaremäel, Erki Laur</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66376/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66375", "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: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:44/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-782/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-juhlaviikot/helsingin-juhlaviikot-von-krahl-fundamentalisti-3851112/", "sv": "https://www.lippu.fi/artist/helsingin-juhlaviikot/helsingin-juhlaviikot-von-krahl-fundamentalisti-3851112/", "en": "https://www.lippu.fi/artist/helsingin-juhlaviikot/helsingin-juhlaviikot-von-krahl-fundamentalisti-3851112/" }, "description": null, "price": { "fi": "45 € / 29,40 €", "sv": "45 € / 29,40 €", "en": "45 € / 29,40 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 770354, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-15T10:14:14.511032Z", "last_modified_time": "2025-05-15T10:14:14.511051Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765760.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/770354/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-15T10:14:14.376929Z", "last_modified_time": "2025-05-15T10:14:14.673061Z", "date_published": null, "start_time": "2025-08-20T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Von Krahl: Fundamentalisti – Helsingin juhlaviikot", "sv": "Von Krahl: Fundamentalisten – Helsingfors festspel", "en": "Von Krahl: Fundamentalist – Helsinki Festival" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Fundamentalisti on tarina rakkaudesta, vallasta ja uskosta.", "sv": "Fundamentalisten är en berättelse om kärlek, makt och tro.", "en": "“Fundamentalist” is a story about love, power and faith." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3AD095530F9DC70EA19D7151EF7D608B/Von_Krahl_Fundamentalisti", "sv": "http://www.stoa.fi/sv/evenemang/event/3AD095530F9DC70EA19D7151EF7D608B/Von_Krahl_Fundamentalisten_", "en": "http://www.stoa.fi/en/events/event/3AD095530F9DC70EA19D7151EF7D608B/Von_Krahl_Fundamentalist" }, "description": { "fi": "<p>Fundamentalisti on tarina rakkaudesta, vallasta ja uskosta.</p><p>Näytelmän päähenkilöt ovat uudistushenkinen pastori Markus, jota on julkisesti kutsuttu “paholaisen välikappaleeksi”, ja hänen entinen hyvä ystävänsä Heidi, joka on ajelehtinut elämässään paikasta toiseen. Eräänä syysiltana Markus ja Heidi kohtaavat jälleen ja ajautuvat henkiseen kamppailuun ja totuuden etsintään. Molemmat joutuvat arvioimaan uudelleen uskomuksiaan ja niiden syitä.<br> <br>Mikä on totuus? Voiko totuuksia olla useampia? Voiko toisia ihmisiä auttaa pyyteettömästi? Kuinka pitkälle avunannon voi viedä? Kuinka pitkälle ulottuu yhden ihmisen vastuu toisesta? Mitä on fanatismi, ja milloin siitä tulee vaarallista?<br> <br>Juha Jokelan Fundamentalisti sai ensi-iltansa vuonna 2006 Teatteri Jurkassa. Näytelmä palkittiin Pohjoismaisella näytelmäkirjailijapalkinnolla ja se on käännetty yhdeksälle kielelle.</p><p>Von Krahl on esittänyt Fundamentalistia loppuunmyydyille katsomoille Tallinnassa vuodesta 2021 saakka – yli 100 esityksellään teos on tehnyt historiaa ollen ensimmäinen teatterin tuotanto, joka on saavuttanut tämän virstanpylvään. Nyt Viron arvostetuimpiin kuuluva teatteri-instituutio tuo vironkielisen tulkintansa Juhlaviikoille.<br> <br>Kesto: 2 tuntia ja 30min, väliaika on<br> <br>Kieli: viro<br>Tekstitys ja audiotulkkaus suomeksi Subtitles Cloud -mobiiliapplikaation kautta. Voit seurata esitystä joko tekstityksen tai audiotulkkauksen avulla.</p><p>Audiotulkkausta varten otathan esitykseen omat kuulokkeesi mukaan. Tarkemmat ohjeet tekstityksen ja audiotulkkauksen käytöstä julkaistaan lähempänä esitystä tällä sivulla. <br> <br>Teksti: Juha Jokela<br>Kääntäjä: Kai Aareleid<br>Ohjaaja: Marta Aliide Jakovski<br>Lavastaja: Kristel Zimmer<br>Valosuunnittelu: Priidu Adlas<br>Musiikki: Henrik Esse, Marta Aliide Jakovski<br>Rooleissa: Liisa Saaremäel, Erki Laur</p>", "sv": "<p>Fundamentalisten är en berättelse om kärlek, makt och tro.</p><p>Pjäsen kretsar kring pastorn Markus, en reformistisk präst som offentligt har kallats ”djävulens redskap”, och hans tidigare goda vän Heidi, som har drivit runt i livet utan fast riktning. En höstkväll möts Markus och Heidi igen och dras in i en andlig kamp och en sökande efter sanningen. Båda tvingas omvärdera sina övertygelser och varför de tror på dem.<br> <br>Vad är sanning? Kan det finnas flera sanningar? Kan man hjälpa andra människor helt osjälviskt? Hur långt kan man gå i sin vilja att hjälpa? Hur långt sträcker sig en människas ansvar för en annan? Vad är fanatism, och när blir den farlig?<br> <br>Juha Jokelas Fundamentalisten hade urpremiär 2006 på Teatteri Jurkka i Helsingfors. Pjäsen belönades med det Nordiska dramatikerpriset och har översatts till nio språk. Von Krahl har spelat Fundamentalisten för utsålda hus i Tallinn sedan 2021 – med över 100 föreställningar har produktionen skrivit historia som den första teateruppsättningen från Von Krahl som nått denna milstolpe. Nu kommer en av Estlands mest ansedda teaterinstitutioner till Helsingfors festspel med sin estniskspråkiga tolkning.<br> <br>Längd: 2 h 30 min, paus</p><p>Språk: Estniska<br>Textning och audiotolkning på finska via Subtitles Cloud-mobilappen. <br>Du kan följa föreställningen antingen med textning eller audiotolkning.</p><p>För audiotolkning behöver du ta med egna hörlurar.<br>Mer information om hur textning och audiotolkning fungerar publiceras på denna sida närmare föreställningen.<br> <br>Text: Juha Jokela<br>Översättning: Kai Aareleid<br>Regi: Marta Aliide Jakovski<br>Scenografi: Kristel Zimmer<br>Ljusdesign: Priidu Adlas<br>Musik: Henrik Esse, Marta Aliide Jakovski<br>Medverkande: Liisa Saaremäel, Erki Laur</p>", "en": "<p>“Fundamentalist” is a story about love, power and faith.</p><p>The main characters are a reformist pastor, Markus, who has publicly been called “a tool for the devil”, and his former good friend Heidi, who has drifted from one place to another during her life. On an autumn evening, Markus and Heidi meet again and engage in mutual spiritual warfare and a quest for truth. They have to reassess what they believe in and why. <br> <br>What is truth? Can there ever be more than one truth? Can you selflessly help other people? How far should you take it? How far does one person’s accountability for another human being stretch? What is fanaticism, and at what point does it become dangerous?</p><p>Juha Jokela's Fundamentalist premiered in 2006 at Teatteri Jurkka. The play was awarded the Nordic Drama Award and has been translated into eight languages. Von Krahl has repeatedly performed Fundamentalist to sold-out audiences in Tallinn since 2021. With over 100 performances, Fundamentalist has made history as the first production at Von Krahl Theatre to reach this milestone. Now, one of Estonia's most esteemed theatre institutions brings its Estonian-language interpretation to the Helsinki Festival.</p><p>Duration: 2h 30min, including an intermission.</p><p>Language: Estonian</p><p>Subtitles and audio interpretation in Finnish available via the Subtitles Cloud mobile application.\u2028You can follow the performance either with subtitles or audio interpretation.\u2028For audio interpretation, please bring your own headphones to the performance.\u2028Detailed instructions on how to use the subtitles and audio interpretation will be published on this page closer to the performance.</p><p>Author: Juha Jokela<br>Translator: Kai Aareleid<br>Director: Marta Aliide Jakovski <br>Art director: Kristel Zimmer <br>Lighting designer: Priidu Adlas<br>Music designer: Henrik Esse, Marta Aliide Jakovski<br>Cast: Liisa Saaremäel, Erki Laur</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66375/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66297", "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:44/?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/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 770353, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-15T10:14:11.909326Z", "last_modified_time": "2025-05-15T10:14:11.909344Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773217.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/770353/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-15T10:14:11.784527Z", "last_modified_time": "2025-05-15T10:14:12.067900Z", "date_published": null, "start_time": "2025-06-12", "end_time": "2025-08-10", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Entä jos vain olisit – Ryhmä 21 -kollektiivin valokuvanäyttely", "sv": "Entä jos vain olisit – Fotoutställning av kollektivet Ryhmä 21", "en": "Entä jos vain olisit – A photography exhibition of the Ryhmä 21 collective" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Entä jos vain olisit? Pysähtyisit tähän, katsoisit ja kuuntelisit, aistisit ja antaisit levollisuuden kannatella.", "sv": "Tänk om du bara var? Om du skulle stanna upp här, titta och lyssna, känna och låta rofylldheten bära dig.", "en": "What if you could just be? You could slow down, look, listen, sense, and let the tranquillity carry you." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E6873AFD29785DFCF9E6DA1CFCC39079/Enta_jos_vain_olisit_", "sv": "http://www.stoa.fi/sv/evenemang/event/E6873AFD29785DFCF9E6DA1CFCC39079/Enta_jos_vain_olisit", "en": "http://www.stoa.fi/en/events/event/E6873AFD29785DFCF9E6DA1CFCC39079/Enta_jos_vain_olisit" }, "description": { "fi": "<p>Entä jos vain olisit? Pysähtyisit tähän, katsoisit ja kuuntelisit, aistisit ja antaisit levollisuuden kannatella.</p><p>Ryhmä 21-kollektiivin seitsemäs ryhmänäyttely syntyi tarpeesta rauhaan. Rauha on tila, jossa ei ole sotaa, häiriöitä tai riitoja. Se on sisäistä rauhallisuutta, tyyneyttä ja levollisuutta, aikaa ajatella, aistia ja keskittyä. <br> <br>Näyttelyn kuvaajat katsovat rauhaa jokainen omasta näkökulmastaan. Se löytyy ajattomista interiööreistä, hitaista tekniikoista ja uskalluksesta vain olla.<br> <br>Parvigallerian näyttelyssä on esillä digitaalisia ja analogisia vedoksia sekä kameratonta valokuvaa. <br> <br>Näyttelyn kuvaajat ovat Ari Laine, Pia Lauronen, Jussi Mankki, Kristiina Mähönen, Sari Möttönen, Tarakini Rainaho, Perttu Sironen ja Riikka Thomas.</p><p>Näyttelyä on tukenut Zachris Castrénin säätiö.</p>", "sv": "<p>Tänk om du bara var? Om du skulle stanna upp här, titta och lyssna, känna och låta rofylldheten bära dig.</p><p>Ryhmä 21-kollektivets sjunde grupputställning föddes ur ett behov av frid. Frid är ett tillstånd där det inte finns krig, störningar eller gräl. Det är ett inre lugn, stillhet och rofylldhet, tid att tänka, känna och koncentrera sig.</p><p>De fotografer som deltar i utställningen ser alla på friden ur sitt eget perspektiv. Den finns i tidlösa interiörer, långsamma tekniker och mod att bara vara.</p><p>Utställningen i balkonggalleriet visar digitala och analoga verk samt fotografier som skapats utan kamera.</p><p>Fotograferna som deltar i utställningen är Ari Laine, Pia Lauronen, Jussi Mankki, Kristiina Mähönen, Sari Möttönen, Tarakini Rainaho, Perttu Sironen och Riikka Thomas.</p><p>Utställningen stöds av stiftelsen Zachris Castrénin säätiö.</p>", "en": "<p>What if you could just be? You could slow down, look, listen, sense, and let the tranquillity carry you.</p><p>The seventh group exhibition of the Ryhmä 21 collective was born out of the yearning for peace. Peace is a space where there is no war, no disruptions and no arguments. It is an inner calm, serenity and restfulness; it is time to think, sense and focus.</p><p>The photographers of the exhibition each look at peace from their own perspective. It can be found in timeless interiors, slow techniques and the courage to just be.</p><p>The lobby balcony exhibition showcases digital and analogue prints and cameraless photography.</p><p>The featured photographers are Ari Laine, Pia Lauronen, Jussi Mankki, Kristiina Mähönen, Sari Möttönen, Tarakini Rainaho, Perttu Sironen and Riikka Thomas.</p><p>The exhibition is supported by the Zachris Castrén Foundation.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66297/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66335", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:602/?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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 754679, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-13T12:13:27.713955Z", "last_modified_time": "2025-05-13T12:13:27.713968Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773369.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/754679/?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-13T12:13:27.606410Z", "last_modified_time": "2025-05-15T08:14:27.396692Z", "date_published": null, "start_time": "2025-06-02T07:00:00Z", "end_time": "2025-06-06T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "TÄYNNÄ Kuvataideleiri: Kesäkassillinen kuvataidetta", "sv": "FULLBOKAD Kuvataideleiri: Kesäkassillinen kuvataidetta", "en": "FULLY BOOKED Kuvataideleiri: Kesäkassillinen kuvataidetta" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustu kuvataiteeseen matalan kynnyksen taideleirillä. Upotetaan yhdessä kädet saveen, kangaskasseillaan, maalataan ja tehdään toivejuttuja!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F23559BD7003CE56C8F5D4041AEDDDA5/TAYNNA_Kuvataideleiri_Kesakassillinen_kuvataidetta", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F23559BD7003CE56C8F5D4041AEDDDA5/FULLBOKAD_Kuvataideleiri_Kesakassillinen_kuvataidetta", "en": "http://www.malmitalo.fi/en/events/event/F23559BD7003CE56C8F5D4041AEDDDA5/FULLY_BOOKED_Kuvataideleiri_Kesakassillinen_kuvataidetta" }, "description": { "fi": "<p>Tutustu kuvataiteeseen matalan kynnyksen taideleirillä. Upotetaan yhdessä kädet saveen, kangaskasseillaan, maalataan ja tehdään toivejuttuja!</p><p>Leirin aikana työskentelemme mahdollisimman paljon ulkona sääolosuhteet huomioiden. Myös Malmitalon taideluokka on käytössä kurssien aikana. Jokaisena leiripäivänä keskitytään eri kuvataiteen osa-alueeseen: savityö, kangaskassi, maalaus tai oppilaiden toivomia tekniikoita.</p><p>Leirille osallistuminen ei edellytä aikaisempaa kokemusta kuvataiteesta. Työskentely muovautuu osallistujien omien kiinnostuksenkohteiden ja osaamisen mukaan. Tervetuloa mukaan!</p><p><b>Kurssi-info:</b><br>Kesäleirit ovat maksuttomia ja siihen sisältyy päivittäin maksuton lounas<br>Kurssit on suunnattu 7–11-vuotiaille, max. 12 oppilasta/kurssi</p><p>Kurssit järjestetään Malmitalolla ja sen välittömässä läheisyydessä, osoite Ala-Malmin tori 1.</p><p>Sitovat ilmoittautumiset sähköpostitse osoitteeseen: petra.rovila-aarnio@hel.fi<br> <br>Lisätietoja antaa Malmitalon kulttuurituottaja Petra Rovila-Aarnio, puh +358 400 293 371</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66335/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66360", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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: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/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 762874, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-14T12:14:14.892795Z", "last_modified_time": "2025-05-14T12:14:14.892821Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767353.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/762874/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-05-14T12:14:14.729155Z", "last_modified_time": "2025-05-14T12:14:15.053260Z", "date_published": null, "start_time": "2025-06-25T16:00:00Z", "end_time": "2025-08-13T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kaupunkitanssit Vuotorilla", "sv": "Stadsdans på Nortorget", "en": "Dancing in the City at Vuotori Square" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Foxista fuskuun, jenkasta sambaan, valssista tangoon! Kesällä 2025 opetellaan jälleen paritansseja!", "sv": "Från foxtrot till fusku, från jenka till samba, från vals till tango! Sommaren 2025 lär vi oss pardanser igen!", "en": "From foxtrot to single-time swing, jenkka to samba and waltz to tango! In the summer of 2025, we will once again be learning partner dances!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BE30218DF99E6352E2FEC7531BA48B93/Kaupunkitanssit_Vuotorilla", "sv": "http://www.vuotalo.fi/sv/evenemang/event/BE30218DF99E6352E2FEC7531BA48B93/Stadsdans_pa_Nortorget", "en": "http://www.vuotalo.fi/en/events/event/BE30218DF99E6352E2FEC7531BA48B93/Dancing_in_the_City_at_Vuotori_Square" }, "description": { "fi": "<p>Foxista fuskuun, jenkasta sambaan, valssista tangoon! Kesällä 2025 opetellaan jälleen paritansseja!</p><p>Kaupunkitansseissa pääset erilaisten paritanssien pyörteisiin ohjatusti ja täysin maksutta. Et tarvitse ennakkotaitoja, ilmoittautumista tai edes tanssiparia – paikan päältä löytyy!</p><p>Mukaan tanssimaan voi tulla milloin vain. Vuotorilla tanssitaan <br>keskiviikkoisin klo 19-19.45. Opetuksesta vastaavat koulutetut tanssinopettajat. Sateen sattuessa tanssitaan Vuotalon aulassa.</p>", "sv": "<p>Från foxtrot till fusku, från jenka till samba, från vals till tango! Sommaren 2025 lär vi oss pardanser igen!</p><p>I stadsdanserna får du helt avgiftsfritt träna olika pardanser under handledning. Du behöver inga förhandskunskaper, ingen anmälan eller ens en danspartner – den får du på plats!</p><p>Du kan komma med och dansa när du vill. För undervisningen svarar utbildade danslärare. Om det regnar dansar vi i Nordhusets entréhall.</p>", "en": "<p>From foxtrot to single-time swing, jenkka to samba and waltz to tango! In the summer of 2025, we will once again be learning partner dances!</p><p>The Dancing in the City sessions offer opportunities to practise different partner dances under supervision and completely free of charge. No prior skills, registration or even a dance partner are required – we have plenty of them to offer!</p><p>You can join any time. The teaching will be provided by trained dance teachers. In the event of rain, the dancing will take place in the lobby of Vuotalo.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66360/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65830", "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/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:33/?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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 613830, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T14:13:23.374398Z", "last_modified_time": "2025-04-25T14:13:23.374414Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767567.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613830/?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-04-25T14:13:23.326085Z", "last_modified_time": "2025-05-14T08:13:37.005643Z", "date_published": null, "start_time": "2025-06-17T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Summertime music playschool" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/AFD4725FD007E7974D97F2716B6A98FE/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/AFD4725FD007E7974D97F2716B6A98FE/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/AFD4725FD007E7974D97F2716B6A98FE/Summertime_music_playschool" }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>", "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65830/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65829", "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/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:33/?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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 613829, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T14:13:23.177092Z", "last_modified_time": "2025-04-25T14:13:23.177109Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767566.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613829/?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-04-25T14:13:23.117998Z", "last_modified_time": "2025-05-14T08:13:36.845470Z", "date_published": null, "start_time": "2025-06-17T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Summertime music playschool" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1C3D549F5B2C8C8B922EF71665A6AB44/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/1C3D549F5B2C8C8B922EF71665A6AB44/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/1C3D549F5B2C8C8B922EF71665A6AB44/Summertime_music_playschool" }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>", "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65829/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65828", "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/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:33/?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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 613828, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T14:13:22.790966Z", "last_modified_time": "2025-04-25T14:13:22.790982Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767564.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613828/?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-04-25T14:13:22.738300Z", "last_modified_time": "2025-05-14T08:13:35.108269Z", "date_published": null, "start_time": "2025-06-10T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Summertime music playschool" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6684EF8363F72FD7383DA8ECC559CA95/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/6684EF8363F72FD7383DA8ECC559CA95/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/6684EF8363F72FD7383DA8ECC559CA95/Summertime_music_playschool" }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>", "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65828/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65827", "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/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:33/?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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 613827, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T14:13:22.555750Z", "last_modified_time": "2025-04-25T14:13:22.555766Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767563.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613827/?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-04-25T14:13:22.488574Z", "last_modified_time": "2025-05-14T08:13:34.895167Z", "date_published": null, "start_time": "2025-06-10T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Summertime music playschool" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Summertime_music_playschool" }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>", "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65827/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65817", "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/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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 613507, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T13:13:10.273944Z", "last_modified_time": "2025-04-25T13:13:10.273961Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767558.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613507/?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-04-25T13:13:10.215189Z", "last_modified_time": "2025-05-14T08:13:32.830808Z", "date_published": null, "start_time": "2025-06-03T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – Musiikkiteatteriesitys kaikenkielisille lapsille", "sv": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – För barn på alla språk", "en": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – Suitable for children of all languages" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!", "sv": "Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!", "en": "Come to sing and learn about different instruments together with Hinni the Mouse!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag", "sv": "http://www.annantalo.fi/sv/evenemang/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag", "en": "http://www.annantalo.fi/en/events/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag" }, "description": { "fi": "<p>Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!</p><p>Annantalon Kesämuskareista tuttu Tuuli Paasolainen tuo Annantalon takapihan A-lavalle interaktiivisen ja innostavan musiikkiteatteriesityksen.</p><p>Esityksen aikana yleisö pääsee laulamaan, loruttelemaan ja liikkumaan yhdessä innokkaan Hinni-Hiiren kanssa. Taitava Hinni osaa soittaa myös poikkihuilua, kannelta sekä satumaisesti soivia rytmisoittimia. Esitys ilostuttaa ja innostaa musiikin pariin.</p><p>Esitys on vähäsanainen ja sopii kaikille, kielestä tai erityistarpeista riippumatta.</p><p>Klo 9.30 esityksessä lauletaan ja lorutellaan suomeksi ja englanniksi<br>Klo 10.30 esityksessä lauletaan ja lorutellaan suomeksi ja ruotsiksi</p><p>Molempia kieliä käytetään tasapuolisesti, eikä niitä tarvitse osata pysyäkseen Hinni-Hiiren matkassa mukana.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Esitykseen ovat tervetulleita kaikki lapsiperheet sekä isommat lapsiryhmät!</p><p>Ikäsuositus: 0–9-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!</p><p>Tuuli Paasolainen, som är bekant från Annegårdens sommarmusiklekis, för med sig en interaktiv och inspirerande musikteaterföreställning till A-scenen på Annegården.</p><p>Under föreställningen kan publiken sjunga, jollra och röra på sig tillsammans med den entusiastiska Musen Hinni. Den skickliga Hinni kan också spela tvärflöjt, kantele och rytminstrument som ljuder sagolikt. Föreställningen gör åhörarna glada och inspirerar till musikens värld.</p><p>Föreställningen har få ord och passar alla, oavsett språk eller särskilda behov.</p><p>Under föreställningen kl. 9.30 sjunger och läser vi ramsor på finska och engelska.<br>Under föreställningen kl. 10.30 sjunger och läser vi ramsor på finska och svenska.</p><p>Båda språken används jämlikt och man behöver inte kunna språken för att hänga med Musen Hinni.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.<br>Alla barnfamiljer och större barngrupper är välkomna till föreställningen!</p><p>Åldersrekommendation: 0–9-åringar<br>Längd: 40 min.<br>Fritt inträde</p><p><b>Tuuli Paasolainens musikupplevelser på A-scenen sommaren 2025:</b></p><p>tis 3.6 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p><p>tis 10.6 kl. 9.30 och 10.30 <br>Sommarmusiklekis</p><p>tis 17.6 kl. 9.30 och 10.30<br>Sommarmusiklekis</p><p>tis 12.8 kl. 10 Sommarmusiklekis</p><p>tis 19.8 kl. 10<br>Sommarmusiklekis</p><p>tis 26.8 kl. 10<br>Sommarmusiklekis</p><p>tis 2.9 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p>", "en": "<p>Come to sing and learn about different instruments together with Hinni the Mouse!</p><p>Tuuli Paasolainen, who hosts the Annantalo Summertime music playschool, brings an interactive and inspiring musical theatre experience to the A-stage in the Annantalo backyard.</p><p>During the performance, the audience will have the chance to sing, rhyme and move together with the energetic Hinni the Mouse. Hinni is very talented and can play the transverse flute, the kantele and percussions that make storybook sounds. The performance will bring joy and introduce children to music.</p><p>There are very few words in the performance, and it is suitable for anyone regardless of their language or special needs.</p><p>Songs and rhymes will be in Finnish and English in the performance at 9.30<br>Songs and rhymes will be in Finnish and Swedish in the performance at 10.30</p><p>Both languages are used equally, and you do not need to know them to be able to follow Hinni the Mouse’s journey.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>All families with children and larger groups of children are welcome!</p><p>Recommended age: 0–9<br>Duration: 40 min.<br>Free entry</p><p><b>Music experiences hosted by Tuuli Paasolainen on the A-stage in summer 2025:</b></p><p>Tue 3 June Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p><p>Tue 10 June at 9.30 and 10.30 <br>Summertime music playschool</p><p>Tue 17 June at 9.30 and 10.30<br>Summertime music playschool</p><p>Tue 12 August at 10 Summertime music playschool</p><p>Tue 19 August at 10.00<br>Summertime music playschool</p><p>Tue 26 August at 10.00<br>Summertime music playschool</p><p>Tue 2 September Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65817/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65816", "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/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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 613506, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T13:13:10.020122Z", "last_modified_time": "2025-04-25T13:13:10.020139Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767557.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613506/?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-04-25T13:13:09.943646Z", "last_modified_time": "2025-05-14T08:13:32.636457Z", "date_published": null, "start_time": "2025-06-03T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – Musiikkiteatteriesitys kaikenkielisille lapsille", "sv": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – För barn på alla språk", "en": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – Suitable for children of all languages" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!", "sv": "Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!", "en": "Come to sing and learn about different instruments together with Hinni the Mouse!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_", "sv": "http://www.annantalo.fi/sv/evenemang/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_", "en": "http://www.annantalo.fi/en/events/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_" }, "description": { "fi": "<p>Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!</p><p>Annantalon Kesämuskareista tuttu Tuuli Paasolainen tuo Annantalon takapihan A-lavalle interaktiivisen ja innostavan musiikkiteatteriesityksen.</p><p>Esityksen aikana yleisö pääsee laulamaan, loruttelemaan ja liikkumaan yhdessä innokkaan Hinni-Hiiren kanssa. Taitava Hinni osaa soittaa myös poikkihuilua, kannelta sekä satumaisesti soivia rytmisoittimia. Esitys ilostuttaa ja innostaa musiikin pariin.</p><p>Esitys on vähäsanainen ja sopii kaikille, kielestä tai erityistarpeista riippumatta.</p><p>Klo 9.30 esityksessä lauletaan ja lorutellaan suomeksi ja englanniksi<br>Klo 10.30 esityksessä lauletaan ja lorutellaan suomeksi ja ruotsiksi</p><p>Molempia kieliä käytetään tasapuolisesti, eikä niitä tarvitse osata pysyäkseen Hinni-Hiiren matkassa mukana.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Esitykseen ovat tervetulleita kaikki lapsiperheet sekä isommat lapsiryhmät!</p><p>Ikäsuositus: 0–9-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!</p><p>Tuuli Paasolainen, som är bekant från Annegårdens sommarmusiklekis, för med sig en interaktiv och inspirerande musikteaterföreställning till A-scenen på Annegården.</p><p>Under föreställningen kan publiken sjunga, jollra och röra på sig tillsammans med den entusiastiska Musen Hinni. Den skickliga Hinni kan också spela tvärflöjt, kantele och rytminstrument som ljuder sagolikt. Föreställningen gör åhörarna glada och inspirerar till musikens värld.</p><p>Föreställningen har få ord och passar alla, oavsett språk eller särskilda behov.</p><p>Under föreställningen kl. 9.30 sjunger och läser vi ramsor på finska och engelska.<br>Under föreställningen kl. 10.30 sjunger och läser vi ramsor på finska och svenska.</p><p>Båda språken används jämlikt och man behöver inte kunna språken för att hänga med Musen Hinni.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Alla barnfamiljer och större barngrupper är välkomna till föreställningen!</p><p>Åldersrekommendation: 0–9-åringar<br>Längd: 40 min.<br>Fritt inträde</p><p>**</p><p><b>Tuuli Paasolainens musikupplevelser på A-scenen sommaren 2025:</b></p><p>juni:</p><p>tis 3.6 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p><p>tis 10.6 kl. 9.30 och 10.30 <br>Sommarmusiklekis</p><p>tis 17.6 kl. 9.30 och 10.30<br>Sommarmusiklekis</p><p>augusti-september:</p><p>tis 12.8 kl. 10 Sommarmusiklekis</p><p>tis 19.8 kl. 10<br>Sommarmusiklekis</p><p>tis 26.8 kl. 10<br>Sommarmusiklekis</p><p>tis 2.9 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p>", "en": "<p>Come to sing and learn about different instruments together with Hinni the Mouse!</p><p>Tuuli Paasolainen, who hosts the Annantalo Summertime music playschool, brings an interactive and inspiring musical theatre experience to the A-stage in the Annantalo backyard.</p><p>During the performance, the audience will have the chance to sing, rhyme and move together with the energetic Hinni the Mouse. Hinni is very talented and can play the transverse flute, the kantele and percussions that make storybook sounds. The performance will bring joy and introduce children to music.</p><p>There are very few words in the performance, and it is suitable for anyone regardless of their language or special needs.</p><p>Songs and rhymes will be in Finnish and English in the performance at 9.30<br>Songs and rhymes will be in Finnish and Swedish in the performance at 10.30</p><p>Both languages are used equally, and you do not need to know them to be able to follow Hinni the Mouse’s journey.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>All families with children and larger groups of children are welcome!</p><p>Recommended age: 0–9<br>Duration: 40 min.<br>Free entry</p><p>**</p><p><b>Music experiences hosted by Tuuli Paasolainen on the A-stage in summer 2025:</b></p><p>June:</p><p>Tue 3 June Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p><p>Tue 10 June at 9.30 and 10.30 <br>Summertime music playschool</p><p>Tue 17 June at 9.30 and 10.30<br>Summertime music playschool</p><p>August–September:</p><p>Tue 12 August at 10 Summertime music playschool</p><p>Tue 19 August at 10.00<br>Summertime music playschool</p><p>Tue 26 August at 10.00<br>Summertime music playschool</p><p>Tue 2 September Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65816/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66203", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 699448, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-06T12:13:57.016556Z", "last_modified_time": "2025-05-06T12:13:57.016574Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767281.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/699448/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-06T12:13:56.911904Z", "last_modified_time": "2025-05-13T14:14:08.821897Z", "date_published": null, "start_time": "2025-05-30T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Helsingin Balalaikkaorkesteri – Open Stage", "sv": "Helsingin Balalaikkaorkesteri – Open Stage", "en": "Helsinki Balalaika Orchestra – Open Stage" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Helsingin Balalaikkaorkesteri on maailman toiseksi vanhin venäläisiä kansansoittimia soittava orkesteri.", "sv": "Helsingin Balalaikkaorkesteri är världens näst äldsta orkester som spelar ryska folkinstrument.", "en": "Helsinki Balalaika Orchestra is the world’s second oldest orchestra playing the Russian folk instruments, founded back in 1910." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/89CAD91ECA57F585AE245EF55B33E12C/Helsingin_Balalaikkaorkesteri", "sv": "http://www.espanlava.fi/sv/evenemang/event/89CAD91ECA57F585AE245EF55B33E12C/Helsingin_Balalaikkaorkesteri", "en": "http://www.espanlava.fi/en/events/event/89CAD91ECA57F585AE245EF55B33E12C/Helsinki_Balalaika_Orchestra" }, "description": { "fi": "<p>Helsingin Balalaikkaorkesteri on maailman toiseksi vanhin venäläisiä kansansoittimia soittava orkesteri.</p><p>Orkesteri on perustettu vuonna jo vuonna 1910. Orkesterin ohjelmistossa on lauluja eri maista, ja Espalla kuullaan esimerkiksi mustalaissävelmiä, ukrainalaisia kappaleita ja mahdollisesti jopa lattarirytmejä.</p><p>Orkesteria johtaa Gennadi Klykov ja laulusolistina toimii Heli Jormanainen.</p>", "sv": "<p>Helsingin Balalaikkaorkesteri är världens näst äldsta orkester som spelar ryska folkinstrument.</p><p>Orkestern grundades redan 1910. I orkesterns program finns sånger från olika länder, och på Esplanadestraden får man lyssna på till exempel romska melodier, ukrainska låtar och eventuellt rentav latinorytmer.</p><p>Gennadi Klykov leder orkestern och Heli Jormanainen är sångsolist.</p>", "en": "<p>Helsinki Balalaika Orchestra is the world’s second oldest orchestra playing the Russian folk instruments, founded back in 1910.</p><p>The orchestra’s repertoire features songs from different countries, bringing Roma songs, Ukrainian compositions and maybe even Latin rhythms to the Espa Stage.</p><p>The orchestra’s conductor is Gennadi Klykov and the soloist is Heli Jormanainen.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66203/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66199", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 699444, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-06T12:13:55.345437Z", "last_modified_time": "2025-05-06T12:13:55.345455Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764996.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/699444/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-06T12:13:55.239925Z", "last_modified_time": "2025-05-13T14:14:08.102090Z", "date_published": null, "start_time": "2025-05-28T11:00:00Z", "end_time": "2025-05-28T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sibelius-lukion bändimaraton", "sv": "Sibelius-lukios bandmaraton", "en": "Sibelius-lukio Upper Secondary School’s band marathon" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Perinteisessä Sibelius-lukion Espan lavan bändimaratonissa esiintyy yli 50 koulun bändiä.", "sv": "I Sibelius-lukios traditionella bandmaraton på Esplanadestraden uppträder över 50 skolband.", "en": "The traditional band marathon by the Sibelius-lukio Upper Secondary School presents more than 50 school bands." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DB57B9E368C03FFE68C5A5EC1276DF82/Sibelius-lukion_bandimaraton", "sv": "http://www.espanlava.fi/sv/evenemang/event/DB57B9E368C03FFE68C5A5EC1276DF82/Sibelius-lukios_bandmaraton", "en": "http://www.espanlava.fi/en/events/event/DB57B9E368C03FFE68C5A5EC1276DF82/Sibelius-lukio_Upper_Secondary_School_s_band_marathon" }, "description": { "fi": "<p>Perinteisessä Sibelius-lukion Espan lavan bändimaratonissa esiintyy yli 50 koulun bändiä.</p><p>Musiikkia kuullaan mambosta metalliin ja popista punkkiin. Tule ja hämmästy lahjakkaiden esiintyjien taitoa ja energiaa!</p>", "sv": "<p>I Sibelius-lukios traditionella bandmaraton på Esplanadestraden uppträder över 50 skolband.</p><p>Man kan lyssna på allt från mambo till metall och från pop till punk. Kom med för att häpna över kunnigheten och energin hos talangfulla uppträdare!</p>", "en": "<p>The traditional band marathon by the Sibelius-lukio Upper Secondary School presents more than 50 school bands.</p><p>They’re playing music from mambo to metal and from pop to punk. Prepare to be amazed by the skill and energy of these talented performers!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66199/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66194", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 691745, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T13:13:45.517124Z", "last_modified_time": "2025-05-05T13:13:45.517144Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764953.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691745/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-05T13:13:45.448821Z", "last_modified_time": "2025-05-13T14:14:07.693728Z", "date_published": null, "start_time": "2025-05-27T09:00:00Z", "end_time": "2025-05-27T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kruununhaan yläasteen musiikkiluokat soi!", "sv": "Musikklasserna vid Högstadieskolan Kruununhaan yläasteen koulu klingar!", "en": "Kruununhaka Lower Secondary School’s music classes take the stage!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kruununhaan yläasteen musiikkiluokkien perinteisessä Espan lavan konsertissa esiintyy kokoonpanoja luokkayhtyeistä bändikerhoihin.", "sv": "Sammansättningar med allt från klassgrupper till bandklubbar uppträder i den traditionella konserten på Esplanadestraden som arrangeras av musikklasserna vid Högstadieskolan Kruunuhaan yläasteen koulu.", "en": "The traditional Espa Stage concert of the Kruununhaka Lower Secondary School’s music classes features different ensembles from class bands to band clubs." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D3570EC838270E3998A443D555BC08F7/Kruununhaan_ylaasteen_musiikkiluokat_soi_", "sv": "http://www.espanlava.fi/sv/evenemang/event/D3570EC838270E3998A443D555BC08F7/Musikklasserna_vid_Hogstadieskolan_Kruununhaan_ylaasteen_koulu_klingar_", "en": "http://www.espanlava.fi/en/events/event/D3570EC838270E3998A443D555BC08F7/Kruununhaka_Lower_Secondary_School_s_music_classes_take_the_stage_" }, "description": { "fi": "<p>Kruununhaan yläasteen musiikkiluokkien perinteisessä Espan lavan konsertissa esiintyy kokoonpanoja luokkayhtyeistä bändikerhoihin.</p>", "sv": "<p>Sammansättningar med allt från klassgrupper till bandklubbar uppträder i den traditionella konserten på Esplanadestraden som arrangeras av musikklasserna vid Högstadieskolan Kruunuhaan yläasteen koulu.</p>", "en": "<p>The traditional Espa Stage concert of the Kruununhaka Lower Secondary School’s music classes features different ensembles from class bands to band clubs.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66194/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65296", "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: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/zapiski-sumasshedsikh-3799260/", "sv": "https://www.lippu.fi/artist/savoy-teatteri/zapiski-sumasshedsikh-3799260/", "en": "https://www.lippu.fi/artist/savoy-teatteri/zapiski-sumasshedsikh-3799260/" }, "description": null, "price": { "fi": "48-129 €", "sv": "48-129 €", "en": "48-129 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-16T15:14:14.433548Z", "last_modified_time": "2024-12-16T15:14:14.433566Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764262.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153467/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-16T15:14:14.364668Z", "last_modified_time": "2025-05-13T14:14:04.719529Z", "date_published": null, "start_time": "2025-05-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "DIARY of Madmen / Zapiski sumasshédšikh – Loppuunmyyty! / Sold out!", "sv": "DIARY of Madmen / Zapiski sumasshédšikh – Slutsåld", "en": "DIARY of Madmen / Zapiski sumasshédšikh – Sold out!" }, "location_extra_info": null, "provider": { "fi": "Aftersunset Oy", "sv": "Aftersunset Oy", "en": "Aftersunset Oy" }, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9F4F227FEA25A6C790B14363FEC180C0/DIARY_of_Madmen_Zapiski_sumassh_d_ikh", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9F4F227FEA25A6C790B14363FEC180C0/DIARY_of_Madmen_Zapiski_sumassh_d_ikh", "en": "http://www.savoyteatteri.fi/en/events/event/9F4F227FEA25A6C790B14363FEC180C0/DIARY_of_Madmen_Zapiski_sumassh_d_ikh" }, "description": { "fi": "<p>DIARY of Madmen on Dmitry Krymovin uusi esitys, jossa esiintyvät menestyneet näyttelijät Chulpan Khamatova ja Maxim Sukhanov. Tämä on ohjaaja-taitelija Krymovin ensimmäinen esitys venäjäksi, ja se on sovitettu maanpaossa. Khamatova ja Sukhanov esiintyivät yhdessä melkein 30 vuotta sitten Valery Todorovskyn elokuvassa The Land of the Deaf.</p><p>Krymovin työt tunnetaan niiden erityisestä luovasta, eri tyylejä ja genrejä sekoittavasta kielestä. Uusi tuotanto perustuu hänen omaan tekstiinsä, joka on unenomainen kertomus ihmisistä tuuliajolla ajassa ja avaruudessa. DIARY of Madmenin päähenkilöinä on kaksi hahmoa, jotka joutuvat tahtomattaan uusiin ja haastaviin elämäntilanteisiin. He etsivät tarkoitustaan vieraassa maassa, kun heidän entiset elämänsä keskeytetään.</p><p>Esityksessä mukana<br>Rooleissa: Chulpan Khamatova ja Maxim Sukhanov<br>Konsepti: sovitus ja ohjaus: Dmitry Krymov<br>Lavastus: Dmitry Krymov ja Pyotr Voznesensky<br>Videosuunnittelu: Pyotr Voznesensky<br>Pukusuunnittelu: Tatyana Dolmatovskaya<br>Valaistussuunnittelu: Oskar Paulinsh<br>Koreografia: Anna Abalikhina<br>Ohjaaja ja tuottaja: Inna Krymova</p><p>Ovet aukeavat: 18.00<br>Näytös alkaa: 19.00</p><p>Kesto: 1 tunti 40 minuuttia, ei väliaikaa</p><p>Ikäsuositus: 12</p><p>Kieli: venäjä, ei tekstitystä</p>", "sv": "<p>DIARY of Madmen (”Galningarnas dagbok”) är en ny föreställning av Dmitrij Krymov med de kända skådespelarna Tjulpan Chamatova och Maksim Suchanov i spetsen. Det här är regissören och konstnären Krymovs första föreställning på ryska, iscensatt i exil, och den är skådeplats för återföreningen av Chamatova och Suchanov, som senast framträdde tillsammans för nästan 30 år sedan i Valerij Todorovskijs film The Land of the Deaf (”De dövas land”).</p><p>Krymovs verk är kända för sitt särpräglade kreativa språk, där olika stilar och genrer blandas. I den här nya produktionen utgår han från sin egen text – en fantasmagorisk berättelse om människor på drift i tid och rum. Huvudpersonerna i DIARY of Madmen är två personer som tvingas in i nya och utmanande livsomständigheter och som söker mening i ett främmande land efter att deras etablerade liv har rubbats.</p><p>Bakom föreställningen<br>I rollerna: Tjulpan Chamatova och Maksim Suchanov<br>Koncept: Bearbetning och regi Dmitrij Krymov<br>Scenografi: Dmitrij Krymov och Pjotr Voznesenskij<br>Videodesign: Pjotr Voznesenskij<br>Kostymdesign: Tatjana Dolmatovskaja<br>Ljusdesign: Oskar Paulinsj<br>Koreografi: Anna Abalichina<br>Regissörens producent: Inna Krymova</p><p>Dörrarna öppnas: 18.00<br>Föreställningen börjar: 19.00</p><p>Längd: 1 tim. och 40 min., utan paus</p><p>Rekommenderad åldersgräns: 12+</p><p>Språk: Ryska, inga undertexter</p>", "en": "<p>DIARY of Madmen is a new performance by Dmitry Krymov, featuring renowned actors Chulpan Khamatova and Maxim Sukhanov. This is the first performance by director and artist Krymov in Russian, staged in exile, and marks the reunion of Khamatova and Sukhanov, who last appeared together almost 30 years ago in Valery Todorovsky's film The Land of the Deaf.</p><p>Krymov's works are known for their distinctive creative language, blending various styles and genres. In this new production, he draws upon his own text—a phantasmagoric story about people adrift in space and time. The protagonists of DIARY of Madmen are two individuals forced into new and challenging life circumstances, seeking purpose in a foreign land after their established lives have been disrupted.</p><p>The performance features<br>Cast: Chulpan Khamatova and Maxim Sukhanov<br>Concept: Adaptation and Director Dmitry Krymov<br>Set Design: Dmitry Krymov and Pyotr Voznesensky<br>Video Design: Pyotr Voznesensky<br>Costume Design: Tatyana Dolmatovskaya<br>Lighting Design: Oskar Paulinsh<br>Choreography: Anna Abalikhina<br>Director’s Producer: Inna Krymova</p><p>Doors open: 6:00 PM <br>Showtime: 7:00 PM</p><p>Duration: 1 hour 40 minutes, no intermission</p><p>Age limit recommendation: 12+</p><p>Language: Russian, no subtitles</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65296/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66192", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 691744, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T13:13:44.934572Z", "last_modified_time": "2025-05-05T13:13:44.934591Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759426.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691744/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-05T13:13:44.855257Z", "last_modified_time": "2025-05-13T13:14:09.998819Z", "date_published": null, "start_time": "2025-05-24T08:00:00Z", "end_time": "2025-05-24T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Big Band Marathon", "sv": "Big Band Marathon", "en": "Big Band Marathon" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Varma lähestyvän kesän merkki on jo perinteeksi muodostunut Espan Big Band Marathon!", "sv": "Espan Big Band Marathon, som redan blivit en tradition, är ett garanterat tecken på att sommaren är på kommande!", "en": "Espa’s traditional Big Band Marathon is a sure sign of the approaching summer!" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon", "sv": "http://www.espanlava.fi/sv/evenemang/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon", "en": "http://www.espanlava.fi/en/events/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon" }, "description": { "fi": "<p>Varma lähestyvän kesän merkki on jo perinteeksi muodostunut Espan Big Band Marathon!</p><p>Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin. Tule viettämään kesäistä lauantaita yhdessä suurten jazzorkesterien kanssa!</p><p><b>Aikataulu:</b><br>klo 11 Vaskivuori Big Band<br>klo 12 PJK Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Reunion Big Band<br>klo 15 Ladies First Big Band</p>", "sv": "<p>Espan Big Band Marathon, som redan blivit en tradition, är ett garanterat tecken på att sommaren är på kommande!</p><p>Fem underbara grupper framför ett mångsidigt sortiment av Big band-musik, allt från groovande sommarhittar till traditionella Big band-kompositioner. Kom med och tillbringa sommarlördagen tillsammans med de stora jazzorkestrarna!</p><p><b>Tidtabell:</b><br>kl. 11 Vaskivuori Big Band<br>kl. 12 PJK Big Band<br>kl. 13 Ebeli Big Band<br>kl. 14 Reunion Big Band<br>kl. 15 Ladies First Big Band</p>", "en": "<p>Espa’s traditional Big Band Marathon is a sure sign of the approaching summer!</p><p>The five amazing bands present a diverse offering of big band music, from groovy summer hits to more traditional big band compositions.</p><p>Enjoy your summer Saturday together with these big jazz orchestras!</p><p><b>Schedule:</b><br>11:00 Vaskivuori Big Band<br>12:00 PJK Big Band<br>13:00 Ebeli Big Band<br>14:00 Reunion Big Band<br>15:00 Ladies First Big Band</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66192/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66191", "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:29/?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: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:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 691743, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T13:13:44.561416Z", "last_modified_time": "2025-05-05T13:13:44.561441Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764972.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-05T13:13:44.488017Z", "last_modified_time": "2025-05-13T13:14:09.770428Z", "date_published": null, "start_time": "2025-05-23T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikkikoulu Demo esittää: Musiikkia Valkokankaalta", "sv": "Musiikkikoulu Demo framför: Filmduksmusik (Musiikkia Valkokankaalta)", "en": "Music School Demo presents: Music from the big screen" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Musiikkikoulu Demon oppilaat esittävät keväisessä konsertissa rakastettuja elokuvabiisejä.", "sv": "På vårkonserten uppträder elever från Musiikkikoulu Demo med kära filmlåtar.", "en": "Students of the Music School Demo perform popular film songs in their spring concert." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Musiikkikoulu_Demo_esittaa_Musiikkia_Valkokankaalta", "sv": "http://www.espanlava.fi/sv/evenemang/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Musiikkikoulu_Demo_framfor_Filmduksmusik_Musiikkia_Valkokankaalta_", "en": "http://www.espanlava.fi/en/events/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Music_School_Demo_presents_Music_from_the_big_screen" }, "description": { "fi": "<p>Musiikkikoulu Demon oppilaat esittävät keväisessä konsertissa rakastettuja elokuvabiisejä.</p><p>Lavalla nähdään laaja kattaus eri-ikäisiä musiikin harrastajia ja eri instrumentteja.</p><p>Tervetuloa kuuntelemaan!</p>", "sv": "<p>På vårkonserten uppträder elever från Musiikkikoulu Demo med kära filmlåtar.</p><p>På estraden ses ett brett sortiment musikhobbyister i olika åldrar och med olika instrument.</p><p>Välkommen för att lyssna!</p>", "en": "<p>Students of the Music School Demo perform popular film songs in their spring concert.</p><p>The concert will fill the stage with a wide range of music enthusiasts of different ages and their different instruments.</p><p>Come and enjoy!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66191/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66190", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 691742, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T13:13:44.240926Z", "last_modified_time": "2025-05-05T13:13:44.240945Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764940.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691742/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-05T13:13:44.144972Z", "last_modified_time": "2025-05-13T13:14:09.589645Z", "date_published": null, "start_time": "2025-05-23T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "MIL-Espa: Ilmavoimien Big Band", "sv": "MIL-Espa: Flygvapnets Big Band", "en": "MIL-Espa: Air Force Big Band" }, "location_extra_info": null, "provider": 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/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Ilmavoimien_Big_Band", "sv": "http://www.espanlava.fi/sv/evenemang/event/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Flygvapnets_Big_Band", "en": "http://www.espanlava.fi/en/events/event/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Air_Force_Big_Band" }, "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-Espan konserttia edeltää usein vartioparaati, joka käynnistyy Senaatintorilta kello 12.30.</p><p>MIL-Espa-puistokonsertteja on järjestetty vuodesta 1927 lähtien Esplanadin puistossa.</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-konserten föregås ofta av en vaktparad som börjar på Senatstorget kl. 12.30.</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>The MIL-Espa concert is often preceded by a guard parade starting from the Senate Square at 12:30.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66190/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }