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/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=22
{ "meta": { "count": 32396, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=23", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=21" }, "data": [ { "id": "kulke:68457", "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: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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1823472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-17T08:13:28.250612Z", "last_modified_time": "2026-04-17T08:13:28.250632Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789685.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-04-17T08:13:28.152359Z", "last_modified_time": "2026-04-22T14:13:54.809937Z", "date_published": null, "start_time": "2026-06-01", "end_time": "2026-06-05", "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, "provider": null, "short_description": { "fi": "Kesäisellä taideleirillä suuntaamme katseen monilajiseen kaupunkiluontoon ja myös sen ei-inhimillisiin toimijoihin." }, "description": { "fi": "<p>Kesäisellä taideleirillä suuntaamme katseen monilajiseen kaupunkiluontoon ja myös sen ei-inhimillisiin toimijoihin.</p><p>Retkeilemme ja keskitymme tutkimaan eliökunnassa tapahtuvia muodonmuutoksia: miten kotelosta kuoriutuu kiitäjä ja siemen itää puuksi. Kierrätyspahvi ja eri luonnonmateriaalit rakentuvat pienten eliöiden asumuksiksi.</p><p>Teemme muodonmuutoksia kuvaavia animaatioita luonnonmateriaaleilla, piirrämme, maalaamme ja rakentelemme. Kokeilemme myös miten oman kehon voi kuvitella muuttuvan osittain toiseksi lajiksi. Työskentelemme Stoan taideluokassa ja aukiolla, teemme retkiä lähiluontoon sekä yhden pidemmän retken yhteen kaupungin merellisistä luontokohteista.</p><p>Leirin ohjaaja: kuvataideopettaja Heli Keto <br>Kieli: suomi ja englanti<br>Paikka: terraario-luokka, Stoan aukio ja lähimetsät</p><p>Stoa tarjoaa viiden päivän mittaisia maksuttomia taideleirejä koululaisille kesäkuun ensimmäisen viikon aikana. Leirille osallistuja sitoutuu kaikkiin viiteen leiripäivään. Leiriläiset tuovat mukanaan omat eväät ja säänmukaiset varusteet.</p><p>Paikka: Stoa: Turunlinnantie 1, Itäkeskus ja erilaisia retkikohteita</p><p>Lisätiedot: hanna.westerholm@hel.fi</p><p>Ilmoittautumiset: www.stoa.fi kunkin tapahtuman kohdalta Ilmoittaudu-palkista ma 4.5. klo 10 alkaen</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E651A2D53944AE93A65DCF0B0C6506BD/Muodonmuutoksia_eliokunnassa_-taideleiri_10_12-vuotiaille_", "sv": "http://www.stoa.fi/sv/evenemang/event/E651A2D53944AE93A65DCF0B0C6506BD/Muodonmuutoksia_eliokunnassa_-taideleiri_10_12-vuotiaille_", "en": "http://www.stoa.fi/en/events/event/E651A2D53944AE93A65DCF0B0C6506BD/Muodonmuutoksia_eliokunnassa_-taideleiri_10_12-vuotiaille_" }, "name": { "fi": "Muodonmuutoksia eliökunnassa -taideleiri 10–12-vuotiaille – ma 1.6.-pe 5.6. klo 9.30–14", "sv": "Muodonmuutoksia eliökunnassa -taideleiri 10–12-vuotiaille", "en": "Muodonmuutoksia eliökunnassa -taideleiri 10–12-vuotiaille" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68457/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68458", "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: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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1823575, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-17T09:13:33.373282Z", "last_modified_time": "2026-04-17T09:13:33.373305Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789690.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823575/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-04-17T09:13:33.228956Z", "last_modified_time": "2026-04-22T14:13:54.612613Z", "date_published": null, "start_time": "2026-06-01", "end_time": "2026-06-05", "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, "provider": null, "short_description": { "fi": "Kesäsirkusleirillä vahvistetaan monipuolisesti sirkustaitoja, kehon hallintaa ja itsevarmuutta - ja tehdään se kukin omalla tyylillämme!" }, "description": { "fi": "<p>Kesäsirkusleirillä vahvistetaan monipuolisesti sirkustaitoja, kehon hallintaa ja itsevarmuutta - ja tehdään se kukin omalla tyylillämme!</p><p>Viikon aikana tehdään harjoituksia tasapainoilusta akrobatiaan, jongleeraukseen ja klovneriaan. Tavoitteena on rakentaa vahva pohja sirkustaidoille ja -tekniikoille, ja kannustaa luovaan ilmaisuun.</p><p>Aiempaa kokemusta ei tarvita, ainoastaan vaatteet, joissa on mukava liikkua sekä reilusti uteliaisuutta. Sirkusleirillä liikutaan ja leikitään myös ulkona hyvän sään salliessa.</p><p>Ohjaaja, sirkusopettaja: Enrique Salas<br>Kielet: englanti, suomi ja espanja<br>Paikka: musiikkisali ja Stoan aukio</p><p>Stoa tarjoaa viiden päivän mittaisia maksuttomia taideleirejä koululaisille kesäkuun ensimmäisen viikon aikana. Leirille osallistuja sitoutuu kaikkiin viiteen leiripäivään. Leiriläiset tuovat mukanaan omat eväät ja säänmukaiset varusteet.</p><p>Paikka: Stoa: Turunlinnantie 1, Itäkeskus ja erilaisia retkikohteita</p><p>Lisätiedot: hanna.westerholm@hel.fi</p><p>Ilmoittautumiset: www.stoa.fi kunkin tapahtuman kohdalta Ilmoittaudu-palkista ma 4.5. klo 10 alkaen</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7B005F6ABD56F3DDE4E4E116A17B32C4/Sirkuksen_kesakurssit_koululaisille_Summer_Circus_at_Stoa", "sv": "http://www.stoa.fi/sv/evenemang/event/7B005F6ABD56F3DDE4E4E116A17B32C4/Sirkuksen_kesakurssit_koululaisille_Summer_Circus_at_Stoa", "en": "http://www.stoa.fi/en/events/event/7B005F6ABD56F3DDE4E4E116A17B32C4/Sirkuksen_kesakurssit_koululaisille_Summer_Circus_at_Stoa" }, "name": { "fi": "Sirkuksen kesäkurssit koululaisille / Summer Circus at Stoa – ma 1.6.-pe 5.6. klo 9.30–11.30 (7–9-vuotiaat)", "sv": "Sirkuksen kesäkurssit koululaisille / Summer Circus at Stoa", "en": "Sirkuksen kesäkurssit koululaisille / Summer Circus at Stoa" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68458/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68456", "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: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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1823471, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-17T08:13:27.885875Z", "last_modified_time": "2026-04-17T08:13:27.885890Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789680.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823471/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-04-17T08:13:27.574776Z", "last_modified_time": "2026-04-22T14:13:54.407710Z", "date_published": null, "start_time": "2026-06-01", "end_time": "2026-06-05", "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, "provider": null, "short_description": { "fi": "Kesäleirillä sukelletaan kaupunkiluontoon siveltimet kainalossa ja tarkastellaan jälkiä olleesta tai merkkejä tulevasta." }, "description": { "fi": "<p>Kesäleirillä sukelletaan kaupunkiluontoon siveltimet kainalossa ja tarkastellaan jälkiä olleesta tai merkkejä tulevasta.</p><p>Retkeillään katsomaan maisemia korkealle ja pystytetään kerran jos toisenkin ateljee poutapilven alle. Kurkistellaan tarinoita korsien lomasta ja valmistetaan itse ihmeellistä maalia. Rakennetaan puuhun pikkuruinen pesä ja tehdään paperia pino - niin alkaa hyvä kesä!</p><p>Kurssilla liikutaan luonnossa ja työskennellään myös sisätiloissa monenlaisten taidetehtävien parissa. Jos pidät luovasta puuhasta ja omaat hieman seikkailumieltä, sopii tämä kurssi sinulle täydellisesti.</p><p>Leirin ohjaaja: taideopettaja Jenni Vilander</p><p>Kieli: suomi ja englanti</p><p>Paikka: kerhohuone, Stoan aukio ja lähimetsät</p><p>Stoa tarjoaa viiden päivän mittaisia maksuttomia taideleirejä koululaisille kesäkuun ensimmäisen viikon aikana. Leirille osallistuja sitoutuu kaikkiin viiteen leiripäivään. Leiriläiset tuovat mukanaan omat eväät ja säänmukaiset varusteet.</p><p>Paikka: Stoa: Turunlinnantie 1, Itäkeskus ja erilaisia retkikohteita</p><p>Lisätiedot: hanna.westerholm@hel.fi</p><p>Ilmoittautumiset: www.stoa.fi kunkin tapahtuman kohdalta Ilmoittaudu-palkista ma 4.5.. klo 10 alkaen</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BA0947F26BEA1EC383C450A55E6F18C6/Jaljilla_-taideleiri_7_9-vuotiaille", "sv": "http://www.stoa.fi/sv/evenemang/event/BA0947F26BEA1EC383C450A55E6F18C6/Jaljilla_-taideleiri_7_9-vuotiaille", "en": "http://www.stoa.fi/en/events/event/BA0947F26BEA1EC383C450A55E6F18C6/Jaljilla_-taideleiri_7_9-vuotiaille" }, "name": { "fi": "Jäljillä -taideleiri 7–9-vuotiaille – ma 1.6.-pe 5.6. klo 9.30–14", "sv": "Jäljillä -taideleiri 7–9-vuotiaille", "en": "Jäljillä -taideleiri 7–9-vuotiaille" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68456/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67226", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494837, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T10:13:10.314884Z", "last_modified_time": "2026-02-10T10:13:10.314897Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779655.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494837/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T10:13:10.172505Z", "last_modified_time": "2026-04-22T14:13:54.037659Z", "date_published": null, "start_time": "2026-05-29", "end_time": "2026-06-26", "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, "provider": null, "short_description": { "fi": "Habit Bodies on kahden tekijän taiteellinen hanke, joka tutkii kehollisten historioiden, sukupuolen ja paikan välisiä suhteita.", "sv": "Habit Bodies är ett konstnärligt projekt av två personer som utforskar förhållandet mellan förkroppsligade berättelser, kön och plats.", "en": "Habit bodies is a two-person artistic project exploring the relationship between embodied histories, gender, and place." }, "description": { "fi": "<p>Habit Bodies on kahden tekijän taiteellinen hanke, joka tutkii kehollisten historioiden, sukupuolen ja paikan välisiä suhteita.</p><p>Laura Hasanen (USA/FI) ja Zara Asgher (PK) ovat Helsingissä työskenteleviä kuvataiteilijoita ja taidekasvattajia. Taiteilijat ovat tehneet yhteistyötä duona vuodesta 2022 lähtien. Hasanen ja Asgher työskentelevät videoperformanssin, tekstin ja installaation parissa. Heidän työskentelynsä käsittelee sukupuolen, seksuaalisuuden ja vallan välistä suhdetta.</p><p>Habit Bodies tarkastelee kehollisten historioiden, sukupuolen ja paikan välistä suhdetta. Teos keskittyy kitkaan, joka syntyy, kun sukupuolittuneita käyttäytymismalleja haastetaan tai vastustetaan. Näiden normien rikkominen voi tuntua siltä kuin törmäisi seinään—armottomaan ja syvälle juurtuneeseen esteeseen, joka paljastaa tottumusten ja opittujen olemisen tapojen syvyyden.</p><p>Habit Bodies käyttää perhettä viitekehyksenä näiden kitkakohtien tarkasteluun. Taiteilijat tutkivat eleitä, kehonkieltä ja tarinankerrontaa keinoina ymmärtää, miten nämä kohdat ovat muokanneet heidän suhdettaan sukupuoleen ja paikkaan. Teos kertoo perheen odotuksista ja kiusallisista epäonnistumisista. Kaksi kehoa yrittää kiemurrella, väistää, torjua ja jopa mukautua korjaavien eleiden toistoon, pyrkien suoristamaan kömpelöä olemustaan.</p><p>Näyttelyyn järjestetään viittomakielinen opastus suomeksi la 6.6.2025 klo 13–14.</p>", "sv": "<p>Habit Bodies är ett konstnärligt projekt av två personer som utforskar förhållandet mellan förkroppsligade berättelser, kön och plats.</p><p>Laura Hasanen (USA/FI) och Zara Asgher (PK) är Helsingforsbaserade bildkonstnärer och konstpedagoger. Konstnärerna har samarbetat som duo sedan 2022. Hasanen och Asgher arbetar med videoperformance, text och installation. Deras praktik behandlar relationen mellan kön, sexualitet och makt.</p><p>Habit Bodies undersöker relationen mellan förkroppsligade historier, kön och plats. Verket fokuserar på den friktion som uppstår när könade beteendemönster utmanas eller motstås. Försöket att bryta mot dessa normer kan kännas som att stöta emot en vägg—obarmhärtig och djupt rotad, en barriär som blottlägger djupet i invanda och betingade sätt att vara.</p><p>Habit Bodies använder familjen som en ram för att utforska dessa friktionspunkter. Konstnärerna undersöker gester, kroppsspråk och berättande som sätt att förstå hur dessa punkter har format deras relation till kön och plats. Verket berättar om familjens förväntningar och obekväma misslyckanden. Två kroppar försöker slingra sig runt, undvika, avvisa och till och med anpassa sig till en upprepning av korrigerande gester, i ett försök att räta upp sin klumpiga närvaro.</p>", "en": "<p>Habit bodies is a two-person artistic project exploring the relationship between embodied histories, gender, and place.</p><p>Laura Hasanen (USA/FI) and Zara Asgher (PK) are Helsinki-based visual artists and art educators. The artists have been collaborating as a duo since 2022. Hasanen and Asgher work across video performance, text, and installation. Their practice addresses the relationship between gender, sexuality and power.</p><p>Habit Bodies navigates the relationship between embodied histories, gender, and place. The work focuses on the friction that emerges when gendered behavioral patterns are challenged or resisted. The effort to disrupt these norms can feel like coming up against a wall—unrelenting and deeply rooted, a barrier that reveals the depth of habitual and conditioned ways of being.</p><p>Habit Bodies uses family as a framework to explore these points of friction. The artists explore gesture, body language, and storytelling as ways of understanding how these points have shaped their relationship to gender and place. The piece tells the story of family expectations and awkward failures. Two bodies attempt to wiggle around, avoid, reject, and even conform to a repetition of corrective gestures, attempting to straighten their clumsy presence.</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/0EE0B91B61A6D8C707237F2F771DEE8B/Habit_Bodies", "sv": "http://www.caisa.fi/sv/evenemang/event/0EE0B91B61A6D8C707237F2F771DEE8B/Habit_Bodies", "en": "http://www.caisa.fi/en/events/event/0EE0B91B61A6D8C707237F2F771DEE8B/Habit_Bodies" }, "name": { "fi": "Habit Bodies – Zara Asgher & Laura Hasanen", "sv": "Habit Bodies – Zara Asgher & Laura Hasanen", "en": "Habit Bodies – Zara Asgher & Laura Hasanen" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3lfe7su", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824227, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-22T13:19:59.090413Z", "last_modified_time": "2026-04-22T13:19:59.090428Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/14b6b82b-7ab8-4d3f-82ea-733c50616151.jpg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Hannes Mäntyranta ja kirjan kansi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824227/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-22T13:20:08.138776Z", "last_modified_time": "2026-04-22T13:20:08.138793Z", "date_published": null, "start_time": "2026-05-25T14:00:00Z", "end_time": "2026-05-25T15: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, "provider": { "fi": "Pääkaupunkiseudun metsänomistajat ry", "sv": "Pääkaupunkiseudun metsänomistajat ry", "en": "Pääkaupunkiseudun metsänomistajat ry" }, "short_description": { "fi": " Hannes Mäntyranta tarkastelee viime vuosikymmenten metsäviestintää ja pureutuu alan julkiseen keskusteluun ja kiistoihin sekä miten metsistä Suomessa puhutaan.", "sv": "Författargäst Hannes Mäntyranta. Evengeman hålls på finska.", "en": "Author guest Hannes Mäntyranta. Event is in Finnish." }, "description": { "fi": "<p>Maanantaina 25.5. klo 17</p><p><br></p><p>Millaisia keskusteluja suomalaisesta metsästä on käyty viime vuosikymmeninä? Miltä metsäviestintä on kuulostanut ja mitä julkisuudessa käytyjen keskustelujen reunamilla on tapahtunut? </p><p>Kirjassaan Terveisiä ullakolta – Metsäpuheita kolmelta vuosikymmeneltä pitkään metsäaiheista toimittajana ja viestijänä kirjoittanut Hannes Mäntyranta tarkastelee viime vuosikymmenten metsäviestintää ja pureutuu alan julkiseen keskusteluun ja kiistoihin sekä siihen, miten metsistä Suomessa puhutaan. Mukana kirjassa on myös ennen julkaisemattomia kuvauksia tapahtumista ja keskusteluista, jotka ovat aiemmin näkyneet julkisuudessa vain osittain. </p><p>Pääkaupunkiseudun metsänomistajat ry:n järjestämässä kirjaillassa Hannes Mäntyrannan kanssa uutuuskirjasta ja metsäaiheista keskustelee Metsälehden entinen päätoimittaja Eliisa Kallioniemi.</p>", "sv": "<p>Författargäst Hannes Mäntyranta. Evengeman hålls på finska.</p>", "en": "<p>Author guest Hannes Mäntyranta. Event is in Finnish.</p>" }, "info_url": null, "name": { "fi": "Kirjailijavieraana Hannes Mäntyranta: Terveisiä ullakolta – Metsäpuheita kolmelta vuosikymmeneltä", "sv": "Författargäst Hannes Mäntyranta. Evengeman hålls på finska.", "en": "Author guest Hannes Mäntyranta. Event is in Finnish." }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3lfe7su/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn3ezvk6a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvhfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvh64/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezviym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvjoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvkeu/?format=api" } ], "images": [ { "id": 1494456, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-12T12:32:07.100466Z", "last_modified_time": "2026-01-12T12:32:07.100481Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ed821629-7c64-459c-964d-7e1a2979fee1.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lukupiirin kirjojen kansikuvat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494456/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-12T12:32:15.308150Z", "last_modified_time": "2026-04-22T13:02:36.357808Z", "date_published": null, "start_time": "2026-04-29T11:00:00Z", "end_time": "2026-05-27T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "sv": "English Book Club på Sello biblioteken", "en": "Join the Fun at the Sello Library English Book Club!" }, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!</p><p>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!</p><p>Lukupiiri kokoontuu keskiviikkona klo 14-15:30.</p><p>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksesi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.</p><p>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.</p><p>Nähdään!</p><p><br></p><p>Kirjat keväällä 2026</p><p>28.1.2026 Orbital / Samantha Harvey </p><p><br></p><p>25.2.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2541759?sid=5223304799 Go as a river / Shelley Read \"> Go as a river / Shelley Read </a></p><p><br></p><p>25.3.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=james+everett&type=AllFields&limit=20&sort=relevanceJames / Percival Everett \">James / Percival Everett </a></p><p> </p><p>29.4.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2631543?sid=5223334244 mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai \">A mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai </a></p><p>27.5.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2631543?sid=5223334244\">A mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai </a></p><p> </p>", "sv": "<p>English Book Club på Sello biblioteken</p>", "en": "<p>Join the Fun at the Sello Library English Book Club!</p><p>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!</p><p> </p><p>📚 **What:** Sello Library English Book Club</p><p>📅 **When:** Last Wednesdays of the month</p><p>🕑 **Time:** 2 PM to 3:30 PM</p><p>📍 **Where:** Elina Room</p><p><br></p><p>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.</p><p>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.</p><p>See you there!</p><p><br></p><p>Books</p><p>28.1.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2591186?sid=5223300833\">Orbital / Samantha Harvey </a></p><p><br></p><p>25.2.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2541759?sid=5223304799\">Go as a river / Shelley Read </a></p><p><br></p><p>25.3.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=james+everett&type=AllFields&limit=20&sort=relevance\">James / Percival Everett </a></p><p> </p><p>29.4.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2631543?sid=5223334244\">A mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai </a></p><p> </p><p>27.5.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2631543?sid=5223334244\">A mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai </a></p>" }, "info_url": null, "name": { "fi": "Sellon kirjaston englanninkielinen lukupiiri", "sv": "English Book Club på Sello biblioteken", "en": "English Book Club in Sello Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvk6a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3kxlt24", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824225, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-22T12:57:04.544389Z", "last_modified_time": "2026-04-22T12:57:04.544409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/71955ea1-59db-4257-8f25-c367508408a0.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Erilaisia perinnekohteita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824225/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-22T12:57:12.044393Z", "last_modified_time": "2026-04-22T12:57:12.044411Z", "date_published": null, "start_time": "2026-05-12T15:00:00Z", "end_time": "2026-05-12T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon Perinneseura", "sv": "Espoon Perinneseura", "en": "Espoon Perinneseura" }, "short_description": { "fi": "Perinneseuran kevät tapahtuma.", "sv": "Arvsförenings vårhändelse på finska.", "en": "The heritage society's spring event in Finnish." }, "description": { "fi": "<p>Perinneseura järjestää vuoden 2026 teemaan Espoon paikallishistoria tutuksi liittyvän kevättapahtuman tiistaina 12.5. klo 18-19 Sellon kirjastossa.</p><p> </p><p> Ohjelmassa on vuositeemaan liittyvät kolme alustusta ja mahdollisuus keskusteluun.</p><p> </p><p> Martti Hellström: Kotiseutuopin juuret</p><p> Seppo Saarelainen: Espoon historia -toiminta</p><p> Esko Uotila: Kokemuksia Laaksolahden paikallishistorian tallentamisesta</p><p> </p><p> Tervetuloa!</p>", "sv": "<p>Arvsförenings vårhändelse på finska.</p>", "en": "<p>The heritage society's spring event in Finnish.</p>" }, "info_url": null, "name": { "fi": "Perinneseuran kevät tapahtuma", "sv": "Arvsförenings vårhändelse på finska", "en": "The heritage society's spring event in Finnish" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3kxlt24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3kxluu4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824226, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-22T12:38:01.348524Z", "last_modified_time": "2026-04-22T12:38:01.348540Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c2848b1d-760a-4181-8d3d-458fa473897b.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva MillaMallesta ja valokuba Sipa Pääkkösestä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824226/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-04-22T12:38:53.276331Z", "last_modified_time": "2026-04-22T12:38:53.276354Z", "date_published": null, "start_time": "2026-05-28T15:00:00Z", "end_time": "2026-05-28T15: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, "provider": null, "short_description": { "fi": "Milla-Malle ja taikamatto – musiikkipitoinen satutuokio lapsille.", "sv": "Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska.", "en": "Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish." }, "description": { "fi": "<p>Sellon kirjaston Jaminurkka 28. toukokuuta klo 18.</p><p>Milla-Mallen lelunallet Nökö ja Nössö virkkaavat yhtenä yönä taikamaton, jolla kolmikko lähtee seikkailemaan. Retki vie Afrikkaan saakka, jossa kohdataan kirahvi, norsu ja leijona. Afrikassa on myös pieni poika nimeltä Bobo, johon Milla-Malle tutustuu pienessä kylässä. Siellä lauletaan, tanssitaan ja syödään maukasta kasviskeittoa.</p><p>Tietokirjailija ja toimittaja Sirpa Pääkkösen kirjoittama satu Milla-Malle ja taikamatto ruokkii lasten mielikuvitusta, sillä sadussa kaikki on mahdollista. Matto lentää ja nallet ja eläimet osaavat puhua. Milla-Malle ja nallet kokevat erilaisia tunteita matkan aikana: rohkeutta, uteliaisuutta, läheisyyttä ja koti-ikävää. </p><p>Sadun kerrontaa elävöittää musiikki. Satuhetkessä on mukana laulajia Käpylän musiikkiopistossa toimivasta Mataleena-lauluryhmästä. </p><p>Satutuokio on samalla Milla-Malle ja taikamatto -äänikirjan julkaisutilaisuus. Satu ilmestyy äänikirjana, jonka julkaisee äänikirjakustantamo BookGarden.</p><p>Ikäsuositus yli 3-vuotialle. Vapaa pääsy.</p>", "sv": "<p>Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska.</p>", "en": "<p>Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish.</p>" }, "info_url": null, "name": { "fi": "Milla-Malle ja taikamatto – musiikkipitoinen satutuokio lapsille", "sv": "Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska", "en": "Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3kxluu4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agofomcxci", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/9CXqXUfz4", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 1824102, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-15T11:16:37.284299Z", "last_modified_time": "2026-04-15T11:16:37.284313Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/750e07b0-6101-4e7b-9fd6-5958df9fdd05.jpg", "name": "Festareiden artistikuvat", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Festareiden artistikuvat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824102/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-13T12:32:44.500368Z", "last_modified_time": "2026-04-22T12:31:57.379208Z", "date_published": null, "start_time": "2026-04-25T08:20:00Z", "end_time": "2026-04-25T14:20: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, "provider": null, "short_description": { "fi": "Sellon kirjastossa järjestetään Musafestarit lauantaina 25.4.2026. Artistit ovat nyt julkaistu!", "sv": "Sellobibliotek ordnar en musikfestival lördagen den 25.4.2026. Artisterna är nu presenterade!", "en": "Sello Library will host a Music Festival on Saturday 25.4.2026. The artists are now announced!" }, "description": { "fi": "<p>Sellon kirjastossa järjestetään Musafestarit lauantaina 25.4.2026</p><p> </p><p>Musafestareiden ohjelma on nyt julkaistu! Ohjelmassa on uskomattoman hieno kattaus erilaisia esiintymisiä sooloesityksistä bändeihin. Luvassa on muun muassa klassista musiikkia, poppia, funkkia, instrumentaalista musiikkia, covereita ja omia kappaleita. Artisteihin voit tutustua alla olevan ohjelman avulla. Tule nauttimaan musiikista Sellon kirjaston lavalle lauantaina 25.4 klo 11.20 eteenpäin!</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p> </p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p> </p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p> </p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p> </p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p> </p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.<strong> </strong></li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh” </li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p> </p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian </strong></p><ul><li>So basically we will be doing my own song with a group dancers and band. </li></ul>", "sv": "<p>Sellobibliotek ordnar en musikfestival lördagen den 25.4.2026</p><p> </p><p>Musikfestivalens line-up är nu publicerad! Programmet innehåller en otrolig mängd uppträdanden, allt från soloakter till band. Det blir klassisk musik, pop, funk, instrumentalmusik, covers och originallåtar. Kolla in artisterna i programmet nedan. Kom och njut av musiken på Sellobibliotekets stage lördagen den 25.4 från kl. 11.20!</p><p>(översatt av DeepL)</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p> </p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p> </p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p> </p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p> </p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p> </p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.</li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh” </li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p> </p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian </strong></p><ul><li>So basically we will be doing my own song with a group dancers and band. </li></ul><p>#festival #musik #konsert</p>", "en": "<p>Sello Library will host a Music Festival on Saturday 25.4.2026</p><p> </p><p>The Music Festival line-up is now out! The programme features an incredible line-up of performances ranging from solo acts to bands. There will be classical music, pop, funk, instrumental music, covers and original songs. Check out the artists in the programme below. Come and enjoy the music on the Sello Library stage on Saturday 25.4 from 11.20!</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p> </p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p> </p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p> </p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p> </p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p> </p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.</li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh” </li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p> </p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian</strong></p><ul><li>So basically we will be doing my own song with a group dancers and band. </li></ul><p> </p><p>#music #festival #performance #live </p>" }, "info_url": null, "name": { "fi": "Sellon kirjaston Musafestarit VII", "sv": "Sellobibliotekets Musikfestival VII", "en": "Sello Library Music Festival VII" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "scen Lava", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofomcxci/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoc37xuzu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoc37xv4y/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490527, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-10-07T10:50:23.676768Z", "last_modified_time": "2024-10-07T10:53:31.276161Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f60ddd82-659a-463e-93e2-bc429068f712.jpeg", "name": "", "cropping": "0,62,567,629", "photographer_name": "ArtMand", "alt_text": "Punakyntiset kädet pitelevät mustakehyksistä taulua jossa on kuvattu maalattu tyttö. Tytöllä on tumma tukka ja sininen mekko. Päälle on ommeltu erilaisia kukkia ja rusetteja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490527/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:15:30.154536Z", "last_modified_time": "2026-04-22T12:13:18.933268Z", "date_published": null, "start_time": "2026-04-30T13:00:00Z", "end_time": "2026-04-30T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Taiteellista askartelua ArtMandin johdolla ", "sv": "Konstnärligt hantverk med ArtMand ", "en": "Artistic crafts with ArtMand " }, "description": { "fi": "<p>Taiteilija ArtMand tulee ohjeistamaan askartelua Sellon kirjaston Pajaan. Hänen esimerkkinsä voimin loihditaan esimerkiksi kukkia kierrätyskirjoista, silkkinauhoista ja pistaasinkuorista. Joka kerralla on eri aihe.</p><p>Tapahtumaan ei tarvitse ilmoittautua etukäteen.</p><p>Askartelu on maksutonta ja materiaalit tulevat kirjaston puolesta.</p><p>Toiminta on tarkoitettu nuorille ja aikuisille.</p>", "sv": "<p>Konstnären ArtMand kommer till Sellobibliotekets Verkstad för att ge instruktioner om hantverk. Han kommer till exempel att använda sitt exempel för att skapa blommor av återvunna böcker, sidenband och pistaschskal. Varje gång kommer det att vara ett nytt tema. </p><p>Du behöver inte registrera dig i förväg. </p><p>Hantverket är kostnadsfritt och materialet tillhandahålls av biblioteket. </p><p>Aktiviteterna vänder sig till både ungdomar och vuxna. </p>", "en": "<p>Artist ArtMand will come to the Sello Library's Maker Space to give crafting instructions. For example, she will use his example to create flowers from recycled books, silk ribbons and pistachio shells. Each time there will be a different theme. </p><p>No need to register in advance. </p><p>The crafts are free of charge and the materials are provided by the library. </p><p>The activities are for young people and adults. </p>" }, "info_url": null, "name": { "fi": "Askartelua nuorille ja aikuisille ", "sv": "Hantverk för ungdomar och vuxna", "en": "Craftwork for young people and adults " }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Maker Space", "en": "Verkstad" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoc37xuzu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68485", "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: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: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821525, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:11.427520Z", "last_modified_time": "2026-04-16T13:13:11.427536Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786032.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821525/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-16T13:13:11.218671Z", "last_modified_time": "2026-04-22T11:14:05.692121Z", "date_published": null, "start_time": "2026-06-16T07: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, "provider": null, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</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>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BC9D504186D8B631D8F39E7E4748646F/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/BC9D504186D8B631D8F39E7E4748646F/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/BC9D504186D8B631D8F39E7E4748646F/Annantalo_s_summertime_music_playschools" }, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68485/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68484", "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: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: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821524, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:10.721163Z", "last_modified_time": "2026-04-16T13:13:10.721179Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786031.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821524/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-16T13:13:10.504689Z", "last_modified_time": "2026-04-22T11:14:05.378102Z", "date_published": null, "start_time": "2026-06-16T06: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, "provider": null, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</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>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annantalo_s_summertime_music_playschools" }, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68484/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68483", "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: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: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821523, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:09.064115Z", "last_modified_time": "2026-04-16T13:13:09.064130Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786029.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821523/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-16T13:13:08.826942Z", "last_modified_time": "2026-04-22T11:14:03.877176Z", "date_published": null, "start_time": "2026-06-09T07: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, "provider": null, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</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>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annantalo_s_summertime_music_playschools" }, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68482", "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: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: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:08.154349Z", "last_modified_time": "2026-04-16T13:13:08.154370Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786028.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821522/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-16T13:13:07.899025Z", "last_modified_time": "2026-04-22T11:14:03.583533Z", "date_published": null, "start_time": "2026-06-09T06: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, "provider": null, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</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>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annantalo_s_summertime_music_playschools" }, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68482/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68481", "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: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: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821521, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:06.931394Z", "last_modified_time": "2026-04-16T13:13:06.931409Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786024.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821521/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-16T13:13:06.729849Z", "last_modified_time": "2026-04-22T11:14:02.275760Z", "date_published": null, "start_time": "2026-06-02T07: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, "provider": null, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</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>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annantalo_s_summertime_music_playschools" }, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68481/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68480", "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: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: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1821520, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-16T13:13:06.156812Z", "last_modified_time": "2026-04-16T13:13:06.156827Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786023.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-16T13:13:05.907660Z", "last_modified_time": "2026-04-22T11:14:01.843572Z", "date_published": null, "start_time": "2026-06-02T06: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, "provider": null, "short_description": { "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</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>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>", "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>", "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2CC386A38644A1CEB7434516AC9592FE/Annantalon_Kesamuskarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/2CC386A38644A1CEB7434516AC9592FE/Annegardens_sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/2CC386A38644A1CEB7434516AC9592FE/Annantalo_s_summertime_music_playschools" }, "name": { "fi": "Annantalon Kesämuskarit", "sv": "Annegårdens sommarmusiklekis", "en": "Annantalo’s summertime music playschools" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3jabbvi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824224, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-22T09:06:08.295700Z", "last_modified_time": "2026-04-22T09:06:08.295715Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ca687ba5-3e2e-4823-b676-7373d551d008.jpeg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Espoon musiikkiopisto", "alt_text": "Lapsia jousisoittiminen kanssa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824224/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-22T09:08:13.742739Z", "last_modified_time": "2026-04-22T09:08:13.742755Z", "date_published": "2026-04-22T09:05:00Z", "start_time": "2026-05-26T13:30:00Z", "end_time": "2026-05-26T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon musiikkiopisto" }, "short_description": { "fi": "Kuulemme Bachin, Mozartin, Beethovenin, Paganinin ja Tsaikovskin musiikkia lasten ja nuorten esittämänä." }, "description": { "fi": "<p>Espoon musiikkiopiston jousikvartetit ja viulusolistit esiintyvät kirjastossa.</p><p>Esiintyjät:</p><ul><li>Arco-kvartetti ja Nauru-kvartetti</li><li>Ea Kauppila ja Unna Angervo, viulu</li></ul><p>Kuulemme Bachin, Mozartin, Beethovenin, Paganinin ja Tsaikovskin musiikkia lasten ja nuorten esittämänä. Tilaisuus sopii kaikille, tervetuloa!</p>" }, "info_url": { "fi": "https://emo.fi/" }, "name": { "fi": "Espoon musiikkiopiston jousikvartetit ja viulusolistit" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kaija" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3jabbvi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67595", "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: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": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/", "sv": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/", "en": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/" }, "price": { "fi": "15€/20€", "sv": "15€/20€", "en": "15€/20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494103, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-05T10:12:54.343688Z", "last_modified_time": "2025-12-05T10:12:54.343708Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781992.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494103/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-05T10:12:54.241230Z", "last_modified_time": "2026-04-22T08:13:46.405190Z", "date_published": null, "start_time": "2026-04-23T16: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, "provider": null, "short_description": { "fi": "Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.", "sv": "Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.", "en": "The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk." }, "description": { "fi": "<p>Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.</p><p>Jimi Tenor Band julkaisi taannoin ensimmäisen studioalbuminsa ”Selenites, Selenites!”. Levy äänitettiin pääosin Hampurissa keväällä 2025. Musiikillisesti ”Selenites, Selenites!” jatkaa afro-romanttis-kosmisella<br>linjalla.</p><p>Jimi Tenor Band on huippumuusikoista koostuva yhtye, jonka kokoonpano on seuraava:</p><p>Jimi Tenor – saksofoni, huilu, syntetisaattorit, laulu<br>Eeti Nieminen – rummut, perkussiot, laulu<br>Heikki Tuhkanen – pasuuna, tuuba, laulu<br>Lauri Kallio – kitara, basso, laulu</p><p>Kesto: 2 t, sis 20 min väliajan</p>", "sv": "<p>Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.</p><p>Jimi Tenor Band är ett band med toppmusiker med följande sammansättning:<br>Jimi Tenor – saxofon, flöjt, syntetisator, sång<br>Eeti Nieminen – trummor, perkussion, sång <br>Heikki Tuhkanen – basun, tuba, sång <br>Lauri Kallio – gitarr, bas, sång</p>", "en": "<p>The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk.</p><p>Jimi Tenor Band consists of the following top musicians:<br>Jimi Tenor – saxophone, flute, synthesisers, vocals<br>Eeti Nieminen – drums, percussion, vocals <br>Heikki Tuhkanen – trombone, tuba, vocals <br>Lauri Kallio – guitar, bass, vocals</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_", "en": "http://www.malmitalo.fi/en/events/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_" }, "name": { "fi": "Jimi Tenor Band – MalmiJazz", "sv": "Jimi Tenor Band – MalmiJazz", "en": "Jimi Tenor Band – MalmiJazz" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67595/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:31738848-203e-f111-88b4-7ced8d4a0702", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat3466869281" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "created_time": "2026-04-22T07:58:49.477568Z", "last_modified_time": "2026-04-22T07:58:49.477585Z", "date_published": "2026-04-22T07:53:10Z", "start_time": "2026-04-23T05:00:00Z", "end_time": "2026-04-24T05: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": 10, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "short_description": { "fi": "lyhyt kuvaus" }, "description": { "fi": "<div><p>Pitkä kuvaus</p></div>" }, "info_url": null, "name": { "fi": "ALI 2 Kattotapahtuma + alitapahtumat" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:31738848-203e-f111-88b4-7ced8d4a0702/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat3466869280" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "created_time": "2026-04-22T07:58:43.898495Z", "last_modified_time": "2026-04-22T07:58:43.898510Z", "date_published": "2026-04-22T07:53:03Z", "start_time": "2026-04-23T05:00:00Z", "end_time": "2026-04-24T05: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": 10, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "short_description": { "fi": "lyhyt kuvaus" }, "description": { "fi": "<div><p>Pitkä kuvaus</p></div>" }, "info_url": null, "name": { "fi": "ALI 1 Kattotapahtuma + alitapahtumat" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }