Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=68
{ "meta": { "count": 21738, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=69", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=67" }, "data": [ { "id": "kulke:67650", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493946, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T12:13:04.358658Z", "last_modified_time": "2025-11-28T12:13:04.358672Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782293.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493946/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T12:13:04.136654Z", "last_modified_time": "2025-11-28T12:13:04.659578Z", "date_published": null, "start_time": "2025-12-09", "end_time": "2026-06-30", "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, "short_description": { "fi": "Mun Malmi-valokuvanäyttely on kunnianosoitus Malmin moninaisuudelle. Tervetuloa avajaisiin 9.12. klo 17–19!", "sv": "Malm är inte detsamma för alla, utan mångsidigt, som en stad inom staden.", "en": "Malmi is not the same for everyone, it is diverse like a city within a city." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi-valokuvanayttely", "sv": "http://www.malmitalo.fi/sv/evenemang/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi_Mitt_Malmi_fotoutstallning", "en": "http://www.malmitalo.fi/en/events/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi_My_Malmi_photo_exhibition" }, "name": { "fi": "Mun Malmi-valokuvanäyttely – Anna Autio & Kaisa Viitanen", "sv": "Mun Malmi (Mitt Malmi) fotoutställning – Anna Autio & Kaisa Viitanen", "en": "Mun Malmi (My Malmi) photo exhibition – Anna Autio & Kaisa Viitanen" }, "description": { "fi": "<p>Mun Malmi-valokuvanäyttely on kunnianosoitus Malmin moninaisuudelle. Tervetuloa avajaisiin 9.12. klo 17–19!</p><p>Malmi ei ole yksi ja sama kaikille, se on monimuotoinen kuin kaupunki kaupungissa. Jatkuvasti laajeneva kaupunginosa on koti 26 000 ihmiselle, mutta myös työpaikka, läpikulkupaikka ja jopa lomakohde.</p><p>Tiistaina 9. joulukuuta 2025 klo 17–19 Malmitalon edustalla avautuu valokuvanäyttely nimeltä Mun Malmi. Kuvat on ottanut valokuvataiteilija Anna Autio, tekstit ovat toimittaja Kaisa Viitasen. ”Näyttely on kunnianosoitus Malmin moninaisuudelle. Jokaisella kuviin valitulla henkilöllä on Malmiin omanlaisensa suhde”, tekijät sanovat.</p><p>Veikko Halmetoja ja Jussi Perämäki muuttivat Malmille Itäkeskuksesta. ”Monella kaverillamme on ollut Malmista ennakkoluuloja, mutta kun heidät sai maaniteltua tänne, he hurmioituivat. Monelle on yllätys, että Malmilla on myös tällainen vehreä puutalokukkula”, taidegalleristi Halmetoja sanoo.</p><p>13-vuotias Jessika Ahonen on neljännen polven malmilainen, mutta vanhempiensa kanssa hän ei ole viime aikoina jaksanut keskustella. Luottoaikuisia hän on onneksi löytynyt Malmin nuorisotalolta.</p><p>Kaikille Malmi ei ole koti, mutta silti se voi olla erityinen ja rakas. Georgette Singbe vietti alkusyksystä 2025 Malmilla kuusi viikkoa. Hän asui ystävänsä vierashuoneessa ja kävi monta kertaa Malmin uimahallissa. ”Kaikenikäiset naiset uivat ilman kehohäpeää. <br>Kotimaassani Beninissä sellainen ei olisi mahdollista.”</p><p>Mirella Ablaoui kuuntelee malmilaisia työkseen, sillä hän on Helsingin kulttuurikeskusten ensimmäinen kohtaamiseen erikoistunut aulaemäntä. ”Näen Malmilla yksinäisyyttä. Monelle malmilaiselle olen ainoa ihminen, jonka kanssa he päivän aikana juttelevat.”</p><p>Valari Tynkkynen leikki 20 vuotta sitten grafiikkaohjelmalla ja loi Miami Vicen logosta kepeän Malmi-version. Joka vuosi kymmenet malmilaiset tatuoivat Tynkkysen tekemiä kuvituksia ihoonsa.</p><p>Mun Malmi -näyttely ripustetaan Malmitalon taakse rakennustyömaan aitaan. Kuvat ja tekstit ovat esillä puistoremontin ajan eli noin vuoden. Näyttely on Malmitalon ja Helsingin kaupunginkanslian aluerakentamisen yksikön yhteistuotanto.</p><p>Avajaisissa 9.12.2025 klo 17–19 on puuro- ja glögitarjoilu, tervetuloa!</p><p>Vapaa pääsy!</p>", "sv": "<p>Malm är inte detsamma för alla, utan mångsidigt, som en stad inom staden.</p><p>Stadsdelen växer hela tiden och är hem för 26 000 personer, men också en arbetsplats, genomfartsplats och även ett semestermål.</p><p>Tisdagen den 9 december 2025 kl. 17-19 öppnar fotoutställningen Mitt Malm framför Malms kulturhus. Fotokonstnären Anna Autio har tagit fotografierna och journalisten Kaisa Viitanen skrivit texterna. ”Utställningen är en hyllning till mångfalden i Malm. Varje person som valts till fotografierna har sin egen unika relation till Malm”, säger upphovspersonerna.</p><p>Veikko Halmetoja och Jussi Perämäki flyttade till Malm från Östra centrum. ”Många av våra vänner har haft fördomar mot Malm men de har blivit förtjusta när vi lyckats locka dem hit. Det är en överraskning för många att det också finns en sådan här grönskande höjd med trähus i Malm”, berättar konstgalleristen Halmetoja.</p><p>Den 13-åriga Jessika Ahonen är en Malmbo i fjärde generationen men hon har inte orkat prata med sina föräldrar under den senaste tiden. Lyckligtvis har hon hittat pålitliga vuxna på Malms ungdomsgård. Malm är inte ett hem för alla, men det kan ändå vara speciellt och kärt. Georgette Singbe tillbringade sex veckor i Malm i början av hösten 2025. Hon bodde i ett gästrum hos sin vän och besökte Malms simhall flera gånger. ”Kvinnor i alla åldrar simmade utan skam för sin kropp. Det skulle inte vara möjligt i mitt hemland Benin.”</p><p>Mirella Ablaoui lyssnar på Malmbor i sitt arbete, eftersom hon är den första receptionisten i Helsingfors kulturcentraler som är specialiserad på möten. ”Jag ser ensamhet i Malm. För många Malmbor är jag den enda människan som de pratar med under dagen.”</p><p>För 20 år sedan lekte Valari Tynkkynen med ett grafikprogram och skapade en rolig Malmversion av Miami Vice-logotypen. Tiotals Malmbor tatuerar Tynkkynens illustrationer på sin hud varje år. Utställningen Mitt Malm hängs upp på byggarbetsplatsens stängsel bakom Malms kulturhus.</p><p>Fotografierna och texterna finns utställda under renoveringen av parken, det vill säga i cirka ett år. Utställningen är en samproduktion mellan Malms kulturhus och Helsingfors stad. Vid vernissagen 9.12. kl 17–19 serveras gröt och glögg.</p>", "en": "<p>Malmi is not the same for everyone, it is diverse like a city within a city.</p><p>The ever-expanding district is home to 26,000 people, but it is also a place of work, transit and even a holiday destination.</p><p>On Tuesday 9 December 2025 at 5-7pm, a photography exhibition called Mun Malmi (My Malmi) will open in front of Cultural Centre Malmitalo. The photos were taken by Photographer Anna Autio, and the texts were written by Journalist Kaisa Viitanen. “The exhibition is a tribute to the diversity of Malmi. Each person selected for the pictures has a different relationship with Malmi,” the artists say.</p><p>Veikko Halmetoja and Jussi Perämäki moved to Malmi from Itäkeskus. “A lot of our friends have had preconceptions about Malmi, but once we got them here, they were ecstatic. It’s a surprise to many people that Malmi also has such a lush hill fill of wooden houses,” says art gallery owner Halmetoja.</p><p>Jessika Ahonen, 13, is a fourth generation Malmi native, but she hasn’t been able to talk to her parents lately. Fortunately, she has found trustworthy adults at the Malmi Youth Centre. Not everyone calls Malmi home, but it can still be a special place for them.</p><p>Georgette Singbe spent six weeks in Malmi in early autumn 2025. She lived in a friend’s guest room and visited the Malmi swimming hall many times. “Women of all ages swam without body shame. In my home country of Benin that would not be possible.”</p><p>Mirella Ablaoui listens to the people of Malmi for a living, as she is the first receptionist specialising in encounters in Helsinki’s cultural centres. “I see loneliness in Malmi. For many people in Malmi, I am the only person they talk to during the day.”</p><p>Twenty years ago, Valari Tynkkynen played with graphics software to create a cheeky version of the Miami Vice logo. Every year, dozens of Malmi residents have Tynkkynen’s illustrations tattooed on their skin.</p><p>The ‘Mun Malmi’ exhibition will be hung on the construction site fence behind Cultural Centre Malmitalo. The photos and texts will be on display during the renovation of the park, i.e. for about a year. The exhibition is a co-production between Cultural Centre Malmitalo and the City of Helsinki.</p><p>Porridge and glogg will be served at the opening ceremony 9.12 at 17-19.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67650/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67139", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" }, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491043, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T13:13:36.219471Z", "last_modified_time": "2025-10-08T13:13:36.219485Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491043/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T13:13:36.138765Z", "last_modified_time": "2025-11-28T12:13:01.178759Z", "date_published": null, "start_time": "2025-11-29T16: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, "short_description": { "fi": "Esitys on valitettavasti jouduttu perumaan loukkaantumisen vuoksi.", "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.", "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3784DD1C329CCE946F7B1CC20ED58385/PERUTTU_Kinetic_Orchestra_Working_Class_Heroes_", "sv": "http://www.stoa.fi/sv/evenemang/event/3784DD1C329CCE946F7B1CC20ED58385/INSTALLT_Kinetic_Orchestra_Working_Class_Heroes_", "en": "http://www.stoa.fi/en/events/event/3784DD1C329CCE946F7B1CC20ED58385/CANCELLED_Kinetic_Orchestra_Working_Class_Heroes_" }, "name": { "fi": "PERUTTU Kinetic Orchestra: Working Class Heroes", "sv": "INSTÄLLT Kinetic Orchestra: Working Class Heroes", "en": "CANCELLED Kinetic Orchestra: Working Class Heroes" }, "description": { "fi": "<p>Esitys on valitettavasti jouduttu perumaan loukkaantumisen vuoksi.</p><p>Lippurahojen palautusohje lippu.fi:stä:</p><p>\"Hyvä asiakas,</p><p>Tapahtuma Kinetic Orchestra: Working Class Heroes pe 28.11. ja la 29.11. KLO 18.00 on peruttu loukkaantumisen vuoksi.<br>Voitte hakea lippurahojenne palautusta 1.12. KLO 17.00 mennessä osoitteessa: https://web.lippu.fi/palautus/</p><p>Mikäli haluat vaihtaa lippusi toiseen ti 2.12. KLO 18.00 tai ke 3.12. KLO 18.00 -esitykseen, ole yhteydessä lippu.fin asiakaspalveluun 0600 900 900 (ma-la 9-19, su 12-16. Puhelun hinta 2€/alk.min + mpm/pvm. Jonotuksesta peritään normaali puhelumaksu oman liittymäsopimuksen mukaisesti.\"</p><p>---</p><p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Boudine, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811521/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Boudine, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811521/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Boudine, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811521/?affiliate=FSF\">HERE</a></u></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67139/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66886", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "44 € / S&D 107,60 €", "sv": "44 € / S&D 107,60 €", "en": "44 € / S&D 107,60 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3932794", "sv": "https://www.lippu.fi/eventseries/name-3932794", "en": "https://www.lippu.fi/eventseries/name-3932794" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490555, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T15:13:58.323821Z", "last_modified_time": "2025-08-27T15:13:58.323837Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776490.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490555/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T14:14:10.831269Z", "last_modified_time": "2025-11-28T12:13:00.425205Z", "date_published": null, "start_time": "2025-11-28T18: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, "short_description": { "fi": "Tänä jouluna tarjolla ei ole vain glögiä ja pipareita – vaan kolmen huippuviihdyttäjän ilotulitusta, joka saa koko juhlaväen nauramaan, hämmästymään ja taputtamaan seisaaltaan!", "sv": "Den här julen serveras det inte bara glögg och pepparkakor, utan ett fyrverkeri av tre toppunderhållare, som får hela festpubliken att skratta, häpna och ge stående ovationer!", "en": "It's not just mulled wine and gingerbread cookies on offer this Christmas – you can also enjoy a thrilling evening with three top entertainers who will have the whole party gasp in laughter and amazement and clap their hands!" }, "location_extra_info": null, "provider_contact_info": null, "provider": { "fi": "Wickström & Thibblin Comedy Ab", "sv": "Wickström & Thibblin Comedy Ab", "en": "Wickström & Thibblin Comedy Ab" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A343E2F46B4E71672E701FCD482C2F97/JouluSpektaakkeli_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A343E2F46B4E71672E701FCD482C2F97/JulSpektakel_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/A343E2F46B4E71672E701FCD482C2F97/JouluSpektaakkeli_Christmas_Spectacle_R-18" }, "name": { "fi": "JouluSpektaakkeli K-18 – Loppuunmyyty! / Sold out!", "sv": "JulSpektakel K-18 – Slutsåld!", "en": "JouluSpektaakkeli Christmas Spectacle R-18 – Sold out!" }, "description": { "fi": "<p>Tänä jouluna tarjolla ei ole vain glögiä ja pipareita – vaan kolmen huippuviihdyttäjän ilotulitusta, joka saa koko juhlaväen nauramaan, hämmästymään ja taputtamaan seisaaltaan!</p><p>Astu sisään säihkyvään jouluyöhön, jossa mikään ei ole tavallista ja kaikki on mahdollista.</p><p><b>Janne Grönroos</b> – Illan isäntä stand up koomikko, joka purkaa juhlastressin paremmalla tavalla kuin yksikään mindfulness-harjoitus. Nauruhermoja kutkuttava huumori tarjoillaan lämpimänä –kuten toimarin tarjoama glögi!</p><p><b>Pete Poskiparta</b> – mentalismin mestari, jonka katseessa on enemmän salaisuuksia kuin joulupukin lahjapussissa. Luvassa komiikkaa, taikuutta ja täydellistä mystiikkaa.</p><p><b>Divet Show</b> – ilmiö, legenda, spektaakkeli itse! Yksi mies ja kymmeniä hahmoja ja satoja paljetteja. Drag-viihdettä huipputasolla: tähtiloistoa, joka kirkastaa pimeimmänkin jouluyön.</p><p><b>JouluSpektaakkeli</b> on enemmän kuin esitys – se on elämys. Tule mukaan juhlaan, jossa yhdistyvät huumori, hämmästys ja häikäisevä show – täydellinen tapa ottaa varaslähtö joulun taikaan!</p><p>Ikäraja: K-18<br>Permanto K18 anniskelualue. Parvekkeella ei anniskelua.</p><p>Kesto n. 2 h 20 min, sisältää väliajan</p><p><b>Minnen Show & Dinner-pikkujoulumenu:</b><br>Punajuuri & Comté L,G<br>-Kurpitsavinaigretella marinoitua punajuuricarpaccio:ta, Comté-juustoa ja pikkelöityjä sieniä</p><p>Siika & puikula L,G<br>-Timjamivoissa paistettua siikaa, puikulaperunapyrettä ja tilli-herakastiketta</p><p>Puolukka & pistaasi L,G<br>-Puolukka-pistaasileivos, paahdettua valkosuklaata ja suolattuja puolukoita</p><p><i>Menun hinta ei sisällä ruokajuomia.<br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin esitysiltana kello 17:30 alkaen.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 4 vrk ennen esitystä)<br>Juomatilaukset & erikoisruokavaliotiedustelut: myynti@minnehelsinki.fi</i></p>", "sv": "<p>Den här julen serveras det inte bara glögg och pepparkakor, utan ett fyrverkeri av tre toppunderhållare, som får hela festpubliken att skratta, häpna och ge stående ovationer!</p><p>Kliv in i en gnistrande julnatt, där ingenting är vanligt och allt är möjligt.</p><p>Ståuppkomikern Janne Grönroos är kvällens värd och får julstressen att försvinna bättre än någon mindfulnessövning. Den skrattframkallande humorn serveras varm – som glöggen som vd:n serverar!</p><p>Pete Poskiparta, en mästare på mentalism, med en blick som är mer hemlighetsfull än det som gömmer sig i julgubbens säck. Det utlovas komik, magi och total mystik.</p><p>Divet Show – ett fenomen, en legend, ett riktigt spektakel! En man, tiotals karaktärer och hundratals paljetter. Dragunderhållning när den är som bäst: stjärnglans som lyser upp den mörkaste julnatten.</p><p>JulSpektaklet är mer än en föreställning – det är en upplevelse. Följ med på en fest som förenar både humor, häpnad och en bländande show – det perfekta sättet att tjuvstarta på julmagin!</p><p>Åldersgräns: K-18.<br>Parkett K-18-område med serveringstillstånd. Ingen servering på balkongen.</p><p>Längd ca 2 h 20 min., inklusive paus.</p><p>Minnes Show & Dinner-julfestmeny:<br>Rödbeta & Comté L, G<br>- Rödbetscarpaccio marinerad i pumpavinägrett, Comté-ost och picklad svamp</p><p>Sik & mandelpotatis L, G<br>- Sik stekt i timjansmör, mandelpotatispuré och dill-vasslesås</p><p>Lingon & pistasch L, G<br>- Bakelse med lingon och pistaschmandel, rostad vitchoklad och saltade lingon</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden från kl. 17:30 samma kväll som föreställningen.<br>Specialdieter beaktas vid förhandsbokning (senast fyra dagar före föreställningen).<br>Beställning av drycker och frågor om specialdieter: myynti@minnehelsinki.fi</p>", "en": "<p>It's not just mulled wine and gingerbread cookies on offer this Christmas – you can also enjoy a thrilling evening with three top entertainers who will have the whole party gasp in laughter and amazement and clap their hands!</p><p>Step into a sparkling Christmas night where nothing is ordinary and anything is possible.</p><p>Janne Grönroos – The host of the evening, a stand-up comedian who will de-stress the festive season better than any mindfulness exercise. The tickling humour is served warm – like the mulled wine served by the CEO!</p><p>Pete Poskiparta – a master of mentalism with more secrets in his eyes than there are gifts in Santa's bag. The show promises comedy, magic and mysticism.</p><p>Divet Show – a phenomenon, a legend, the spectacle himself! One man, dozens of characters and hundreds of sequins. Drag entertainment at its best: a skyful of shiny stars that will brighten up even the darkest Christmas night.</p><p>JouluSpektaakkeli is more than a show – it's an experience. Join us for a celebration that combines humour, amazement and a dazzling show – the perfect way to kickstart the Christmas magic!</p><p>Age rating: 18 and up<br>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Duration approx. 2 h 20 min, including intermission</p><p>Minne’s Show & Dinner Pre-Christmas party menu:<br>Beetroot & Comté L,G<br>-Beetroot carpaccio marinated in pumpkin vinaigrette, Comté cheese and pickled mushrooms</p><p>Whitefish & almond potatoes L,G<br>-Whitefish fried in thyme butter, almond potato puree and dill and whey dressing</p><p>Lingonberry & pistachio L,G<br>-Lingonberry-pistachio pastry, toasted white chocolate and salted lingonberries</p><p>The price of the menu does not include drinks or beverages.<br>The dinner will be served at the Savoy Theatre's restaurant Minne Garden from 17:30 onwards on the night of the performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 4 days before the performance)<br>Beverage orders & special dietary enquiries: myynti@minnehelsinki.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66886/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67022", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" }, "info_url": { "fi": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "sv": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/en/artist/kinetic-orchestra/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491039, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T13:13:29.470857Z", "last_modified_time": "2025-10-08T13:13:29.470873Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773706.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491039/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T13:13:29.384527Z", "last_modified_time": "2025-11-28T12:13:00.006352Z", "date_published": null, "start_time": "2025-11-28T16: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, "short_description": { "fi": "Esitys on valitettavasti jouduttu perumaan loukkaantumisen vuoksi.", "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.", "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CDC24237FE0D1B9E731623B1C7E595E5/PERUTTU_Kinetic_Orchestra_Working_Class_Heroes_", "sv": "http://www.stoa.fi/sv/evenemang/event/CDC24237FE0D1B9E731623B1C7E595E5/INSTALLT_Kinetic_Orchestra_Working_Class_Heroes_", "en": "http://www.stoa.fi/en/events/event/CDC24237FE0D1B9E731623B1C7E595E5/CANCELLED_Kinetic_Orchestra_Working_Class_Heroes_" }, "name": { "fi": "PERUTTU Kinetic Orchestra: Working Class Heroes", "sv": "INSTÄLLT Kinetic Orchestra: Working Class Heroes", "en": "CANCELLED Kinetic Orchestra: Working Class Heroes" }, "description": { "fi": "<p>Esitys on valitettavasti jouduttu perumaan loukkaantumisen vuoksi.</p><p>Lippurahojen palautusohje lippu.fi:stä</p><p>\"Hyvä asiakas,</p><p>Tapahtuma Kinetic Orchestra: Working Class Heroes pe 28.11. ja la 29.11. KLO 18.00 on peruttu loukkaantumisen vuoksi.<br>Voitte hakea lippurahojenne palautusta 1.12. KLO 17.00 mennessä osoitteessa: https://web.lippu.fi/palautus/</p><p>Mikäli haluat vaihtaa lippusi toiseen ti 2.12. KLO 18.00 tai ke 3.12. KLO 18.00 -esitykseen, ole yhteydessä lippu.fin asiakaspalveluun 0600 900 900 (ma-la 9-19, su 12-16. Puhelun hinta 2€/alk.min + mpm/pvm. Jonotuksesta peritään normaali puhelumaksu oman liittymäsopimuksen mukaisesti.\"</p><p>---<br>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">HERE</a></u></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67022/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67615", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493917, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-26T11:13:48.473984Z", "last_modified_time": "2025-11-26T11:13:48.473999Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782161.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493917/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-26T11:13:48.355151Z", "last_modified_time": "2025-11-28T10:12:49.458976Z", "date_published": null, "start_time": "2025-12-04T11:00:00Z", "end_time": "2025-12-04T13: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, "short_description": { "fi": "Millainen Itäkeskuksen tulevaisuus voisi olla, jos sen kadut todella asettaisivat kaikkien – niin ihmisten, kasvien kuin eläintenkin – elämän etusijalle?", "en": "What might the future of Itäkeskus look like if its streets truly prioritized life for all: people, plants, and animals alike?" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/694635702E2CEA32E8E2B853542F4B98/Streets_for_life_Life_to_the_streets", "en": "http://www.stoa.fi/en/events/event/694635702E2CEA32E8E2B853542F4B98/Streets_for_life_Life_to_the_streets" }, "name": { "fi": "Streets for life – Life to the streets", "en": "Streets for life – Life to the streets" }, "description": { "fi": "<p>Millainen Itäkeskuksen tulevaisuus voisi olla, jos sen kadut todella asettaisivat kaikkien – niin ihmisten, kasvien kuin eläintenkin – elämän etusijalle?</p><p>Aalto-yliopiston ja Helsingin yliopiston kansainvälisen ja monitieteisen Urban Studies and Planning (USP) -maisteriohjelman opiskelijoiden tekemä lyhyt, noin seitsemän minuutin video tarkastelee tätä kysymystä Itäkeskuksen näkökulmasta.</p><p>Syys–marraskuussa 2025 kuusi opiskelijaryhmää tutki alueen eri osia keskittyen teemoihin kuten osallisuus, yhdessäolo, liikkuminen, harmonia, turvallisuus ja vihreät yhteydet.</p><p>Tule kuulemaan, vaihtamaan ajatuksia ja näkemään, kuinka mielikuvitus ja yhteistyö voivat inspiroida päivittäin kulkemiamme katuja.</p><p>Video on nähtävillä tapahtuman jälkeen Stoassa viikon ajan, 11.12. asti.</p><p>Tapahtuman kieli: englanti</p>", "en": "<p>What might the future of Itäkeskus look like if its streets truly prioritized life for all: people, plants, and animals alike?</p><p>A short video (around 7 minutes) created by master’s students from the international and interdisciplinary Urban Studies and Planning (USP) at Aalto University and the University of Helsinki explores this question through the lens of Itäkeskus.</p><p>Between September and November 2025, six student groups studied different parts of the area, focusing on themes such as inclusivity, togetherness, circulation, harmony, safety, and green connections.</p><p>Come to listen, exchange ideas, and see how imagination and collaboration can inspire the streets we walk along every day.</p><p>Video display until 11.12.</p><p>Language: English</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67615/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnmuad6mq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493944, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T09:35:52.328951Z", "last_modified_time": "2025-11-28T09:35:52.328969Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/866f261a-051c-4b5d-bcfa-9518ae0c1105.jpg", "name": "Kuva: Suomen Majakkaseura", "cropping": "210,0,790,580", "photographer_name": "", "alt_text": "......", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493944/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T09:40:06.704549Z", "last_modified_time": "2025-11-28T09:40:06.704567Z", "date_published": null, "start_time": "2025-12-03T13:30:00Z", "end_time": "2025-12-03T16: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, "short_description": { "fi": "Vapaa pääsy. Tilaisuudessa esitetään Utö ja Ahvenanmaa/Åland elokuvat. Tervetuloa!" }, "location_extra_info": { "fi": "Kajuutta" }, "provider_contact_info": null, "provider": { "fi": "Suomen Majakkaseura" }, "info_url": null, "name": { "fi": "Majakkaseuran elokuvakiertue 2025" }, "description": { "fi": "<p>Tilaisuudessa esitetään elokuvat Ahvenanmaa - Merivaltakunta (47 min) ja tauon jälkeen Utö - kolmesataa myrskyisää vuotta (62 min). Tukimyyjäiset. Vapaa pääsy. OBS Filmerna är helt tvåspråkiga!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuad6mq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnmuaegra", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuad7cy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuad7pi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuad73i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaeahq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaeatm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaeba4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaeboi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaeb2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaecgy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaecry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaec6m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaedly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaedw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaeebm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaeenq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaeexy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaefcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaefny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaefzq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaegeq/?format=api" } ], "images": [ { "id": 151380, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-06-07T11:33:18.307680Z", "last_modified_time": "2024-06-07T11:33:18.307701Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg", "name": "Kuva: Unsplash", "cropping": "106,0,534,427", "photographer_name": "", "alt_text": "Kuvassa musta konsoliohjain", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-11-28T09:25:29.508217Z", "last_modified_time": "2025-11-28T09:28:57.446543Z", "date_published": null, "start_time": "2026-01-13T14:00:00Z", "end_time": "2026-05-26T16: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, "short_description": { "fi": "Tervetuloa Nuorten iltaan Messiin viettämään aikaa.", "sv": "Välkommen till Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.", "en": "Welcome to the Youth Night at the Messi to spend some time together. " }, "location_extra_info": { "fi": "Messi", "sv": "Messi", "en": "Messi" }, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Nuortenilta", "sv": "Ungdomarnas kväll", "en": "Youth night" }, "description": { "fi": "<p>Tervetuloa Nuorteniltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä. Voit osallistua nuorteniltojen ohjelman suunnitteluun ja toteutukseen. Kerro ideasi! Nuorten ilta on tarkoitettu yläkouluikäisille.</p>", "sv": "<p>Välkommen till Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>", "en": "<p>Welcome to the Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmuaegra/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnmtetn3i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493941, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-28T08:11:00.311407Z", "last_modified_time": "2025-11-28T08:11:00.311427Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bf66ab4e-d439-445c-b100-2dd067e15153.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Juhani Aaltonen", "alt_text": "Grafiikkateos järvimaisemasta. Kaukana manner ja saaria, etualalla lehdetön puu. Kuva on hämärä ja siinä lukee näyttelyn nimi \"Valo vaihtuu varjoon\".", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493941/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T08:13:15.694364Z", "last_modified_time": "2025-11-28T08:13:15.694386Z", "date_published": "2025-11-28T08:06:00Z", "start_time": "2025-12-02T06:00:00Z", "end_time": "2025-12-23T16: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, "short_description": { "fi": "Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon.", "sv": "Välkommen att besöka utställning i Hagalund biblioteken.", "en": "Welcome to an art exhibition in Tapiola Library." }, "location_extra_info": { "fi": "Näyttelyseinä Kaija", "sv": "Utställningsväggen Kaija", "en": "Exhibition wall Kaija" }, "provider_contact_info": null, "provider": { "fi": "Juhani Aaltonen", "sv": "Juhani Aaltonen", "en": "Juhani Aaltonen" }, "info_url": null, "name": { "fi": "Näyttely: Valo vaihtuu varjoon", "sv": "Utställning: Valo vaihtuu varjoon", "en": "Art exhibition: Valo vaihtuu varjoon" }, "description": { "fi": "<p><strong>Juhani Aaltosen grafiikkaa Tapiolan kirjastossa.</strong></p><p>Luonto elää valossa ja varjossa. Vuodenaikojen kierto piirtää sen pintaan värejä, hiljaisuutta ja liikettä. Aina kevään heräämisestä kesän kirkkauteen. Syksyn haalistuvasta hehkusta talven pysähtyneeseen hämärään.</p><p>Näyttely on avoinna kirjaston aukioloaikojen mukaan 2.-23.12.2025 arkisin klo 8-20 ja lauantaisin klo 10-18.</p><p><a href=\"https://juhaningrafiikkaa.weebly.com/\">https://juhaningrafiikkaa.weebly.com/</a></p>", "sv": "<p>Välkommen att besöka utställning i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmtetn3i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnmtetory", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com/turska.art/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493942, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-28T08:01:31.089174Z", "last_modified_time": "2025-11-28T08:01:31.089190Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e1ee0b30-00c3-481a-8aae-d2d0579e172d.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Mia Turtia", "alt_text": "Tekstiilitaideteos, joka esittää lehmää", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493942/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T08:04:13.051085Z", "last_modified_time": "2025-11-28T08:04:13.051106Z", "date_published": "2025-11-28T08:00:00Z", "start_time": "2025-12-02T06:00:00Z", "end_time": "2025-12-26T18: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, "short_description": { "fi": "Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon.", "sv": "Välkommen att besöka utställning i Hagalunds bibliotek.", "en": "Welcome to visit an art exhibition in Tapiola Library." }, "location_extra_info": { "fi": "Näyttelyparvi", "sv": "Utställningsloftet", "en": "Exhibition loft" }, "provider_contact_info": null, "provider": { "fi": "turska.art", "sv": "turska.art", "en": "turska.art" }, "info_url": null, "name": { "fi": "Näyttely", "sv": "Utställning", "en": "Art exhibition" }, "description": { "fi": "<p>Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon. </p><p>Näyttely on nähtävissä kirjaston aukioloaikoina.</p><p><a href=\"https://www.instagram.com/turska.art/\">https://www.instagram.com/turska.art/</a></p>", "sv": "<p>Välkommen att besöka utställning i Hagalunds bibliotek.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmtetory/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnmsjdm7u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 1493939, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-28T05:53:45.666129Z", "last_modified_time": "2025-11-28T05:53:45.666147Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c38c1580-11d7-4fb1-b289-ad1fe88f5303.jpg", "name": "ukulele ja lahjapaketti", "cropping": "0,1000,4000,5000", "photographer_name": "", "alt_text": "ukulele ja lahjapaketti", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493939/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T05:55:08.077059Z", "last_modified_time": "2025-11-28T05:55:08.077080Z", "date_published": null, "start_time": "2025-12-09T15:00:00Z", "end_time": "2025-12-09T16:15: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, "short_description": { "fi": "Tervetuloa kuuntelemaan ukuleleryhmien joulukonserttia Sellon kirjaston lavalle! Konsertissa esiintyy Espoon kaupunginkirjaston ukuleleryhmät.", "sv": "Välkommen till ukulelegruppernas konsert på Sellobiblioteket! Konserten framförs av Esbo stadsbiblioteks ukulelegrupper.", "en": "Welcome to the concert of ukulele groups on the stage of Sello Library! The concert will be performed by the Espoo City Library's ukulele groups." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Ukuleleryhmien joulukonsertti", "sv": "Ukulele konsert", "en": "Christmas concert of ukulele groups" }, "description": { "fi": "<p>Ukuleleryhmien joulukonsertti Sellon kirjaston lavalla 9.12.2025 kello 17.00</p><p>Tervetuloa kuuntelemaan ukuleleryhmien konserttia Sellon kirjaston lavalle! Konsertissa esiintyy Espoon kaupunginkirjaston ukuleleryhmät. Konsertissa kuulemme tunnettuja suomen- ja englanninkielisiä kappaleita. Tilaisuus on yhteislaulutyyppinen ja kaikkien kappaleiden sanat projisoidaan seinään. Konsertin lopuksi soitamme muutaman yhteislaulun, jossa kaikki halukkaat pääsevät soittamaan. Lämpimästi tervetuloa!</p><p>#musiikki #konsertti #ukulele #yhteislaulu </p>", "sv": "<p>Välkommen till ukulelegruppernas konsert på Sellobiblioteket! Konserten framförs av Esbo stadsbiblioteks ukulelegrupper.</p>", "en": "<p>Welcome to the concert of ukulele groups on the stage of Sello Library! The concert will be performed by the Espoo City Library's ukulele groups. You can sing along during the concert. At the end of the concert we will play a few songs together, where everyone can join in. You are warmly welcome!</p><p><br></p><p>#ukulele #music </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmsjdm7u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:70c5babf-bd4c-4b62-8c8d-25e4215deb4a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:75347/?format=api" }, "keywords": [ { "@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": [], "price": { "fi": "0" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1208_-_Ylikraja_-kentn_pakollisuuden_poistaminen_Linked_Events_-julkaisusta2152477997" }, "description": null } ], "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:p4354/?format=api" } ], "created_time": "2025-11-27T14:49:51.707505Z", "last_modified_time": "2025-11-27T15:26:49.994099Z", "date_published": "2025-11-27T14:48:55Z", "start_time": "2025-11-30T03:00:00Z", "end_time": "2025-11-30T19: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, "short_description": { "fi": "Lyhyt kuvaus suomeksi (korkeintaan 160 merkkiä)" }, "location_extra_info": null, "provider_contact_info": null, "provider": { "fi": "Tapahtuman järjestäjä suomeksi" }, "info_url": null, "name": { "fi": "1208 - Yläikäraja -kentän pakollisuuden poistaminen Linked Events -julkaisusta" }, "description": { "fi": "<div><p>Tapahtuman kuvaus suomeksi<br> </p></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:70c5babf-bd4c-4b62-8c8d-25e4215deb4a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:f447ff71-43db-4725-9fe7-3bc98213fe70", "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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p23886/?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": [ { "name": "extlink_facebook", "link": "https://www.facebook.com", "language": "fi" }, { "name": "extlink_twitter", "link": "https://www.testi.com", "language": "fi" } ], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "abc -1", "sv": "10e-20e" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=2711_Hinta_ja_linkkitesti420751792" }, "description": { "fi": "10e lapset ja 20e aikuiset", "sv": "Hejsan" } } ], "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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "created_time": "2025-11-27T13:01:46.926358Z", "last_modified_time": "2025-11-27T14:09:34.582593Z", "date_published": "2025-11-27T12:52:25Z", "start_time": "2025-12-01T06:00:00Z", "end_time": "2025-12-01T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 200, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-11-28T08:00:00+02:00", "enrolment_end_time": "2025-11-30T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "lyhyt kuvaus", "sv": "sv teksti" }, "location_extra_info": { "fi": "lisätieto" }, "provider_contact_info": null, "provider": { "fi": "Annantalo (KYMP)", "sv": "Annantalo (KYMP)" }, "info_url": null, "name": { "fi": "27.11. Hinta ja linkkitesti", "sv": "SV otcikko" }, "description": { "fi": "<div><p>Tarkka kuvaus</p></div>", "sv": "<div><p>SV tarkka</p></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f447ff71-43db-4725-9fe7-3bc98213fe70/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnab4pk24", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4phpu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pigm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pi4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pjgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pjqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pj34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pkhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pkrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmlno27y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmlno3xy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmlno4fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmlno4se/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmlno46i/?format=api" } ], "images": [ { "id": 1491126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-20T08:47:32.190721Z", "last_modified_time": "2025-10-20T08:47:32.190746Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/20cbcab9-81b0-47bc-bf45-773d0632ba89.png", "name": "", "cropping": "180,0,639,459", "photographer_name": "", "alt_text": "vesivärejä ja siveltimiä värikkään taustan edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491126/?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-10-20T09:01:42.527306Z", "last_modified_time": "2025-11-27T13:40:59.114427Z", "date_published": null, "start_time": "2025-10-25T11:00:00Z", "end_time": "2025-12-27T13: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, "short_description": { "fi": "Lähde taianomaiselle matkalle värien ja mielikuvituksen maailmaan!", "sv": "Ge dig ut på en magisk resa in i en värld full av färger och fantasi!", "en": "Embark on a magical journey into a world of colors and imagination!" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstaden ", "en": "Maker Space" }, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Piirustuskursseja lapsille 5-12 v", "sv": "Ritkurser för barn i åldern 5–12 år", "en": "Drawing courses for children aged 5-12" }, "description": { "fi": "<p>Lapset oppivat piirtämään ja luomaan omia ainutlaatuisia teoksia. He saavat taiteilla lyijykynillä, väreillä ja vesiväreillä. He oppivat ilmaisemaan mielikuvitustaan turvallisessa ja kannustavassa ympäristössä pitäen samalla hauskaa ja löytäen ehkä uusia ystäviä.</p><p>Ei tarvitse ilmoittautua etukäteen. Tule vain paikalle.</p><p>Tapahtuma on ilmainen.</p><p>Opettajana toimi Arlinsa Azemi Zymberi.</p>", "sv": "<p>Barnen lär sig att rita och skapa sina egna unika konstverk. De får använda pennor, kritor och vattenfärger. De lär sig att uttrycka sin fantasi i en trygg och uppmuntrande miljö samtidigt som de har roligt och kanske får nya vänner. </p><p>Du behöver inte anmäla dig i förväg. Kom bara dit.</p><p>Evenemanget är gratis. </p><p>Arlinsa Azemi Zymberi är läraren.</p>", "en": "<p>Children learn to draw and create their own unique works of art. They get to use pencils, crayons, and watercolors. They learn to express their imagination in a safe and encouraging environment while having fun and perhaps making new friends. </p><p>No need to register in advance. Just come along.</p><p>The event is free of charge. </p><p>Arlinsa Azemi Zymberi is the teacher.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pk24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnmk74zki", "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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74rmm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74sdq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74spa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74s2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74tgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74tr4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74t5i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74uiy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74uuq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74vaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74vlm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74vxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74weu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74wte/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74xaq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74xn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74xzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74ygy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74yti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74y6y/?format=api" } ], "images": [ { "id": 151467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-15T12:54:12.340662Z", "last_modified_time": "2024-06-15T12:54:12.340682Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielitupa.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kielitupa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151467/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-27T13:14:45.685794Z", "last_modified_time": "2025-11-27T13:14:45.685809Z", "date_published": null, "start_time": "2026-01-08T12:00:00Z", "end_time": "2026-06-04T13: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, "short_description": { "fi": "Kielituvassa voit saada opintoneuvontaa. Opettaja \nauttaa sinua löytämään sopivan suomen kielen kurssin.", "sv": "På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.", "en": "In Kielitupa you can get study counselling. The teacher will \nhelp you to find the right Finnish course." }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider_contact_info": null, "provider": { "fi": "Espoon työväenopisto", "en": "Espoo adult education centre" }, "info_url": null, "name": { "fi": "Kielitupa - ohjausta ja neuvontaa suomenkielen opiskeluun", "sv": "Kielitupa handledning och råd om hur man lär sig finska", "en": "Kielitupa - guidance and tips for Finnish studies" }, "description": { "fi": "<p>Kielituvassa voit saada opintoneuvontaa. Opettaja </p><p>auttaa sinua löytämään sopivan suomen kielen kurssin.</p>", "sv": "<p>På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.</p>", "en": "<p>In Kielitupa you can get study counselling. The teacher will </p><p>help you to find the right Finnish course.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmk74zki/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66615", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1162102, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T07:13:47.294275Z", "last_modified_time": "2025-07-02T07:13:47.294298Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771295.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162102/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T07:13:47.178768Z", "last_modified_time": "2025-11-27T12:13:23.343102Z", "date_published": null, "start_time": "2025-12-03T12:00:00Z", "end_time": "2025-12-03T18: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, "short_description": { "fi": "DiDa-festivaali on äänekäs kansainvälisenä vammaisten päivänä 3.12.2025!", "sv": "Disability Day Art & Action är en tvärkonstnärlig festival för dagen för personer med funktionsnedsättning som syftar till att lyfta fram personer med funktionsnedsättning som aktörer inom konst och kultur.", "en": "Disability Day Art & Action is a cross-artistic International Day of Disabled Persons festival, the purpose of which is to highlight disabled artists and culture makers." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D840DDCE09E2B6D8552EA08943445BBD/Disability_Day_Art_Action_", "sv": "http://www.caisa.fi/sv/evenemang/event/D840DDCE09E2B6D8552EA08943445BBD/Disability_Day_Art_Action_", "en": "http://www.caisa.fi/en/events/event/D840DDCE09E2B6D8552EA08943445BBD/Disability_Day_Art_Action_" }, "name": { "fi": "Disability Day Art & Action – Käytä ääntäsi", "sv": "Disability Day Art & Action", "en": "Disability Day Art & Action" }, "description": { "fi": "<p>DiDa-festivaali on äänekäs kansainvälisenä vammaisten päivänä 3.12.2025!</p><p>Vuoden 2025 DiDa – Disability Day Art & Action -kulttuurifestivaali järjestetään Helsingissä ja siitä on myös suora verkkolähetys.</p><p>DiDa kutsuu juhlimaan vuosittaista YK:n kansainvälistä vammaisten päivää. Festivaalin tarkoituksena on lisätä tietoisuutta, herättää keskustelua sekä tuoda esiin vammaisten ja viittomakielisten henkilöiden taidetta.</p><p><b>Ohjelma salissa:</b></p><p>17.00 Festivaalin avaus</p><p>17.05 Valomaalausmusiikkia, Markus Lohikoski</p><p>17.15 Inne i överläraren Irina von Martens stora hjärna -lyhytelokuva ja muita kertomuksia, DuvTeatern</p><p>17.35 Mitäs me Parkkikset, stand up, Parkinson Bros & Sis</p><p>18.05 Tauko</p><p>18.25 Kesannolla, indie/pop-musiikki</p><p>18.50 Interweaving, tanssi-teatteri, Tanja Durić ja Novak Josić</p><p>19.10 Nähdyksi, tanssi, Kaaos Company</p><p>19.25 Vimma-vammaiskulttuuripalkinnon jako</p><p>Salin tapahtumaa voit seurata myös suorana verkkolähetyksenä.</p><p><b>Etko-ohjelma:</b></p><p>klo 14–16.45: One to one – Sisäinen historia, Johanna Nonna Mattila <br>Ajanvaraus: johanna@lalunes.com</p><p>klo 15–16.45 Verkostoitumistapaaminen kokoustila Maississa, vetäjinä Riikka Hänninen ja Sanni Virta Taiteilijan taikasauva-hankkeesta. <br>Tarjolla pientä purtavaa.<br>Ilmoittautuminen 30.11. mennessä: info.disabilityday@gmail.com</p><p>Lue lisää: https://disabilityday.info</p>", "sv": "<p>Disability Day Art & Action är en tvärkonstnärlig festival för dagen för personer med funktionsnedsättning som syftar till att lyfta fram personer med funktionsnedsättning som aktörer inom konst och kultur.</p><p>Evenemanget är öppet för alla som är intresserade av högklassig konst skapad inom ramen för utgångspunkterna för personer med funktionsnedsättning, och det är också en mötesplats för aktörer inom fältet för funktionsnedsättning.</p><p>Evenemanget har fritt inträde!</p><p>Läs mer: https://disabilityday.info</p>", "en": "<p>Disability Day Art & Action is a cross-artistic International Day of Disabled Persons festival, the purpose of which is to highlight disabled artists and culture makers.</p><p>The event is open to everyone interested in high-quality art made by people with disabilities on their own terms, and it also serves as a meeting place for operators in the field of culture for people with disabilities.</p><p>Entry to the event is free of charge!</p><p>Read more: https://disabilityday.info</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66615/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67643", "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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493932, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T10:13:04.345341Z", "last_modified_time": "2025-11-27T10:13:04.345356Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782156.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493932/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-27T10:13:04.189827Z", "last_modified_time": "2025-11-27T11:14:17.719511Z", "date_published": null, "start_time": "2025-12-12T10:00:00Z", "end_time": "2025-12-12T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jouluista tunnelmaa, pelimannihenkisiä joululauluja Vilma Talvitie & ALDA- yhtyeeltä ja muuta hauskaa tekemistä koko perheelle!" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/07D6B47E1919B2A41FC952D3669EAC76/Vuotalon_joulujuhla" }, "name": { "fi": "Vuotalon joulujuhla" }, "description": { "fi": "<p>Jouluista tunnelmaa, pelimannihenkisiä joululauluja Vilma Talvitie & ALDA- yhtyeeltä ja muuta hauskaa tekemistä koko perheelle!</p><p>Vuotalon joulujuhlassa pääset kuuntelemaan Vilma Talvitien ja ALDA-yhtyeen pelimannihenkisiä joululauluja sekä kokemaan hauskat klovni- ja teatteriesitykset.</p><p>Lisäksi ohjelmaan sisältyy kukkakoristeiden tekemistä sekä joulumuistojen jakamista.</p><p>Tarjoamme lämpimän tunnelman lisäksi kansalle glögiä ja pipareita.</p><p>Tapahtuma on maksuton.</p><p>Toivotamme kaikki tervetulleiksi nauttimaan jouluisen lempeästä ja iloisesta tunnelmasta Vuotaloon ja Vuosaaren kirjastoon!<br>OHJELMA<br> <br>12.00–13.00: Yhteislaulua (Kirjaston stage)<br>13.15–14.00: Muistojen joulu: Opi joulun historiasta ja jaa omia joulumuistojasi (Kirjaston Mosaiikki-tila)<br>13.30–15.30: Jouluinen kukkabuffet -askartelutyöpaja (Vuotalon aula)<br>14.00–14.30: Klovni Lilli Pii esiintyy! (Kirjaston stage)<br>14.30: Jouluinen teatteriesitys lapsille: Joulupukki ja Poromir (Kirjaston stage)<br>15.30–16.10: Vilma Talvitie & ALDA esittävät joululauluja (Kirjaston stage)</p><p>Vilma Talvitie & ALDA: Unitähtien taa<br>Laulaja-lauluntekijä Vilma Talvitie ja kansanmusiikkiyhtye ALDA tuovat joulun sydämeen pelimannihenkeä, lämpöä ja perinteistä juhlatunnelmaa.</p><p>Vilma Talvitie on laulaja, säveltäjäsanoittaja ja multi-instrumentalisti, joka luo siltoja popin, etno- ja kansanmusiikin välille. ALDA:n kolmihenkinen yhtye taas houkuttelee juurevalla pohjoismaisella energialla, kiehtovilla harmonioilla ja leikkisillä melodioilla.</p><p>Joululaulujen tutut ja tuntemattomammat helmet tarjoillaan lennokkaiden pelimannivalssien ja polskien saattelemana joulun rauhaa ja talven synkkyyttä unohtamatta.</p><p>Jouluinen kukkabuffet<br>Tervetuloa taiteilemaan kukkakoristeita ja kimppuja aidoista leikkokukista! Jouluisen kukkabuffetin menu tarjoilee kuivakukkia, havuja ja aitojen kukkien väriloistoa. Solmi kimppuun suloiset rusetit ja ripauta hippunen joulun taikaa kimalteella!</p><p>Koko perheelle suunnattu kukkabuffet on täynnä joulun ajan lämpöä ja tunnelmaa! Loihdi koriste itselle tai ilahduta kukilla läheistä. Suositellaan kaikenikäisille! Kukkabuffet’n tarjoilee Hupsansaa ry!</p><p>Klovni Lilli Pii<br>Lilli Pii on iloinen, hassutteleva klovnityttö. Hänen vauhdikkaan elämänsä tiimellyksessä ei kolhuilta vältytä. Lilli Piille sattuu mitä milloinkin! Hän soittaa kitaraa väärinpäin, tanssii jalat ristiin rastiin, paistaa kakun matkalaukussa, tekee jännittävän ilmapallotempun ja hupsis- hame häviää…</p><p>GENRET: Musiikki, työpajat, <br>KOHDERYHMÄ: Lapset, perheet<br>PAIKKA/TILA: Vuotalon aula, Vuosaaren kirjasto<br>KIELI: suomi<br>KESTO: 4 h<br>HINTA: 0 €</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67643/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66684", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:41/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1202546, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T10:13:56.978088Z", "last_modified_time": "2025-07-07T10:13:56.978105Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773606.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1202546/?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-07-07T10:13:56.883778Z", "last_modified_time": "2025-11-27T11:13:50.476391Z", "date_published": null, "start_time": "2025-09-05T09:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "HUOM! Syyskauden viimeinen taidekerho pe 28.11. siirtyy perjantaille 5.12.20205. Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.", "sv": "Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång. Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!", "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B620354D15EB754ACC0405C5665BD6EC/Kanneltalon_maksuton_taidekerho_lapsille", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B620354D15EB754ACC0405C5665BD6EC/Kostnadsfri_konstklubb_for_barn_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/B620354D15EB754ACC0405C5665BD6EC/Looking_for_creative_activity_Come_to_Kanneltalo_s_art_club_to_learn_different_themes_and_techniques_every_Friday_" }, "name": { "fi": "Kanneltalon maksuton taidekerho lapsille", "sv": "Kostnadsfri konstklubb för barn på Gamlasgården", "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday." }, "description": { "fi": "<p>HUOM! Syyskauden viimeinen taidekerho pe 28.11. siirtyy perjantaille 5.12.20205. Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.</p><p>Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen. <br>Olet tervetullut Kanneltalon taidekerhoon piipahtamaan tai viihtymään pidemmäksikin aikaa. Opettaja esittelee teemat ja tekniikat ja auttaa sinua tarvittaessa. Mukaasi saat oman ainutlaatuisen teoksesi ja myös uudet taidot ja ideat, jotka toivottavasti inspiroivat itsenäiseen työskentelyyn työpajan jälkeenkin.<br> <br>Syksyn ohjelmassa on esimerkiksi pienikokoinen kirja, pressprint-grafiikkaa, huovutettu heijastin, monotypia, värioppia, naamio, tussimaalausta, huovutettu joulukoriste ja paljon muuta kivaa!</p><p>Taidekerhon non-stop-toiminta on suunniteltu alakouluikäisille, nuoremmat lapset ovat tervetulleita osallistumaan yhdessä aikuisen kanssa.<br> <br>Ohjaajana kuvataiteilija Chloé Mahy-Hulkko <br>Opetuskielet suomi, englanti, ranska <br>Kirjaston monitoimitila Tempo</p><p>Vapaa pääsy</p>", "sv": "<p>Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång. Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!</p><p>Kostnadsfri konstklubb för barn på Gamlasgården<br>Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång.</p><p>Konstklubbens non-stop-verksamhet är utformad med tanke på barn i grundskolan, men yngre barn är välkomna i sällskap av en vuxen.<br>Handledare är bildkonstnären Chloé Mahy-Hulkko</p><p>Undervisningsspråk finska, engelska, franska</p><p>Fritt inträde<br>Plats: Bibliotekets allaktivitetslokal Tempo</p>", "en": "<p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday.</p><p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday. The teacher introduced the used techniques and helps with working whenever needed. You get to keep all the art you create in the non-stop club, and hopefully the new skills and ideas inspire on independent working after the club too.</p><p>The autumn's program includes for example making a small book, press print graphic, felted reflector, monotypia, color theory, mask, marker painting, felted Christmas decoration and many other fun things!</p><p>The non-stop activities of the art club are designed for primary school children. Younger children are welcome together with an adult.</p><p>Directed by visual artist Chloé Mahy-Hulkko<br>Languages of instruction: Finnish, English, French<br>Location: The library's Tempo multifunctional space<br>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66684/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66355", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:41/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1163426, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T11:12:23.247998Z", "last_modified_time": "2025-07-02T11:12:23.248012Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773594.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163426/?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-07-02T11:12:23.182447Z", "last_modified_time": "2025-11-27T11:13:50.269409Z", "date_published": null, "start_time": "2025-09-05T09:30:00Z", "end_time": "2025-11-28T12: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, "short_description": { "fi": "HUOM! Syyskauden viimeinen taidekerho pe 28.11. siirtyy perjantaille 5.12.20205. Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.", "sv": "Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång.", "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E0F79A458690C40BC1E1F4066954F805/Kanneltalon_maksuton_taidekerho_lapsille", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E0F79A458690C40BC1E1F4066954F805/Kostnadsfri_konstklubb_for_barn_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/E0F79A458690C40BC1E1F4066954F805/Looking_for_creative_activity_Come_to_Kanneltalo_s_art_club_to_learn_different_themes_and_techniques_every_Friday_" }, "name": { "fi": "Kanneltalon maksuton taidekerho lapsille", "sv": "Kostnadsfri konstklubb för barn på Gamlasgården", "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday." }, "description": { "fi": "<p>HUOM! Syyskauden viimeinen taidekerho pe 28.11. siirtyy perjantaille 5.12.20205. Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.</p><p>Olet tervetullut Kanneltalon taidekerhoon piipahtamaan tai viihtymään pidemmäksikin aikaa. Opettaja esittelee teemat ja tekniikat ja auttaa sinua tarvittaessa. Mukaasi saat oman ainutlaatuisen teoksesi ja myös uudet taidot ja ideat, jotka toivottavasti inspiroivat itsenäiseen työskentelyyn työpajan jälkeenkin.<br> <br>Syksyn ohjelmassa on esimerkiksi pienikokoinen kirja, pressprint-grafiikkaa, huovutettu heijastin, monotypia, värioppia, naamio, tussimaalausta, huovutettu joulukoriste ja paljon muuta kivaa!</p><p>Taidekerhon non-stop-toiminta on suunniteltu alakouluikäisille, nuoremmat lapset ovat tervetulleita osallistumaan yhdessä aikuisen kanssa.<br> <br>Ohjaajana kuvataiteilija Chloé Mahy-Hulkko <br>Opetuskielet suomi, englanti, ranska <br>Kirjaston monitoimitila Tempo</p><p>Vapaa pääsy</p>", "sv": "<p>Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång.</p><p>Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!</p><p>Konstklubbens non-stop-verksamhet är utformad med tanke på barn i grundskolan, men yngre barn är välkomna i sällskap av en vuxen.<br>Handledare är bildkonstnären Chloé Mahy-Hulkko</p><p>Undervisningsspråk finska, engelska, franska</p><p>Fritt inträde<br>Plats: Bibliotekets allaktivitetslokal Tempo</p>", "en": "<p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday.</p><p>The teacher introduces the used techniques and helps with working whenever needed. You get to keep all the art you create in the non-stop club, and hopefully the new skills and ideas inspire on independent working after the club too.</p><p>The autumn's program includes for example making a small book, press print graphic, felted reflector, monotypia, color theory, mask, marker painting, felted Christmas decoration and many other fun things!</p><p>The non-stop activities of the art club are designed for primary school children. Younger children are welcome together with an adult.</p><p>Directed by visual artist Chloé Mahy-Hulkko<br>Languages of instruction: Finnish, English, French<br>Location: The library's Tempo multifunctional space<br>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66355/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmlytfzsa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfd4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfew4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytffqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfgka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfhgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfib4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfi34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfjxi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfksa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfll4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfmga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfnae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfn2e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfowy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfpra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfqka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfrdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfr6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfs3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytftxy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfute/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfvpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfwjq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfxdy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfx6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfyyu/?format=api" } ], "images": [ { "id": 1490399, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T07:07:03.042067Z", "last_modified_time": "2025-08-18T07:07:03.042086Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/00a9e3af-0095-4e01-8034-5274696a8037.png", "name": "", "cropping": "86,0,323,238", "photographer_name": "", "alt_text": "kaksi vanhusta tutkii älypuhelinta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490399/?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-08-18T07:28:53.825965Z", "last_modified_time": "2025-11-27T07:30:40.517299Z", "date_published": null, "start_time": "2025-09-09T07:00:00Z", "end_time": "2025-12-03T10: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, "short_description": { "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.", "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.", "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "provider_contact_info": null, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "info_url": { "fi": "https://www.entersenior.fi/", "sv": "https://www.entersenior.fi/", "en": "https://www.entersenior.fi/" }, "name": { "fi": "Digiopastusta seniorilta seniorille", "sv": "IT-handledning", "en": "IT tutoring" }, "description": { "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 9.9.-3.12..2025 tiistaisin ja keskiviikkoisin klo 10:00–12:00 kokoustila Karissa.</p><p>Ajanvaraus Ison Omenan infon kirjastosta tai puhelimitse +358 9 8165 7723</p><p>Lisätietoja: www.entersenior.fi</p>", "sv": "<p>Senior, du är inte ensam med dina digitala bekymmer!</p><p>Föreningen Enter erbjuder kostnadsfri handledning för äldre i användning av datorer, surfplattor och mobiltelefoner.</p><p>Våra trevliga handledare hjälper gärna till. Kom och ställ dina frågor – det finns inga dumma frågor! Ta med din egen enhet, laddare samt nödvändiga användaruppgifter och lösenord till handledningen. Digi-handledarna är frivilliga som själva är äldre och utbildade av Enter rf.</p><p>Handledningen ges 9.9–3.12.2025 på tisdagar och onsdagar kl. 10:00–12:00 i mötesrummet Kari.</p><p>Tidsbokning via bibliotekets info i Iso Omena,</p><p>eller per telefon: +358 9 8165 7723</p><p>Mer information: www.entersenior.fi</p>", "en": "<p>Senior, you're not alone with your digital challenges!</p><p>Enter Association offers free guidance for older adults in using computers, tablets, and mobile phones.</p><p>Our friendly peer tutors are happy to help, - the tutoring is mainly in Finnish or Swedish.</p><p>Bring your own device, charger, and any necessary usernames and passwords to the session. The digital guides are trained volunteers from Enter who are seniors themselves.</p><p>Guidance available from 9th September to 3rd December 2025, on Tuesdays and Wednesdays from 10:00 AM to 12:00 PM in meetingroom Kari.</p><p>Appointments can be made at the Iso Omena library info desk or by phone: +358 9 8165 7723</p><p>More information: www.entersenior.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlytfzsa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22esoa", "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:11733/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22eele/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22efcq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22efy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22egpq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ehfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22eh5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22eiuy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ejly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ekci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ekym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22elpa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22emhm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22encm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22eoc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22eo3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22epsa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22eqjq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22erai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22erxe/?format=api" } ], "images": [ { "id": 1490140, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-06T12:32:34.854849Z", "last_modified_time": "2025-08-06T12:32:34.854864Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c4bf282-bcc7-456f-ac98-f084f3f47a81.png", "name": "", "cropping": "172,0,519,347", "photographer_name": "", "alt_text": "Kuvassa teksti: Hei seniori, lähde mukaan polulle kohti parempaa hyvinvointia! Kiinnostaako terveyden ja hyvinvoinnin edistäminen yhdessä muiden seniorien kanssa?", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490140/?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-08-06T12:38:19.955401Z", "last_modified_time": "2025-11-27T07:28:42.747652Z", "date_published": null, "start_time": "2025-08-11T07:00:00Z", "end_time": "2025-12-15T09: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, "short_description": { "fi": "Ikätoverien seuraa, infoa ja keskustelua", "sv": "Trevligt sällskap, nyttig information och givande samtal", "en": "Good company, helpful info, and engaging conversation" }, "location_extra_info": { "fi": "Meri", "sv": "Meri", "en": "Meri" }, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Ison Omenan kirjaston senioreiden Hyvinvointipolku (ent. Olkkari)", "sv": "Seniorernas Välmåendestig i Iso Omena biblioteket", "en": "Wellbeing Path for Seniors at Iso Omena Library" }, "description": { "fi": "<p>Kaipaatko tekemistä ja ikätoverien seuraa?</p><p>Olet tervetullut ikääntyneiden avoimeen olohuoneeseen, OLKKARIIN maanantaisin 5.5. alkaen klo 10:00-11:30</p><p>Ison Omenan kirjasto (Meri-kokoustila)</p><p>Toiminta on maksutonta</p><p><br></p><p>TULE TAI SOITA!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917 </p>", "sv": "<p>Saknar du något att göra</p><p>och sällskap av jämnåriga?</p><p>Du är varmt välkommen till de äldres öppna vardagsrum,</p><p>OLKKARI</p><p>på måndagar med start 5.5 kl. 10:00–11.30</p><p>Iso Omena bibliotek (Meri-mötesrum)</p><p>Verksamheten är kostnadsfri</p><p><br></p><p>KOM ELLER RING!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917</p>", "en": "<p>Looking for something to do and the company of peers?</p><p>You are warmly welcome to the open lounge for seniors,</p><p>OLKKARI</p><p>On Mondays starting May 5, from 10:00 to 11:30 AM</p><p>Iso Omena Library (Meri meeting room)</p><p>Participation is free of charge</p><p><br></p><p>COME OR CALL!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22esoa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }