Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=36&weekday=6%2C7
{ "meta": { "count": 7000, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=37&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=35&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agoajs6hye", "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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs563q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs572q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6ayq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6bgu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6bxi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6cuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6ddq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6dse/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6edi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6eva/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6fdi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6fru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6f7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6gne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6g4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6hku/?format=api" } ], "images": [ { "id": 1490576, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-28T16:42:17.396704Z", "last_modified_time": "2025-12-18T11:11:36.169680Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/976b1358-e3d1-4193-bfb1-8fea495e3ce4.png", "name": "", "cropping": "94,0,468,375", "photographer_name": "", "alt_text": "kuva päiväkirjan sivusta jota on koristeltu piirtäen kukkia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490576/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-18T12:13:13.628343Z", "last_modified_time": "2026-04-25T08:27:02.611179Z", "date_published": null, "start_time": "2026-01-15T15:00:00Z", "end_time": "2026-05-21T16: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": "Art Journal - Taidepäiväkirjatyöpaja aikuisille", "sv": "Art Journal - verkstad för vuxna om konstdagböcker", "en": "Art Journal - Art diary workshop for adults" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": null, "short_description": { "fi": "Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. ", "sv": "verkstad för vuxna om konstdagböcker", "en": "Art diary workshop for adults" }, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "description": { "fi": "<p>Art Journal - Taidepäiväkirjatyöpaja</p><p>Torstaisin kello 17-19.30, Entressen kirjasto, Sininen huone</p><p><br></p><p>Haluatko saada uusia ideoita ja kokeilla uusia tekniikoita taidepäiväkirjan tekemiseen?</p><p>Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. Taidepäiväkirjoissa hyödynnetään paljon kierrätysmateriaaleja. Materiaalit, myös päiväkirjapohjan, saat kirjastosta. Tai ota omat materiaalit mukaan. </p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p><p><br></p><p>Järjestäjä: Kirjasto</p>", "sv": "<p>Art Journal – verksamhet i konstdagboksskrivande</p><p>Torsdagar kl. 17.00–19.30, Entressen Library, Sininen huone</p><p>Vill du få nya idéer och prova nya tekniker för att skapa en konstdagbok?</p><p>I konstdagboksworkshopen kommer vi att arbeta med konstdagböcker med hjälp av bilder och text. Konstdagböcker använder i stor utsträckning återvunnet material. Material, inklusive dagboksmallar, finns tillgängligt på biblioteket. Du kan också ta med egna material. </p><p>Denna serie evenemang är en del av bibliotekets program och har organiserats utifrån kundernas önskemål – kom och upplev nya sätt att uppleva litteratur.</p><p><br></p><p>Arrangör: Biblioteket</p>", "en": "<p>Art Journal - Art Diary Workshop</p><p>Thursdays at 5-7:30 p.m., Entressen Library, Sininen huone</p><p>Want to get some new ideas and try out new techniques for making an art diary?</p><p>In the art journal workshop, we will work on art journals using images and text. Art journals make extensive use of recycled materials. Materials, including the diary template, are available at the library. Or bring your own materials. </p><p>This series of events is part of the library's program and has been organized based on customer requests – come and experience new ways of experiencing literature.</p><p><br></p><p>Organizer: Library</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs6hye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20939781", "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:p1278/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4025471/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/out-of-order-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20939781/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/out-of-order-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20939781/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/out-of-order-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20939781/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1493796, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-13T16:15:26.997661Z", "last_modified_time": "2025-11-13T16:15:26.997674Z", "url": "https://www.lippu.fi/obj/mam/finland/9a/63/out-of-order-tickets_467554_3745923_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/1493796/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-11T22:14:25.554090Z", "last_modified_time": "2026-04-24T23:15:34.979037Z", "date_published": null, "start_time": "2026-04-24T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Out Of Order" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Helsinki Dance Company & Fernando Melo OUT OF ORDER Out of Order on matka katoavien ja uudelleen ilmestyvien kuvien maailmaan, joka muotoutuu koreografian, heij" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/out-of-order-4025471/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/out-of-order-4025471/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/out-of-order-4025471/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Out of Order on matka katoavien ja uudelleen ilmestyvien kuvien maailmaan, joka muotoutuu koreografian, heijastavien pintojen ja illuusioiden kautta.</p><p>Teos rakentuu hajanaisista kohtauksista, jotka esitetään epäjärjestyksessä – kuin palapelin osat suuremmasta kokonaisuudesta, joka ei koskaan täysin hahmotu.<br>Teos kutsuu katsojan tulkitsemaan ainutlaatuista teatterikokemusta ja kokoamaan esityksellistä palapeliä oman mielensä mukaan.</p><p>Nimi Out of Order kantaa monikerroksisia merkityksiä. Se viittaa paitsi johonkin rikki menneeseen, myös teoksen epälineaariseen rakenteeseen. Pohjimmiltaan teos käsittelee muistia, havaintoja ja muita epätäydellisiä tapoja, joilla yritämme jäsentää elämäämme. Puutteet, pienet viat ja ne osat meissä, jotka ovat pois paikaltaan – ne<br>eivät ole poikkeamia, vaan elossa olemisen perusehto.</p><p>Out of Order on brasilialaisen koreografi Fernando Melon teos, ja sen lavastuksesta vastaa Kalle Nio. Heidän edellinen yhteisteoksensa Tempo nähtiin Alminsalissa Helsingin Juhlaviikkojen ohjelmistossa.</p><p>Tanssijat: Sofia Hilli, Jyrki Kasper, Aksinja Lommi, Pekka Louhio, Mikko Paloniemi, Justus Pienmunne, Inka Tiitinen ja<br>Kalle Lähde</p><p>Koreografia ja ohjaus: Fernando Melo<br>Lavastus ja taikuus: Kalle Nio<br>Pukusuunnittelu: Samu-Jussi Koski<br>Valosuunnittelu: Aku Lahti<br>Naamioinnin suunnittelu: Tuula Kuittinen<br></p>", "en": "<p>Helsinki Dance Company & Fernando Melo<br><strong>OUT OF ORDER</strong></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20939781/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:21069455", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4046960/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/somatic-sitcom-helsingin-kaupunginteatteri-studio-pasila-21069455/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/somatic-sitcom-helsingin-kaupunginteatteri-studio-pasila-21069455/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/somatic-sitcom-helsingin-kaupunginteatteri-studio-pasila-21069455/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1494143, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T00:15:02.573629Z", "last_modified_time": "2025-12-09T00:15:02.573645Z", "url": "https://www.lippu.fi/obj/mam/finland/5d/be/somatic-sitcom-tickets_480661_3832956_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/1494143/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-09T00:15:03.497482Z", "last_modified_time": "2026-04-24T23:15:34.817576Z", "date_published": null, "start_time": "2026-04-24T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "en": "Somatic Sitcom" }, "location_extra_info": { "fi": "Studio Pasila" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Anna Maria Häkkinen SOMATIC SITCOM Ystävykset painuvat yhä syvemmälle sohvaan." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/somatic-sitcom-4046960/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/somatic-sitcom-4046960/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/somatic-sitcom-4046960/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Anna Maria Häkkinen<br><strong>SOMATIC SITCOM</strong></p><p>Ystävykset painuvat yhä syvemmälle sohvaan. Selkärankojen nivelvälit täyttyvät nesteestä.</p><p>Sitten ovikello soi.</p><p>Somatic Sitcom on esitys, joka paljastaa arkisten tilanteiden, tavaroiden ja tilojen koomisuuden. Se löytää runoutta pienistä eleistä: oven avauksesta, sohvalle vajoamisesta ja ystävysten välisistä katseista.</p><p>Tapahtumapaikkana on 90-luvun tilannekomedioista tuttu huone. Yhtäkkiä ovikello soi. Joku avaa oven. Toinen heittää takin naulakkoon. Näennäisesti merkityksettömät eleet kasvavat kiehtovaksi koreografiaksi, joka houkuttelee havainnoimaan arkielämän ihmeellisyyttä ja kummallisuutta.</p><p>Alaleuat käyvät raskaiksi ja raukeavat. Olkapäiden ja lonkkamaljojen pallonivelet alkavat hitaasti kääntyä auki. Yksi sohvan jaloista katkeaa.</p><p>Somatic Sitcom -esityksen taustalla on koreografi Anna Maria Häkkisen, näyttämösuunnittelija Erno Aaltosen ja dramaturgi Emil Santtu Uutun jaettu kiinnostus 1990-luvun klassisia tilannekomedioita kohtaan. Työryhmä purkaa aikakauden sitcom-sarjojen rytmejä, eleitä ja tunnelmia, ja siirtää ne hienovaraisesti osaksi nykytanssin ja ruumiillisen ilmaisun kieltä.</p><p>Kolmikko on työskennellyt aiemmin yhdessä teoksissa Phoenix – a deep relaxation serotonin release (2023), joka toteutettiin Taideyliopiston Teatterikorkeakoulun tanssin opiskelijoille, sekä Afterglow, low lingering slips of light (2023), joka sai ensiesityksensä New Yorkin Performa-biennaalissa.</p><p>Rooleissa: Hanna Ahti, Juha Jokela, Vappu Nalbantoglu, Esete Sutinen, Antti Timonen</p><p>Konsepti ja koreografia: Anna Maria Häkkinen<br>Konsepti sekä lavastus, valo- ja äänisuunnittelu: Erno Aaltonen<br>Dramaturgi: Emil Santtu Uuttu<br>Puvustus: Paula Ojala + työryhmä<br>Naamioinnin suunnittelu: Ronja Nylund<br>Tanssin ennakkotyö: Taru Aho<br>Asiantuntijavierailu kokemuksellisesta anatomiasta: Niina Hosiasluoma<br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21069455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20864913", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010509/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-komedia-pankkiryostosta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20864913/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-komedia-pankkiryostosta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20864913/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-komedia-pankkiryostosta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20864913/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1491183, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-24T11:16:53.640856Z", "last_modified_time": "2025-10-24T11:16:53.640868Z", "url": "https://www.lippu.fi/obj/mam/finland/67/37/hkt-komedia-pankkiryoestoestae-tickets_458469_3686800_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/1491183/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-23T20:16:43.218505Z", "last_modified_time": "2026-04-24T23:15:34.646030Z", "date_published": null, "start_time": "2026-04-24T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Komedia Pankkiryöstöstä" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Henry Lewis - Jonathan Sayer - Henry Shields KOMEDIA PANKKIRYÖSTÖSTÄ Sama tekijäkolmikko, joka kirjoitti hittikomedian Näytelmä, joka menee pieleen (Arena-näytt" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/komedia-pankkiryoestoestae-4010509/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/komedia-pankkiryoestoestae-4010509/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/komedia-pankkiryoestoestae-4010509/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Sama tekijäkolmikko, joka kirjoitti hittikomedian Näytelmä, joka menee pieleen (Arena-näyttämö 2022–2023), on luonut jälleen aivan pähkähullun pyörityksen, jossa lopulta ei enää tiedä mille nauraa, mutta nauraa kuitenkin, ja kovaa!</p><p>Helsinki, vuosi 1958. Vanki Roger Rahikainen on suunnitellut kaikkien aikojen ryöstön yhdessä vanginvartija Tauno Kyykän kanssa. Tarkoitus on murtautua Hakaniemen Osakepankkiin, jossa säilytetään valtavaa timanttia.</p><p>Samaan aikaan Hakaniemen Osakepankissa pankinjohtaja Jorma Kuusikko alaisineen virittää pankin turvajärjestelmiä äärimmilleen, jotta mittaamattoman arvokas timantti pysyisi turvassa.</p><p>Pankinjohtajan tytär Aino on tavannut uuden hurmaavan poikaystävän Veikan. Todelliset ongelmat alkavat, kun Veikka päätyy mukaan Roger Rahikaisen ryöstöporukkaan, varsinkin kun Rahikainen sattuu olemaan myös Ainon ex-heila. Huijareita kaikki, ja siksi koko suunnitelmasta tulee uskomaton odottamattomien sattumien sarja.</p><p>Komedia pankkiryöstöstä on täydellisen ajoituksen läheltä piti -farssikomedia, jossa nostalginen entisajan Helsinki yhdistyy säkenöivän kekseliääseen juoneen ja rikollisen hauskoihin käänteisiin ohjaajavelho Samuel Harjanteen näpeissä. Kun mukana on vielä timantinkovat komedianäyttelijät kuten Rauno Ahonen, Risto Kaskilahti, Jouko Klemettilä, Merja Larivaara, Martti Manninen, Sauli Suonpää, Linnea Leino ja Samuel Kujala, olemme todellisen kulta-aarteen äärellä.</p><p>Komedia pankkiryöstöstä tulee varastamaan sydämesi, ja irrottaa näppärällä ja varmalla otteella katsomosta monet raikuvat naurut.</p><p>Rooleissa: Samuel Kujala, Linnea Leino, Sauli Suonpää,<br>Rauno Ahonen, Risto Kaskilahti, Jouko Klemettilä,<br>Merja Larivaara, Lasse Lipponen, Kai Lähdesmäki,<br>Martti Manninen, Samuli Pajunen, Raili Raitala,<br>Kaisa Torkkel</p><p>Esitysoikeuksien valvoja: Nordic Drama Corner<br>Kirjailijat: Henry Lewis, Jonathan Sayer, Henry Shields<br>Suomennos: Paavo Leppäkoski<br>Ohjaus: Samuel Harjanne<br>Lavastus: Jani Uljas<br>Pukusuunnittelu: Elina Vättö<br>Valo- ja videosuunnittelu: William Iles, Toni Haaranen<br>Äänisuunnittelu: Jaakko Virmavirta<br>Naamioinnin suunnittelu: Milja Mensonen<br>Dramaturgi: Henna Piirto<br></p>", "en": "<p>Henry Lewis - Jonathan Sayer - Henry Shields<br><strong>KOMEDIA PANKKIRYÖSTÖSTÄ</strong></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864913/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20858627", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010503/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-20858627/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-20858627/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-20858627/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1491149, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-22T20:15:45.803353Z", "last_modified_time": "2025-10-22T20:15:45.803370Z", "url": "https://www.lippu.fi/obj/mam/finland/05/d2/hildur-tickets_457344_3678695_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/1491149/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-22T20:16:02.562109Z", "last_modified_time": "2026-04-24T23:15:34.483864Z", "date_published": null, "start_time": "2026-04-24T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hildur" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Satu Rämö – Satu Rasila HILDUR Satu Rämön kansainväliseen suosioon noussut dekkari-ilmiö saapuu Helsinkiin! Satu Rasilan dramatisoima aivan uusi teatteriversio " }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Satu Rämö – Satu Rasila<br><strong>HILDUR</strong></p><p>Satu Rämön kansainväliseen suosioon noussut dekkari-ilmiö saapuu Helsinkiin! Satu Rasilan dramatisoima aivan uusi teatteriversio Hildurista saa ensi-iltansa Arena-näyttämöllä 28. tammikuuta.</p><p>Näytelmä perustuu Hildur-dekkarisarjan ensimmäiseen ja samannimiseen osaan (WSOY 2022) ja tekee oikeutta Rämön menestysteoksen pohjoiselle mystiikalle – unohtamatta kutkuttavan jännittävän murhamysteerin pienimpiäkään käänteitä. Tulos on aitoon nordic blue -henkeen hengittävä teatteriteos, jossa Islannin karu kauneus ja ihmismielen syvyydet kohtaavat näyttämöllä.</p><p>Hildur kertoo rikosetsivä Hildur Rúnarsdóttirista (Elena Leeve) ja vie katsojat Islannin myyttisille Länsivuonoille, jossa Hildur selvittää kotikaupungissaan tapahtuneita murhia yhdessä suomalaiskollega Jakobin (Paavo Kinnunen) kanssa. Traumojensa kanssa taisteleva Hildur ja menneisyyttään pakeneva Jakob joutuvat keskelle omituista rikosvyyhtiä, joka kytkeytyy järisyttävästi Hildurin omaan lapsuuteen.</p><p>Hildur kutoo katsojan tiukasti mukaan tihenevään jännitykseen, kun menestysdekkari herää näyttämöllä henkiin. Arena-näyttämö on osoittanut paikkansa maan ykkösdekkarinäyttämönä, jossa myös Hildurin tiivistunnelmainen tarina pääsee oikeuksiinsa ja asettuu komeasti viime vuosien Agatha Christie -dekkarisovitustemme joukkoon.</p><p>Rooleissa: Elena Leeve, Paavo Kinnunen, Sari Haapamäki,<br>Sanna-June Hyde, Linda Hämäläinen, Unto Nuora,<br>Jari Pehkonen, Ursula Salo, Mauno Terävä</p><p>Esitysoikeuksien valvoja: Agency North<br>Kirjailija: Satu Rämö<br>Dramatisointi: Satu Rasila<br>Ohjaus: Tuomas Parkkinen<br>Dramaturgi: Ari-Pekka Lahti<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Elina Kolehmainen<br>Valo- ja videosuunnittelu: Petteri Heiskanen<br>Videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Valosuunnittelu: Petteri Heiskanen<br>Videosuunnittelu: Toni Haaranen<br>Läheisyyskoreografi: Johanna Elovaara<br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858627/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhr3nq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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:p5121/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?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": [], "images": [ { "id": 1824097, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-01T10:14:35.162918Z", "last_modified_time": "2026-04-01T10:14:35.162931Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e0d5a097-0c7b-4e09-9b7a-94b1b20c1725.jpeg", "name": "", "cropping": "214,0,686,473", "photographer_name": "Espoon kaupunginkirjasto", "alt_text": "Värikkäitä hahmoja Tapiolan kirjaston lastenosastolla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824097/?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-27T08:33:46.902509Z", "last_modified_time": "2026-04-24T12:02:23.585662Z", "date_published": "2026-03-27T08:30:00Z", "start_time": "2026-05-16T10:00:00Z", "end_time": "2026-05-16T13: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": "Perhepäivä Tapiolan kirjastossa", "sv": "Familjedag i Hagalunds bibliotek", "en": "Family day in Tapiola Library" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa koko perheen tapahtumaan!", "sv": "Hela familjen är välkommen att delta i vår familjedag!", "en": "The whole family is welcome to enjoy our family day!" }, "info_url": null, "description": { "fi": "<p><strong>Tapiolan kirjastossa lauantaina 16.5.2026 klo 13-16:00</strong></p><p>Tervetuloa Tapiolan kirjaston perhepäivään, joka järjestetään yhteistyössä Espoolaisten toimijoiden kanssa!</p><p>Tapahtuma on ilmainen!</p><p><br></p>\nOhjelma<p><strong>Klo 13-16:00 eri toimintapisteitä kirjastossa </strong></p><p><strong>Helsingin seudun erilaiset oppijat ry ja lukukoira Halla | Lastenosasto </strong></p><p>Onko lukeminen välillä työlästä tai menevätkö sanat ja numerot sekaisin? HERO:n erityisopetuksen ammattilaiset tarjoavat tietoa, vinkkejä ja tukea oppimiseen – rennolla ja lapsiystävällisellä otteella. Luvassa mm. tietoa hyödyllisistä apuvälineistä ja sovelluksista sekä lukukoira Hallan Bingo, josta saa kivan tehtävän tai pikku palkinnon.</p><p><strong>Tapiolan seurakunta | Kulma </strong></p><p>Helmikoruaskartelua, onnenpyörä, jossa kaikki voittaa, lapsille sopivia pulmapelejä sekä valokuvausseinä, jonka edessä lapset voivat sovittaa papin asua.</p><p><strong>Unicef: Löydä lapsen oikeus! -toimintatuokio | Kuvakirjahuone </strong></p><p>Toimintatuokioon voivat osallistua 3–10-vuotiaat lapset itsekseen tai yhdessä tutun aikuisen kanssa. Toimintatuokion kesto on noin 15- 20 minuuttia.</p><p><strong>Familia ry | Paja </strong></p><p>Kokonainen Minä-kirjan hahmoihin liittyvä väritystyöpaja Familia ry:n harjoittelijoiden sekä vapaaehtoisten johdolla.</p><p><strong>Lukunurkka | Heikki </strong></p><p>Tapahtumatila Heikki on paikka perheen yhteiseen lukutuokioon syrjässä perhepäivän hulinasta. Hengähdä hetkeksi kirjojen parissa ja tutustu myös Lukulumon valmiiksi luettuihin satuihin, joita on saatavilla melkein kaikilla kielillä!</p><p><strong>Klo 13-14:30 Esko: Sirkusta ja teatteria | Kaija </strong></p><p>Eskon sirkusteatteri-työpajassa saat parhaat palat molemmista jutuista. Sirkuksessa harjoitellaan uusia taitoja jongleeraus ja tasapainoiluvälineillä. Teatterissa puolestaan leikitään yhdessä ja luodaan hauskoja hahmoja. Espoon sirkus- ja teatterikoulu Eskon ammattitaitoiset opettajat tuovat mukanaan sirkusvälineet ja iloisen tunnelman.</p><p><strong>Klo 15:00 Professori Bluffin Kirjan Taikaa –esitys | Kaija </strong></p><p>Hauska näytös, jossa tehdään taikatemppuja kirjoilla. Mukana elävää musiikkia ja ripaus klovneriaa. Varoitus: esitys saattaa viihdyttää ja innostaa lukemaan! Esitys sopii kaiken ikäisille!</p>", "sv": "<p>Välkommen på familjedagen till biblioteket i Hagalund!</p><p>Evenemanget ordnas i samarbete med lokala aktörer i Esbo och bjuder på ett mångsidigt program för hela familjen:</p><p>Evenemanget är avgiftsfritt.</p><p>Kom med hela familjen!</p>", "en": "<p>Welcome to Family Day at Tapiola Library!</p><p>The event is organized in collaboration with local Espoo partners and offers a variety of activities for the whole family</p><p>The event is free of charge.</p><p>Bring the whole family and join us!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhr3nq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-4010519", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?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/status-quo-helsingin-kaupunginteatteri-lilla-teatern-20864875/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/status-quo-helsingin-kaupunginteatteri-lilla-teatern-20864875/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/status-quo-helsingin-kaupunginteatteri-lilla-teatern-20864875/?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:20864862/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864879/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864880/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864881/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864883/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864866/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864867/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864868/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864869/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864884/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864885/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864887/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864870/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864871/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864888/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864872/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864873/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864889/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864890/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864874/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864875/?format=api" } ], "images": [ { "id": 1491206, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-27T17:16:07.832538Z", "last_modified_time": "2025-10-27T17:16:07.832555Z", "url": "https://www.lippu.fi/obj/mam/finland/a9/b4/hkt-status-quo-tickets_459562_3693281_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/1491206/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-23T20:16:46.041036Z", "last_modified_time": "2026-04-23T20:16:40.970691Z", "date_published": null, "start_time": "2026-02-10T16:30:00Z", "end_time": "2026-04-23", "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": "Status Quo", "sv": "Status Quo Förhandsvisning" }, "location_extra_info": { "fi": "Lilla Teatern" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "sv": "Maja Zade STATUS QUO I Status quo är kvinnorna chefer och männen kokar kaffet." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/status-quo-4010519/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/status-quo-4010519/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/status-quo-4010519/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Maja Zade<br><strong>STATUS QUO</strong></p>", "sv": "<p>I Status quo är kvinnorna chefer och männen kokar kaffet. Vi följer Mikael, en ung man i början av sin karriär, som navigerar genom en rad yrken – från fastighetsmäklare till apotekspraktikant och skådespelare på en teater. Överallt möts han av samma mönster: diskriminering, manipulation och sexuella närmanden. Hemma sköter Mikael hushållet och försöker vara en god partner, men i ett samhälle där kvinnorna bestämmer är varje Mikael inget mer än en Micke.</p><p>Maja Zades pjäs skildrar med fyndig komik hur bekanta roller och världar blir absurda när man vänder upp och ner på könsrollerna.</p><p>På scen: Alexander Wendelin, Vuokko Hovatta, Peter Kanerva, Pia Runnakko, Joachim Wigelius, Alexandra Gustafsson</p><p>Uppföranderätt: Agency North / Colombine Teaterförlag<br>Översättning: Gunilla Hemming<br>Regi: Jakob Höglund<br>Scenografi, dräktdesign och design av dockor: Heini Maaranen<br>Dockinstruktör: Riina Tikkanen<br>Ljusdesign: Ainu Palmu<br>Komposition och ljuddesign: Tony Sikström<br>Maskdesign: Jaana Nykänen<br>Dramaturg: Henna Piirto<br>Videodesign: Katinka Ebbe <br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010519/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3vaxwsi", "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: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: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: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:p2149/?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: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: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": 1824232, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-23T12:31:20.153927Z", "last_modified_time": "2026-04-23T12:31:20.153943Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b45d2b1a-7e1a-4bf1-8072-db6020243d98.png", "name": "", "cropping": "0,135,1080,1215", "photographer_name": "", "alt_text": "Valkoinen pörröinen koira haukkaa lastenkirjaa. otsikko: Lukineuvontaa Ison Omenan kirjastossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824232/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-23T12:31:49.467293Z", "last_modified_time": "2026-04-23T12:31:49.467309Z", "date_published": null, "start_time": "2026-05-05T14:00:00Z", "end_time": "2026-05-18T15: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": "Lukineuvontaa ", "sv": "Läsrådgivning ", "en": "Reading support" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Lukihero", "sv": "Lukihero", "en": "Lukihero" }, "short_description": { "fi": "📚💚 Vinkkejä ja tukea oppimiseen", "sv": "📚💚 Tips och stöd för lärande", "en": "📚💚 Tips and support for learning" }, "info_url": null, "description": { "fi": "<p>LUKINEUVONTA KIRJASTOISSA</p><p>📚💚 Vinkkejä ja tukea oppimiseen</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>Toisinaan mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p>", "sv": "<p><br></p><p>📚💚 Tips och stöd för lärande</p><p>Knyter sig orden eller blandas siffrorna ihop?</p><p>Hoppar texten från rad till rad, känns läsningen tung eller är det svårt att se helheter och hitta det väsentliga?</p><p>Kom till läsrådgivningen som ordnas av Helsingforsregionens förening för inlärningssvårigheter (HERO)!</p><p>Du får praktisk hjälp för vardagens lärandesituationer i en lugn och uppmuntrande miljö.</p><p>I läsrådgivningen får du:</p><p>✨ information om lässvårigheter och andra inlärningsutmaningar</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, taligenkänning, verktyg för textstrukturering)</p><p>✨ samtalsstöd och hjälp i vardagliga lärandesituationer</p><p>Tjänsten är kostnadsfri, och rådgivningen ges av HEROs specialpedagogiska yrkespersoner.</p><p>Ibland deltar också den underbara läshunden Halla, som sprider lugn, mod och glädje i lässtunderna 🐾</p>", "en": "<p><br></p><p>📚💚 Tips and support for learning</p><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 and find the essential?</p><p>Come to the reading support sessions provided by the Helsinki Region Association for Learning Disabilities (HERO)!</p><p>You will receive practical help for everyday learning in a calm and encouraging environment.</p><p>In the reading support sessions, you will get:</p><p>✨ information about reading difficulties 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.</p><p>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:ago3vaxwsi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3uthy74", "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" } ], "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": 1824231, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-31T11:40:12.426441Z", "last_modified_time": "2026-03-31T11:40:12.426456Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e5405b8b-899b-49e9-8dee-719a9d477d90.jpg", "name": "", "cropping": "0,48,696,745", "photographer_name": "", "alt_text": "Kuvassa on laula Lisa-Aliina", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824231/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T07:37:12.513106Z", "last_modified_time": "2026-04-23T11:23:24.567437Z", "date_published": null, "start_time": "2026-05-23T11:00:00Z", "end_time": "2026-05-23T12: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": "Lisa-Aliina – Potentiaalia vai harhaa - Konsertti", "sv": "Lisa-Aliina – Potential eller illusion – Konsert", "en": "Lisa-Aliina – Potential or illusion - Concert" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa kuuntelemaan Lisa-Aliinan konserttia Salonkiin lauantaina 23.5. klo 14.", "sv": "Välkommen till Lisa-Aliinas konsert lördagen den 23 maj kl. 14!", "en": "Welcome to Lisa-Aliina's concert on Saturday, May 23, at 2 pm!" }, "info_url": null, "description": { "fi": "<p>Laulaja-lauluntekijä Lisa-Aliina esittää akustisesti debyyttialbuminsa ‘Potentiaalia vai harhaa’ yhdessä Minneka yhtyeen kanssa. Lisa-Aliina tekee melodista pop musiikkia.</p><p>Lisa-Aliinan musiikki yhdistää vahvat melodiat, lauluntekijäperinteen ja syvän melankolian mystiseen, tummanpuhuvaan äänimaailmaan. Hänen vahvuutensa on herkkyys ja syvällisyys, jotka kuuluvat niin sanoituksissa kuin äänimaailmassakin. Albumi kertoo eräänlaisen rakkaustarinan, jossa käsitellään rakkauden haasteita ja vaikeuksia, mutta myös toivoa ja lohtua.</p><p>Konsertissa esiintyy Lisa-Aliinan lisäksi Minneka yhtyeen jäseniä (Janne Österlund ja Milla Forsström). Janne kuuluu Lisa-Aliinan kappaleiden tekijätiimiin ja hän tekee myös musiikkia Minnekalle. Milla laulaa ja osallistuu kappaleiden tekoon Minnekassa.</p><p> </p><p>Konsertissa esiintyvät:</p><p>Sähköpiano ja laulu: Liisa Paunikoski</p><p>Kitara ja ukulele: Janne Österlund ja Milla Forsström</p>", "sv": "<p>Singer-songwritern Lisa-Aliina framför sitt debutalbum Potentiaalia vai harhaa (Potential eller illusion) akustiskt tillsammans med bandet Minneka. Lisa-Aliina gör melodisk popmusik.</p><p>Välkommen till Lisa-Aliinas konsert lördagen den 23 maj kl. 14!</p>", "en": "<p>Singer-songwriter Lisa-Aliina performs her debut album Potentiaalia vai harhaa (Potential or Illusion) acoustically together with the band Minneka. Lisa-Aliina makes melodic pop music. </p><p>Welcome to Lisa-Aliina's concert on Saturday, May 23, at 2 pm!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3uthy74/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67503", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T08:13:57.746579Z", "last_modified_time": "2026-04-21T08:13:57.746601Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781611.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824210/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-21T08:13:57.583563Z", "last_modified_time": "2026-04-23T11:13:46.243199Z", "date_published": null, "start_time": "2026-04-25T08:00:00Z", "end_time": "2026-04-25T11: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": "Annantalon taidelauantai: Oodi keväälle", "sv": "Annegårdens konstlördag: Ode till våren", "en": "Annantalo Art Saturday: Ode to spring" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7B7B4313AC5E9336E6D7AB86A34C3B7F/Annantalon_taidelauantai_Oodi_kevaalle", "sv": "http://www.annantalo.fi/sv/evenemang/event/7B7B4313AC5E9336E6D7AB86A34C3B7F/Annegardens_konstlordag_Ode_till_varen", "en": "http://www.annantalo.fi/en/events/event/7B7B4313AC5E9336E6D7AB86A34C3B7F/Annantalo_Art_Saturday_Ode_to_spring" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Oodi keväälle</b></p><p>Luodaan tauluja kevään paljastamista aarteista. <br>Kierrätystyöpajan ohjaa Noora Puranen</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Ode till våren</b><br>Vi ska skapa tavlor av de skatter som våren avslöjar.<br>Återbruksmaterialworkshopen leds av Noora Puranen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Ode to spring</b><br>Let's make pictures from treasures revealed by spring.<br>The recycled materials workshop is led by Noora Puranen.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67503/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3tkb6ly", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "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": 1824229, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-23T08:01:19.886269Z", "last_modified_time": "2026-04-23T08:01:19.886286Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/50b066bd-00d6-406e-9d3a-8d785a063b94.png", "name": "", "cropping": "149,0,711,562", "photographer_name": "", "alt_text": "Katri Kauppila: Suon tuoksuja ja eläinten jäljillä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824229/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-23T08:39:03.145489Z", "last_modified_time": "2026-04-23T08:47:29.283476Z", "date_published": "2026-04-23T08:00:00Z", "start_time": "2026-04-26T07:00:00Z", "end_time": "2026-05-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": "Katri Kauppila: Eläinten jäljillä & Suon tuoksuja (taidenäyttelyt)", "sv": "Katri Kauppila: På djurens spår & Dofter från mossen (konstutställningar)", "en": "Katri Kauppila: On the Trail of Animals & Scents of the Marsh (art exhibitions)" }, "location_extra_info": { "fi": "Galleria Betoni", "sv": "Galleri Betoni", "en": "Gallery Betoni" }, "provider": null, "short_description": { "fi": "Kaksi Katri Kauppilan digitaalisen taiteen näyttelyä, toisella seinällä näyttely \"Eläinten jäljillä\" ja toisella näyttely \"Suon tuoksuja\".", "sv": "Två utställningar med digitala konst: på den ena väggen utställningen ”I djurens spår” och på den andra väggen utställningen ”Doftar från mossen”.", "en": "Two exhibitions of digital art by Katri Kauppila: \"On the Trail of Animals\" on one wall and \"Scents of the Marsh\" on the other." }, "info_url": null, "description": { "fi": "<p><strong>Katri Kauppila</strong>n kaksi värikästä näyttelyä, jotka hän on toteuttanut digitaalisen piirtämisen keinoilla, jakautuvat teemoittain Galleria Betonin kahdelle seinälle.</p><p><strong><em>Eläinten jäljillä</em></strong> esittelee kuusi Suomen luonnosta löytyvää kaikille tuttua kasvia. Näyttelytauluissa eläimet esiintyvät yksinkertaisina hahmoina. Kasvielementeissä on hyödynnetty digitaalista linotekniikkaa ja liukuvärejä.</p><p><strong><em>Suon tuoksuja</em></strong> kuvaa hillan kukintaa, marjojen kypsymistä ja suokukkojen elämää rauhaisella suolla. Näissä tauluissa taiteilija on hyödyntänyt opasiteetin eli värin peittävyyden vaihtelua sekä liukuvärejä.</p><p><strong>Katri Kauppila</strong> on taustaltaan viestinnän ammattilainen, YTM, minkä lisäksi hänellä on audio-visuaalisen alan ammattitutkinto. Hän tekee erityisesti kasvi- ja eläinaiheisia kuvituksia.</p><p>Näyttelyyn voi tutustua Entressen kirjaston Galleria Betonissa 26.4. - 15.5.2026. Kaikki teokset ovat ostettavissa. Taidenäyttely on avoinna kirjaston aukioloaikoina. Tervetuloa!</p>", "sv": "<p><strong>Katri Kauppila</strong>s två färgstarka utställningar, som hon har skapat med hjälp av digital teckningsteknik, är uppdelade efter tema på två väggar i Galleri Betoni.</p><p><strong><em>I djurens spår</em></strong> presenterar sex välkända växter som finns i den finska naturen. I utställningens tavlor framträder djuren som enkla figurer. I växtelementen har digital linoteknik och tonövergångar använts.</p><p><strong><em>Suon tuoksuja (Doftar från mossen)</em></strong> skildrar blomningen av blåbär, bärens mognad och mossfåglarnas liv i den fridfulla mossen. I dessa tavlor har konstnären utnyttjat opacitet, det vill säga variationer i färgens täckförmåga, samt tonövergångar.</p><p><strong>Katri Kauppila</strong> har en bakgrund som kommunikationsproffs, YTM, och dessutom har hon en yrkesexamen inom audiovisuell teknik. Hon gör framför allt illustrationer med växt- och djurmotiv.</p><p>Utställningen kan beses i Galleria Betoni i Entresse biblioteket 26.4–15.5.2026. Alla verk är till salu. Konstutställningen är öppen under bibliotekets öppettider. Välkommen!</p>", "en": "<p><strong>Katri Kauppila</strong>’s two vibrant exhibitions, created using digital drawing techniques, are displayed thematically across two walls at Galleria Betoni.</p><p><strong><em>'On the Trail of Animals</em></strong>' features six familiar plants found in the Finnish countryside. In the exhibition panels, the animals appear as simple figures. For the plant elements, she has utilized digital line art and gradients.</p><p><strong><em>Scents of the Marsh</em></strong> depicts the blooming of the marsh marigold, the ripening of berries, and the life of marsh harriers in a peaceful marsh. In these paintings, she has utilized variations in opacity—that is, the coverage of color—as well as gradients.</p><p><strong>Katri Kauppila</strong> has a background as a communications professional (YTM), and she also holds a vocational qualification in the audiovisual field. She specializes in creating illustrations featuring plants and animals.</p><p>The exhibition can be viewed at Galleria Betoni in the Entresse Library from April 26 to May 15, 2026. All works are available for purchase. The art exhibition can be seen during the library opening hours. Welcome!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3tkb6ly/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67801", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824205, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-20T13:14:19.193873Z", "last_modified_time": "2026-04-20T13:14:19.193888Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782900.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824205/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-20T13:14:19.042295Z", "last_modified_time": "2026-04-22T14:13:56.505802Z", "date_published": null, "start_time": "2026-06-08", "end_time": "2026-06-12", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesätaidefillari itähelsinkiläisissä leikkipuistoissa", "sv": "Stoas sommarkonstcykel i lekparkerna", "en": "Stoa’s summer art bicycle at playgrounds" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa taiteillen!", "sv": "Kom och fira sommarlovet tillsammans med oss i lekparkerna med konst!", "en": "Come and spend your summer vacation by making art with us at playgrounds!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6EAA0D7324E3366DC97DAEC285EFE57B/Kesataidefillari_itahelsinkilaisissa_leikkipuistoissa", "sv": "http://www.stoa.fi/sv/evenemang/event/6EAA0D7324E3366DC97DAEC285EFE57B/Stoas_sommarkonstcykel_i_lekparkerna", "en": "http://www.stoa.fi/en/events/event/6EAA0D7324E3366DC97DAEC285EFE57B/Stoa_s_summer_art_bicycle_at_playgrounds" }, "description": { "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin 8.–12.6.2026 ja tuo taideterveiset Stoasta!</p><p>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Helsinki-päivänä 12.6. Taidefillari parkkeeraa Stoan aukiolle.<br>Kohderyhmä: lapset ja lapsiperheet <br>Vapaa pääsy, tervetuloa!</p><p>REITTI:</p><p>ma 8.6. <br>klo 10-15 Leikkipuisto Rusthollari</p><p>ti 9.6. <br>klo 10-12 Leikkipuisto Mellunmäki <br>klo 13-15 Leikkipuisto Kiikku <br> <br>ke 10.6. <br>klo 10-11.45 Leikkipuisto Orava <br> <br>to 11.6. <br>klo 10-15 Leikkipuisto Tuorinniemi <br> <br>pe 12.6.</p><p>klo 13-15 Leikkipuisto Iso-Antti</p><p>klo 17-19 Stoan aukio, Helsinki-päivän tapahtuma</p>", "sv": "<p>Kom och fira sommarlovet tillsammans med oss i lekparkerna med konst!</p><p>Äventyrskonstskolans och Stoas gemensamma lådcykel som lastats med konstredskap cruisar runt bland lekparkerna i Östra Helsingfors under den andra veckan i juni.<br> <br>På workshopparna lär vi oss olika lekfulla och experimentella konsttekniker. Cykeln innehåller även filtar att chilla på, hängmattor, ritpapper, såpbubblor och andra möjligheter att delta med låg tröskel. Följ vår färgglada cykel under veckans lopp eller delta i din favoritlekpark.<br> <br>Den exakta rutten publiceras under april.</p><p>På Helsingforsdagen torsdagen 12.6 är konstcykeln parkerad på Stoaplatsen.<br> <br>Målgrupp: barn och barnfamiljer<br>Fritt inträde</p><p>RUTT:</p><p>mon 8.6. <br>10-15 Leikkipuisto Rusthollari</p><p>ti 9.6. <br> 10-12 Leikkipuisto Mellunmäki <br> 13-15 Leikkipuisto Kiikku <br> <br>ons 10.6. <br> 10-11.45 Leikkipuisto Orava <br> <br>tors 11.6. <br> 10-15 Leikkipuisto Tuorinniemi <br> <br>fre 12.6.</p><p>13-15 Leikkipuisto Iso-Antti</p><p>17-19 Stoa , Helsingforsdagen Circus evenemang</p>", "en": "<p>Come and spend your summer vacation by making art with us at playgrounds!</p><p>The shared cargo bike of Seikkailutaidekoulu adventure art school and Stoa loaded with art supplies will be riding on down to playgrounds in East Helsinki in the second week of June.<br> <br>Participants can learn playful and experimental art techniques in the workshops. The cargo bike also carries blankets and hammocks for lounging, paper for drawing, bubbles and many fun things to use for participation at a low threshold. Follow our colourful bike all week or join us at your favourite playground.<br> <br>The details of the route will be published in May. On Helsinki Day, Thursday 12 June, the art bike will be parked in the Stoa square.<br> <br>Target group: children and families with children<br>Free entry</p><p>ROUTE: <br>ma 8.6. <br>klo 10-15 Leikkipuisto Rusthollari</p><p>ti 9.6. <br>klo 10-12 Leikkipuisto Mellunmäki <br>klo 13-15 Leikkipuisto Kiikku <br> <br>ke 10.6. <br>klo 10-11.45 Leikkipuisto Orava <br> <br>to 11.6. <br>klo 10-15 Leikkipuisto Tuorinniemi <br> <br>pe 12.6.</p><p>klo 13-15 Leikkipuisto Iso-Antti</p><p>klo 17-19 Stoa Square, Helsinki Day Circus event</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67801/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67226", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494837, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T10:13:10.314884Z", "last_modified_time": "2026-02-10T10:13:10.314897Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779655.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494837/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T10:13:10.172505Z", "last_modified_time": "2026-04-22T14:13:54.037659Z", "date_published": null, "start_time": "2026-05-29", "end_time": "2026-06-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Habit Bodies – Zara Asgher & Laura Hasanen", "sv": "Habit Bodies – Zara Asgher & Laura Hasanen", "en": "Habit Bodies – Zara Asgher & Laura Hasanen" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Habit Bodies on kahden tekijän taiteellinen hanke, joka tutkii kehollisten historioiden, sukupuolen ja paikan välisiä suhteita.", "sv": "Habit Bodies är ett konstnärligt projekt av två personer som utforskar förhållandet mellan förkroppsligade berättelser, kön och plats.", "en": "Habit bodies is a two-person artistic project exploring the relationship between embodied histories, gender, and place." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/0EE0B91B61A6D8C707237F2F771DEE8B/Habit_Bodies", "sv": "http://www.caisa.fi/sv/evenemang/event/0EE0B91B61A6D8C707237F2F771DEE8B/Habit_Bodies", "en": "http://www.caisa.fi/en/events/event/0EE0B91B61A6D8C707237F2F771DEE8B/Habit_Bodies" }, "description": { "fi": "<p>Habit Bodies on kahden tekijän taiteellinen hanke, joka tutkii kehollisten historioiden, sukupuolen ja paikan välisiä suhteita.</p><p>Laura Hasanen (USA/FI) ja Zara Asgher (PK) ovat Helsingissä työskenteleviä kuvataiteilijoita ja taidekasvattajia. Taiteilijat ovat tehneet yhteistyötä duona vuodesta 2022 lähtien. Hasanen ja Asgher työskentelevät videoperformanssin, tekstin ja installaation parissa. Heidän työskentelynsä käsittelee sukupuolen, seksuaalisuuden ja vallan välistä suhdetta.</p><p>Habit Bodies tarkastelee kehollisten historioiden, sukupuolen ja paikan välistä suhdetta. Teos keskittyy kitkaan, joka syntyy, kun sukupuolittuneita käyttäytymismalleja haastetaan tai vastustetaan. Näiden normien rikkominen voi tuntua siltä kuin törmäisi seinään—armottomaan ja syvälle juurtuneeseen esteeseen, joka paljastaa tottumusten ja opittujen olemisen tapojen syvyyden.</p><p>Habit Bodies käyttää perhettä viitekehyksenä näiden kitkakohtien tarkasteluun. Taiteilijat tutkivat eleitä, kehonkieltä ja tarinankerrontaa keinoina ymmärtää, miten nämä kohdat ovat muokanneet heidän suhdettaan sukupuoleen ja paikkaan. Teos kertoo perheen odotuksista ja kiusallisista epäonnistumisista. Kaksi kehoa yrittää kiemurrella, väistää, torjua ja jopa mukautua korjaavien eleiden toistoon, pyrkien suoristamaan kömpelöä olemustaan.</p><p>Näyttelyyn järjestetään viittomakielinen opastus suomeksi la 6.6.2025 klo 13–14.</p>", "sv": "<p>Habit Bodies är ett konstnärligt projekt av två personer som utforskar förhållandet mellan förkroppsligade berättelser, kön och plats.</p><p>Laura Hasanen (USA/FI) och Zara Asgher (PK) är Helsingforsbaserade bildkonstnärer och konstpedagoger. Konstnärerna har samarbetat som duo sedan 2022. Hasanen och Asgher arbetar med videoperformance, text och installation. Deras praktik behandlar relationen mellan kön, sexualitet och makt.</p><p>Habit Bodies undersöker relationen mellan förkroppsligade historier, kön och plats. Verket fokuserar på den friktion som uppstår när könade beteendemönster utmanas eller motstås. Försöket att bryta mot dessa normer kan kännas som att stöta emot en vägg—obarmhärtig och djupt rotad, en barriär som blottlägger djupet i invanda och betingade sätt att vara.</p><p>Habit Bodies använder familjen som en ram för att utforska dessa friktionspunkter. Konstnärerna undersöker gester, kroppsspråk och berättande som sätt att förstå hur dessa punkter har format deras relation till kön och plats. Verket berättar om familjens förväntningar och obekväma misslyckanden. Två kroppar försöker slingra sig runt, undvika, avvisa och till och med anpassa sig till en upprepning av korrigerande gester, i ett försök att räta upp sin klumpiga närvaro.</p>", "en": "<p>Habit bodies is a two-person artistic project exploring the relationship between embodied histories, gender, and place.</p><p>Laura Hasanen (USA/FI) and Zara Asgher (PK) are Helsinki-based visual artists and art educators. The artists have been collaborating as a duo since 2022. Hasanen and Asgher work across video performance, text, and installation. Their practice addresses the relationship between gender, sexuality and power.</p><p>Habit Bodies navigates the relationship between embodied histories, gender, and place. The work focuses on the friction that emerges when gendered behavioral patterns are challenged or resisted. The effort to disrupt these norms can feel like coming up against a wall—unrelenting and deeply rooted, a barrier that reveals the depth of habitual and conditioned ways of being.</p><p>Habit Bodies uses family as a framework to explore these points of friction. The artists explore gesture, body language, and storytelling as ways of understanding how these points have shaped their relationship to gender and place. The piece tells the story of family expectations and awkward failures. Two bodies attempt to wiggle around, avoid, reject, and even conform to a repetition of corrective gestures, attempting to straighten their clumsy presence.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn3ezvk6a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "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:agn3ezvhfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvh64/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezviym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvjoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvkeu/?format=api" } ], "images": [ { "id": 1494456, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-12T12:32:07.100466Z", "last_modified_time": "2026-01-12T12:32:07.100481Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ed821629-7c64-459c-964d-7e1a2979fee1.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lukupiirin kirjojen kansikuvat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494456/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-12T12:32:15.308150Z", "last_modified_time": "2026-04-22T13:02:36.357808Z", "date_published": null, "start_time": "2026-04-29T11:00:00Z", "end_time": "2026-05-27T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sellon kirjaston englanninkielinen lukupiiri", "sv": "English Book Club på Sello biblioteken", "en": "English Book Club in Sello Library" }, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "provider": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "sv": "English Book Club på Sello biblioteken", "en": "Join the Fun at the Sello Library English Book Club!" }, "info_url": null, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!</p><p>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!</p><p>Lukupiiri kokoontuu keskiviikkona klo 14-15:30.</p><p>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksesi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.</p><p>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.</p><p>Nähdään!</p><p><br></p><p>Kirjat keväällä 2026</p><p>28.1.2026 Orbital / Samantha Harvey </p><p><br></p><p>25.2.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2541759?sid=5223304799 Go as a river / Shelley Read \"> Go as a river / Shelley Read </a></p><p><br></p><p>25.3.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=james+everett&type=AllFields&limit=20&sort=relevanceJames / Percival Everett \">James / Percival Everett </a></p><p> </p><p>29.4.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2631543?sid=5223334244 mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai \">A mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai </a></p><p>27.5.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2631543?sid=5223334244\">A mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai </a></p><p> </p>", "sv": "<p>English Book Club på Sello biblioteken</p>", "en": "<p>Join the Fun at the Sello Library English Book Club!</p><p>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!</p><p> </p><p>📚 **What:** Sello Library English Book Club</p><p>📅 **When:** Last Wednesdays of the month</p><p>🕑 **Time:** 2 PM to 3:30 PM</p><p>📍 **Where:** Elina Room</p><p><br></p><p>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.</p><p>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.</p><p>See you there!</p><p><br></p><p>Books</p><p>28.1.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2591186?sid=5223300833\">Orbital / Samantha Harvey </a></p><p><br></p><p>25.2.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2541759?sid=5223304799\">Go as a river / Shelley Read </a></p><p><br></p><p>25.3.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=james+everett&type=AllFields&limit=20&sort=relevance\">James / Percival Everett </a></p><p> </p><p>29.4.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2631543?sid=5223334244\">A mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai </a></p><p> </p><p>27.5.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2631543?sid=5223334244\">A mountain to the north, a lake to the south, paths to the west, a river to the east / László Krasznahorkai </a></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvk6a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agofomcxci", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/9CXqXUfz4", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 1824102, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-15T11:16:37.284299Z", "last_modified_time": "2026-04-15T11:16:37.284313Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/750e07b0-6101-4e7b-9fd6-5958df9fdd05.jpg", "name": "Festareiden artistikuvat", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Festareiden artistikuvat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824102/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-13T12:32:44.500368Z", "last_modified_time": "2026-04-22T12:31:57.379208Z", "date_published": null, "start_time": "2026-04-25T08:20:00Z", "end_time": "2026-04-25T14:20:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sellon kirjaston Musafestarit VII", "sv": "Sellobibliotekets Musikfestival VII", "en": "Sello Library Music Festival VII" }, "location_extra_info": { "fi": "Lava", "sv": "scen Lava", "en": "Stage" }, "provider": null, "short_description": { "fi": "Sellon kirjastossa järjestetään Musafestarit lauantaina 25.4.2026. Artistit ovat nyt julkaistu!", "sv": "Sellobibliotek ordnar en musikfestival lördagen den 25.4.2026. Artisterna är nu presenterade!", "en": "Sello Library will host a Music Festival on Saturday 25.4.2026. The artists are now announced!" }, "info_url": null, "description": { "fi": "<p>Sellon kirjastossa järjestetään Musafestarit lauantaina 25.4.2026</p><p> </p><p>Musafestareiden ohjelma on nyt julkaistu! Ohjelmassa on uskomattoman hieno kattaus erilaisia esiintymisiä sooloesityksistä bändeihin. Luvassa on muun muassa klassista musiikkia, poppia, funkkia, instrumentaalista musiikkia, covereita ja omia kappaleita. Artisteihin voit tutustua alla olevan ohjelman avulla. Tule nauttimaan musiikista Sellon kirjaston lavalle lauantaina 25.4 klo 11.20 eteenpäin!</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p> </p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p> </p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p> </p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p> </p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p> </p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.<strong> </strong></li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh” </li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p> </p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian </strong></p><ul><li>So basically we will be doing my own song with a group dancers and band. </li></ul>", "sv": "<p>Sellobibliotek ordnar en musikfestival lördagen den 25.4.2026</p><p> </p><p>Musikfestivalens line-up är nu publicerad! Programmet innehåller en otrolig mängd uppträdanden, allt från soloakter till band. Det blir klassisk musik, pop, funk, instrumentalmusik, covers och originallåtar. Kolla in artisterna i programmet nedan. Kom och njut av musiken på Sellobibliotekets stage lördagen den 25.4 från kl. 11.20!</p><p>(översatt av DeepL)</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p> </p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p> </p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p> </p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p> </p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p> </p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.</li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh” </li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p> </p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian </strong></p><ul><li>So basically we will be doing my own song with a group dancers and band. </li></ul><p>#festival #musik #konsert</p>", "en": "<p>Sello Library will host a Music Festival on Saturday 25.4.2026</p><p> </p><p>The Music Festival line-up is now out! The programme features an incredible line-up of performances ranging from solo acts to bands. There will be classical music, pop, funk, instrumental music, covers and original songs. Check out the artists in the programme below. Come and enjoy the music on the Sello Library stage on Saturday 25.4 from 11.20!</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p> </p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p> </p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p> </p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p> </p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p> </p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.</li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh” </li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p> </p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian</strong></p><ul><li>So basically we will be doing my own song with a group dancers and band. </li></ul><p> </p><p>#music #festival #performance #live </p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofomcxci/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3bjhexm", "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:agggfz66i4/?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:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "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": 1824217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T14:38:01.401296Z", "last_modified_time": "2026-04-21T14:38:01.401401Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/637a7b87-95ed-428e-9c01-2ae9840b5b29.jpg", "name": "Memories around coffee", "cropping": "329,0,1916,1587", "photographer_name": "Zeynep Sahin-Avci", "alt_text": "Kahvipöytä, jolla erilaisia elementtejä. Herkkuja, kahvikuppeja ja lintuja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824217/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T14:44:04.542543Z", "last_modified_time": "2026-04-21T14:44:04.542560Z", "date_published": "2016-04-21T14:55:00Z", "start_time": "2026-05-17T08:30:00Z", "end_time": "2026-05-30T09: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": "Muistoja kahvin ympäriltä", "sv": "Minnen kring kaffe", "en": "Memories around coffee" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki rummet", "en": "Salonki room" }, "provider": null, "short_description": { "fi": "Huomasin kaipaavani kahvihetkiä perheeni ja läheisten ystävieni kanssa muutettuani kauas heistä. Maalasin, kunnes palaset loksahtivat paikoilleen orgaanisesti.", "sv": "Det började när jag märkte att jag saknade kaffestunder med familj och vänner efter att ha flyttat långt ifrån. Jag målade tills bitarna föll samman organiskt.", "en": "It began when I found myself missing coffee moments with family and close friends after moving far away. I painted until the pieces came together organically." }, "info_url": null, "description": { "fi": "<p>Olen työskennellyt tämän taidenäyttelyn parissa lähes vuoden. Se alkoi, kun huomasin kaipaavani kahvihetkiä perheeni ja läheisten ystävieni kanssa muutettuani kauas heistä. Maalasin yhden teoksen ja sitten tunsin, että voisin tehdä paremmin. Niinpä maalasin yhä uudelleen ja uudelleen, kunnes palaset loksahtivat paikoilleen orgaanisesti.</p>", "sv": "<p>Jag har arbetat med den här konstutställningen i nästan ett år. Det började när jag märkte att jag saknade kaffestunder med min familj och nära vänner efter att ha flyttat långt ifrån dem. Jag målade en komposition och kände sedan att jag kunde göra bättre. Så jag målade om och om igen, tills bitarna föll samman organiskt.</p>", "en": "<p>I have been working on this art exhibition for almost a year. It began when I found myself missing coffee moments with my family and close friends after moving far away from them. I painted one composition, then felt I could do better. So I painted again and again, until the pieces came together organically.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3bjhexm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago27sc6wy", "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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc7ya/?format=api" }, "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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T11:07:54.735895Z", "last_modified_time": "2026-04-21T11:07:54.735912Z", "date_published": null, "start_time": "2026-05-24T11:30:00Z", "end_time": "2026-05-24T12: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": "International School of Music-koulun opiskelijoiden konsertit", "en": "International School of Music Finland Student Concerts" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa kuuntelemaan International School of Music-koulun opiskelijoiden konsertteja su 24.4. klo 13 & 14:30", "en": "Welcome to listen to the International School of Music Finland's student concerts on sunday 24. at 13 & 14:30 o clock!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa International School of Music Finlandin oppilaiden lukukaudenpäätös konsertteihin. Eri-ikäiset ja eri tasoiset oppilaat esittävät kappaleita, joita he ovat oppineet lukuvuoden aikana. Konsertit ovat ilmaisia ja avoimia kaikille!</p><p><strong>Milloin: sunnuntaina 24. toukokuuta klo 13.00 ja 14.30.</strong></p>", "en": "<p>Welcome to the end-of-semester concerts for students from the International School of Music Finland. Students of various ages and levels will perform pieces they have learned during the school year. The concerts are free and open to everyone!</p><p><strong>When: Sunday, May 24 at 13.00 & 14.30.</strong></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc6wy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago27sc7nm", "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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc7ya/?format=api" }, "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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T11:07:54.576909Z", "last_modified_time": "2026-04-21T11:07:54.576924Z", "date_published": null, "start_time": "2026-05-24T10:00:00Z", "end_time": "2026-05-24T11: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": "International School of Music-koulun opiskelijoiden konsertit", "en": "International School of Music Finland Student Concerts" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa kuuntelemaan International School of Music-koulun opiskelijoiden konsertteja su 24.4. klo 13 & 14:30", "en": "Welcome to listen to the International School of Music Finland's student concerts on sunday 24. at 13 & 14:30 o clock!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa International School of Music Finlandin oppilaiden lukukaudenpäätös konsertteihin. Eri-ikäiset ja eri tasoiset oppilaat esittävät kappaleita, joita he ovat oppineet lukuvuoden aikana. Konsertit ovat ilmaisia ja avoimia kaikille!</p><p><strong>Milloin: sunnuntaina 24. toukokuuta klo 13.00 ja 14.30.</strong></p>", "en": "<p>Welcome to the end-of-semester concerts for students from the International School of Music Finland. Students of various ages and levels will perform pieces they have learned during the school year. The concerts are free and open to everyone!</p><p><strong>When: Sunday, May 24 at 13.00 & 14.30.</strong></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc7nm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago27sc7ya", "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" } ], "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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc6wy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc7nm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T11:07:54.104232Z", "last_modified_time": "2026-04-21T11:07:54.104247Z", "date_published": null, "start_time": "2026-05-24T10:00:00Z", "end_time": "2026-05-24T12: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": "International School of Music-koulun opiskelijoiden konsertit", "en": "International School of Music Finland Student Concerts" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa kuuntelemaan International School of Music-koulun opiskelijoiden konsertteja su 24.4. klo 13 & 14:30", "en": "Welcome to listen to the International School of Music Finland's student concerts on sunday 24. at 13 & 14:30 o clock!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa International School of Music Finlandin oppilaiden lukukaudenpäätös konsertteihin. Eri-ikäiset ja eri tasoiset oppilaat esittävät kappaleita, joita he ovat oppineet lukuvuoden aikana. Konsertit ovat ilmaisia ja avoimia kaikille!</p><p><strong>Milloin: sunnuntaina 24. toukokuuta klo 13.00 ja 14.30.</strong></p>", "en": "<p>Welcome to the end-of-semester concerts for students from the International School of Music Finland. Students of various ages and levels will perform pieces they have learned during the school year. The concerts are free and open to everyone!</p><p><strong>When: Sunday, May 24 at 13.00 & 14.30.</strong></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc7ya/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20942497", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4032091/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/andre-wickstrom-30-aar-paa-scen-och-inget-slut-i-sikte-helsingin-kaupunginteatteri-lilla-teatern-20942497/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/andre-wickstrom-30-aar-paa-scen-och-inget-slut-i-sikte-helsingin-kaupunginteatteri-lilla-teatern-20942497/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/andre-wickstrom-30-aar-paa-scen-och-inget-slut-i-sikte-helsingin-kaupunginteatteri-lilla-teatern-20942497/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 368526, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-19T10:17:42.167361Z", "last_modified_time": "2025-03-19T10:17:42.167377Z", "url": "https://www.lippu.fi/obj/mam/finland/62/8a/aw222-tickets_370394_3126857_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/368526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-13T16:15:32.868211Z", "last_modified_time": "2026-04-21T06:15:58.909356Z", "date_published": null, "start_time": "2026-04-18T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "sv": "André Wickström – 30 År På Scen Och Inget Slut I Sikte!" }, "location_extra_info": { "fi": "Lilla Teatern" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "sv": "André Wickström – 30 år på scen och inget slut i sikte! Bästa damer, herrar och alla som älskar humor – André Wickström har uppträtt med stand up i 30 år! Det ä" }, "info_url": { "fi": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-ar-pa-scen-och-inget-slut-i-sikte-4032091/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-ar-pa-scen-och-inget-slut-i-sikte-4032091/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-ar-pa-scen-och-inget-slut-i-sikte-4032091/?affiliate=ADV&language=en" }, "description": { "sv": "<p><strong>André Wickström – 30 år på scen och inget slut i sikte!</strong></p><p>Bästa damer, herrar och alla som älskar humor – André Wickström har uppträtt med stand up i 30 år! Det är längre än många förhållanden och dessutom mycket roligare.</p><p><br>I det här jubileumsshowen återvänder André till scenen klokare än någonsin (eller åtminstone mer medelålders), och bjuder på godbitar från tre decennier samt helt nytt material, för det är bara i politiken man återvinner gamla skämt. Under kvällen får vi bland annat veta varför den sansade finlandssvensken inte alls är lik en översaltad surströmming.</p><p><br>Det blir en kväll fylld av nostalgi, överraskningar och framför allt skratt – för även om världen förändras, finns det en sak som består: André Wickström får oss fortfarande att skratta, mer än vårt eget liv gör.Välkommen att fira 30 år av komik och livsvisdom (som inskaffats den hårda vägen)!<br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20942497/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }