Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=102
{ "meta": { "count": 22946, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=103", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=101" }, "data": [ { "id": "espoo_le:agozxhwl64", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 1824193, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-15T07:17:23.514978Z", "last_modified_time": "2025-10-15T07:17:23.514992Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2ac73b7d-0f6a-4744-869d-63dbbff7965f.jpg", "name": "", "cropping": "656,0,2344,1687", "photographer_name": "", "alt_text": "Viisi ihmistä pöydän ääressä keskustelemassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824193/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-06T07:25:01.101957Z", "last_modified_time": "2026-03-06T07:25:01.101973Z", "date_published": null, "start_time": "2026-05-06T13:30:00Z", "end_time": "2026-05-06T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Työpaja: Tule mukaan kehittämään HelloEspoo.fi-sivustoa", "sv": "Workshop: Kom med och utveckla webbplatsen HelloEspoo.fi", "en": "Workshop: Join Us in Developing the HelloEspoo.fi Website" }, "location_extra_info": { "fi": "Sininen huone", "en": "The Blue Room" }, "provider": { "fi": "Elinkeino", "sv": "Näringar", "en": "Economic Development" }, "short_description": { "fi": "Testaamme HelloEspoo.fi:n tekoälykäännöksiä albaniaksi, arabiaksi, espanjaksi, farsiksi, kiinaksi, ranskaksi, ukrainaksi, venäjäksi, vietnamiksi ja viroksi.", "sv": "Vi testar AI-översättningarna på webbplatsen på albanska, arabiska, spanska, farsi, kinesiska, franska, ukrainska, ryska, vietnamesiska och estniska.", "en": "We test the AI translations on the website in Albanian, Arabic, Spanish, Farsi, Chinese, French, Ukrainian, Russian, Vietnamese and Estonian." }, "info_url": null, "description": { "fi": "<p>Tervetuloa testaamaan HelloEspoo.fi-verkkosivuston tekoälykäännöksiä! Pääset myös kertomaan ideoitasi sivuston sisältöihin ja jakamaan ajatuksia muiden osallistujien kanssa. </p><p>HelloEspoo.fi tarjoaa tietoa Espooseen ulkomailta muuttaneille henkilöille. Sivustoa kehitetään koko ajan, ja siksi palaute sekä käännöksistä että sisällöistä on meille tärkeää.</p><p>Työpajan kielinä ovat helppo suomi ja englanti. Toivomme mukaan espoolaisia, jotka osaavat sivustolla käytettyjä kieliä. Eli albaniaa, arabiaa, espanjaa, farsia (persia), kiinaa, ranskaa, ukrainaa, venäjää, vietnamia ja viroa.</p><p><a href=\"https://link.webropol.com/s/helloespooworkshop2026 \">Ilmoittaudu mukaan viimeistään 29.4.2026 täyttämällä lomake. </a></p><p>Tarjoamme osallistujille pientä syötävää.</p><p>Tervetuloa vaikuttamaan!</p><p>#HelloEspoo</p>", "sv": "<p>Välkommen att testa AI-översättningarna på webbplatsen HelloEspoo.fi! Du får också dela med dig av dina idéer om innehållet på sidan och diskutera med andra deltagare.</p><p>HelloEspoo.fi erbjuder information till personer som har flyttat till Esbo från utlandet. Vi utvecklar ständigt webbplatsen, så feedback på både översättningarna och innehållet är mycket viktigt för oss.</p><p>Workshopens språk är lätt finska och engelska. Vi hoppas att Esbobor som talar de språk som används på webbplatsen deltar – alltså albanska, arabiska, spanska, farsi (persiska), kinesiska, franska, ukrainska, ryska, vietnamesiska och estniska.</p><p><a href=\"https://link.webropol.com/s/helloespooworkshop2026 \">Anmäl dig senast 29 april 2026 genom att fylla i formuläret.</a> </p><p>Vi bjuder deltagarna snacks.</p><p>Välkommen att påverka!</p><p>#HelloEspoo</p>", "en": "<p>Welcome to test the AI translations on the HelloEspoo.fi website! You will also have the opportunity to share your ideas for the site’s content and discuss with other participants.</p><p>HelloEspoo.fi provides information for people who have moved to Espoo from abroad. The site is continuously being developed, so feedback on both translations and content is very important to us.</p><p>The languages used in the workshop are easy Finnish and English. However, we hope Espoo residents who speak the languages used on the site to join. The languages are Albanian, Arabic, Spanish, Farsi (Persian), Chinese, French, Ukrainian, Russian, Vietnamese, and Estonian.</p><p><a href=\"https://link.webropol.com/s/helloespooworkshop2026 \">Sign up by 29 April 2026 at the latest by filling in the form.</a></p><p>We will offer coffee, tea, and snacks to participants.</p><p>Welcome to share your thoughts!</p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwl64/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-3849162", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20936953/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20936953/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20936953/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999938/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999940/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999941/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999939/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999942/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999953/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999943/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999954/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999944/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999955/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999956/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999957/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999958/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999959/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999960/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999946/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999961/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999948/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999949/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999950/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999962/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999952/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20936944/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20936946/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20936952/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20936949/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20936953/?format=api" } ], "images": [ { "id": 360034, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:29.901832Z", "last_modified_time": "2025-03-17T22:17:29.901845Z", "url": "https://www.lippu.fi/obj/mam/finland/2b/f1/aleksisuomesta222-tickets_369143_3117420_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360034/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:49.188416Z", "last_modified_time": "2026-03-05T21:16:31.499861Z", "date_published": null, "start_time": "2025-10-07T15:30:00Z", "end_time": "2026-03-05", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Aleksi Suomesta" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Ari-Pekka Lahti ALEKSI SUOMESTA Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024)." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Ari-Pekka Lahti<br><strong>ALEKSI SUOMESTA</strong></p><p>Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024). Näytelmä on Ari-Pekka Lahden sovitus Tuomas Kyrön samannimisestä kirjasta (WSOY, 2023), joka oli myös Tietokirjallisuuden Finlandia-palkintoehdokas.</p><p>Isovanhempiensa maatilalla Oulussa lapsuuttaan viettänyt, suomalaisen äidin ja senegalilaisen isän poika päättää tehdä itsestään sotilaan, ja lähtee 18-vuotiaana muukalaislegioonaan. Hän palvelee Afganistanissa ja useissa Afrikan maissa. Ukrainaan hän lähtee ensimmäisten vapaaehtoisten joukossa vuonna 2022, palaa välillä Suomeen, mutta lähtee uudestaan Ukrainaan syksyllä 2024, jossa hän menehtyy vuoden viimeisten päivien aikana.</p><p>Näytelmää on valmisteltu yhteistyössä Aleksi Lysanderin kanssa ja hänen toiveensa oli, että esitys toteutetaan ja siitä tulee mahdollisimman rehellinen kuvaus sodan jäljistä ja siitä, miten sota ei koskaan ole oikea ratkaisu.</p><p>Rooleissa: Roderick Kabanga, Eetu Känkänen</p><p>Kirjailija: Tuomas Kyrö<br>Dramatisointi: Ari-Pekka Lahti<br>Ohjaus: Tuomas Rinta-Panttila<br>Lavastus, valo- ja videosuunnittelu: Mika Haaranen<br>Pukusuunnittelu: Elina Kolehmainen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Tuula Kuittinen<br>Dramaturgi: Sanna Niemeläinen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849162/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwmoy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824194, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-05T13:44:39.116077Z", "last_modified_time": "2026-03-05T13:44:39.116099Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1dfdcd25-c607-4050-88d3-78f2356c215a.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Valkoinen koira leijuu avaruudessa. Teksti: Maagisen viikon lukineuvontaa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824194/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T13:59:06.097213Z", "last_modified_time": "2026-03-05T13:59:06.097228Z", "date_published": null, "start_time": "2026-03-23T15:00:00Z", "end_time": "2026-03-23T16: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, "name": { "fi": "Maagisen viikon lukineuvontaa", "sv": "Läsrådgivning under den Magiska Veckan", "en": "Magical Week Reading Guidance" }, "location_extra_info": { "fi": "Saturiutta", "sv": "Saturiutta", "en": "Saturiutta" }, "provider": { "fi": "Lukihero", "sv": "Lukihero", "en": "Lukihero" }, "short_description": { "fi": "Vinkkejä ja tukea oppimiseen – et ole yksin", "sv": "Tips och stöd för lärandet – du är inte ensam", "en": "Tips and support for learning – you are not alone" }, "info_url": null, "description": { "fi": "<p>Vinkkejä ja tukea oppimiseen – et ole yksin</p><p>Menevätkö sanat solmuun tai numerot sekaisin?</p><p> Hyppiikö teksti riviltä toiselle, tuntuuko lukeminen raskaalta tai onko vaikea hahmottaa kokonaisuuksia ja löytää olennaista?</p><p>Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan!</p><p> Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.</p><p>Lukineuvonnassa saat:</p><p>✨ tietoa lukivaikeuksista ja muista oppimisen haasteista</p><p> ✨ konkreettisia vinkkejä ja helppoja harjoituksia lukemisen ja kirjoittamisen tueksi</p><p> ✨ ohjausta hyödyllisiin sovelluksiin ja apuvälineisiin</p><p> (esim. äänikirjat, puheentunnistus, tekstin jäsentämisen työkalut)</p><p> ✨ keskusteluapua ja tukea arjen oppimistilanteisiin</p><p>Palvelu on maksutonta, ja neuvontaa antavat HEROn erityisopetuksen ammattilaiset.</p><p>Mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p>", "sv": "<p>Tips och stöd för lärandet – du är inte ensam</p><p>Blir orden till knutar eller siffrorna förväxlade?</p><p>Hoppar texten från rad till rad, känns läsningen tung eller är det svårt att få en helhetsbild och hitta det väsentliga?</p><p>Kom till läsrådgivningen som Helsingforsregionens förening för inlärningssvårigheter (HERO) erbjuder!</p><p>I en lugn och uppmuntrande miljö får du praktiskt stöd för vardagens lärandesituationer.</p><p>I läsrådgivningen får du:</p><p>✨ information om dyslexi och andra inlärningssvårigheter</p><p>✨ konkreta tips och enkla övningar som stöd för läsning och skrivning</p><p>✨ handledning i användbara appar och hjälpmedel</p><p>(t.ex. ljudböcker, tal‑till‑text, verktyg för att strukturera text)</p><p>✨ samtalsstöd och hjälp i vardagliga lärandesituationer</p><p>Tjänsten är kostnadsfri och handledningen ges av HEROs specialpedagogiska yrkespersoner.</p><p>Ibland deltar också den underbara LäsHunden Halla, som skapar lugn, mod och glädje i lässtunderna 🐾</p>", "en": "<p>Do words get tangled or numbers mixed up?</p><p>Does the text jump from line to line, does reading feel heavy, or is it hard to grasp the whole picture and find what’s essential?</p><p>Come to the reading guidance offered by the Helsinki Region Association for Learning Disabilities (HERO)!</p><p>In a calm and encouraging environment, you will receive practical support for everyday learning situations.</p><p>In the reading guidance you will get:</p><p>✨ information about dyslexia and other learning challenges</p><p>✨ concrete tips and simple exercises to support reading and writing</p><p>✨ guidance on useful apps and assistive tools</p><p>(e.g. audiobooks, speech‑to‑text, text‑structuring tools)</p><p>✨ someone to talk to and support for everyday learning situations</p><p>The service is free of charge, and the guidance is provided by HERO’s special education professionals. Sometimes the lovely Reading Dog Halla is also present, bringing calm, courage and good vibes to reading moments 🐾</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwmoy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwm24", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?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-03-05T11:46:30.433053Z", "last_modified_time": "2026-03-05T11:53:25.867964Z", "date_published": null, "start_time": "2026-03-24T09:00:00Z", "end_time": "2026-03-24T09: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, "name": { "fi": "Vauvamuskari" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen on auki seuraaviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 24.3 klo 11.00</li><li>Tapiolan kirjasto (nuortentila) keskiviikko 25.3 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 1.4 klo 10.30</li><li>Nöykkiön kirjasto tiistai 7.4 klo 11.00</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 8.4 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) tiistai 14.4 klo 11.00</li><li>Ison Omenan kirjasto (Nuortentila VOX) keskiviikko 15.4 klo 10.30</li><li>Entressen kirjasto (Sininen huone) tiistai 21.4 klo 11.00</li><li>Tapiolan kirjasto (nuortentila) perjantai 24.4 klo 10.30</li><li>Entressen kirjasto (Sininen huone) tiistai 5.5 klo 11.00</li><li>Kauklahden kirjasto tiistai 19.5 klo 11.00</li></ul><p><br></p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwm24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwnoa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?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-03-05T11:49:02.424978Z", "last_modified_time": "2026-03-05T11:53:05.255115Z", "date_published": null, "start_time": "2026-03-25T08:30:00Z", "end_time": "2026-03-25T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vauvamuskari" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen on auki seuraaviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 24.3 klo 11.00</li><li>Tapiolan kirjasto (nuortentila) keskiviikko 25.3 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 1.4 klo 10.30</li><li>Nöykkiön kirjasto tiistai 7.4 klo 11.00</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 8.4 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) tiistai 14.4 klo 11.00</li><li>Ison Omenan kirjasto (Nuortentila VOX) keskiviikko 15.4 klo 10.30</li><li>Entressen kirjasto (Sininen huone) tiistai 21.4 klo 11.00</li><li>Tapiolan kirjasto (nuortentila) perjantai 24.4 klo 10.30</li><li>Entressen kirjasto (Sininen huone) tiistai 5.5 klo 11.00</li><li>Kauklahden kirjasto tiistai 19.5 klo 11.00</li></ul><p><br></p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwnoa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwphi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwoda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwovi/?format=api" } ], "images": [ { "id": 1824195, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-04T08:11:06.891688Z", "last_modified_time": "2026-03-04T08:11:06.891703Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/99b4014d-82c1-4320-bcf9-4af95ae431be.jpg", "name": "", "cropping": "80,0,925,844", "photographer_name": "", "alt_text": "Kuvassa on piiretty Pekka Ja Susi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824195/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-04T08:44:21.294754Z", "last_modified_time": "2026-03-05T10:56:24.689724Z", "date_published": null, "start_time": "2026-03-22T11:00:00Z", "end_time": "2026-03-22T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pekka ja Susi-lastenkonsertti", "sv": "Peter och vargen - barnkonsert", "en": "Peter and the wolf - childrens concert" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa katsomaan Pekka ja Susi-lastenkonserttia Salonkiin sunnuntaina 22.3. klo 13 & klo 15", "sv": "Välkommen till Peter och vargen – barnkonsert söndagen den 22 mars kl. 13 och 15! Evenemanget är på finska.", "en": "Welcome to the Peter and the wolf -childrens concert on sunday 22.3. at 13 & 15 o clock! The event is finnish" }, "info_url": null, "description": { "fi": "<p>Pekka ja Susi on tarina kekseliäisyydestä ja yhteistyön voimasta. Sergei Prokofievin klassikkoteoksessa Pekka ja eläinystävät kohtaavat niityllä suden. Susi uhkaa pientä ankkaa, mutta Pekka ja ystävät keksivät keinon, jolla ankka pelastetaan suden suusta - eikä sudellekaan käy hullummin!</p><p>Teos on sävelletty vuonna 1936 alunperin sinfoniaorkesterin esitettäväksi. Lippulaivan kirjastossa kuullaan teoksesta uudelleensovitettu versio jousitriolle ja kertojalle. Sadun ovat juuri tätä esitystä varten kuvittaneet taiteilijat Sanna Seetri ja Kaisu Sirviö. </p><p> </p><p>Sergei Prokofiev: Pekka ja Susi op.67, sovitus jousitriolle ja kertojalle.</p><p> </p><p>Elina Simes, kertoja</p><p>Elina Päkkilä, viulu</p><p>Elina Heikkinen, alttoviulu</p><p>Liina-Mari Raivola, sello</p><p> </p><p>Esityksen kuvitus: Sanna Seetri ja Kaisu Sirviö</p>", "sv": "<p>Välkommen till Peter och vargen – barnkonsert söndagen den 22 mars kl. 13 och 15! Evenemanget är på finska.</p><p><br></p><p>Sergej Prokofjev: Peter och vargen, op. 67, arrangerad för stråktrio och berättare.</p><p><br></p><p>Elina Simes, berättare</p><p>Elina Päkkilä, violin</p><p>Elina Heikkinen, viola</p><p>Liina-Mari Raivola, cello</p><p><br></p><p>Illustrationer till föreställningen: Sanna Seetri och Kaisu Sirviö</p>", "en": "<p>Welcome to the Peter and the wolf -childrens concert on sunday 22.3. at 13 & 15 o clock! The event is finnish</p><p><br></p><p>Sergei Prokofiev: Peter and the Wolf, Op. 67, arranged for string trio and narrator.</p><p><br></p><p>Elina Simes, narrator</p><p>Elina Päkkilä, violin</p><p>Elina Heikkinen, viola</p><p>Liina-Mari Raivola, cello</p><p><br></p><p>Illustrations for the performance: Sanna Seetri and Kaisu Sirviö</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwphi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwqg4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490230, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-23T12:31:26.106421Z", "last_modified_time": "2025-01-23T12:31:26.106442Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3ca6343f-2480-43ce-8cb7-6726b4293a99.jpg", "name": "", "cropping": "772,0,3805,3034", "photographer_name": "", "alt_text": "Äänimalja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490230/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T10:01:06.491011Z", "last_modified_time": "2026-03-05T10:01:06.491028Z", "date_published": "2026-03-05T09:51:00.174000Z", "start_time": "2026-03-25T15:00:00Z", "end_time": "2026-03-25T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Äänimaljarentoutus", "en": "Singing Bowl Relaxation" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa rentoutumaan ja kuuntelemaan äänimaljojen kaunista sointia. ", "en": "Welcome to relax with the beautiful sound of singing bowls." }, "info_url": null, "description": { "fi": "<p>Tervetuloa rentoutumaan ja kuuntelemaan äänimaljojen kaunista sointia. Rentoutuksen aikana voit istua tuolilla tai maata joogamatolla. Kirjastolla on 10 kpl joogamattoja joita voit lainata. Voit tuoda mukaan myös oman joogamaton. Vetäjänä toimii musiikkipedagogi Sakari Heikka.</p><p>#rentoutus #äänimalja #rentoutuminen #meditaatio</p>", "en": "<p>Welcome to relax with the beautiful sound of singing bowls. During relaxation, you can sit on a chair or lie on a yoga mat. The library has 10 yoga mats that you can borrow. You can also bring your own yoga mat. The relaxation is led by Music pedagogue Sakari Heikka.</p><p>#relaxation #singingbowls #meditation</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwqg4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwqye", "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:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824196, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-05T09:12:04.683790Z", "last_modified_time": "2026-03-05T09:12:04.683807Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1251b4ab-89bc-435d-8dea-7601127bd2cc.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Tapahtuman mainos, jossa puhujien kuvat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824196/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T09:12:48.139754Z", "last_modified_time": "2026-03-05T09:12:48.139773Z", "date_published": null, "start_time": "2026-03-07T12:00:00Z", "end_time": "2026-03-07T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Women’s Day 2026 ", "en": "Women’s Day 2026 " }, "location_extra_info": { "fi": "Lava", "en": "Stage" }, "provider": null, "short_description": { "fi": "Yhteisötapahtuma, jossa juhlitaan kansainvälistä naistenpäivää teemalla ”Anna saadaksesi”. Tapahtuman tarkoituksena on luoda yhteyksiä, oppia ja inspiroida.", "en": "An open community event celebrating International Women’s Day 2026 under the theme ‘Give to Gain,’ welcoming all to connect, learn, and be inspired." }, "info_url": null, "description": { "fi": "<p>Avoin yhteisötapahtuma, jossa juhlitaan kansainvälistä naistenpäivää 2026 teemalla ”Anna saadaksesi”. Tapahtuma on avoin kaikille, ja sen tarkoituksena on luoda yhteyksiä, oppia ja inspiroida.</p>", "en": "<p>An open community event celebrating International Women’s Day 2026 under the theme ‘Give to Gain,’ welcoming all to connect, learn, and be inspired.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwqye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-3849158", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999843/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999844/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999866/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999867/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999868/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999847/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999848/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999849/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999869/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999870/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999850/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999851/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999852/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999871/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999853/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999872/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999854/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999856/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999873/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999858/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999859/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999860/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999861/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999862/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999864/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20309159/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776477/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776478/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776481/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776482/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776480/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776483/?format=api" } ], "images": [ { "id": 360031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.182714Z", "last_modified_time": "2025-03-17T22:17:20.182730Z", "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:47.305219Z", "last_modified_time": "2026-03-04T21:16:32.908756Z", "date_published": null, "start_time": "2025-08-28T15:30:00Z", "end_time": "2026-03-04", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Let'S Play Business En", "en": "Let'S Play Business" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwrma", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494900, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-19T07:52:12.728630Z", "last_modified_time": "2026-02-19T07:52:12.728648Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0ba4a0a5-003e-48c4-ab74-4e939d865d31.jpg", "name": "", "cropping": "448,0,1600,1152", "photographer_name": "", "alt_text": "Sienikuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494900/?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-03-04T11:36:39.272608Z", "last_modified_time": "2026-03-04T11:36:39.272625Z", "date_published": "2026-03-04T12:25:40.209000Z", "start_time": "2026-03-28T12:00:00Z", "end_time": "2026-03-28T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten fantastinen disko" }, "location_extra_info": { "fi": "Jaminurkka" }, "provider": null, "short_description": { "fi": "Musiikkia, rooliasuja ja maagista tunnelmaa!" }, "info_url": null, "description": { "fi": "<p>Maaginen viikko valtaa kirjaston! Tervetuloa tanssimaan maagiseen tunnelmaan hyvän musiikin tahdissa! Saat vapaasti pukeutua teeman mukaisesti tai tulla testaamaan kirjastolta löytyviä rooliasuja. Tapahtuma on lapsille ja perheille suunnattu.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwrma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohkasnli", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494900, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-19T07:52:12.728630Z", "last_modified_time": "2026-02-19T07:52:12.728648Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0ba4a0a5-003e-48c4-ab74-4e939d865d31.jpg", "name": "", "cropping": "448,0,1600,1152", "photographer_name": "", "alt_text": "Sienikuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494900/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-02-19T07:54:19.441476Z", "last_modified_time": "2026-03-03T12:54:57.033668Z", "date_published": "2026-02-19T07:55:48.227000Z", "start_time": "2026-03-23T13:30:00Z", "end_time": "2026-03-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maaginen taikatemppupaja" }, "location_extra_info": { "fi": "Sininen huone" }, "provider": null, "short_description": { "fi": "Tule opettelemaan taikatemppuja!" }, "info_url": null, "description": { "fi": "<p>Maaginen viikko toteutetaan Entressen kirjastossa. Pääset harjoittelemaan oikeita taikatemppuja maagisen henkilökunnan kanssa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohkasnli/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl7me", "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:p2787/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1495003, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-28T10:03:17.081620Z", "last_modified_time": "2026-02-28T10:03:17.081637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/206122ce-5a6d-47ac-92f0-0303492d1167.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Piirroshahmoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495003/?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-02-28T10:03:27.803425Z", "last_modified_time": "2026-03-03T11:06:39.445698Z", "date_published": null, "start_time": "2026-03-24T13:00:00Z", "end_time": "2026-03-24T14: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, "name": { "fi": "Askartelua - Puuvillapallo olennot", "en": "Cotton Ball Creatures" }, "location_extra_info": { "fi": "Paja", "en": "Makerspace" }, "provider": { "fi": "Familia ry", "en": "Familia ry" }, "short_description": { "fi": "Luo oma pörröinen olento puuvillapalloista, paperista ja runsaalla mielikuvituksella! ", "en": "Create your own fluffy creature using cotton balls, paper, and lots of imagination!" }, "info_url": null, "description": { "fi": "<p>Luo oma pörröinen olento puuvillapalloista, paperista ja runsaalla mielikuvituksella! Lapset voivat suunnitella hauskan, ujon, rohkean tai täysin hassun hahmon ja herättää sen eloon väreillä ja yksityiskohdilla.</p><p>Tämä on rento, vapaamuotoinen taidetyöpaja, johon lapset voivat liittyä milloin tahansa ja jäädä niin pitkäksi aikaa kuin haluavat.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Create your own fluffy creature using cotton balls, paper, and lots of imagination! Children can design a funny, shy, brave, or completely silly character and bring it to life with colours and details.</p><p>This is a relaxed, drop-in art session where children can join at any time and stay as long as they like.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl7me/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agogwjn2tq", "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:agggfz66aa/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494884, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T09:29:50.663178Z", "last_modified_time": "2026-02-17T09:29:50.663194Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4dc4a4ca-bfc1-4269-836e-346b53a6d2f8.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Viivi Huuska / Tammi", "alt_text": "Kuppikakkuja, kirjailija Cristal Snow ja Penni Pähkinäsydän -kirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494884/?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-02-17T09:31:02.743684Z", "last_modified_time": "2026-03-03T08:07:49.692188Z", "date_published": null, "start_time": "2026-03-27T14:30:00Z", "end_time": "2026-03-27T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Penni Pähkinäsydämen kadotuskakkupaja", "sv": "Penni Pähkinäsydän tårtworkshop", "en": "Penni Pähkinäsydän cake workshop" }, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "provider": null, "short_description": { "fi": "Osallistu satuhetkeen, tapaa kirjailija, herkuttele kuppikakuilla \nja lainaa kirjoja kotiin. ", "sv": "Delta i en sagostund, träffa författaren, njut av några cupcakes och låna böcker att ta med hem. ", "en": "Take part in a story time, meet the author, enjoy cupcakes,\nand borrow books to take home. " }, "info_url": null, "description": { "fi": "<p>Tervetuloa sukeltamaan fantasian maailmaan maaliskuussa! Espoon kaupunginkirjasto järjestää tapahtumia Helmet –kirjastojen yhteisellä Maagisella viikolla 23.3.-29.3.2026. </p><p>Tässä koko perheen tapahtumassa pääset tapaamaan Penni Pähkinäsydän -kirjojen tekijän Cristal Snown, osallistumaan satuhetkelle sekä koristelemaan ja maistelemaan herkullisia kuppikakkuja Pennin kadotuskakun tyyliin.</p><p>Voit myös lainata Penni Pähkinäsydän -kirjoja kotiin. Kirjat sopivat luettavaksi yhdessä tai yksin.</p><p>Pajan jälkeen voit jäädä nauttimaan koko perheen maagisesta elokuvaillasta, joka järjestetään kirjaston nuortenosasto Kulmassa klo 18.</p><p><br></p><p>#Maaginen viikko</p><p>#kirjailijavieras</p>", "sv": "<p>Dyk in i fantasivärlden i mars! Esbo stadsbibliotek anordnar evenemang under Helmet-bibliotekens gemensamma Magiska vecka från 23 till 29 mars 2026.</p><p>På detta evenemang för hela familjen kan du träffa Cristal Snow, författare till böckerna om Penni Pähkinäsydän, delta i en sagostund och dekorera och smaka på läckra cupcakes.</p><p>Du kan också låna böckerna om Penni Pähkinäsydän och ta med dem hem.</p><p>Efter workshopen kan du stanna kvar och njuta av en magisk filmkväll för hela familjen, som hålls i bibliotekets ungdomsavdelning Kulma kl. 18.</p><p><br></p><p>#Maaginen viikko</p>", "en": "<p>Dive into the world of fantasy in March! Espoo City Library is organizing events during the joint Magical Week of Helmet libraries from March 23 to March 29, 2026. </p><p>At this event for the whole family, you can meet Cristal Snow, author of the Penni Pähkinäsydän books, take part in a story time, and decorate and taste delicious cupcakes.</p><p>You can also borrow the Penni Pähkinäsydän books to take home.</p><p>After the workshop, you can stay and enjoy a magical movie night for the whole family, which will be held in the library's youth section, Kulma, at 6 p.m.</p><p><br></p><p>#Maaginen viikko</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agogwjn2tq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:cacb2b57-1213-f111-8407-7c1e5277afa9", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:76199/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/182/?format=api" }, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0beefb6c-c9f6-49ef-9bbd-736b24daf252/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Karnevaaliesitykset35423536020" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1506901, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-03-03T07:12:57.125589Z", "last_modified_time": "2026-03-03T07:12:57.125603Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/f007fd2d-96bf-f011-bbd3-7ced8d7302b4", "name": "Testikuva", "cropping": "", "photographer_name": "Testikuvaaja", "alt_text": "testikuva", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1506901/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "created_time": "2026-02-27T11:44:27.700358Z", "last_modified_time": "2026-03-03T07:12:57.673544Z", "date_published": "2026-02-26T12:54:55Z", "start_time": "2026-05-16T09:00:00Z", "end_time": "2026-05-16T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Karnevaalien ensiesitys" }, "location_extra_info": null, "provider": { "fi": "Stoa" }, "short_description": { "fi": "Tuleeko tämä kuvaus näkyviin alitapahtumissa? MUUTETTU TEKSTI, MUUTTUUKO MUIHIN?" }, "info_url": { "fi": "https://linkedevents.test.hel.ninja/fi/events/edit/jiiri:cacb2b57-1213-f111-8407-7c1e5277afa9?text=kev%C3%A4tkarnevaalit&returnPath=%2Fsearch" }, "description": { "fi": "<div><p>Kevätkarnevaalit ovat kokoperheen tapahtuma, jossa on tekemistä vauvasta vaariin!</p><p> </p><p>Tätä tekstiä on muokattu, päivittyykö uusiin tapahtumiin?</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cacb2b57-1213-f111-8407-7c1e5277afa9/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:eb70f35c-1213-f111-8406-6045bddd6dee", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:76199/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0beefb6c-c9f6-49ef-9bbd-736b24daf252/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Karnevaaliesitykset35423536021" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1506899, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-03-03T07:12:51.918013Z", "last_modified_time": "2026-03-03T07:12:51.918028Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/f007fd2d-96bf-f011-bbd3-7ced8d7302b4", "name": "Testikuva", "cropping": "", "photographer_name": "Testikuvaaja", "alt_text": "testikuva", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1506899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "created_time": "2026-02-27T11:44:29.735042Z", "last_modified_time": "2026-03-03T07:12:52.455133Z", "date_published": "2026-02-26T12:55:05Z", "start_time": "2026-05-09T09:00:00Z", "end_time": "2026-05-09T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Karnevaaliesitykset (2. esitys)" }, "location_extra_info": null, "provider": { "fi": "Stoa" }, "short_description": { "fi": "Tuleeko tämä kuvaus näkyviin alitapahtumissa? TÄTÄ ON MUOKATTU, EI SAA MUUTTUA." }, "info_url": { "fi": "https://linkedevents.test.hel.ninja/fi/events/edit/jiiri:cacb2b57-1213-f111-8407-7c1e5277afa9?text=kev%C3%A4tkarnevaalit&returnPath=%2Fsearch" }, "description": { "fi": "<div><p>Kevätkarnevaalit ovat kokoperheen tapahtuma, jossa on tekemistä vauvasta vaariin!</p><p> </p><p>Tätä tekstiä on muokattu, päivittyykö uusiin tapahtumiin?</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:eb70f35c-1213-f111-8406-6045bddd6dee/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agode77vcm", "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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494785, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-06T09:23:48.265434Z", "last_modified_time": "2026-02-06T09:23:48.265455Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c34e2c34-42b0-4083-8afd-9cb10078934d.png", "name": "", "cropping": "76,0,864,788", "photographer_name": "", "alt_text": "Tilaisuuden mainos", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494785/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-06T09:24:21.010770Z", "last_modified_time": "2026-03-02T13:02:06.875546Z", "date_published": null, "start_time": "2026-03-15T14:00:00Z", "end_time": "2026-03-15T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tender songs - kevätkonsertti", "sv": "Tender songs - vårkonsert", "en": "Tender songs -spring concert" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": null, "short_description": { "fi": "Tender Songs on lämmin ja sydämellinen kevätkonsertti, jonka järjestää laulustudio SoulSound. ", "sv": "Tender Songs är en varm och hjärtlig vårkonsert som anordnas av sångstudion SoulSound.", "en": "Tender Songs is a cozy and heartwarming spring concert presented by the vocal studio SoulSound." }, "info_url": null, "description": { "fi": "<p>Tender Songs on lämmin ja sydämellinen kevätkonsertti, jonka järjestää laulustudio SoulSound. Esiintyjänä Serafima Egorova, mukana Elena Abramova. Kevään tuntu on jo ilmassa, ja pop-, disco- ja jazzmusiikki tuo tilaan lisää lämpöä ja valoa.</p><p><br></p><p>#HelloEspoo</p><p><br></p>", "sv": "<p>Tender Songs är en varm och hjärtlig vårkonsert som anordnas av sångstudion SoulSound. Framförd av Serafima Egorova, ackompanjerad av Elena Abramova. Våren är redan i luften, och pop-, disco- och jazzmusik ger ännu mer värme och ljus till atmosfären.</p>", "en": "<p><em>Tender Songs</em> is a cozy and heartwarming spring concert presented by the vocal studio SoulSound, performed by Serafima Egorova, with Elena Abramova. As the feeling of spring gently settles in, pop, disco, and jazz melodies will bring more warmth and brightness to the space.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agode77vcm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agojs7ggme", "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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494954, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-26T09:42:14.140982Z", "last_modified_time": "2026-02-26T09:42:14.141001Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b2f444a8-edd5-4776-9a88-f7e8e7f9a3f4.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kuva konsertista ja Musaamon logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494954/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-26T09:42:22.908479Z", "last_modified_time": "2026-03-02T13:00:55.315885Z", "date_published": null, "start_time": "2026-04-28T14:30:00Z", "end_time": "2026-04-28T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikkikoulu Musaamon oppilaskonsertti", "sv": "Musaamo musikskolas elevkonsert", "en": "Musaamo Music School Student Concert" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Musaamo", "sv": "Musaamo", "en": "Musaamo" }, "short_description": { "fi": "Monipuolinen konsertti, jossa kuullaan niin klassisia sävyjä kuin tuttuja kappaleita popin maailmasta.", "sv": "Det blir en mångsidig konsert med både klassiska toner och välkända låtar från popvärlden. ", "en": "You can look forward to a diverse concert featuring both classical tones and familiar songs from the world of pop." }, "info_url": null, "description": { "fi": "<p>Musaamon oppilaat tuovat kevään kynnyksellä lavalle valoa, energiaa ja musiikin riemua. Luvassa on monipuolinen konsertti, jossa kuullaan niin klassisia sävyjä kuin tuttuja kappaleita popin maailmasta: Kaikki kevään aikana ahkerasti hiottuja esityksiä.</p><p>Tule nauttimaan musiikista ja antamaan esiintyjille heidän ansaitsemansa aplodit. Konsertti on täynnä rohkeutta, oivalluksia ja musiikin iloa! </p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>När våren närmar sig sprider Musaamos elever ljus, energi och musikglädje på scenen. Det blir en mångsidig konsert med både klassiska toner och välkända låtar från popvärlden – alla framföranden har repeterats flitigt under våren.</p><p><br></p><p>Kom och njut av musiken och ge artisterna den applåd de förtjänar. Konserten är full av mod, insikter och musikglädje! </p>", "en": "<p>As spring approaches, Musaamo's students bring light, energy, and the joy of music to the stage. You can look forward to a diverse concert featuring both classical tones and familiar songs from the world of pop: all performances that have been diligently rehearsed throughout the spring.</p><p><br></p><p>Come and enjoy the music and give the performers the applause they deserve. The concert is full of courage, insights, and the joy of music! </p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agojs7ggme/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agojs7gfzi", "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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-26T09:56:44.517455Z", "last_modified_time": "2026-02-26T09:56:44.517471Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/43aead3c-28b2-4e9d-812a-058cc028f895.jpeg", "name": "Liinu Oikari", "cropping": "151,0,803,652", "photographer_name": "", "alt_text": "Liinu Oikari", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494953/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-26T09:56:58.439506Z", "last_modified_time": "2026-03-02T13:00:11.998187Z", "date_published": null, "start_time": "2026-04-12T13:00:00Z", "end_time": "2026-04-12T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musaamo esittää: Liinu Oikarin konsertti", "sv": "Musaamo presenterar Liinu Oikaris konsert", "en": "Musaamo presents Liinu Oikari concert" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Musaamo", "sv": "Musaamo", "en": "Musaamo" }, "short_description": { "fi": "Keikalla kuullaan akustisia covereita tutuista kappaleista. ", "sv": "Musaamo presenterar Liinu Oikaris konsert med akustiska covers av välkända låtar.", "en": "Musaamo presents Liinu Oikari will feature acoustic covers of familiar songs. " }, "info_url": null, "description": { "fi": "<p>\"Liinu Oikari on vantaalainen laulaja, jonka elämään musiikki on aina kuulunut. Erityisesti laulujen tulkitseminen on hänelle tärkeää, jokainen kappale saa oman merkityksensä ja tarinansa esitystilanteessa. </p><p>Tällä hetkellä</p><p>Liinu opiskelee Musaamossa pop–jazz-laulua ja syventää ilmaisuaan sekä teknistä osaamistaan. Musaamo presents Liinu Oikari -keikalla kuullaan akustisia covereita tutuista kappaleista. Liinu säestää keikalla itseään ja luvassa on kappaleita herkistä balladeista aina menevämpiin musikaalikappaleisiin.\"</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Liinu Oikari är en sångerska från Vanda i Finland, vars liv alltid har varit fyllt av musik. Att tolka låtar är särskilt viktigt för henne, eftersom varje låt får sin egen betydelse och historia när den framförs. </p><p><br></p><p> För närvarande</p><p>studerar Liinu pop-jazzsång på Musaamo, där hon fördjupar sitt uttryck och sina tekniska färdigheter. Musaamo presenterar Liinu Oikaris konsert med akustiska covers av välkända låtar. Liinu ackompanjerar sig själv under konserten, och setlistan kommer att innehålla allt från känsliga ballader till mer upptempo musiknummer.</p>", "en": "<p>Liinu Oikari is a singer from Vantaa, Finland, whose life has always been filled with music. Interpreting songs is particularly important to her; each song takes on its own meaning and story when performed. </p><p><br></p><p> Currently</p><p>Liinu is studying pop-jazz singing at Musaamo, deepening her expression and technical skills. Musaamo presents Liinu Oikari will feature acoustic covers of familiar songs. Liinu will accompany herself at the gig, and the set list will range from sensitive ballads to more upbeat musical numbers.\"</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agojs7gfzi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoj6r3bmq", "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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1495002, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-27T12:41:36.387674Z", "last_modified_time": "2026-02-27T12:41:36.387691Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/588d61b5-355a-417c-a21d-ba98789ad08e.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Marianne Maans ja Marjaana Puurtinen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-27T12:41:46.461696Z", "last_modified_time": "2026-03-02T12:58:30.587251Z", "date_published": null, "start_time": "2026-05-23T12:00:00Z", "end_time": "2026-05-23T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Soi torpat ja salongit II - konsertti", "sv": "Spel i stuga och salong II - konsert", "en": "Soi torpat ja salongit II - concert" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": null, "short_description": { "fi": "Kaksikielinen kansanmusiikkiteos", "sv": "En tvåspråkig folkmusikföreställning", "en": "Bilingual ( Finnish and Swedish) folk music piece" }, "info_url": null, "description": { "fi": "<p>Soi torpat ja salongit II -konserttikokonaisuus tulkitsee Varsinais-Suomen ja Turunmaan saariston eri aikojen perinnemusiikkia nykyaikaisina sovituksina. Kaksi viulua, suomen- ja ruotsinkielinen laulu ja kaksikielinen kerrontasitovat esiintyjät ja yleisön osaksi kansanmusiikin ikiaikaista jatkumoa. Teoksessa saariston, kylien ja kaupunkien musiikillinen äänimaisema on yhtäaikaisesti sekä mennyttä että tässä hetkessä syntyvää.</p><p>Konserttikokonaisuus on jatkoa duon edelliselle Soi torpat ja salongit -teokselle (2019-2024), jolloin duo perehtyi tuhansiin maakunnan perinnemusiikkia sisältäviin nuotteihin ja äänitteisiin mm. Sibelius-museon, Suomalaisen Kirjallisuuden Seuran, Kansalliskirjaston, Svenska litteratursällskapet i Finlandin sekä Svenskt visarkivin (Ruotsi) arkistoista. Uusi produktio jatkaa mittavaa ja kielirajat ylittävää kartoitustyötä.</p><p><strong>Marianne Maans</strong> on toiminut ammattikansanmuusikkona 1990-luvun lopusta alkaen laaja-alaisesti eri musiikkiprojektien toteuttajana ja on suomenruotsalaisen kansanmusiikkiperinteen asiantuntija.<strong> Marjaana Puurtinen </strong>on varsinaissuomalaisen kansanmusiikin voimahahmo, joka on säveltänyt ja sovittanut musiikkia mm. useisiin suuriin kansantanssiteoksiin.</p><p>Teoksen kierrätysvaatteista valmistetut asut on suunnitellut<strong> Marjo Haapasalo.</strong> Monipuolinen konserttikokonaisuus soveltuu erilaisiin tiloihin ja tilaisuuksiin sekä laajalle kohdeyleisölle.</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Spel i stuga och salong II är en föreställning med folkmusik från Åboland och Egentliga Finland. Med två violiner, sång på svenska och finska, samt ett tvåspråkigt berättande knyts publiken och de uppträdande till folkmusikens fortgåendetidsförlopp. I skärgårdens, byarnas och städernas musikaliska ljudlandskap är närvarande både ett modernt nyskapande och det förgångna.</p><p>Konserthelheten är en uppföljning av duons tidigare Spel i stuga och salong -produktion (2019-2024) och omfattar ett förarbete med kartläggning och genomgång av arkivmaterial bestående av tusentals noter och inspelningar från tryckta källor och arkiv vid bl.a. Sibeliusmuséet, Finska litteratursällskapet, Nationalbiblioteket, Svenska litteratursällskapet i Finland samt Svenskt visarkiv (Sverige). Produktionen omfattar resultatet av ett fortsatt omfattande kartläggningsarbete över språkgränserna.</p><p><strong>Marianne Maans</strong> är en professionell folkmusiker och sakkunnig inom den finlandssvenska folkmusiken. Hon har sedan 1990-talet verkat mångsidigt som musiker och med förverkligande av musikaliska projekt. <strong>Marjaana Puurtinen</strong> är en drivande kraft inom folkmusiken i Egentliga Finland. Hon har bl.a. ansvarat för musiken till flera större förverkligade dansverk.</p><p>Produktionens dräkter har skapats av returmaterial av dräktdesigner <strong>Marjo Haapasalo</strong>. Den tvåspråkiga konserthelheten lämpar sig för framförande i olika utrymmen och tillfällen för en bred målgrupp.</p>", "en": "<p>The concert series Soi torpat ja salongit II (Playing Barns and Salons II) interprets traditional music from different periods in Southwest Finland and the Turku archipelago in modern arrangements. Two violins, Finnish and Swedish vocals, and bilingual narration draw the performers and audience into the timeless continuum of folk music. In this work, the musical soundscape of the archipelago, villages, and towns is both a thing of the past and something that is being created in the present moment.</p><p><br></p><p>The concert series is a continuation of the duo's previous work, Soi torpat ja salongit (2019-2024), in which the duo familiarized themselves with thousands of sheet music and recordings of traditional music from the province, including those from the archives of the Sibelius Museum, the Finnish Literature Society, the National Library, Svenska litteratursällskapet i Finland, and Svenskt visarkiv (Sweden). The new production continues the extensive and cross-linguistic mapping work. Marianne Maans has been a professional folk musician since the late 1990s, working on a wide range of music projects.</p><p><br></p><p><strong>Marianne Maans</strong> has been a professional folk musician since the late 1990s, working on a wide range of music projects and is an expert on the Finnish-Swedish folk music tradition. <strong>Marjaana Puurtinen</strong> is a leading figure in Southwest Finnish folk music, who has composed and arranged music for several major folk dance productions, among other things.</p><p>The costumes for the performance, made from recycled clothing, were designed by <strong>Marjo Haapasalo</strong>. This versatile concert program is suitable for a variety of venues and occasions and appeals to a wide audience.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoj6r3bmq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl7bu", "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:p2787/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1495003, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-28T10:03:17.081620Z", "last_modified_time": "2026-02-28T10:03:17.081637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/206122ce-5a6d-47ac-92f0-0303492d1167.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Piirroshahmoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495003/?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-02-28T10:07:34.631368Z", "last_modified_time": "2026-03-02T12:55:44.088320Z", "date_published": null, "start_time": "2026-04-21T12:00:00Z", "end_time": "2026-04-21T13: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, "name": { "fi": "Askartelua - Dream View -paperiset ikkunat", "en": "Dream View Paper Windows" }, "location_extra_info": { "fi": "Paja", "en": "Makerspace" }, "provider": { "fi": "Familia ry", "en": "Familia ry" }, "short_description": { "fi": "Suunnittele paperinen ikkuna ja piirrä siihen unelmiesi näkymä.", "en": "Design a paper window and draw your dream view inside." }, "info_url": null, "description": { "fi": "<p>Suunnittele paperinen ikkuna ja piirrä siihen unelmiesi näkymä. Mitä näkisit, jos voisit katsoa ulos mihin tahansa maailmassa – tai jopa mielikuvituksesi maailmaan? Luova ja leikkisä taideaktiviteetti, joka kannustaa tarinankerrontaan ja itsensä ilmaisemiseen.</p><p>Voit tulla paikalle milloin tahansa tapahtuman aikana ja luoda omaan tahtiisi.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Design a paper window and draw your dream view inside. What would you see if you could look out onto anywhere in the world - or even into your imagination? A creative and playful art activity that encourages storytelling and self-expression.</p><p>Drop in anytime during the session and create at your own pace.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl7bu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }