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=116&weekday=6%2C7
{ "meta": { "count": 6598, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=117&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=115&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agmk22g7om", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gy2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gzgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gzrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gz54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g2jy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g2we/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g3b4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g3nm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g3yy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g4d4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g4pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g43y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g5iq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g5uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g6ae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g6ma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g6xi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g7da/?format=api" } ], "images": [ { "id": 1490153, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-05T10:36:03.136543Z", "last_modified_time": "2025-08-05T10:36:03.136559Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/771b8e6d-cff1-40dc-acab-6ecdd344bdbf.jpg", "name": "", "cropping": "320,0,1152,832", "photographer_name": "", "alt_text": "Ukullejamit", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490153/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-05T10:37:28.862171Z", "last_modified_time": "2025-08-05T10:37:28.862188Z", "date_published": null, "start_time": "2025-08-22T14:00:00Z", "end_time": "2025-12-19T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule mukaan jameihin soittamaan ja laulamaan omia lempikappaleita ja nauttimaan yhdessä musisoinnista. ", "en": "Come join to play and sing your favorite songs or just enjoy making music together." }, "description": { "fi": "<p>Ukulelejamit jatkuvat perjantaisin Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille soittotaidosta riippumatta. Voit osallistua jameihin kaikilla soittimilla. Tilasta löytyy piano. Voit myös ehdottaa kappaleita yhdessä soitettavaksi. Tule mukaan jameihin soittamaan ja laulamaan omia lempikappaleita ja nauttimaan yhdessä musisoinnista. </p><p>#ukulele #musiikki #jami #jamit </p>", "en": "<p>Ukulele jam will be held on Fridays at the Tapiola Library event space Heikki. The jam is open to everyone, and you can join with any instrument. There is an electric piano in the space. You can also suggest songs to play together. Come join to play and sing your favorite songs or just enjoy making music together.</p>" }, "info_url": null, "name": { "fi": "Ukulelejamit", "en": "Ukulele Jam" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "en": "Event Space Heikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g7om/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:a49084fe-e2da-46d4-a21d-73eb01308bfe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TPR_integraatiotesti_482025979948074" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-05T10:34:18.384528Z", "last_modified_time": "2025-08-05T10:34:18.384549Z", "date_published": "2025-08-04T09:14:57Z", "start_time": "2025-08-12T11:00:00Z", "end_time": "2025-08-16T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 4, "audience_max_age": 32, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-04T08:00:00+03:00", "enrolment_end_time": "2025-08-10T08:00:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "Annantalo" }, "short_description": { "fi": "Lyhyt kuvaus" }, "description": { "fi": "<div><p>Laajempi kuvaus</p></div>" }, "info_url": null, "name": { "fi": "TPR integraatiotesti 4.8.2025" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a49084fe-e2da-46d4-a21d-73eb01308bfe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22hhcy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hdam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hdou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hd44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22helq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22he2e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hfje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hfxu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hggq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hguu/?format=api" } ], "images": [ { "id": 1490154, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-05T10:15:17.531561Z", "last_modified_time": "2025-08-05T10:15:17.531581Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3e6912e3-5de1-466b-a5ab-d30c88485e82.png", "name": "Iltasatutunti", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Omenan iltasatutunti", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490154/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-05T10:27:11.305746Z", "last_modified_time": "2025-08-05T10:27:11.305768Z", "date_published": null, "start_time": "2025-09-04T14:30:00Z", "end_time": "2025-12-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Avoin suomenkielinen iltasatuhetki.", "sv": "Kvällens sagostund på finska.", "en": "Evening storytime in finnish." }, "description": { "fi": "<p>Iltasatuhetkellä luetaan suomenkielisiä satuja ja tarinoita. Tulethan kuuntelemaan iltasatua oman aikuisen kanssa. Satuhetki on tarkoitettu alle kouluikäisille lapsille.</p><p>Satuhetki järjestetään joka torstai 4.9. alkaen läpi syksyn, klo 17.30 - 18, lastenosastolla.</p><p>Tervetuloa mukaan!</p>", "sv": "<p>Sagor och berättelser på finska läses under kvällens sagostund. Kom gärna och lyssna på en saga tillsammans med din egen vuxen. Sagorna är avsedda för barn under skolåldern.</p><p>Sagor hålls varje torsdag från 4.9. under hela hösten, kl. 17:30 till 18:00, på barnavdelningen.</p><p>Välkommen!</p>", "en": "<p>During evening storytime we read finnish stories and fairytales. Come and listen to the storytime together with your grown up. Stories are meant for children under school age.</p><p>Storytime is held every thursday from 4.9. onward for the whole autumn, at 17.30.-18, in the children's section.</p><p>Welcome!</p>" }, "info_url": null, "name": { "fi": "Ompun iltasatu", "sv": "Kvällens sagostund i Omppu på finska", "en": "Evening storytime in Omppu in finnish" }, "provider_contact_info": null, "location_extra_info": { "fi": "Saturiutta", "sv": "Saturiutta", "en": "Saturiutta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hhcy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22hii4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hhra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hh4y/?format=api" } ], "images": [ { "id": 1490155, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T11:41:30.116405Z", "last_modified_time": "2025-07-09T11:41:30.116419Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png", "name": "", "cropping": "0,106,752,859", "photographer_name": "", "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-30T08:22:40.763862Z", "last_modified_time": "2025-08-05T10:21:50.850688Z", "date_published": null, "start_time": "2025-09-08T14:00:00Z", "end_time": "2025-10-06T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä.", "sv": "Vid rådgivningen får du information om lässvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivning.", "en": "At the guidance service, you can get information about reading difficulties, how to identify them, and various tools that support reading and writing." }, "description": { "fi": "<p>Tule Helsingin seudun erilaiset oppijat ry:n (HEROn) lukineuvontaan!</p><p><br></p><p>Haluatko tietoa lukivaikeuksista ja apuvälineistä, jotka helpottavat lukemista ja kirjoittamista? HERO:n maksuttomassa lukineuvonnassa saat asiantuntevaa ohjausta erityisopetuksen ammattilaisilta.</p><p>Löydät HEROn kirjaston aulatilasta tai muusta sille osoitetusta paikasta – etsi vihreä roll-up!</p><p>Tule keskustelemaan ja kuulemaan lisää oppimisesta sekä HERO:n toiminnasta. Nähdään kirjastossa! </p>", "sv": "<p>Dessutom får du bekanta dig med olika inlärningsspel som kan laddas ner till surfplatta eller dator.</p><p>Kom och diskutera eller lyssna på information om lärande samt bekanta dig med verksamheten vid Helsingforsregionens förening för olika inlärare (HERO).</p><p>Läsrådgivningen ges av våra specialpedagogiska experter och är kostnadsfri.</p>", "en": "<p>You can also explore various educational games that can be downloaded to a tablet or computer.</p><p>Come to chat or hear more about learning, and get to know the activities of the Helsinki Metropolitan Area Association for People with Learning Difficulties (HERO).</p><p>Our special education experts provide the reading guidance, and it is free of charge.</p>" }, "info_url": null, "name": { "fi": "Lukineuvontaa Lippulaivan kirjastossa - mukana lukikoira Halla", "sv": "Läsrådgivning på biblioteket: Lippulaiva", "en": "Reading guidance at the library: Lippulaiva" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hii4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22hsx4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hliq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hmda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hm3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hnty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22holm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hpda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hpz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hqrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hrji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hsay/?format=api" } ], "images": [ { "id": 1490156, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-04T06:59:46.103389Z", "last_modified_time": "2025-08-04T06:59:46.103403Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/71caf056-7062-47d5-bae5-4bd345ae558e.jpg", "name": "", "cropping": "504,0,3528,3024", "photographer_name": "", "alt_text": "Dekkareita rivissä pöydällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490156/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-05T09:01:48.945746Z", "last_modified_time": "2025-08-05T09:01:48.945764Z", "date_published": null, "start_time": "2025-08-07T12:00:00Z", "end_time": "2025-12-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Dekkarifanien ylläpitämä klubi joka toinen torstai kello klo 15-17, Ison Omenan kirjastossa, kokoushuone Aallossa. " }, "description": { "fi": "<p>Klubissa käymme vapaamuotoisia keskusteluja lennokkaasti aiheen vierestä puhuen. Pidätkö pehmodekkareista vai kylmästä kauhusta? Keräämme myös lehtileikkeitä ja seuraamme mitä dekkareita televisiossa näytetään.</p><p>Porukalla keskustellen on valittu kirjailijoita ja heiltä kultakin nimetty 2-3 kirjaa, jokainen tapaamiskerta on etukäteen teemoitettu: </p><p><br></p><p><strong> To 7.8. klo 15-17. Kesällä luettuja dekkareita.</strong></p><p>Maria Adolfsson: Doggerland-sarja: 1. \"Harha-askel\", 2. \"Myrskyvaroitus\", \"Meren ja pirun välissä\".</p><p> </p><p><strong>To 21.8. klo 15-17. Nokkela ja hillitty dekkari.</strong></p><p>S.J. Bennett: Timanttitapaus, 2024 (Britannia) Freida McFadden: Kotiapulainen valvoo, 2024 (USA), \"Sarjamurhaajan tytär\", \"Työkaveri\".</p><p> </p><p><strong>To 4.9. klo 15-17. Cozy-Crime. Pehmodekkarit, murhat sivuroolissa.</strong></p><p>Richard Coles, luostari murhamysteeri kirjat -sarja, Daniel Clement rat-kaisee: \"Murha ennen iltahartautta\", \"Murha luostarissa\".</p><p>Nita Prose: \"Hotellivieras\". (kanadalainen)</p><p>Christoffer Holst (ruotsalainen)</p><p> </p><p><strong>To 18.9. klo 15-17. Islantilaiset dekkarit.</strong></p><p>Yrsa Sigurdardottir: romaanisarja (Freya ja Huldar, 6 kirjaa). \"Perimä\". Toinen romaanisarja (Musta jää-sarja): \"Muistan sinut\", 2022.</p><p>Lilja Sigurdardottir: \"Sysimusta kuilu\".</p><p> </p><p><strong>To 2.10. klo 15-17. Espanjalaiset jännityskirjat.</strong></p><p>Carlos Ruiz Zafón: 4 kirjan sarja. \"Tuulen varjo\", sykähdyttävä kirja.</p><p> </p><p><strong>To 16.10. klo 15-17. Englantilaiset dekkarit, synkkyyttä/kepeyttä. </strong> </p><p>Kate Atkinson: etsivänä Jackson Brodie: \"Liian kirkas taivas\", \"kuolema kulkee kartanohotellissa\".</p><p> </p><p><strong>To 30.10. klo 15-17. Ruotsalaiset kirjasarjat.</strong></p><p> Viveca Sten: Åren murhat-sarja: 1. \"Lumen uhrit\".</p><p> Marianne Cedervall: Mullvaldsin murhat-sarja: 5. \"Viimeisen laulun kaiku\".</p><p> </p><p><strong>To 13.11. klo 15-17. Uusia suomalaisia dekkareita:</strong></p><p>Timo Sandberg (Lahti-sarja): 1. \"Mustamäki\", 8. \"Surmasatama\".</p><p> Martta Kaukonen: Terapiassa-trilogia 2021-2025.</p><p> Matti Laine (Kovaset-sarja): \"Isänsä tytär\"</p><p> </p><p><strong> TO 27.11. klo 15-17. Vakooja-dekkarit. Toimintathrillerit.</strong></p><p>Christian Rönnbacka: \"Hydra\" (Henna Björk 4.).</p><p>Harri Virtanen: \"Valaistunut tappaja\" (Joki-trilogia, 1. osa).</p><p><strong> </strong></p><p><strong>TO 11.12. klo 15-17. Keveyttä ja syvyyttä.</strong></p><p>Guillaume Musso: \"Joku toinen\", 2024 (ranskalainen)</p><p> Kate Atkinson: (ks. nro 6 syksyn listasta). (Britannia)</p><p>Bob Mortimer: Satsumakompleksi, 2022. (Britannia)</p><p> </p><p>Dekkarifanien ylläpitämä klubi joka toinen torstai kello klo 15-17, Ison Omenan kirjastossa, kokoushuone Aallossa. </p><p><br></p><p><br></p><p> </p><p> </p>" }, "info_url": null, "name": { "fi": "Dekkariklubi Ison Omenan kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kokoushuone Aalto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hsx4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:27a59ecd-eb72-4c53-b15f-032a8a292e98", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41419/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/7ebd1065-f24f-f011-877b-000d3ab0762c?readableEventId=695_muiden_ryhmien_tapahtuma_TESTAUKSEEN273216053" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-05T05:30:05.271765Z", "last_modified_time": "2025-08-05T05:30:05.271784Z", "date_published": "2025-08-05T05:25:58Z", "start_time": "2025-08-31T05:00:00Z", "end_time": "2025-08-31T11: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": "2025-05-28T08:00:00+03:00", "enrolment_end_time": "2025-08-31T08:00:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "Helsingin kaupunki" }, "short_description": { "fi": "Koko perheen iloinen laulu tapahtuma leikkipuisto Lammessa. Tarjolla laulua, liikuntaa, kasvomaalausta ja ilmainen kahvila/mehula." }, "description": { "fi": "<div><p>Koko perheen iloinen laulu tapahtuma leikkipuisto Lammessa. Tarjolla laulua, liikuntaa, kasvomaalausta ja ilmainen kahvila/mehula.</p><p>Tarjolla. Mehua, kahvia, teetä ja vohveleita.</p></div>" }, "info_url": null, "name": { "fi": "#695 perheryhmien tapahtuma All-in-one" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:27a59ecd-eb72-4c53-b15f-032a8a292e98/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66815", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1411817, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-04T14:14:42.988433Z", "last_modified_time": "2025-08-04T14:14:42.988452Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767429.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1411817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-04T14:14:42.857069Z", "last_modified_time": "2025-08-04T14:14:43.158461Z", "date_published": null, "start_time": "2025-09-11", "end_time": "2025-10-04", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kaarisillan media-alan ja kuvallisen ilmaisun opiskelijoiden ryhmänäyttely kertoo valoisista päivistä, joita ryhmä koki luokassa opiskellessaan.", "sv": "Grupputställningen för Kaarisiltas studerande inom media och visuellt uttryck berättar om de ljusa dagar som gruppen upplevde under sina studier i klassrummet.", "en": "This group exhibition by media and visual expression students of Kaarisilta tells the story of the bright days that the group experienced while studying in their classroom." }, "description": { "fi": "<p>Kaarisillan media-alan ja kuvallisen ilmaisun opiskelijoiden ryhmänäyttely kertoo valoisista päivistä, joita ryhmä koki luokassa opiskellessaan.</p><p>Ryhmässä oli paljonkin keskustelua näyttelyn nimestä. Kun kevättalvella kävimme tutustumassa Vuotalon näyttelytilaan, luonnehti joku ensimmäistä vaikutelmaansa siitä sanalla Avara. Toisena kannatuksen saaneena nimiehdotuksena oli Kaksi tilaa, joka kuvasi paitsi senhetkistä maalauksen tehtävänantoa Kaarisillassa, myös Vuotalon hienoa taidetilaa, joka muodostuu kahdesta eri osiosta, aulasta ja galleriasta.</p><p>Mutta viikkoja kului, alkoi tulla kevät. Seurasimme luokan ikkunoista, kuinka ulkona vuoroin satoi räntää, vuoroin paistoi aurinko ja välillä puhalsi kylmä viima saaden pienet muuttolinnut värisemään ja pörhistämään sulkaturkkiaan. Yhteisen elämän arkiasioiden ja havainnoinnin rinnalla tuleva näyttely ja nimijutut tuntuivat kovin kaukaiselta.</p><p>Sisällä lämpimässä keskustelimme kouluajasta, siitä millaista elämä ja opiskelu on Kaarisillassa ollut. Katsoimme taaksepäin kuluneita kuukausia ja ihmettelimme, kuinka on niin, että vaikka välillä tekeminen tuntuu junnaavan eikä mikään oikein huvita, on aika kuitenkin mennyt nopeasti. Jopa valoisasti. Tästä johtuikin puhe tulevaan näyttelyyn. Ja toisin kuin aikaisemmin, jolloin vähän jännittäen mietittiin teoksia tulevan paikan kautta, sen ehdoilla, haluttiinkin nyt esille laitettavilla töillä välittää katsojille juuri oman luokan ahkeraa, keskustelevaa ja iloista ilmapiiriä. Tuota fiilistä välitämme maalauksilla, grafiikalla, piirustuksilla, ehkä videoilla ja kolmiulotteisilla teoksilla.</p><p>Olkoon vaan ulkona kylmä, ja tulkoon vaan kaiken maailman pikkuharmeja, tai vähän isompiakin harmeja, niin meillä kuitenkin on luokassa omat työt, oma tukikohta, omat ihmiset ja - valoisat päivät - Sunny Days.</p>", "sv": "<p>Grupputställningen för Kaarisiltas studerande inom media och visuellt uttryck berättar om de ljusa dagar som gruppen upplevde under sina studier i klassrummet.</p><p>Det blev en hel del diskussioner i gruppen om namnet på utställningen. När vi besökte utställningslokalerna på Nordhuset i våras var det någon som beskrev sitt första intryck av lokalerna som ”Luftiga\". Det andra namnet som fick stöd var Två rum, som inte bara återspeglade det aktuella måleriuppdraget i Kaarisilla, utan också Nordhusets fina konstlokal, som består av två olika delar, aulan och galleriet.</p><p>Men allteftersom veckorna gick började våren komma. Vi såg från klassrumsfönstren hur det ibland töade, ibland sken solen och ibland kändes en kall bris som fick de små flyttfåglarna att fladdra och flaxa med fjädrarna. Den kommande utställningen och namngrejen kändes väldigt långt borta, vid sidan av det gemensamma livets vardag och observationer.</p><p>Inne i värmen pratade vi om vår skoltid, om hur livet och studierna på Kaarisilta har varit. Vi blickade tillbaka på de senaste månaderna och undrade hur det kommer sig att tiden har gått så fort, trots att saker och ting ibland verkar stå stilla och man inte riktigt känner för att göra något. Det hade rentav varit ljust. Därav samtalet om den kommande utställningen. Och till skillnad från tidigare, när verken var genomtänkta och på den framtida platsens villkor, ville man genom de nu utställda verken förmedla den arbetsamma, samtalande och glada atmosfären i klassrummet. Vi förmedlar den känslan genom målningar, grafik, teckningar, kanske videor och tredimensionella verk.</p><p>Oavsett om det är kallt ute, och oavsett om man har små eller stora bekymmer, har vi våra egna jobb, vår egen bas, våra egna människor och – ljusa dagar – Sunny Days i klassrummet.</p>", "en": "<p>This group exhibition by media and visual expression students of Kaarisilta tells the story of the bright days that the group experienced while studying in their classroom.</p><p>There was quite a lot of discussion in the group about the name of the exhibition. When we visited the Vuotalo exhibition space in the spring, someone described their first impression of it with the word Open. Another name proposal that received support was Two Spaces, which reflected not only the current painting assignment at Kaarisilla, but also Vuotalo’s fine art space, which consists of two different sections, a lobby and a gallery.</p><p>But as the weeks passed, spring drew near. We watched from the classroom windows as the weather varied between sleet and sunshine, and sometimes a cold breeze would blow and make the small migratory birds tremble and puff up their feathers. Next to the everyday tasks and observations of our shared life, the upcoming exhibition and its name felt very distant.</p><p>In the warm indoors, we talked about our school days, what life and studying at Kaarisilta have been like. We looked back on the past few months and wondered how it is that, even though sometimes things may seem stagnant and nothing really interests us, time has gone by so fast. Even sunnily. This led us to talk about the upcoming exhibition. And unlike before, when we were thinking about the works with slight nervousness in terms of the upcoming location, we now wanted the works on display to convey to the viewers the industrious, conversational and joyful atmosphere in the classroom. We will convey that feeling through paintings, graphics, drawings, perhaps videos and three-dimensional works.</p><p>No matter if it is cold outside and no matter what minor or even major setbacks we face, we will have our own works, our own base, our own people – and sunny days – in the classroom.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/117797951DECCAD454055484CF1E9B32/Sunny_Days", "sv": "http://www.vuotalo.fi/sv/evenemang/event/117797951DECCAD454055484CF1E9B32/Sunny_Days", "en": "http://www.vuotalo.fi/en/events/event/117797951DECCAD454055484CF1E9B32/Sunny_Days" }, "name": { "fi": "Sunny Days – Kaarisillan media-alan ja kuvallisen ilmaisun opiskelijat", "sv": "Sunny Days – Studenter från medieområdet och visuellt uttryck vid Kaarisilta", "en": "Sunny Days – Media and visual expression students of Kaarisilta" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66815/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66667", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/lauluja-foer-sma-oeron-vuotalonordhuset-3917385/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/lauluja-foer-sma-oeron-vuotalonordhuset-3917385/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/lauluja-foer-sma-oeron-vuotalonordhuset-3917385/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1148242, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T13:12:56.873249Z", "last_modified_time": "2025-06-30T13:12:56.873268Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765955.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1148242/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-06-30T13:12:56.735293Z", "last_modified_time": "2025-08-04T10:12:43.594218Z", "date_published": null, "start_time": "2025-09-06T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lauluja för små öron on kaksikielinen, leikkisä ja vuorovaikutteinen konsertti, jossa lapset tapaavat ovelia ja omituisia olentoja.", "sv": "Lauluja för små öron är en tvåspråkig, interaktiv ordlekskonsert där barnen får möta Klätterapan, Smilfinken, Snorvalpen och andra underfundiga filurer.", "en": "‘Lauluja för små öron’ is a bilingual, playful and interactive concert in which children meet clever and peculiar creatures." }, "description": { "fi": "<p>Lauluja för små öron on kaksikielinen, leikkisä ja vuorovaikutteinen konsertti, jossa lapset tapaavat ovelia ja omituisia olentoja.</p><p>Annika Cleo on säveltänyt Nina Granin runoja kirjasta Dikter för små öron (Runoja pienille korville) ja yhdessä Nicklas Lantzin kanssa hän vie lapset musiikilliseen seikkailuun sanojen maailmaan. Lapset saavat kokea liikkumisen iloa laulun ja musiikin tahtiin sekä mahdollisuuden sukeltaa kielen maagiseen maailmaan leikin avulla.</p><p>Jokainen laulu avaa oven luovaan seikkailuun ja lapsia rohkaistaan kokeilemaan eri tapoja ilmaista itseään.</p><p>Ikäsuositus: 3–7 vuotta</p><p>Kesto: 30 minuuttia</p><p>Teater Nära: Lauluja för små öron sanaleikkikonsertti järjestetään myös maanantaina 8.9. klo 9.30 ja 10.30. Esitykset ovat suunnattu kouluille ja päiväkodeille. Esityksiin on vapaa pääsy, mutta pakollinen ilmoittautuminen etukäteen: https://kultus.hel.fi/fi</p>", "sv": "<p>Lauluja för små öron är en tvåspråkig, interaktiv ordlekskonsert där barnen får möta Klätterapan, Smilfinken, Snorvalpen och andra underfundiga filurer.</p><p>Annika Cleo har tonsatt Nina Grans bok Dikter för små öron och tillsammans med Nicklas Lantz tar hon med sig barnen på ett musikaliskt äventyr i ordens värld ackompanjerade av olika instrument, såsom piano, gitarr, bas och tvättbräda. Barnen upplever inte bara glädjen i att sjunga och röra sig till musik, utan de får också möjlighet att utforska språkets magi och lekfullhet.</p><p>Varje sång öppnar dörren till en värld av kreativitet och språkkänsla, där barnen uppmuntras att utforska och uttrycka sig på sina egna sätt.</p><p>Föreställningen är 30 minuter lång och riktar sig till barn i åldern 3-7 år.</p>", "en": "<p>‘Lauluja för små öron’ is a bilingual, playful and interactive concert in which children meet clever and peculiar creatures.</p><p>Annika Cleo has composed music for Nina Gran’s poems from the book Dikter för små öron (‘Poems for Small Ears’), and together with Nicklas Lantz, she will take children on a musical adventure into the world of words. The children will get to experience the joy of moving to song and music, as well as an opportunity to immerse themselves in the magical world of language through play. Each song will open a door to a creative adventure and the children will be encouraged to experiment with different ways of expressing themselves.<br>Recommended age: 3–7 years<br>Duration: 30 minutes</p><p>Teater Nära: The Lauluja för små öron wordplay concert will also be held on Monday 8 September at 9.30 and 10.30. The performances are aimed at schools and daycare centres. Entry is free of charge, but advance registration is required: https://kultus.hel.fi/en</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C43AAB82CE5B6721E626102E16451D1F/Teater_Nara_Lauluja_for_sma_oron_sanaleikkikonsertti", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C43AAB82CE5B6721E626102E16451D1F/Teater_Nara_Lauluja_for_sma_oron_ordlekskonsert", "en": "http://www.vuotalo.fi/en/events/event/C43AAB82CE5B6721E626102E16451D1F/Teater_Nara_Lauluja_for_sma_oron_wordplay_concert" }, "name": { "fi": "Teater Nära: Lauluja för små öron sanaleikkikonsertti", "sv": "Teater Nära: Lauluja för små öron ordlekskonsert", "en": "Teater Nära: Lauluja för små öron wordplay concert" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66667/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22hvby", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-03T11:42:43.586469Z", "last_modified_time": "2025-08-04T09:47:06.182230Z", "date_published": "2025-06-12T07:11:00Z", "start_time": "2025-08-30T09:00:00Z", "end_time": "2025-08-30T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule näyttämään, mitä osaat! \nMusiikkia, runoutta, teatteria, tanssia, taidonnäytteitä", "sv": "Kom och visa oss vad du kan! \nMusik, poesi, teater, dans, konstnärliga smakprov", "en": "Come and show us what you can do! \nMusic, poetry, theatre, dance art performances" }, "description": { "fi": "<p>Emme saaneet valitettavasti tarpeeksi esiintyjiä tähän tapahtumaan. Mikäli sinua kiinnostaa esiintyminen kirjastossa, tutustuthan tähän: <a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/kirjastot/tapahtuman-jarjestaminen-kirjastossa\">Tapahtuman järjestäminen kirjastossa</a></p><p><br></p><p>***</p><p>Tule näyttämään, mitä osaat!</p><p><a href=\"https://link.webropol.com/s/espoopvopenstagetapiola\">https://link.webropol.com/s/espoopvopenstagetapiola</a></p><p>Ilmoittautuminen on avoinna heinäkuun loppuun saakka.</p>", "sv": "<p>Tyvärr fick vi inte tillräckligt många artister till detta evenemang. Om du är intresserad av att uppträda på biblioteket, läs mer här: <a href=\"https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/ordna-evenemang-i-biblioteket\">Ordna evenemang i biblioteket</a></p><p><br></p><p>***</p><p>Kom och visa oss vad du kan!</p><p><a href=\"https://link.webropol.com/s/espoopvopenstagetapiola\">https://link.webropol.com/s/espoopvopenstagetapiola</a></p><p>Anmälan är öppen fram till slutet av juli.</p>", "en": "<p>Unfortunately, we did not get enough performers for this event. If you are interested in performing at the library, please take a look at this: <a href=\"https://www.espoo.fi/en/culture-and-leisure/libraries/organising-event-library\">Organising an event at a library</a></p><p><br></p><p>***</p><p>Come and show us what you can do!</p><p><a href=\"https://link.webropol.com/s/espoopvopenstagetapiola\">https://link.webropol.com/s/espoopvopenstagetapiola</a></p><p>Registration is open until the end of July.</p>" }, "info_url": null, "name": { "fi": "[Peruttu] Espoo päivän open stage", "sv": "[Cancelled] Esbo dagen open stage", "en": "[Cancelled] Espoo day open stage" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapiolan kirjasto, Kaija", "sv": "Hagalunds bibliotek, Kaija", "en": "Tapiola Library, Kaija" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hvby/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66666", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1147908, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T12:12:52.104974Z", "last_modified_time": "2025-06-30T12:12:52.104990Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774971.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1147908/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T12:12:51.998754Z", "last_modified_time": "2025-08-04T08:12:34.840196Z", "date_published": null, "start_time": "2025-08-23T11:00:00Z", "end_time": "2025-08-23T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Todellisuuksia / Realities -näyttelyn taiteilijat ovat tavattavissa lauantaina 23.8.2025 ja opastavat taiteensa maailmaan klo 14–16.", "sv": "Konstnärerna för utställningen Todellisuuksia / Realities finns på plats lördagen den 23 augusti 2025 kl. 14–16 för att guida dig genom sin konstvärld.", "en": "The artists of the Todellisuuksia / Realities exhibition can be met on Saturday 23 August 2025, and they will guide you into the world of their art from 14.00 to 16.00." }, "description": { "fi": "<p>Todellisuuksia / Realities -näyttelyn taiteilijat ovat tavattavissa lauantaina 23.8.2025 ja opastavat taiteensa maailmaan klo 14–16.</p><p>Lämpimästi tervetuloa nauttimaan valokuvataiteen runsaudesta!</p>", "sv": "<p>Konstnärerna för utställningen Todellisuuksia / Realities finns på plats lördagen den 23 augusti 2025 kl. 14–16 för att guida dig genom sin konstvärld.</p><p>Varmt välkommen att njuta av fotokonstens riklighet!</p>", "en": "<p>The artists of the Todellisuuksia / Realities exhibition can be met on Saturday 23 August 2025, and they will guide you into the world of their art from 14.00 to 16.00.</p><p>Join us and come enjoy the wealth of photographic art!</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2A76C2BD929819102FB38350D72ECA6E/Taiteilijatapaaminen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2A76C2BD929819102FB38350D72ECA6E/Konstnarsmote", "en": "http://www.vuotalo.fi/en/events/event/2A76C2BD929819102FB38350D72ECA6E/Artist_meeting" }, "name": { "fi": "Taiteilijatapaaminen – Todellisuuksia / Realities -näyttelyn oheisohjelmaa", "sv": "Konstnärsmöte – Utställningen Todellisuuksia / Realities sidoprogram", "en": "Artist meeting – Todellisuuksia / Realities exhibition programme" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66666/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66665", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1147907, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T12:12:51.707270Z", "last_modified_time": "2025-06-30T12:12:51.707286Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774973.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1147907/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T12:12:51.595959Z", "last_modified_time": "2025-08-04T08:12:34.700280Z", "date_published": null, "start_time": "2025-08-23T11:00:00Z", "end_time": "2025-08-23T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa syanotypia-työpajaan!", "sv": "Välkommen till en workshop i cyanotypi!", "en": "You are hereby invited to our cyanotype workshop!" }, "description": { "fi": "<p>Tervetuloa syanotypia-työpajaan!</p><p>Ihastu vanhaan 1800-luvulla kehitettyyn vedostustekniikkaan. Syanotypia on tekniikkana sekä yksinkertainen että sattumanvarainen. Jälki on kaunista! Unohda hetkeksi digimaailman hermostuttava häly ja anna syanotypian viedä sinut unenomaiseen siniseen sukellukseen.</p><p>Työpajassa opit syanotypia-vedosten tekemistä varjokuvatekniikkaa käyttämällä. Valotus tapahtuu joko auringonvalolla, jos aurinkoa riittää, tai UV-lampuilla. Työpajan ohjaajana on valokuvataiteilija Nina Dannert.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Suositusikä: yli 9-vuotiaille, lapset vain aikuisen kanssa</p><p>Mukaan mahtuu kerrallaan noin 15 osallistujaa.</p>", "sv": "<p>Välkommen till en workshop i cyanotypi!</p><p>Förälska dig i en gammal teknik för tryckning som utvecklades på 1800-talet. Cyanotypi är en både enkel och slumpmässig teknik. Resultatet blir vackert! Glöm för ett ögonblick den digitala världens stressiga liv och rörelse och låt cyanotypin ta dig med på en drömsk blå dykning.</p><p>I den här workshopen får du lära dig att göra cyanotypitryck med hjälp av skuggbildstekniken. Exponeringen sker antingen genom solljus, om det finns tillräckligt med sol, eller genom UV-lampor. Workshopen kommer att ledas av fotografkonstnär Nina Dannert.</p><p>Gratis, ingen föranmälan krävs.<br>Rekommenderad ålder: över 9 år, barn endast i sällskap med en vuxen <br>Det finns plats för cirka 15 deltagare åt gången.</p>", "en": "<p>You are hereby invited to our cyanotype workshop!</p><p>Fall in love with an old printmaking technique developed in the 19th century. The cyanotype is both simple and random as a technique. The results are beautiful! Forget the irritating hustle and bustle of the digital world for a moment and let the cyanotype take you on a dream-like dive into blue.</p><p>At this workshop, you will learn how to make cyanotype prints using the silhouette technique. The exposure process is carried out either with sunlight, if there is enough sun, or with UV lamps. The workshop is led by photography artist Nina Dannert.</p><p>Free of charge, no advance registration required.<br>Recommended age: over 9 years, children only with an adult <br>There is room for around 15 participants at a time.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/190574371701854F1570D9915B14140E/Syanotypia-tyopaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/190574371701854F1570D9915B14140E/Workshop_i_cyanotypi_", "en": "http://www.vuotalo.fi/en/events/event/190574371701854F1570D9915B14140E/Cyanotype_workshop_" }, "name": { "fi": "Syanotypia-työpaja – Todellisuuksia / Realities -näyttelyn oheisohjelmaa", "sv": "Workshop i cyanotypi – Utställningen Todellisuuksia / Realities sidoprogram", "en": "Cyanotype workshop – Todellisuuksia / Realities exhibition programme" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66665/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:bd0b3975-5993-4d49-b9aa-cc3c357d1417", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?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:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=Mktest_04082025_LE-test2520713777", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=Mktest_04082025_LE-test2520713777" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 1409374, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-04T06:22:58.065295Z", "last_modified_time": "2025-08-04T06:22:58.065312Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/7165da71-02e2-ef11-a731-000d3ab40ef6", "name": "Kuva Finlandiatalosta kuvateksti", "cropping": "", "photographer_name": "Ilmari Linssi", "alt_text": "Kuva Finlandiatalosta Alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1409374/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?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:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" } ], "created_time": "2025-08-04T06:23:00.408946Z", "last_modified_time": "2025-08-04T06:23:00.408965Z", "date_published": "2025-08-04T06:10:16Z", "start_time": "2025-08-10T09:00:00Z", "end_time": "2025-08-10T09: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": 5, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-01T08:00:00+03:00", "enrolment_end_time": "2025-08-10T10:00:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "Business Helsinki FI", "sv": "Business Helsinki SV" }, "short_description": { "fi": "Mktest 04082025 LE-test SHORT DESC", "sv": "Mktest 04082025 LE-test SHORT DESC SV" }, "description": { "fi": "<div><p>Mktest 04082025 LE-test LONG DESC</p></div>", "sv": "<div><div>Mktest 04082025 LE-test LONG DESC SV</div></div>" }, "info_url": null, "name": { "fi": "Mktest 04082025 LE-test", "sv": "Mktest 04082025 LE-test SV" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:bd0b3975-5993-4d49-b9aa-cc3c357d1417/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66333", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1148241, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T13:12:56.285391Z", "last_modified_time": "2025-06-30T13:12:56.285408Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773386.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1148241/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T13:12:56.159453Z", "last_modified_time": "2025-07-31T13:13:56.905166Z", "date_published": null, "start_time": "2025-09-05", "end_time": "2025-09-27", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Näyttelyn keskeisinä teemoina ovat mielenterveyskriisi, mielenterveys- ja päihdeongelmat, sosiaalisesti kestävä kehitys sekä syrjäytyminen.", "sv": "Utställningens huvudteman är psykisk kris, psykisk ohälsa och rusmedelsproblem, socialt hållbar utveckling och utanförskap.", "en": "The main themes of this exhibition are the mental health crisis, mental health and substance abuse problems, socially sustainable development and social exclusion." }, "description": { "fi": "<p>Näyttelyn keskeisinä teemoina ovat mielenterveyskriisi, mielenterveys- ja päihdeongelmat, sosiaalisesti kestävä kehitys sekä syrjäytyminen.</p><p>Teossarja antaa äänen mielenterveys- ja päihdetyön ammattilaisille ja heille, joille mielenterveys- ja päihdeongelmat ovat tuttuja omasta arkitodellisuudesta, unohtamatta mielenterveys- ja päihdeongelmista kärsivien läheisiä. Esillä on muun muassa valo- ja varjotaidetta sekä valokuva- ja videotaidetta. Teosten yhteydessä on informaatiota, kokemustietoa sekä otteita ihmisten tarinoista ja kokemuksista.</p><p>Näyttelyn taiteilijat Desra ja Vepa ovat haastatelleet ihmisiä, joita näyttelyn teemat koskettavat henkilökohtaisesti. Taustoiltaan ja ikäjakaumaltaan moninainen ryhmä on avannut Depa Kollektiiville luottamuksellisesti ja rohkeasti omia kokemuksiaan ja elämäntarinaansa. Vastaukset ohjaavat näyttelyn teosten visuaalista ilmettä ja sisältöä.</p><p>Taiteilijat nostavat esille myös empatiakyvyn tärkeyden. Näyttelyn Ohisektori-teoksessa yleisö pääsee pelaamaan empatiapeliä.</p><p>Tervetuloa näyttelyn avajaisiin torstaina 4.9.2025 klo 17–19!</p><p>Näyttelyyn järjestetään viittomakielinen opastus suomeksi 13.9.2025 klo 13–14, tervetuloa!</p><p><b>DepaKollektiivi</b><br>Depa Kollektiivi on kahden visuaalisen alan ammattilaisen muodostama, pääasiassa installaatioita toteuttava taidetiimi. Depa-sana muodostuu taiteilijoiden taiteilijanimien Desra ja Vepa yhdistelmästä. Erityisesti DepaKollektiivia kiinnostaa taide osana yhteiskunnallista keskustelua ja vaikuttamista. Taiteilijoiden työskentelyn lähtökohtina ovat inkluusio, yhdenvertaisuus, tasa-arvo, ihmisoikeudet ja moniäänisyys.</p><p>”Mielestämme taide kuuluu kaikille varallisuudesta tai sosiaalisesta asemasta riippumatta. Tuomme taidetta mielellämme matalankynnyksen paikkoihin ja pääsymaksuttomiin tiloihin. Haluamme mahdollistaa teosten saavutettavuuden ja teosten äärellä kohtaamisen laajalle ihmisryhmälle. ”</p><p>Lue lisää Depa Kollektiivista: https://depakollektiivi.com</p>", "sv": "<p>Utställningens huvudteman är psykisk kris, psykisk ohälsa och rusmedelsproblem, socialt hållbar utveckling och utanförskap.</p><p>Serien av verk ger en röst till yrkesfolk inom mentalvårds- och rusmedelsarbetet och till dem som är bekanta med psykisk ohälsa och missbruksproblem från den egna vardagsverkligheten, utan att glömma närstående till personer som drabbats av psykisk ohälsa och missbruksproblem. Utställningen omfattar bland annat ljus- och skuggkonst samt foto- och videokonst. Vid verken finns information, erfarenhetsbaserad kunskap och utdrag ur människors berättelser och upplevelser.</p><p>Utställningens konstnärer, Desra och Vepa, har intervjuat personer som är personligt berörda av utställningens teman. Gruppen som omfattar personer med olika bakgrunder och åldrar har konfidentiellt och modigt delat sina erfarenheter och sin livshistoria med Depa Kollektiivi. Svaren styr det visuella utseendet och innehållet i utställningens verk.</p><p>Konstnärerna lyfter också fram vikten av empati. I utställningens verk Ohisektori får publiken spela ett empatispel.</p><p>Välkommen till utställningens vernissage torsdagen den 4 september 2025 kl. 17–19!</p><p>En teckenspråkig guidning på finska om utställningen ordnas den 13 september 2025 kl. 13–14, välkommen!</p><p><b>DepaKollektiivi</b><br>DepaKollektiivi är ett konstteam som består av två yrkespersoner inom den visuella branschen och som i huvudsak skapar installationer. Ordet Depa är en kombination av artisternas artistnamn Desra och Vepa. DepaKollektiivi är särskilt intresserade av konst som en del av samhällsdebatten och påverkan. Utgångspunkterna för konstnärernas arbete är principerna om inkludering, jämlikhet, rättvisa, mänskliga rättigheter och en mångfald av röster.</p><p>”Vi anser att konst tillhör alla, oavsett förmögenhet eller social ställning. Vi tar gärna med oss konsten till lågtröskelplatser och avgiftsfria lokaler. Vi vill göra verken tillgängliga och åtkomliga för en bred grupp människor.”</p><p>Läs mer om DepaKollektiivi: https://depakollektiivi.com</p>", "en": "<p>The main themes of this exhibition are the mental health crisis, mental health and substance abuse problems, socially sustainable development and social exclusion.</p><p>This series of works gives a voice to mental health and substance abuse professionals and those who are familiar with mental health and substance abuse problems in their everyday lives, not forgetting the loved ones of those affected by mental health and substance abuse problems. The works include art forms such as light and shadow art and photography and video art. The works are accompanied by information, experiential knowledge and extracts from people’s stories and experiences.</p><p>The artists of the exhibition, Desra and Vepa, have interviewed people who are personally affected by the themes of the exhibition. A group of people with diverse backgrounds and ages recounted their own experiences and life stories to Depa Kollektiivi in a confidential and courageous way. Their answers steer the visual appearance and content of the works in the exhibition.</p><p>The artists also highlight the importance of empathy. In the Ohisektori work of the exhibition, the audience can play a game of empathy.</p><p>We hope to see you at the opening of the exhibition on Thursday 4 September 2025 at 17.00–19.00!</p><p>A Finnish sign language guided tour of the exhibition will be held on 13 September 2025 at 13.00–14.00. See you there!</p><p><b>DepaKollektiivi</b><br>Depa Kollektiivi is a team of two visual art professionals who mainly produce installations. The word Depa is a combination of the artists’ pseudonyms Desra and Vepa. Depa Kollektiivi is particularly interested in art as part of social discussions and influencing. The artists’ work is based on the principles of inclusion, equality, equity, human rights and pluralism.</p><p>“We believe that art belongs to everyone, regardless of wealth or social status. We are happy to bring art to low-threshold locations and places open without an entrance fee. We want our works to be accessible and facilitate encounters between a wide range of people.”</p><p>Read more about Depa Kollektiivi: https://depakollektiivi.com</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DB0CF408B5ED3C17278A2B962711B659/Depa_Kollektiivi_MielenTila", "sv": "http://www.caisa.fi/sv/evenemang/event/DB0CF408B5ED3C17278A2B962711B659/Depa_Kollektiivi_MielenTila", "en": "http://www.caisa.fi/en/events/event/DB0CF408B5ED3C17278A2B962711B659/Depa_Kollektiivi_MielenTila_Mental_Space_" }, "name": { "fi": "Depa Kollektiivi: MielenTila", "sv": "Depa Kollektiivi: MielenTila", "en": "Depa Kollektiivi: MielenTila (‘Mental Space’)" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66333/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22h67u", "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: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:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-31T11:31:50.952370Z", "last_modified_time": "2025-07-31T11:38:36.490476Z", "date_published": "2025-08-04T04:58:00Z", "start_time": "2025-08-04T05:00:00Z", "end_time": "2025-08-31T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Sari Lahtisen näyttely \"V*tunpaskat huumeet\" Entressen kirjaston Valatori-seinällä 4.-31.8.2025. Tervetuloa!", "sv": "Sari Lahtinens utställning \"V*tunpaskat huumeet\" i Entressebiblioteket under tiden 4.-31.8.2025.", "en": "Art exhibition \"V*tunpaskat huumeet\" by Sari Lahtinen in Entresse Library during 4.-31.8.2025." }, "description": { "fi": "<p>V*tunpaskat huumeet näyttely kertoo rinnakkaismaailmasta, johon olen joutunut läheiseni sairastuttua päihderiippuvuussairauteen. Asian käsittely sanoin ja kuvin on ollut ja on yksi selviytymiskeinoistani. Näyttelyn kuvakollaasien valokuvat ovat omasta ja vertaisten kuvagallerioista. Näyttelyn maalaukset ja piirustukset on toteuttanut kuvataiteilija Tuomas Hallivuo ajatusteni pohjalta. Kun elämästä tuli peli -runon on kirjoittanut vertainen, runoilija, novellisti, laulunsanojen tekijä Anniina Holma-Suutari.</p><p><br></p><p>Toivon, että näyttely tavoittaisi päihdesairauteen sairastuneiden läheisiä. Toivon myös, että näyttelyn teokset herättäisivät keskustelua, muuttaisivat asenteita ja lisäisivät ymmärrystä. Tarkoitus ei ole herättää sääliä. Mietin - jos edes joku päihdemaailmaan joutumaton alkaisi näkemään asioita hieman eri näkökulmasta, olisin onnistunut.</p><p> </p><p>Tämä näyttely on omistettu vertaisille.</p><p><br></p><p>@v_tunpaskathuumeet</p>", "sv": "<p>Välkommen att besöka Sari Lahtinens utställning \"V*tunpaskat huumeet\" i Entressebiblioteket under tiden 4.-31.8.2025. Utställningen kan ses under bibliotekets öppettider.</p>", "en": "<p>Art exhibition \"V*tunpaskat huumeet\" by Sari Lahtinen in Entresse Library during 4.-31.8.2025. Welcome!</p>" }, "info_url": null, "name": { "fi": "Sari Lahtinen: V*tunpaskat huumeet", "sv": "Sari Lahtinen: V*tunpaskat huumeet", "en": "Sari Lahtinen: V*tunpaskat huumeet" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22h67u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ifsu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22idd4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22idx4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ieli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ie7a/?format=api" } ], "images": [ { "id": 1490168, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-31T12:30:27.281840Z", "last_modified_time": "2024-12-31T12:30:27.282263Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4d633a11-3d95-4210-a079-e479f4d362c0.jpg", "name": "", "cropping": "100,0,700,600", "photographer_name": "Taru Mäkelä", "alt_text": "Kuvassa Sonja Peschkow kaksi kirjaa kädessään", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490168/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-07T07:32:16.350913Z", "last_modified_time": "2025-07-31T10:41:53.766414Z", "date_published": null, "start_time": "2025-09-15T14:30:00Z", "end_time": "2025-12-15T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Esbo stadsbibliotek", "en": "Espoo city library" }, "short_description": { "fi": "Tule selkolukupiiriin, jos olet aikuinen ja haluat kehittää lukutaitoasi tai innostua lukemisesta.", "sv": "Om du är vuxen och vill utveckla din läsförmåga eller få lust att läsa, är denna bokcirkel för dig. ", "en": "If you are an adult and want to develop your reading skills or get excited about reading, come to the reading circle." }, "description": { "fi": "<strong>Tervetuloa selkolukupiiriin!</strong><p><strong>MA 15.9. Yösyöttö, selkomukautus Hanna Männikkölahti</strong></p><p><strong>MA 20.10. Kesätuuli kuivaa kyyneleet, Johanna Veistinen</strong></p><p><strong>MA 17.11. Pimeän arkkitehti, selkomukautus Sanna-Leena Knuuttila</strong></p><p><strong>MA 15.12. Kuolema ehtoolehdossa, selkomukautus Anniina Salin</strong></p><p><br></p><p>Tule selkolukupiiriin, jos olet aikuinen ja haluat kehittää lukutaitoasi tai innostua lukemisesta.</p><p>Selkolukupiiri sopii esimerkiksi hyvin suomea puhuville maahanmuuttajille, lukuhaasteisille tai heille, jotka ovat kadottaneet lukemisen innon.</p><p>Selkokirjat ovat kirjoja, jotka on kirjoitettu helpolla suomen kielellä. Selkokirjoista on helppo aloittaa lukuharrastus.</p><p>Lukupiiriä vetää kirjastopedagogi Sonja Peschkow. Lisätietoja: sonja.peschkow@espoo.fi</p><p><br></p><p><br></p><p><br></p>\n<strong>Miten osallistut selkolukupiiriin:</strong><p><br></p><p>1.Tarvitset kirjastokortin. Lainaa lukupiirissä seuraavaksi luettava kirja. Lainaa kirja lähikirjastostasi, tai Sellon kirjastosta infotiskiltä. Jos sinulla ei vielä ole kirjastokorttia, saat kirjastokortin maksutta kirjastolta henkilötodistusta vastaan.</p><p>2.Tutustu kirjaan ennen lukupiiriä. Ei haittaa, vaikka et kerkeäisi lukea koko kirjaa.</p><p>3.Tule lukupiiriin keskustelemaan kirjasta.</p>", "sv": "<strong>Välkommen till lättläst bokcirkeln!</strong><p><br></p><p><strong>Må 15.9. Yösyöttö, selkomukautus Hanna Männikkölahti</strong></p><p><strong>Må 20.10. Kesätuuli kuivaa kyyneleet, Johanna Veistinen</strong></p><p><strong>Må 17.11. Pimeän arkkitehti, selkomukautus Sanna-Leena Knuuttila</strong></p><p><strong>Må 15.12. Kuolema ehtoolehdossa, selkomukautus Anniina Salin</strong></p><p> </p><p>Om du är vuxen och vill utveckla din läsförmåga eller få lust att läsa, är denna bokcirkel för dig.</p><p>Bokcirkeln lämpar sig för invandrare som talar bra finska, för personer med läsnedsättning eller för personer som har tappat läslusten.</p><p>Lättlästa böcker är böcker som är skrivna på lättläst språk. De är ett enkelt sätt att komma i gång med en läshobby. Språket i bokcirkeln är finska.</p><p> </p><p>Bokcirkeln leds av bibliotekspedagog Sonja Peschkow. För mer information: sonja.peschkow@espoo.fi</p><p> </p><p><br></p><p><br></p><p><br></p><p><br></p>\n<strong>Så här kommer du med i bokcirkeln:</strong><p> </p><p>1.Du behöver ett bibliotekskort. Låna den bok som läsas härnäst i bokcirkeln. Låna en bok på ditt lokala bibliotek eller i informationsdisken på Sello biblioteket. Om du inte redan har ett bibliotekskort kan du få det kostnadsfritt på biblioteket mot uppvisande av legitimation.</p><p>2.Bekanta dig med boken innan bokcirkeln. Det spelar ingen roll om du inte har tid att läsa hela boken.</p><p>3.Kom till läsecirkeln för att diskutera boken.</p>", "en": "<strong>Welcome to the easy-to-read book circle!</strong><p> </p><p><strong>Mon 15.9. Yösyöttö, selkomukautus Hanna Männikkölahti</strong></p><p><strong>Mon 20.10. Kesätuuli kuivaa kyyneleet, Johanna Veistinen</strong></p><p><strong>Mon 17.11. Pimeän arkkitehti, selkomukautus Sanna-Leena Knuuttila</strong></p><p><strong>Mon 15.12. Kuolema ehtoolehdossa, selkomukautus Anniina Salin</strong></p><p><strong> </strong></p><p>If you are an adult and want to develop your reading skills or get excited about reading, come to the reading circle.</p><p>The reading circle is suitable for immigrants who speak Finnish well, for people with a reading challenge or for those who have lost the enthusiasm for reading. </p><p>Easy-to-read books are books that are written in easy-to-read Finnish. They are an easy way to start a reading hobby.</p><p>The reading circle is hosted by library pedagogue Sonja Peschkow. For more information: sonja.peschkow@espoo.fi</p><p> </p><p><br></p><p><br></p><p><br></p><p><br></p><p><br></p><p><br></p><p><br></p>\n<strong>How to join the reading circle:</strong><p><br></p><p>1.You need a library card. Borrow the next book to be read for the reading circle. Borrow a book from your local library, or from the information desk at Sello library. If you don't have a library card yet, you can acquire one from the library free of charge - please take your ID with you.</p><p>2.Acquaint yourself with the book before the reading circle.</p><p>3.Come to the reading circle to discuss the book.</p>" }, "info_url": { "fi": "https://www.facebook.com/events/589437670886172/589437677552838/?acontext=%7B%22event_action_history%22%3A[%7B%22extra_data%22%3A%22%22%2C%22mechanism%22%3A%22unknown%22%2C%22surface%22%3A%22user_timeline%22%7D%2C%7B%22extra_data%22%3A%22%22%2C%22mechanism%22%3A%22events_section_for_community_additional_profile%22%2C%22surface%22%3A%22community_additional_profile%22%7D%2C%7B%22extra_data%22%3A%22%22%2C%22mechanism%22%3A%22surface%22%2C%22surface%22%3A%22create_dialog%22%7D]%2C%22ref_notif_type%22%3Anull%7D&onload_action=open_invite_flow&show_created_event_toast=true" }, "name": { "fi": "Selkolukupiiri Ison Omenan kirjastossa, syksy 2025", "sv": "Lättläst bokcirkel på finska i Iso Omena bibliotek, höst 2025", "en": "Easy-to-read book circle in Finnish Iso Omena Library, autumn 2025" }, "provider_contact_info": null, "location_extra_info": { "fi": "Meri", "sv": "Meri", "en": "Meri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ifsu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22iggq", "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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490167, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-31T10:10:49.904911Z", "last_modified_time": "2025-07-31T10:10:49.904924Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c59a783b-715b-4357-b47a-1a7a24e69501.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kuvassa Duo Kailuluotain kaksikko Marjut Salonen (laulu) ja Jorma Vartiainen (kitara).", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490167/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-07-31T10:37:05.088562Z", "last_modified_time": "2025-07-31T10:37:05.088580Z", "date_published": null, "start_time": "2025-12-14T12:30:00Z", "end_time": "2025-12-14T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "Duo Kaikuluotain joulukonsertit <p><strong>Sunnuntai 14.12. klo 14.30-15.30 Sellon kirjasto (Lava) </strong></p><p>Akustista, jouluista sielumusiikkia: Marjut Salonen (laulu) ja Jorma Vartiainen (kitara). </p><p>Kuullaan tunnelmallista joulumusiikkia vuosien varrelta, suomeksi ja englanniksi, Kaikuluotain soittaa myös muutamia omia biisejään. </p><p>Duo Kaikuluotaimeen voi tutustua tarkemmin <a href=\"www.facebook.com/kaikumusiikki/ \">Facebookissa</a> ja <a href=\"www.kaikuluotain.net\">nettisivuilla</a>. Instagramista Kaikuluotaimen löytää <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki.</a></p><p>------</p><p><a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/kulttuuriketju\">Espoon kaupungin Kulttuuriketju</a> välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.</p><p>Kulttuuriketjun esityksiä järjestetään elokuusta joulukuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 41 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.</p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p><p>Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut</p>", "sv": "Duo Kaikuluotain julkonserter<p><strong>Söndag 14.12 kl. 14.30 Sello biblioteket (Scen)</strong></p><p>Akustisk, julig soulmusik: Marjut Salonen (sång) och Jorma Vartiainen (gitarr).</p><p>Vi får höra stämningsfull julmusik genom åren, på finska och engelska, och Kaikuluotain spelar även några av sina egna låtar. </p><p>Duo Kaikuluotain kan du lära känna bättre på <a href=\"www.facebook.com/kaikumusiikki/\">Facebook </a>och på <a href=\"www.kaikuluotain.net\">webbplatsen</a>. På Instagram hittar du Kaikuluotain <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki.</a></p><p>-----</p><p><a href=\"https://www.espoo.fi/sv/kultur-och-fritid/kulturkedjan\">Esbo stads kulturkedjan</a> förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.</p><p>Kulturkedjans föreställningar arrangeras från augusti till december.</p><p>Kulturkedjan bjuder på fantastiska 41 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.</p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p><p>Evenemangen genomförs i Espoo City Cultural Services</p>", "en": "Duo Kaikuluotain Christmas concerts<p><strong>Sunday 14.12. klo 14.30-15.30 Sello Library (Stage) </strong></p><p>Acoustic soul music with Christmas spirit: Marjut Salonen (vocals) and Jorma Vartiainen (guitar). </p><p>Atmospheric and moody Christmas music from over the years in Finnish and English. Kaikuluotain will also play a few of their own songs. </p><p>You can check out Duo Kaikuluotain’s music at <a href=\"www.facebook.com/kaikumusiikki/\">Facebook</a> and their <a href=\"www.kaikuluotain.net\">website</a>. Also on Instragram: <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki </a></p><p>-----</p><p><a href=\"https://www.espoo.fi/en/culture-and-leisure/culture-chain\">Espoo City Culture Chain</a> offers art and culture services to elderly peopleI. Performances are also organised in libraries.</p><p>Cultural Chain performances are organized August to December.</p><p>The Cultural Chain brings an impressive 41 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.</p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p><p><br></p><p>The events are carried out in Espoo City Cultural Services</p>" }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "name": { "fi": "Kulttuuriketju - Duo Kaikuluotain joulukonsertit ", "sv": "Kulturkedjan - Duo Kaikuluotain julkonserter", "en": "Cultural Chain - Duo Kaikuluotain Christmas concerts" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22iggq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ihty", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490167, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-31T10:10:49.904911Z", "last_modified_time": "2025-07-31T10:10:49.904924Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c59a783b-715b-4357-b47a-1a7a24e69501.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kuvassa Duo Kailuluotain kaksikko Marjut Salonen (laulu) ja Jorma Vartiainen (kitara).", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490167/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-07-31T10:29:02.255988Z", "last_modified_time": "2025-07-31T10:30:09.354891Z", "date_published": null, "start_time": "2025-12-07T12:30:00Z", "end_time": "2025-12-07T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "Duo Kaikuluotain joulukonsertit <p><strong>Sunnuntai 7.12. klo 14:30 Ison Omenan kirjasto</strong></p><p>Akustista, jouluista sielumusiikkia: Marjut Salonen (laulu) ja Jorma Vartiainen (kitara). </p><p>Kuullaan tunnelmallista joulumusiikkia vuosien varrelta, suomeksi ja englanniksi, Kaikuluotain soittaa myös muutamia omia biisejään. </p><p>Duo Kaikuluotaimeen voi tutustua tarkemmin <a href=\"www.facebook.com/kaikumusiikki/ \">Facebookissa</a> ja <a href=\"www.kaikuluotain.net\">nettisivuilla. </a>Instagramista Kaikuluotaimen löytää <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki.</a></p><p>------</p><p><a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/kulttuuriketju\">Espoon kaupungin Kulttuuriketju</a> välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.</p><p>Kulttuuriketjun esityksiä järjestetään elokuusta joulukuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 41 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.</p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p><p>Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut</p>", "sv": "Duo Kaikuluotain julkonserter<p><strong>Söndag 7.12 kl. 14:30 Iso Omena bibliotek </strong></p><p>Akustisk, julig soulmusik: Marjut Salonen (sång) och Jorma Vartiainen (gitarr).</p><p>Vi får höra stämningsfull julmusik genom åren, på finska och engelska, och Kaikuluotain spelar även några av sina egna låtar. </p><p>Duo Kaikuluotain kan du lära känna bättre på <a href=\"www.facebook.com/kaikumusiikki/\">Facebook </a>och på <a href=\"www.kaikuluotain.net\">webbplatsen</a>. På Instagram hittar du Kaikuluotain <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki.</a></p><p>-----</p><p><a href=\"https://www.espoo.fi/sv/kultur-och-fritid/kulturkedjan\">Esbo stads kulturkedjan</a> förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.</p><p>Kulturkedjans föreställningar arrangeras från augusti till december.</p><p>Kulturkedjan bjuder på fantastiska 41 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.</p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p><p>Evenemangen genomförs i Espoo City Cultural Services</p>", "en": "Duo Kaikuluotain Christmas concerts<p><strong>Sunday 7.12. at 2:30 pm. at Iso Omena Library </strong></p><p>Acoustic soul music with Christmas spirit: Marjut Salonen (vocals) and Jorma Vartiainen (guitar). </p><p>Atmospheric and moody Christmas music from over the years in Finnish and English. Kaikuluotain will also play a few of their own songs. </p><p>You can check out Duo Kaikuluotain’s music at <a href=\"www.facebook.com/kaikumusiikki/\">Facebook</a> and their <a href=\"www.kaikuluotain.net\">website</a>. Also on Instragram: <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki </a></p><p>-----</p><p><a href=\"https://www.espoo.fi/en/culture-and-leisure/culture-chain\">Espoo City Culture Chain</a> offers art and culture services to elderly peopleI. Performances are also organised in libraries.</p><p>Cultural Chain performances are organized August to December.</p><p>The Cultural Chain brings an impressive 41 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.</p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p><p><br></p><p>The events are carried out in Espoo City Cultural Services</p>" }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "name": { "fi": "Kulttuuriketju - Duo Kaikuluotain joulukonsertit ", "sv": "Kulturkedjan - Duo Kaikuluotain julkonserter", "en": "Cultural Chain - Duo Kaikuluotain Christmas concerts" }, "provider_contact_info": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ihty/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22iidy", "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:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490167, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-31T10:10:49.904911Z", "last_modified_time": "2025-07-31T10:10:49.904924Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c59a783b-715b-4357-b47a-1a7a24e69501.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kuvassa Duo Kailuluotain kaksikko Marjut Salonen (laulu) ja Jorma Vartiainen (kitara).", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490167/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-07-31T10:22:46.450687Z", "last_modified_time": "2025-07-31T10:29:18.532911Z", "date_published": null, "start_time": "2025-12-07T10:00:00Z", "end_time": "2025-12-07T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "Duo Kaikuluotain joulukonsertit <p><strong>Sunnuntai 7.12. klo 12-13 Lippulaivan kirjasto (Salonki) </strong></p><p>Akustista, jouluista sielumusiikkia: Marjut Salonen (laulu) ja Jorma Vartiainen (kitara). </p><p>Kuullaan tunnelmallista joulumusiikkia vuosien varrelta, suomeksi ja englanniksi, Kaikuluotain soittaa myös muutamia omia biisejään. </p><p>Duo Kaikuluotaimeen voi tutustua tarkemmin <a href=\"www.facebook.com/kaikumusiikki/ \">Facebookissa</a> ja <a href=\"www.kaikuluotain.net\">nettisivuilla</a>. Instagramista Kaikuluotaimen löytää <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki.</a></p><p>------</p><p><a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/kulttuuriketju\">Espoon kaupungin Kulttuuriketju</a> välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.</p><p>Kulttuuriketjun esityksiä järjestetään elokuusta joulukuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 41 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.</p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p><p>Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut</p>", "sv": "Duo Kaikuluotain julkonserter<p><strong>Söndag 7.12 kl. 13 Lippulaivas biblioteket (Salonki)</strong></p><p>Akustisk, julig soulmusik: Marjut Salonen (sång) och Jorma Vartiainen (gitarr).</p><p>Vi får höra stämningsfull julmusik genom åren, på finska och engelska, och Kaikuluotain spelar även några av sina egna låtar. </p><p>Duo Kaikuluotain kan du lära känna bättre på <a href=\"www.facebook.com/kaikumusiikki/\">Facebook </a>och på <a href=\"www.kaikuluotain.net\">webbplatsen</a>. På Instagram hittar du Kaikuluotain <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki.</a></p><p>-----</p><p><a href=\"https://www.espoo.fi/sv/kultur-och-fritid/kulturkedjan\">Esbo stads kulturkedjan</a> förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.</p><p>Kulturkedjans föreställningar arrangeras från augusti till december.</p><p>Kulturkedjan bjuder på fantastiska 41 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.</p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p><p>Evenemangen genomförs i Espoo City Cultural Services</p>", "en": "Duo Kaikuluotain Christmas concerts<p><strong>Sunday 7.12. klo 12-13 Lippulaiva Library (Salonki) </strong></p><p>Acoustic soul music with Christmas spirit: Marjut Salonen (vocals) and Jorma Vartiainen (guitar). </p><p>Atmospheric and moody Christmas music from over the years in Finnish and English. Kaikuluotain will also play a few of their own songs. </p><p>You can check out Duo Kaikuluotain’s music at <a href=\"www.facebook.com/kaikumusiikki/\">Facebook</a> and their <a href=\"www.kaikuluotain.net\">website</a>. Also on Instragram: <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki </a></p><p>-----</p><p><a href=\"https://www.espoo.fi/en/culture-and-leisure/culture-chain\">Espoo City Culture Chain</a> offers art and culture services to elderly peopleI. Performances are also organised in libraries.</p><p>Cultural Chain performances are organized August to December.</p><p>The Cultural Chain brings an impressive 41 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.</p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p><p><br></p><p>The events are carried out in Espoo City Cultural Services</p>" }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "name": { "fi": "Kulttuuriketju - Duo Kaikuluotain joulukonsertit ", "sv": "Kulturkedjan - Duo Kaikuluotain julkonserter", "en": "Cultural Chain - Duo Kaikuluotain Christmas concerts" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22iidy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ijxi", "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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-07-31T10:17:17.921304Z", "last_modified_time": "2025-07-31T10:17:17.921322Z", "date_published": null, "start_time": "2025-09-27T12:00:00Z", "end_time": "2025-09-27T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "Duo Alex ja Joonatan<p><strong>Lauantai 27.9. klo 15 Sellon kirjasto Lava </strong></p><p>Duo Alex ja Joonatan yhdistää jazzin kultaiset klassikot ja rakastetut suomalaiset kappaleet – luvassa on musiikkia, joka saa jalan keinumaan ja mielen rauhoittumaan. </p><p><strong>Alex Ikonen </strong>on suomalainen laulaja. Hän on tullut tutuksi The Voice of Finlandin viidenneltä kaudelta. Sen jälkeen Alex on tehnyt ahkerasti keikkoja, joista merkittävimpiin lukeutuu esiintyminen vuoden 2018 Linnan juhlissa. Alex on erikoistunut esittämään ikivihreitä jazzstandardeja. Esikuvanaan hänellä on ollut muiden muassa Frank Sinatra. Alex osaa tulkita kappaleita omaperäisesti tavalla, joka tuo mieleen Broadwayn tähtiloiston. </p><p><strong>Joonatan Henriksson</strong> on 19-vuotias nuori jazzklarinetisti- ja pianisti, joka on nuoresta iästään huolimatta työskennellyt monenlaisissa kokoonpanoissa. Hän opiskelee nykyään Sibelius-Akatemian jazzosastolla ja on konsertoinut sekä kotimaisten että kansainvälisten huippumuusikoiden kanssa. Henrikssonille myönnettiin Jazzliiton ensimmäinen vuosittain jakama Taimi-palkinto vuonna 2023. </p><p><br></p><p><strong>Alex Ikonen, laulu </strong></p><p><strong>Joonatan Henriksson, piano </strong></p><p> </p><p>Yhteistyössä: Espoo Big Band ry </p><p><br></p><p><a href=\"https://apriljazz.fi/\">KOTISIVUT</a></p><p><a href=\"www.facebook.com/apriljazzfestival\">FACEBOOK</a></p><p><a href=\"https://www.instagram.com/apriljazzfestival/ \">INSTAGRAM</a></p><p><br></p><p>------</p><p><a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/kulttuuriketju\">Espoon kaupungin Kulttuuriketju</a> välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.</p><p>Kulttuuriketjun esityksiä järjestetään elokuusta joulukuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 41 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.</p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p><p><br></p><p><br></p><p>Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut</p>", "sv": "Duo Alex och Joonatan<p><strong>Lördag 27.9. kl.15 Sello bibliotek (Scen) </strong></p><p>Duon Alex och Joonatan kombinerar jazzens gyllene klassiker och älskade finska sånger - det utlovas musik som får fötterna att gunga och sinnet att stillas. </p><p><strong>Alex Ikonen</strong> är en finländsk sångare. Han blev känd på den femte säsongen av The Voice of Finland. Efter det här har Alex flitigt gjort spelningar, av vilka den mest anmärkningsvärda var hans framträdande på slottsbalen 2018. Alex har specialiserat sig på att framföra evigt gröna jazzstandarder. Som förebild har han haft bland annat Frank Sinatra. Alex tolkar sånger på ett unikt sätt, som för tankarna till Broadways stjärnglans. </p><p><strong>Joonatan Henriksson</strong> är en 19-årig ung jazzklarinettist och -pianist, som trots sin unga ålder har arbetat i en mängd olika ensembler. Han studerar för tillfället på Sibeliusakademins jazzavdelning och har uppträtt tillsammans med både inhemska och internationella toppmusiker. Henriksson tilldelades som den första Jazzförbundets årliga Taimi-pris år 2023. </p><p><br></p><p><strong>Alex Ikonen, sång </strong></p><p><strong>Joonatan Henriksson, piano </strong></p><p><br></p><p>I samarbete med: Espoo Big Band ry </p><p><br></p><p><a href=\"https://apriljazz.fi/home\">HEMSIDAN</a></p><p><a href=\" www.facebook.com/apriljazzfestival\">FACEBOOK</a></p><p><a href=\"https://www.instagram.com/apriljazzfestival/ \">INSTAGRAM</a></p><p>-----</p><p><a href=\"https://www.espoo.fi/sv/kultur-och-fritid/kulturkedjan\">Esbo stads kulturkedjan</a> förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.</p><p>Kulturkedjans föreställningar arrangeras från augusti till december.</p><p>Kulturkedjan bjuder på fantastiska 41 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.</p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p><p><br></p><p>Evenemangen genomförs i Espoo City Cultural Services</p>", "en": "Duo Alex and Joonatan<p><strong>Saturday 27.9. 3 pm Sello Library Stage</strong></p><p><br></p><p>The duo Alex and Joonatan combine golden jazz classics and beloved Finnish songs - music that will make your feet sway and your mind calm down. </p><p><strong>Alex Ikonen</strong> is a Finnish singer. He is best known from the fifth season of The Voice of Finland. Since then, Alex has been busy performing, most notably at the 2018 Presidential Independence Day Reception. Alex specialises in performing classic jazz standards. His role models have included Frank Sinatra, among others. Alex's unique take on the songs really reminds you of the amazing talent you see on Broadway. </p><p><strong>Joonatan Henriksson</strong> is a 19-year-old young jazz clarinetist and pianist who, despite his young age, has worked in a wide range of ensembles. He is currently studying at the jazz department of the Sibelius Academy and has performed with both national and international top musicians. Henriksson was awarded the Jazz Union's first annual Taimi Prize in 2023. </p><p><br></p><p><strong>Alex Ikonen, vocals </strong></p><p><strong>Joonatan Henriksson, piano </strong></p><p><br></p><p>In collaboration with: Espoo Big Band ry </p><p><br></p><p><a href=\"https://apriljazz.fi/en/home\">HOME PAGE</a></p><p><a href=\"www.facebook.com/apriljazzfestival\">FACEBOOK</a></p><p><a href=\"https://www.instagram.com/apriljazzfestival/ \">INSTAGRAM</a></p><p><br></p><p>-----</p><p><a href=\"https://www.espoo.fi/en/culture-and-leisure/culture-chain\">Espoo City Culture Chain</a> offers art and culture services to elderly peopleI. Performances are also organised in libraries.</p><p>Cultural Chain performances are organized August to December.</p><p>The Cultural Chain brings an impressive 41 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.</p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p><p><br></p><p>The events are carried out in Espoo City Cultural Services</p>" }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "name": { "fi": "Kulttuuriketju - Duo Alex ja Joonatan Sellon kirjastossa", "sv": "Kulturkedjan - Duo Alex och Joonatan på Sello bibliotek ", "en": "Cultural Chain - Duo Alex and Joonatan at Sello Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ijxi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22inbe", "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/helmet:11727/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ikk4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ilai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ilvq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22imlq/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-28T12:27:45.626049Z", "last_modified_time": "2025-07-31T10:06:42.297464Z", "date_published": null, "start_time": "2025-09-01T11:00:00Z", "end_time": "2025-12-01T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lukupiiri kokoontuu joka kuun ensimmäisenä maanantaina.", "sv": "Bokecirkeln samlas den första måndagen varje månad.", "en": "The book club meets on the first Monday of every month." }, "description": { "fi": "<p>Abdulrazak Gurnah:Kivisydän (ma 1.9.2025)</p><p>Paolo Giordano: Tasmania (ma 6.10.2025)</p><p>Raija Siekkinen: Novellit (ma 3.11. 2025)</p><p>Trevor Noah: Laiton lapsi (ma 1.12.2025)</p><p><br></p><p>Lukupiirissä keskustellaan suomeksi. Lukupiirin vetäjä on kirjastopedagogi Hanna Lindy. Lisätietoja saat mailitse hanna.lindy@espoo.fi</p><p>Tervetuloa!</p>", "sv": "<p>Abdulrazak Gurnah:Kivisydän (ma 1.9.2025)</p><p>Paolo Giordano: Tasmania (ma 6.10.2025)</p><p>Raija Siekkinen: Novellit (ma 3.11. 2025)</p><p>Trevor Noah: Laiton lapsi (ma 1.12.2025)</p><p><br></p><p>I läsecirkeln förs diskussionen på finska. Välkommen!</p>", "en": "<p>Abdulrazak Gurnah:Kivisydän (ma 1.9.2025)</p><p>Paolo Giordano: Tasmania (ma 6.10.2025)</p><p>Raija Siekkinen: Novellit (ma 3.11. 2025)</p><p>Trevor Noah: Laiton lapsi (ma 1.12.2025)</p><p><br></p><p>The discussion in the book club is in Finnish. Welcome!</p>" }, "info_url": null, "name": { "fi": "Ison Omenan kirjaston lukupiiri", "sv": "Bokecirkeln på finska, Iso Omena bibliotek", "en": "Finnish book club at the Iso Omena Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Meri", "sv": "Meri", "en": "Meri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22inbe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }