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
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&is_free=true&page=26
{ "meta": { "count": 25080, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=27", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=25" }, "data": [ { "id": "kulke:67111", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490999, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-03T10:13:28.268774Z", "last_modified_time": "2025-10-03T10:13:28.268786Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778067.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490999/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-03T10:13:28.038741Z", "last_modified_time": "2025-10-17T08:13:55.767951Z", "date_published": null, "start_time": "2025-11-25T12: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, "description": { "fi": "<p>Valtuutetut on ainutlaatuinen kokoonpano, jossa kaupunginvaltuutetut Nora Grotenfelt, Annika Rinne ja Antti Vuorela yhdistävät voimansa politiikan areenoiden ulkopuolella.</p><p>Yhtye soittaa akustista musiikkia eri vuosikymmeniltä. Lavalla kohtaavat kokemukset, tarinat ja soittamisen ilo. Valtuutettujen musisoinnissa on ripaus nostalgiaa, hyväntuulista energiaa ja ennen kaikkea yhteisöllisyyttä.</p><p>Vapaa pääsy!</p>", "sv": "<p>Valtuutetut är en unik kombination av Nora Grotenfelt, Annika Rinne och Antti Vuorela, som förenar sina krafter utanför den politiska arenan.</p><p>Bandet spelar akustisk musik från olika decennier. På scenen möts erfarenheter, berättelser och spelandets glädje. Det finns en touch av nostalgi, en godmodig energi och, framför allt, en känsla av gemenskap i Valtuutetuts musik.</p><p>Fritt inträde!</p>", "en": "<p>Valtuutetut is a unique ensemble that sees City Councillors Nora Grotenfelt, Annika Rinne and Antti Vuorela join forces outside the political arena.</p><p>The ensemble plays acoustic music from different decades, combining experiences, stories and the joy of playing on stage. The music of Valtuutetut is marked by a hint of nostalgia, good-humoured energy and, above all, a sense of community.</p><p>Free entry!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0437A77753E71F0BB61B3EC5BB82F674/Valtuutetut_musiikkia_yli_vuosikymmenten", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0437A77753E71F0BB61B3EC5BB82F674/Valtuutetut_musiikkia_yli_vuosikymmenten", "en": "http://www.malmitalo.fi/en/events/event/0437A77753E71F0BB61B3EC5BB82F674/Valtuutetut_musiikkia_yli_vuosikymmenten" }, "name": { "fi": "Valtuutetut – musiikkia yli vuosikymmenten", "sv": "Valtuutetut – musiikkia yli vuosikymmenten", "en": "Valtuutetut – musiikkia yli vuosikymmenten" }, "location_extra_info": null, "short_description": { "fi": "Valtuutetut on ainutlaatuinen kokoonpano, jossa kaupunginvaltuutetut Nora Grotenfelt, Annika Rinne ja Antti Vuorela yhdistävät voimansa politiikan areenoiden ulkopuolella.", "sv": "Valtuutetut är en unik kombination av Nora Grotenfelt, Annika Rinne och Antti Vuorela, som förenar sina krafter utanför den politiska arenan.", "en": "Valtuutetut is a unique ensemble that sees City Councillors Nora Grotenfelt, Annika Rinne and Antti Vuorela join forces outside the political arena." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67111/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67108", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490995, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-02T13:13:17.045880Z", "last_modified_time": "2025-10-02T13:13:17.045897Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777861.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490995/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-02T13:13:16.918497Z", "last_modified_time": "2025-10-17T08:13:49.614899Z", "date_published": null, "start_time": "2025-11-07T15:00:00Z", "end_time": "2025-11-07T17: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, "description": { "fi": "<p>Sarjakuvataidetyöpaja on suunnattu sekä ulkomailta Suomeen muuttaneille taiteilijoille että paikallisille taiteilijoille.</p><p>Osallistujien tausta voi olla missä vain taidealassa.</p><p>Työpaja on taiteilijoille maksuton. Siinä on mahdollisuus samalla tutustua muiden taiteilijoiden kanssa ja verkostoitua. Työpajoissa ideoimme yhdessä sarjakuvakäsikirjoituksien tekemistä.<br>Sinulla ei tarvitse olla aiempaa kokemusta piirtämisestä tai sarjakuvien tekemisestä!</p><p>Työpajat ovat tarkoitettu aikuisille. Me tarjoamme välineet tekemiseen. Lämpimästi tervetuloa!</p><p>Ilmoittaudu nyt: https://forms.gle/2bF1oLejgim4XPJY7</p><p><b>Työpajan vetäjä:</b> <br>Suvi Ermilä (s. 1985 Tampereella) on kuvataiteilija, joka asuu ja työskentelee Helsingissä. Sarjakuvissaan hän käyttää enimmäkseen nestemäistä tussia, terää ja sivellintä. Hänen viimeaikaiset sarjakuvansa käsittelevät perhesuhteita, johon liittyy usein ulkopuolisuuden kokemus. Ne ovat sävyltään humoristisia sekä surumielisiä. Hän on julkaissut kolme sarjakuvakirjaa: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). Vastaanottokeskus voitti vuoden 2022 Sarjakuva-Finlandian. Ermilä rakastaa maalaamista sekä rentoutuu suvun mökillä Hauholla.</p>", "sv": "<p>Verkstaden riktar sig både till konstnärer som flyttat till Finland från utlandet och till lokala konstnärer.</p><p>Deltagarna kan komma från alla konstnärliga bakgrunder.</p><p>Verkstaden är kostnadsfri för konstnärer. Det är också ett tillfälle att träffa andra konstnärer och skapa nätverk. I verkstäderna arbetar vi tillsammans för att komma på idéer till serietidningsmanus.<br>Du behöver inte ha någon tidigare erfarenhet av att teckna eller skapa serier!</p><p>Verkstäderna är för vuxna. Vi står för de redskap som behövs. Varmt välkommen!</p><p>Anmäl dig nu: https://forms.gle/2bF1oLejgim4XPJY7</p><p>Verkstaden leds av:<br>Suvi Ermilä (f. 1985 i Tammerfors) är en bildkonstnär som bor och arbetar i Helsingfors. I sina tecknade serier använder hon mestadels flytande bläck, blyerts och pensel. Hennes senaste serier handlar om familjerelationer, ofta med utgångspunkt i upplevelsen av att vara en outsider. De är humoristiska och sorgliga i tonen. Hon har gett ut tre serietidningar: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) och Hauho (Suuri Kurpitsa 2017). Vastaanottokeskus vann Serie-Finlandiapriset 2022. Ermilä älskar att måla och koppla av i familjens stuga i Hauho.</p>", "en": "<p>Myllyteatteri is organising a comic art workshop for artists in cooperation with Stoa in November 2025.</p><p>The workshops are aimed at artists who have moved to Finland from abroad. Also local born artists are welcome. Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The workshop is free of charge. It offers the opportunity to meet other artists and network at the same time. In the workshop we make small exercises together about comic scripts and ideas for a comic story.</p><p>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Warm welcome!</p><p>Register now: https://forms.gle/2bF1oLejgim4XPJY7</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022. She loves to paint with oil and acrylic colors and enjoys relaxing at her family’s summer cottage in Hauho.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FB48B0433D476F91E07DE279D664C97D/Myllyteatterin_sarjakuvatyopaja", "sv": "http://www.stoa.fi/sv/evenemang/event/FB48B0433D476F91E07DE279D664C97D/Myllyteatteris_serieverkstad", "en": "http://www.stoa.fi/en/events/event/FB48B0433D476F91E07DE279D664C97D/Comic_Art_Workshop_" }, "name": { "fi": "Myllyteatterin sarjakuvatyöpaja", "sv": "Myllyteatteris serieverkstad", "en": "Comic Art Workshop" }, "location_extra_info": null, "short_description": { "fi": "Sarjakuvataidetyöpaja on suunnattu sekä ulkomailta Suomeen muuttaneille taiteilijoille että paikallisille taiteilijoille.", "sv": "Verkstaden riktar sig både till konstnärer som flyttat till Finland från utlandet och till lokala konstnärer.", "en": "Myllyteatteri is organising a comic art workshop for artists in cooperation with Stoa in November 2025." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67108/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67112", "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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491024, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T11:14:25.011576Z", "last_modified_time": "2025-10-06T11:14:25.011592Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778073.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491024/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T11:14:24.901321Z", "last_modified_time": "2025-10-17T08:13:39.572159Z", "date_published": null, "start_time": "2025-10-09", "end_time": "2025-11-05", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tämä ainutlaatuinen valokuvanäyttely esittelee jäsenten Tyynenmeren saarilla matkoillaan ottamia muotokuvia ja näkymiä.</p><p>Valokuvat tallentavat saariyhteisöjen päivittäiset rytmit, perinteet ja yhteydet maahan ja mereen. <br> <br>Aitoja ihmisiä. Aitoja paikkoja. Aitoja yhteyksiä. Jokainen kuva on henkilökohtainen kohtaaminen – aito hetki vierailijan ja saarelaisen välillä, joka paljastaa Tyynenmeren elämänlämpöä ja kulttuurista rikkautta. Nämä valokuvat ovat enemmän kuin taidetta – ne ovat muistoja, tarinoita ja siltoja maailmojen välillä. <br> <br>Liity seuraamme juhlimaan saarten henkeä niiden rannoilla vaeltaneiden linssin läpi kuvien avulla Cookinsaarilta, Fidžiltä, Kiribatilta, Samoalta, Tahitilta, Tongalta, Vanuatulta ja muilta. <br> <br><b>Järjestäjä</b> <br> <br><b>Tyynenmeren Saarten Ystävyysseura ry (PIFS)</b> <br> <br>Vuonna 1998 perustettu Tyynenmeren Saarten Ystävyysseura (PIFS) edistää Tyynenmeren saarten tuntemusta ja ymmärrystä Suomessa – sekä jäsenistönsä että laajemman yleisön keskuudessa. Yhdistyksen tavoitteena on edistää kulttuurivaihtoa, sosiaalista vuorovaikutusta ja yhteistyötä Suomen ja Tyynenmeren alueen monimuotoisten yhteisöjen välillä. <br> <br>Järjestämme värikkäitä kulttuuritapahtumia, jotka ammentavat inspiraationsa Tyynenmeren perinteistä ja tarinoista. Tapahtumat ovat avoimia sekä jäsenille että kaikille kiinnostuneille, ja ne tarjoavat mahdollisuuden jakaa kiinnostuksen kohteita, juhlistaa saarten kulttuureja ja pysyä ajan tasalla alueen ajankohtaisista asioista. <br> <br>PIFS on poliittisesti ja uskonnollisesti sitoutumaton yhdistys, jonka toiminnan ytimessä on ystävyyden ja kulttuurisen ymmärryksen rakentaminen. <br> <br>Vapaa pääsy!</p>", "sv": "<p>Denna unika fotoutställning visar porträtt och vyer fotade av medlemmar under deras resor på öar i Stilla havet.</p><p>Fotografierna fångar de dagliga rytmerna, traditionerna och förbindelsen med land och hav i ösamhällena.</p><p>Genuina människor. Genuina platser. Genuina kontakter. Varje bild är ett personligt möte – ett äkta ögonblick mellan besökare och öbor, som avslöjar livskraften och den kulturella rikedomen i Stilla havet. Dessa fotografier är mer än konst – de är minnen, berättelser och broar mellan världar.</p><p>Följ med oss när vi firar öarnas anda med bilder tagna genom linsen på stränderna på Cooköarna, Fiji, Kiribati, Samoa, Tahiti, Tonga, Vanuatu med flera.</p><p>Pacific Islands Friendship Society (PIFS)</p><p>Pacific Islands Friendship Society (PIFS) grundades 1998 och främjar kunskap om och förståelse i Finland för Stillahavsöarna, både bland sina medlemmar och hos den bredare allmänheten. Föreningens syfte är att främja kulturellt utbyte, social växelverkan och samarbete mellan de olika samhällena i Finland och Stillahavsområdet.</p><p>Föreningen anordnar färgstarka kulturevenemang inspirerade av traditioner och berättelser från Stilla havet. Evenemangen är öppna för både medlemmar och andra intresserade och erbjuder möjlighet att dela intressen, hylla öarnas kulturer och hålla sig uppdaterad om aktuella frågor i regionen.</p><p>PIFS är en politiskt och religiöst obunden förening vars verksamhet fokuserar på att bygga vänskap och kulturell förståelse.</p><p>Fritt inträde!</p>", "en": "<p>This unique photo exhibition showcases portraits and scenes captured by PIFS members during their journeys across the Pacific islands.</p><p>The photographs capture the daily rhythms, traditions, and connections the island communities share with their land and sea. <br> <br>Real people. Real places. Real connections. Each image is a personal encounter—an authentic moment shared between visitor and islander, revealing the warmth and cultural richness of life in the Pacific. These photographs are more than art—they’re memories, stories, and bridges between worlds. <br> <br>Join us in celebrating the spirit of the islands through the lens of those who walked their shores with pictures from the Cook Islands, Fiji, Kiribati, Samoa, Tahiti, Tonga, Vanuatu, etc. <br> <br><b>Organiser</b></p><p><b>Pacific Islands Friendship Society ry (PIFS) </b> <br>Founded in 1998, the Pacific Islands Friendship Society ry (PIFS) is dedicated to fostering awareness and understanding of the Pacific Islands among its members and the wider public. Our mission is to promote cultural exchange, social interaction, and cooperation between Finland and the diverse communities of the Pacific region. <br> <br>We host vibrant cultural events inspired by the traditions and stories of the Pacific, welcoming both members and the general public. These gatherings offer opportunities to share interests, celebrate island cultures, and stay informed about current developments affecting the Pacific Islands. <br> <br>PIFS is a non-political, non-religious organisation, committed solely to building bridges of friendship and cultural appreciation.</p><p>Free entry!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/780196A9452C2B320C082EAC59980976/Tyynenmeren_muotokuvia_tarinoita_saarilta", "sv": "http://www.malmitalo.fi/sv/evenemang/event/780196A9452C2B320C082EAC59980976/Portratt_av_Stilla_havet_-_berattelser_fran_oarna", "en": "http://www.malmitalo.fi/en/events/event/780196A9452C2B320C082EAC59980976/Pacific_Portraits_Stories_from_the_Islands" }, "name": { "fi": "Tyynenmeren muotokuvia – tarinoita saarilta – Pacific Islands Friendship Society ry (PIFS) valokuvanäyttely", "sv": "Porträtt av Stilla havet - berättelser från öarna – Pacific Islands Friendship Society ry:s (PIFS) fotoutställning", "en": "Pacific Portraits – Stories from the Islands – Pacific Islands Friendship Society ry (PIFS) Photo Exhibition" }, "location_extra_info": null, "short_description": { "fi": "Tämä ainutlaatuinen valokuvanäyttely esittelee jäsenten Tyynenmeren saarilla matkoillaan ottamia muotokuvia ja näkymiä.", "sv": "Denna unika fotoutställning visar porträtt och vyer fotade av medlemmar under deras resor på öar i Stilla havet.", "en": "This unique photo exhibition showcases portraits and scenes captured by PIFS members during their journeys across the Pacific islands." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67083", "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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490948, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-30T09:13:50.733927Z", "last_modified_time": "2025-09-30T09:13:50.733941Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777792.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490948/?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-09-30T09:13:50.609426Z", "last_modified_time": "2025-10-17T07:13:52.066128Z", "date_published": null, "start_time": "2025-11-15T10: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, "description": { "fi": "<p>Hopi hopi! Kaikki lapset ja lapsenmieliset ovat lämpimästi tervetulleita Kanneltalon Lasten lauantaihin.</p><p>Klovni Marttakin on kutsuttu mukaan vapaapäivän viettoon! Maksutonta ohjelmaa ja tekemistä löydät galleriasta ja kirjastosta.</p><p>AULA</p><p>klo 12-15 Klovni Martta (Taina Mäki-Iso) on tosi innoissaan, koska hänet on kutsuttu Lasten lauantai -tapahtumaan! Marttaa kyllä vähän ihmetyttää, miten lapsen voi tunnistaa. Mikä oikein tekee lapsesta lapsen? Ja voiko aikuisessa - tai robotissa - olla lasta tai lapsenmieltä? Martan voi tavata joko hänen ihmettelytoimipisteellään tai kiertelemässä lasten seassa tapahtumapaikalla.</p><p>GALLERIA</p><p>klo 12-14 Työpajassa askarrellaan ennennäkemättömiä robotteja kuvakirjataiteilija Linda Bondestamin kanssa. Käytämme erilaisia kiehtovia materiaaleja näiden persoonallisten tyyppien valmistamiseen.<br>klo 12-15 Linda Bondestamin näyttely: Hopi hopi – toivoa paremmasta maailmasta <br>Linda Bondestam: Hopi hopi - toivoa paremmasta maailmasta<br> <br>KIRJASTO<br>klo 12.30-13 Satutuokio (Rotunda) <br>klo 13.30-15 Bee botit matkaavat ympäri maailmaa -koodausleikkituokio (Rotunda)<br>klo 12-15 Legotyöpaja: Tulevaisuuden kaupunki (Tempo)<br> <br>KONSERTTISALI<br>klo 14-14.40 Pikku Papun Orkesteri & Liisa Kallio (kieli suomi, liput 6 € myynnissä Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Aula, galleria, kirjasto (vapaa pääsy)<br>Konsertti maksullinen</p>", "sv": "<p>Hopi hopi. Alla barn och barnasinnade är varmt välkomna till Barnens lördag på Gamlasgården.</p><p>Clownen Martta har också bjudits in för att delta i firandet! Kostnadsfritt program och upplevelser hittar du på galleriet och i biblioteket.</p><p>AULAN</p><p>12–15 Clownen Martta (Taina Mäki-Iso) är mycket glad över att ha fått en inbjudan till evenemanget Barnens lördag! Men Martta funderar nog lite på hur man kan känna igen ett barn. Vad är det egentligen som gör ett barn till ett barn? Och kan en vuxen – eller en robot – vara ett barn eller ha ett barnasinne? Du kan träffa Marta antingen vid hennes funderingsställe eller när hon vandrar runt i lokalen bland barnen.</p><p>GALLERIET</p><p>kl. 12–14 En verkstad där du får göra helt nya robotar tillsammans med illustratören Linda Bondestam. Vi använder en mängd olika fascinerande material för att skapa dessa personliga typer.<br>kl. 12–15 Linda Bondestams utställning: Hopi hopi - med hopp om en bättre värld<br>Linda Bondestam: Hopi hopi - med hopp om en bättre värld</p><p>BIBLIOTEKET<br>kl. 12.30–13.00 Sagostund (Rotundan)<br>kl. 13.30–15 Bee botarna reser runt i världen, kodningslekstund (Rotunda)<br>12-15 Legoverkstad: Framtidens stad (Tempo)</p><p>KONSERTSALEN<br>kl. 14-14.40 Pikku Papun Orkesteri & Liisa Kallio (på finska, biljetter 6 € till salu på Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Aulan, galleriet, biblioteket (gratis inträde)<br>Avgiftsbelagd konsert</p>", "en": "<p>Chop chop! All children and like-minded adults are warmly welcome to Kanneltalo’s Children's Saturday.</p><p>Clown Martta has also been invited to join the fun! Be sure to also visit the gallery and library for a variety of free-of-charge activities.</p><p>LOBBY</p><p>12.00–15.00 Clown Martta (Taina Mäki-Iso) is very excited to have been invited to the Children's Saturday event! But Martta is a little puzzled as to how you can identify a child. What exactly makes a child a child? And can an adult – or a robot – be like a child or have a childlike mind? You can meet Martta either at her wonder station or walking around the venue among the children.</p><p>GALLERY</p><p>12.00–14.00 Workshop for making never-before-seen robots with illustrator Linda Bondestam. We will be using a variety of fascinating materials to create these distinctive guys.<br>12.00–15.00 Linda Bondestam's exhibition: Chop chop – Hope for a Better World<br>Linda Bondestam: Chop chop – Hope for a Better World</p><p>LIBRARY<br>12.30–13.00 Story time (Rotunda)<br>13.30–15.00 Bee bots travel around the world - coding play session (Rotunda)<br>12.00–15.00 Lego workshop: City of the future (Tempo)</p><p>CONCERT HALL<br>14.00–14.40 Pikku Papun Orkesteri & Liisa Kallio (language: Finnish, tickets €6 available at Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Lobby, gallery, library (free entry)<br>The concert is subject to a charge.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/13B29EF9119C3229B66CD0D08CD4BFF4/Lasten_lauantai", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/13B29EF9119C3229B66CD0D08CD4BFF4/Barnens_lordag", "en": "http://www.kanneltalo.fi/en/events/event/13B29EF9119C3229B66CD0D08CD4BFF4/Children_s_Saturday" }, "name": { "fi": "Lasten lauantai", "sv": "Barnens lördag", "en": "Children’s Saturday" }, "location_extra_info": null, "short_description": { "fi": "Hopi hopi! Kaikki lapset ja lapsenmieliset ovat lämpimästi tervetulleita Kanneltalon Lasten lauantaihin.", "sv": "Hopi hopi. Alla barn och barnasinnade är varmt välkomna till Barnens lördag på Gamlasgården.", "en": "Chop chop! All children and like-minded adults are warmly welcome to Kanneltalo’s Children's Saturday." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67113", "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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491023, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T11:14:23.853238Z", "last_modified_time": "2025-10-06T11:14:23.853256Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778074.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491023/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T11:14:23.709362Z", "last_modified_time": "2025-10-17T07:13:39.113415Z", "date_published": null, "start_time": "2025-10-08", "end_time": "2025-11-08", "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, "description": { "fi": "<p>Se mikä jää piiloon, ei katoa.</p><p>Poliittiset päätökset tehdään usein kaukana arjesta, ja niiden vaikutukset jäävät kylmien numeroiden taakse. Tämän näyttelyn kuvat ja tarinat avaavat oven maailmaan, jossa leikkausten jäljet näkyvät: nuorten aikuisten elämään, ulkopuolisuuden tunteisiin ja mielenterveyden kamppailuihin. <br> <br>Tämä näyttely korostaa, kuinka tärkeää yhteisöllisyyden kaipuu voi olla: yksi ystävä tai hyväksyvä yhteisö voi muuttaa elämän suunnan. Samalla nousee esille, miten leikkaukset kohdistuvat kipeimmin heihin, joilla on kaikkein vähiten. Yhteiskunta tuntuu etäiseltä juuri silloin, kun apua tarvitaan eniten. <br> <br>Pois leikatut kutsuu pysähtymään, katsomaan ja kuuntelemaan – kohtaamaan ihmisiä, joiden ääni ansaitsee tulla kuulluksi.Tämä on tarina selviytymisestä ja nähdyksi tulemisen tärkeydestä. <br> <br><b>Valokuvaajat:</b> Sylvia Huppunen, Jasmin Ristolainen, Maija Brunfeldt, Kasper Viita, Max Hovi. <br><b>Kuratoinut:</b> kuvataiteilija Emmi Kähkönen <br> <br>Näyttely on nähty viimeiseksi Tekstin Talossa Helsingissä ja keväällä 2025 Tampere-talossa. Sen on tuottanut Kohtaus ry, jolla on epäkaupallinen nuorten aikuisten kaupunkiolohuone Helsingin Malmilla ja Vallilassa. <br> <br><u><a href=\"https://www.kohtaus.info\">www.kohtaus.info</b></u>. <br><u><a href=\"https://www.instagram.com/kohtaus\">Kohtaus Instagramissa</b></u>.</p>", "sv": "<p>Det som förblir dolt försvinner inte.</p><p>Politiska beslut fattas ofta långt från vardagen och deras effekter förblir gömda bakom kalla siffror. Bilderna och berättelserna i den här utställningen öppnar dörren till en värld där spåren efter nedskärningarna är synliga: unga vuxnas liv, känslor av utanförskap och psykiska problem.</p><p>Den här utställningen visar hur viktig längtan efter gemenskap kan vara: en vän eller en accepterande gemenskap kan ändra riktningen på ett liv. Den visar också hur nedskärningarna slår hårdast mot dem som har minst. Samhället verkar avlägset just när hjälpen behövs som mest.</p><p>Pois leikatut bjuder in dig att stanna upp, titta och lyssna – att möta människor vars röster förtjänar att höras. Det här är en berättelse om överlevnad och vikten av att bli sedd.</p><p>Fotografer: Sylvia Huppunen, Jasmin Ristolainen, Maija Brunfeldt, Kasper Viita, Max Hovi.<br>Kurator: bildkonstnären Emmi Kähkönen</p><p>Utställningen förevisades senast på Tekstin talo i Helsingfors och våren 2025 på Tammerforshuset. Den produceras av Kohtaus ry, som driver ett icke-kommersiellt stadsvardagsrum för unga vuxna i Malm och Vallgård i Helsingfors.</p>", "en": "<p>What remains hidden does not disappear.</p><p>Political decisions are often made far from everyday life, and their effects are concealed behind the cold numbers. The images and stories in this exhibition open a door to a world where the traces of the economic cuts become visible: in the lives of young adults, in feelings of exclusion, and in struggles with mental health.<br> <br>This exhibition highlights how vital the need for community can be: one friend or an accepting group can change the direction of a life. At the same time, it shows how cuts strike hardest at those who have the very least. Society can feel most distant precisely when help is most needed.<br> <br>Pois leikatut invites you to pause, look, and listen – to encounter people whose voices deserve to be heard. This is a story of survival and of the importance of being seen.<br> <br><b>Photographers:</b> Sylvia Huppunen, Jasmin Ristolainen, Maija Brunfeldt, Kasper Viita, Max Hovi.<br><br><b>Curated by:</b> visual artist Emmi Kähkönen<br><br><br> <br>The exhibition was most recently shown at Tekstin Talo in Helsinki and in spring 2025 at Tampere Hall. It is produced by Kohtaus ry, a non-commercial urban living room for young adults in Malmi and Vallila, Helsinki.<br><br><br> <br><u><a href=\"https://www.kohtaus.info\">www.kohtaus.info</a></u><br> <br><u><a href=\"https://www.instagram.com/kohtaus\">Kohtaus on Instagram</a></u></p><p>Free entry!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5EF92D05C2B7A5A940B2675620F64AEC/Pois_leikatut_-valokuvanayttely", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5EF92D05C2B7A5A940B2675620F64AEC/Pois_leikatut_Fotoutstallningen", "en": "http://www.malmitalo.fi/en/events/event/5EF92D05C2B7A5A940B2675620F64AEC/Pois_leikatut_photo_exhibition" }, "name": { "fi": "Pois leikatut -valokuvanäyttely", "sv": "Pois leikatut Fotoutställningen", "en": "Pois leikatut photo exhibition" }, "location_extra_info": null, "short_description": { "fi": "Se mikä jää piiloon, ei katoa.", "sv": "Det som förblir dolt försvinner inte.", "en": "What remains hidden does not disappear." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67113/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66901", "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: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:47/?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:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490753, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-12T08:12:57.063144Z", "last_modified_time": "2025-09-12T08:12:57.063159Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776795.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490753/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-12T08:12:56.956950Z", "last_modified_time": "2025-10-17T06:13:51.895124Z", "date_published": null, "start_time": "2025-11-07", "end_time": "2025-11-16", "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, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia Liikkeellä marraskuussa -festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle.</p><p>Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi paikallinen taiteilija.</p><p>Soup talk –tilaisuudet ovat maksuttomia, mutta niihin on ennakkoilmoittautuminen: https://fienta.com/fi/moving-in-november-soup-talk-145815</p><p><b>7.11.2025 klo 12–13:30</b><br>Teos: Work Body<br>Vieras: Michael Turinsky<br> <br><b>8.11.2025 klo 12–13:30</b><br>Teos: Don’t thank for the food<br>Vieras: Antonia Atarah<br> <br><b>9.11.2025 klo 13–14:30</b><br>Teos: Maze<br>Vieras: Marie Topp, Julia Giertz<br>HUOM! Eri aikaan kuin muut Soup Talk-tilaisuudet.</p><p><b>10.11.2025 klo 12–13:30</b><br>Teos: MANUAL<br>Vieras: Adam Kinner, Christopher Willes<br> <br><b>11.11.2025 klo 12–13:30</b><br>Teos: FRANK<br>Vieras: Cherish Menzo</p><p><b>12.11.2025 klo 12–13:30</b><br>Teos: Mother Tongue<br>Vieras: Lucía García Pullés<br> <br><b>13.11.2025 klo 12–13:30</b><br>Teos: La Gouineraie<br>Vieras: Rébecca Chaillon, Sandra Calderan <br> <br><b>14.11.2025 klo 12–13:30</b><br>Soup Talk Panel<br> <br><b>Liikkeellä marraskuussa</b> on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali. <br>Caisa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2025 festivaali järjestetään 6.–16. marraskuuta. Lue lisää festivaalista: https://liikkeellamarraskuussa.fi/</p>", "sv": "<p>Soup Talks är en serie samtal och möten med konstnärer från festivalen Liikkeellä marraskuussa.</p><p>Diskussionsserien kommer att pågå under hela festivalen och sammanför människorna. Välkomna med kring det stora bordet där vi serverar varm soppa.</p><p>Vi bjuder in allmänheten att delta, lyssna, ställa frågor och diskutera. Varje diskussion modereras av en lokal konstnär.</p><p>Soup Talk-evenemangen är kostnadsfria, men kräver förhandsanmälan: https://fienta.com/fi/moving-in-november-soup-talk-145815</p><p>7.11.2025 kl. 12–13:30<br>Verk: Work Body<br>Gäst: Michael Turinsky</p><p>8.11.2025 kl. 12–13:30<br>Verk: Don’t thank for the food<br>Gäst: Antonia Atarah</p><p>9.11.2025 kl. 13:00–14:30<br>Verk: Maze<br>Gäst: Marie Topp, Julia Giertz<br>OBS! Annat klockslag än för andra Soup Talk-evenemang.</p><p>10.11.2025 kl. 12–13:30<br>Verk: MANUAL<br>Gäst: Adam Kinner, Christopher Willes</p><p>11.11.2025 kl. 12–13:30<br>Verk: FRANK<br>Gäst: Cherish Menzo</p><p>12.11.2025 kl. 12–13:30<br>Verk: Mother Tongue<br>Gäst: Lucía García Pullés</p><p>13.11.2025 kl. 12–13:30<br>Verk: La Gouineraie<br>Gäst: Rébecca Chaillon, Sandra Calderan</p><p>14.11.2025 kl. 12–13:30<br>Soup Talk Panel</p><p>Liikkeellä marraskuussa är en festival för modern dans som ordnas varje år i huvudstadsregionen.<br>Caisa är en av platserna där festivalen Liikkeellä marraskuussa ordnas. Festivalen 2025 ordnas den 6–16 november. Läs mer om festivalen: https://liikkeellamarraskuussa.fi</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the Moving in November festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup.</p><p>Everybody is invited to join in, listen, pose questions, and take part in the discussions.</p><p>Each of the talks will be hosted by a local artist.<br>Register to Soup Talks: https://fienta.com/moving-in-november-soup-talk-145815</p><p>November 7, 2025 at 12:00–1:30 PM<br>Performance: Work Body<br>Guest: Michael Turinsky<br> <br>November 8, 2025 at 12:00–1:30 PM<br>Performance: Don’t thank for the food<br>Guest: Antonia Atarah<br> <br>November 9, 2025 at 13:00–14:30 PM <br>Performance: Maze<br>Guest: Marie Topp, Julia Giertz<br> <br>November 10, 2025 at 12:00–1:30 PM<br>Performance: MANUAL<br>Guest: Adam Kinner, Christopher Willes<br> <br>November 11, 2025 at 12:00–1:30 PM<br>Performance: FRANK<br>Guest: Cherish Menzo<br> <br>November 12, 2025 at 12:00–1:30 PM<br>Performance: Mother Tongue<br>Guest: Lucía García Pullés<br> <br>November 13, 2025 at 12:00–1:30 PM<br>Performance: La Gouineraie<br>Guest: Rébecca Chaillon, Sandra Calderan<br> <br>November 14, 2025 at 12:00–1:30 PM<br>Soup Talk Panel</p><p><b>Liikkeellä marraskuussa – Moving in November</b> is an annual contemporary dance festival held in the Helsinki Metropolitan Area. Caisa is one of the venues of the Moving in November festival. The 2025 Festival will take place from 6 to 16 November. Read more about Moving in November.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/72DF881B21422303D4E6E0438030250E/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/72DF881B21422303D4E6E0438030250E/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/72DF881B21422303D4E6E0438030250E/Moving_in_November_Soup_Talks" }, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks", "sv": "Liikkeellä marraskuussa – Soup Talks", "en": "Moving in November – Soup Talks" }, "location_extra_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia Liikkeellä marraskuussa -festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie samtal och möten med konstnärer från festivalen Liikkeellä marraskuussa.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the Moving in November festival." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66901/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22cnja", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22c2da/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T07:13:14.295104Z", "last_modified_time": "2025-10-17T05:24:52.401371Z", "date_published": null, "start_time": "2025-12-04T12:30:00Z", "end_time": "2025-12-04T14: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, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p><p>Mukana on myös Hello Espoo -info, joka tarjoaa neuvontaa espoolaisille, jotka ovat muuttaneet Suomeen ulkomailta vähän aikaa sitten.</p><p><strong>Palvelemme helpolla suomen kielellä, englanniksi ja puhelintulkin välityksellä.</strong></p><p>Tervetuloa!</p><ul><li><a href=\"https://www.espoo.fi/fi/hello-espoo-infon-tiedot-useilla-eri-kielilla\">Lue lisää Hello Espoo -infosta useilla kielillä.</a></li></ul><p>#HelloEspoo</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn.</p><p>Hello Espoo-info kommer också att delta i evenemanget. Hello Espoo-info erbjuder råd särskilt till Esbobor som nyligen har flyttat till Finland från utlandet.</p><p><strong>Vi betjänar på lätt finska, engelska och via telefontolk.</strong></p><p>Välkommen!</p><ul><li><a href=\"https://www.espoo.fi/sv/hello-espoo-info-information-pa-olika-sprak\">Läs mer om Hello Espoo-info på olika språk.</a></li></ul><p>#HelloEspoo</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services.</p><p>Hello Espoo Info will also be participating in the event. Hello Espoo Info offers advice especially to Espoo residents who have recently moved to Finland from abroad.</p><p><strong>We serve in easy Finnish, English and via telephone interpreter.</strong></p><p>Welcome!</p><ul><li><a href=\"https://www.espoo.fi/en/hello-espoo-info-information-several-languages\">Read more about Hello Espoo Info in different languages.</a></li></ul><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "name": { "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa", "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket", "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library" }, "location_extra_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "provider": { "fi": "Konsernihallinto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22cnja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22cqhq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22c2da/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T07:13:13.631780Z", "last_modified_time": "2025-10-17T05:24:14.259632Z", "date_published": null, "start_time": "2025-11-06T12:30:00Z", "end_time": "2025-11-06T14: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, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p><p>Mukana on myös Hello Espoo -info, joka tarjoaa neuvontaa espoolaisille, jotka ovat muuttaneet Suomeen ulkomailta vähän aikaa sitten.</p><p><strong>Palvelemme helpolla suomen kielellä, englanniksi ja puhelintulkin välityksellä.</strong></p><p>Tervetuloa!</p><ul><li><a href=\"https://www.espoo.fi/fi/hello-espoo-infon-tiedot-useilla-eri-kielilla\">Lue lisää Hello Espoo -infosta useilla kielillä.</a></li></ul><p>#HelloEspoo</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn.</p><p>Hello Espoo-info kommer också att delta i evenemanget. Hello Espoo-info erbjuder råd särskilt till Esbobor som nyligen har flyttat till Finland från utlandet.</p><p><strong>Vi betjänar på lätt finska, engelska och via telefontolk.</strong></p><p>Välkommen!</p><ul><li><a href=\"https://www.espoo.fi/sv/hello-espoo-info-information-pa-olika-sprak\">Läs mer om Hello Espoo-info på olika språk.</a></li></ul><p>#HelloEspoo</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services.</p><p>Hello Espoo Info will also be participating in the event. Hello Espoo Info offers advice especially to Espoo residents who have recently moved to Finland from abroad.</p><p><strong>We serve in easy Finnish, English and via telephone interpreter.</strong></p><p>Welcome!</p><ul><li><a href=\"https://www.espoo.fi/en/hello-espoo-info-information-several-languages\">Read more about Hello Espoo Info in different languages.</a></li></ul><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "name": { "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa", "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket", "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library" }, "location_extra_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "provider": { "fi": "Konsernihallinto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22cqhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67156", "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:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491098, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-14T14:13:46.638885Z", "last_modified_time": "2025-10-14T14:13:46.638899Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778242.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491098/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-14T14:13:46.501844Z", "last_modified_time": "2025-10-16T16:13:48.152535Z", "date_published": null, "start_time": "2025-11-07", "end_time": "2025-11-27", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Työväenopiston kuvataideryhmät esittäytyvät Vuotalon käytävägalleriassa 7.11.–27.11.2025.</p><p>Mukana piirustuksen-, maalauksen- ja keramiikan kurssien syksyn satoa.</p><p>Työväenopiston vuoden teema, Matka, näkyy näyttelytöissä eri näkökulmista. Matka voi olla konkreettinen siirtymä paikasta toiseen, haave tai muisto jostain reissusta. Se voi myös olla matka omaan luovuuteen, taiteelliseen prosessiin tai itsetuntemukseen.</p><p>PAIKKA: Vuotalon vitriinikäytävä, 2 kerros</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C2766712BB24F5C8876ACDA14E6DB458/Matkalla", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C2766712BB24F5C8876ACDA14E6DB458/Matkalla", "en": "http://www.vuotalo.fi/en/events/event/C2766712BB24F5C8876ACDA14E6DB458/Matkalla" }, "name": { "fi": "Matkalla – Työväenopiston kuvataideryhmien näyttely", "sv": "Matkalla – Työväenopiston kuvataideryhmien näyttely", "en": "Matkalla – Työväenopiston kuvataideryhmien näyttely" }, "location_extra_info": null, "short_description": { "fi": "Työväenopiston kuvataideryhmät esittäytyvät Vuotalon käytävägalleriassa 7.11.–27.11.2025." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67156/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67073", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490881, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-24T07:13:25.461694Z", "last_modified_time": "2025-09-24T07:13:25.461706Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772440.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490881/?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-09-24T07:13:25.339744Z", "last_modified_time": "2025-10-16T12:14:13.687996Z", "date_published": null, "start_time": "2025-12-17T07:15: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, "description": { "fi": "<p>Astrid Lindgrenin joulutarinoita vie katsojansa seikkailulle Astrid Lindgrenin rakastetuimpien hahmojen matkassa ja luo joulutunnelmaa kaikenikäisille.</p><p>Qvisten Animationin uutuus sopii mainiosti pienimpien ensielokuvaksi. Elokuvassa on neljä animaatiotarinaa, jotka käkikellon Kello-käki näyttää joulua odottaville lapsille. Tapaamme Vaahteramäen Eemelin, Pekka Peukaloisen, ketun ja tontun sekä Taina Tomeran. Elokuva vie seikkailuun Astrid Lindgrenin tarinoiden maailmaan ja luo joulutunnelmaa niin nuorille kuin vanhoillekin. Elokuva on dubattu suomeksi ja tekstitetty ruotsiksi.</p><p>Ensi-ilta: 05.12.2024<br>Ikäraja: Sallittu<br>Pituus: 52 min.<br>Kieli: suomi<br>Tekstitys: ruotsi</p><p>Ryhmille pakollinen ilmoittautuminen osoitteessa: kultus.hel.fi</p>", "sv": "<p>Astrid Lindgrens julberättelser tar dig med på ett äventyr tillsammans med Astrid Lindgrens mest älskade karaktärer och skapar julstämning för alla åldrar.</p><p>Den här nya filmen från Qvisten Animation är perfekt som första film för de minsta. Filmen innehåller fyra animerade berättelser som gökurets gök visar för barn som väntar på julen. Vi får träffa Emil i Lönneberga, Nils Karlsson Pyssling, Tomten och Räven samt Kajsa Kavat. Filmen för tittarna ut på ett äventyr i Astrid Lindgrens sagovärld och skapar julstämning för både stora och små. Filmen är dubbad på finska och textad på svenska.</p><p>Premiär: 05.12.2024<br>Åldersgräns: Tillåten<br>Längd: 52 min.<br>Språk: finska<br>Textning: svenska</p><p>Obligatorisk registrering för grupper på: kultus.hel.fi</p>", "en": "<p>Christmas with Astrid Lindgren takes you on an adventure with some of Astrid Lindgren's most beloved characters, creating a Christmas atmosphere for all ages.</p><p>This new film from Qvisten Animation is a perfect first film for small children. The film features four animated stories that the cuckoo in the cuckoo clock shows to children waiting for Christmas. These stories introduce us to Emil, Simon Small, Brenda Brave and Tomten and the Fox. The film takes you on an adventure in the world of Astrid Lindgren's stories, creating a Christmas atmosphere for both young and older viewers. The film is dubbed in Finnish and subtitled in Swedish.</p><p>Premiere: 15 December 2024<br>Age limit: suitable for all ages<br>Duration: 52 min<br>Language: Finnish<br>Subtitles: Swedish</p><p>Mandatory registration for groups at kultus.hel.fi</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita", "en": "http://www.vuotalo.fi/en/events/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita" }, "name": { "fi": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino", "sv": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino", "en": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino" }, "location_extra_info": null, "short_description": { "fi": "Astrid Lindgrenin joulutarinoita vie katsojansa seikkailulle Astrid Lindgrenin rakastetuimpien hahmojen matkassa ja luo joulutunnelmaa kaikenikäisille.", "sv": "Astrid Lindgrens julberättelser tar dig med på ett äventyr tillsammans med Astrid Lindgrens mest älskade karaktärer och skapar julstämning för alla åldrar.", "en": "Christmas with Astrid Lindgren takes you on an adventure with some of Astrid Lindgren's most beloved characters, creating a Christmas atmosphere for all ages." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67073/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6zrojii", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491113, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-16T10:40:02.329321Z", "last_modified_time": "2025-10-16T10:40:02.329337Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/299ca353-ee4e-4eb1-8128-251bbf584a80.jpg", "cropping": "0,320,801,1120", "photographer_name": "", "alt_text": "Kuvassa Cevin Officialin juliste", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491113/?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-10-16T10:40:36.976850Z", "last_modified_time": "2025-10-16T10:40:36.976868Z", "date_published": null, "start_time": "2025-10-17T15:50:00Z", "end_time": "2025-10-17T16: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, "description": { "fi": "<p>Tervetuloa nuoren räppärin Cevin Officialin keikalle Lippulaivan kirjastoon 17.10 noin kello 18.50 alkaen! Luvassa mahtavaa sanataidetta. Tapahtuma on kaikille avoin ja maksuton. </p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Cevin Officialin räppikeikka" }, "location_extra_info": { "fi": "Salonki" }, "short_description": { "fi": "Tervetuloa nuoren räppärin Cevin Officialin keikalle Lippulaivan kirjastoon 17.10 noin kello 18.50 alkaen! Tapahtuma on kaikille avoin ja maksuton. " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6zrojii/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7biulfq", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-16T10:40:09.257334Z", "last_modified_time": "2025-10-16T10:40:09.257351Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/281fd967-397c-4d01-a66a-6d80b6c7fe38.png", "cropping": "0,293,1414,1707", "photographer_name": "", "alt_text": "Halloween pakohuone. Hämähäkit, kurpitsa ja noidankattila.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491115/?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-10-16T10:40:28.440803Z", "last_modified_time": "2025-10-16T10:40:28.440822Z", "date_published": "2025-10-17T05:00:00Z", "start_time": "2025-10-31T13:00:00Z", "end_time": "2025-10-31T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Lapsille ja nuorille suunnattu Halloween-teemainen pakohuone kirjaston VOX tilassa klo 15-17. Pakohuoneeseen voi tulla yksin tai yhdessä kavereiden kanssa!</p>", "sv": "<p>Ett Halloween-tematiskt escape room för barn och unga i bibliotekets VOX-utrymme kl. 15–17. Du kan komma till escape roomet ensam eller tillsammans med vänner!</p>", "en": "<p>A Halloween-themed escape room for children and youth in the library’s VOX space from 3 to 5 p.m. You can come to the escape room alone or with friends!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Halloween pakohuone", "sv": "Halloween Escape room", "en": "Halloween Escape room" }, "location_extra_info": { "fi": "VOX", "sv": "VOX", "en": "VOX" }, "short_description": { "fi": "Ison Omenan kirjaston halloween pakohuone lapsille ja nuorille.", "sv": "Halloween-escape room för barn och unga på Iso Omena bibliotek.", "en": "Iso Omena library's halloween escaperoom for children and youth. " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7biulfq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5ibi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5avy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5bgq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5buy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5cdy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5csi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5c74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5dmy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5dz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5eie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5exi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5fgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5fu4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5gbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5gn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5g2i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5hhi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5hui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22bfuy/?format=api" } ], "images": [ { "id": 1490096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-21T12:17:38.695640Z", "last_modified_time": "2025-05-21T12:17:38.695655Z", "name": "Tiimityö", "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Tiimityö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T11:17:23.868946Z", "last_modified_time": "2025-10-16T10:31:53.281949Z", "date_published": null, "start_time": "2025-08-14T13:00:00Z", "end_time": "2025-12-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Ligretto-kerho ", "sv": "AVBRUTEN: Ligrettoklubben", "en": "CANCELLED: Ligretto Club" }, "location_extra_info": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5eie", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-21T12:17:38.695640Z", "last_modified_time": "2025-05-21T12:17:38.695655Z", "name": "Tiimityö", "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Tiimityö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T11:17:26.345129Z", "last_modified_time": "2025-10-16T10:31:53.235730Z", "date_published": null, "start_time": "2025-10-16T13:00:00Z", "end_time": "2025-10-16T14: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, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Ligretto-kerho ", "sv": "AVBRUTEN: Ligrettoklubben", "en": "CANCELLED: Ligretto Club" }, "location_extra_info": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5eie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5exi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-21T12:17:38.695640Z", "last_modified_time": "2025-05-21T12:17:38.695655Z", "name": "Tiimityö", "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Tiimityö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T11:17:26.435848Z", "last_modified_time": "2025-10-16T10:31:53.188619Z", "date_published": null, "start_time": "2025-10-23T13:00:00Z", "end_time": "2025-10-23T14: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, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Ligretto-kerho ", "sv": "AVBRUTEN: Ligrettoklubben", "en": "CANCELLED: Ligretto Club" }, "location_extra_info": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5exi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5fgm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-21T12:17:38.695640Z", "last_modified_time": "2025-05-21T12:17:38.695655Z", "name": "Tiimityö", "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Tiimityö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T11:17:26.601813Z", "last_modified_time": "2025-10-16T10:31:53.142475Z", "date_published": null, "start_time": "2025-10-30T14:00:00Z", "end_time": "2025-10-30T15: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, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Ligretto-kerho ", "sv": "AVBRUTEN: Ligrettoklubben", "en": "CANCELLED: Ligretto Club" }, "location_extra_info": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5fgm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5fu4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-21T12:17:38.695640Z", "last_modified_time": "2025-05-21T12:17:38.695655Z", "name": "Tiimityö", "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Tiimityö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T11:17:26.669085Z", "last_modified_time": "2025-10-16T10:31:53.092298Z", "date_published": null, "start_time": "2025-11-06T14:00:00Z", "end_time": "2025-11-06T15: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, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Ligretto-kerho ", "sv": "AVBRUTEN: Ligrettoklubben", "en": "CANCELLED: Ligretto Club" }, "location_extra_info": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5fu4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5gbe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-21T12:17:38.695640Z", "last_modified_time": "2025-05-21T12:17:38.695655Z", "name": "Tiimityö", "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Tiimityö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T11:17:26.736891Z", "last_modified_time": "2025-10-16T10:31:53.042867Z", "date_published": null, "start_time": "2025-11-13T14:00:00Z", "end_time": "2025-11-13T15: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, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Ligretto-kerho ", "sv": "AVBRUTEN: Ligrettoklubben", "en": "CANCELLED: Ligretto Club" }, "location_extra_info": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5gbe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5gn4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-21T12:17:38.695640Z", "last_modified_time": "2025-05-21T12:17:38.695655Z", "name": "Tiimityö", "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Tiimityö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T11:17:26.977002Z", "last_modified_time": "2025-10-16T10:31:52.989486Z", "date_published": null, "start_time": "2025-11-20T14:00:00Z", "end_time": "2025-11-20T15: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, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Ligretto-kerho ", "sv": "AVBRUTEN: Ligrettoklubben", "en": "CANCELLED: Ligretto Club" }, "location_extra_info": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5gn4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5g2i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-21T12:17:38.695640Z", "last_modified_time": "2025-05-21T12:17:38.695655Z", "name": "Tiimityö", "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Tiimityö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T11:17:27.335546Z", "last_modified_time": "2025-10-16T10:31:52.942489Z", "date_published": null, "start_time": "2025-11-27T14:00:00Z", "end_time": "2025-11-27T15: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, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Ligretto-kerho ", "sv": "AVBRUTEN: Ligrettoklubben", "en": "CANCELLED: Ligretto Club" }, "location_extra_info": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5g2i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }