Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=275®istration__remaining_attendee_capacity__isnull=true
{ "meta": { "count": 32736, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=276®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=274®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:66788", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/", "sv": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/", "en": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/" }, "description": null, "price": { "fi": "24,50 € / 19 € / 15 €", "sv": "24,50 € / 19 € / 15 €", "en": "24,50 € / 19 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1323698, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-23T10:14:20.052457Z", "last_modified_time": "2025-07-23T10:14:20.052474Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773989.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1323698/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-23T10:14:19.926214Z", "last_modified_time": "2025-10-17T10:14:06.660716Z", "date_published": null, "start_time": "2025-12-17T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Stoaan pikkujoulukauden outoon ja ihanaan sirkuselämykseen!", "sv": "Välkommen till Stoa för en märklig och underbar cirkusupplevelse kring lillajul!", "en": "Welcome to Stoa for a weird and wonderful circus experience of the Christmas season!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AEC08ECC34EBA77997EDC60450B257B9/The_weird_and_wonderful_circus_cabaret_with_a_twist_K18_", "sv": "http://www.stoa.fi/sv/evenemang/event/AEC08ECC34EBA77997EDC60450B257B9/The_weird_and_wonderful_circus_cabaret_with_a_twist_F18_", "en": "http://www.stoa.fi/en/events/event/AEC08ECC34EBA77997EDC60450B257B9/The_weird_and_wonderful_circus_cabaret_with_a_twist_18_" }, "description": { "fi": "<p>Tervetuloa Stoaan pikkujoulukauden outoon ja ihanaan sirkuselämykseen!</p><p>Astu Teatterisalin sirkusmaailmaan missä musiikki, villi fysiikka ja komedia kohtaavat upeiden esiintyjien johdattamana.</p><p>Nauti virvokkeita ystävien seurassa, ihmettele elämää ja koe ennen näkemättömiä kohtaamisia baarin hämyisessä tunnelmassa.</p><p><b>Sirkusesiintyjät: </b><br>Rauli Dahlberg <br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p><b>Muusikot:</b><br>Jussi Liukkonen<br>Roope Mantere</p><p>Ikäraja: K18 (anniskelu salissa)</p>", "sv": "<p>Välkommen till Stoa för en märklig och underbar cirkusupplevelse kring lillajul!</p><p>Kliv in i Teatersalens cirkusvärld där musik, vild fysik och komedi möts under ledning av lysande artister.</p><p>Njut av serveringen tillsammans med vänner, fundera över livet och upplev oanade möten i den dunkla barstämningen.</p><p>Cirkusartister:<br>Rauli Dahlberg<br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p>Musiker:<br>Jussi Liukkonen<br>Roope Mantere</p><p>Åldersgräns: K18 (servering i salen)</p>", "en": "<p>Welcome to Stoa for a weird and wonderful circus experience of the Christmas season!</p><p>Step into the circus world of the Theatre Hall, where music, wild physics and comedy collide under the direction of amazing performers.</p><p>Enjoy refreshments with friends, wonder about life and experience unique encounters in the dim atmosphere of the bar.</p><p>Circus performers:<br>Rauli Dahlberg<br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p>Musicians:<br>Jussi Liukkonen<br>Roope Mantere</p><p>Age limit: 18 (drink service in the hall)</p>" }, "name": { "fi": "The weird and wonderful circus cabaret with a twist (K18) – Race Horse & Big Wolf Companies presents", "sv": "The weird and wonderful circus cabaret with a twist (F18) – Race Horse & Big Wolf Companies presents", "en": "The weird and wonderful circus cabaret with a twist (18+) – Race Horse & Big Wolf Companies presents" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66788/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67103", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/", "sv": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/", "en": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/" }, "description": null, "price": { "fi": "24,50 € / 19 € / 15 €", "sv": "24,50 € / 19 € / 15 €", "en": "24,50 € / 19 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490989, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-02T09:13:33.334780Z", "last_modified_time": "2025-10-02T09:13:33.334794Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773995.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490989/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-02T09:13:33.100802Z", "last_modified_time": "2025-10-17T10:14:05.608536Z", "date_published": null, "start_time": "2025-12-13T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Stoaan pikkujoulukauden outoon ja ihanaan sirkuselämykseen!", "sv": "Välkommen till Stoa för en märklig och underbar cirkusupplevelse kring lillajul!", "en": "Welcome to Stoa for a weird and wonderful circus experience of the Christmas season!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C577C27A0871D760E858BB7F3D48D9D3/The_weird_and_wonderful_circus_cabaret_with_a_twist_K18_", "sv": "http://www.stoa.fi/sv/evenemang/event/C577C27A0871D760E858BB7F3D48D9D3/The_weird_and_wonderful_circus_cabaret_with_a_twist_F18_", "en": "http://www.stoa.fi/en/events/event/C577C27A0871D760E858BB7F3D48D9D3/The_weird_and_wonderful_circus_cabaret_with_a_twist_18_" }, "description": { "fi": "<p>Tervetuloa Stoaan pikkujoulukauden outoon ja ihanaan sirkuselämykseen!</p><p>Astu Teatterisalin sirkusmaailmaan missä musiikki, villi fysiikka ja komedia kohtaavat upeiden esiintyjien johdattamana.</p><p>Nauti virvokkeita ystävien seurassa, ihmettele elämää ja koe ennen näkemättömiä kohtaamisia baarin hämyisessä tunnelmassa.</p><p><b>Sirkusesiintyjät: </b><br>Rauli Dahlberg <br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p><b>Muusikot:</b><br>Jussi Liukkonen<br>Roope Mantere</p><p>Ikäraja: K18 (anniskelu salissa)</p>", "sv": "<p>Välkommen till Stoa för en märklig och underbar cirkusupplevelse kring lillajul!</p><p>Kliv in i Teatersalens cirkusvärld där musik, vild fysik och komedi möts under ledning av lysande artister.</p><p>Njut av serveringen tillsammans med vänner, fundera över livet och upplev oanade möten i den dunkla barstämningen.</p><p>Cirkusartister:<br>Rauli Dahlberg<br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p>Musiker:<br>Jussi Liukkonen<br>Roope Mantere</p><p>Åldersgräns: K18 (servering i salen)</p>", "en": "<p>Welcome to Stoa for a weird and wonderful circus experience of the Christmas season!</p><p>Step into the circus world of the Theatre Hall, where music, wild physics and comedy collide under the direction of amazing performers.</p><p>Enjoy refreshments with friends, wonder about life and experience unique encounters in the dim atmosphere of the bar.</p><p>Circus performers:<br>Rauli Dahlberg<br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p>Musicians:<br>Jussi Liukkonen<br>Roope Mantere</p><p>Age limit: 18 (drink service in the hall)</p>" }, "name": { "fi": "The weird and wonderful circus cabaret with a twist (K18) – Race Horse & Big Wolf Companies presents", "sv": "The weird and wonderful circus cabaret with a twist (F18) – Race Horse & Big Wolf Companies presents", "en": "The weird and wonderful circus cabaret with a twist (18+) – Race Horse & Big Wolf Companies presents" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67103/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67102", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/", "sv": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/", "en": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/" }, "description": null, "price": { "fi": "24,50 € / 19 € / 15 €", "sv": "24,50 € / 19 € / 15 €", "en": "24,50 € / 19 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490988, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-02T09:13:32.686708Z", "last_modified_time": "2025-10-02T09:13:32.686720Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773994.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490988/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-02T09:13:32.602129Z", "last_modified_time": "2025-10-17T10:14:05.254638Z", "date_published": null, "start_time": "2025-12-12T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Stoaan pikkujoulukauden outoon ja ihanaan sirkuselämykseen!", "sv": "Välkommen till Stoa för en märklig och underbar cirkusupplevelse kring lillajul!", "en": "Welcome to Stoa for a weird and wonderful circus experience of the Christmas season!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/380C4E6D9C7CB6DEBFB0979555ECA2D4/The_weird_and_wonderful_circus_cabaret_with_a_twist_K18_", "sv": "http://www.stoa.fi/sv/evenemang/event/380C4E6D9C7CB6DEBFB0979555ECA2D4/The_weird_and_wonderful_circus_cabaret_with_a_twist_F18_", "en": "http://www.stoa.fi/en/events/event/380C4E6D9C7CB6DEBFB0979555ECA2D4/The_weird_and_wonderful_circus_cabaret_with_a_twist_18_" }, "description": { "fi": "<p>Tervetuloa Stoaan pikkujoulukauden outoon ja ihanaan sirkuselämykseen!</p><p>Astu Teatterisalin sirkusmaailmaan missä musiikki, villi fysiikka ja komedia kohtaavat upeiden esiintyjien johdattamana.</p><p>Nauti virvokkeita ystävien seurassa, ihmettele elämää ja koe ennen näkemättömiä kohtaamisia baarin hämyisessä tunnelmassa.</p><p><b>Sirkusesiintyjät: </b><br>Rauli Dahlberg <br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p><b>Muusikot:</b><br>Jussi Liukkonen<br>Roope Mantere</p><p>Ikäraja: K18 (anniskelu salissa)</p>", "sv": "<p>Välkommen till Stoa för en märklig och underbar cirkusupplevelse kring lillajul!</p><p>Kliv in i Teatersalens cirkusvärld där musik, vild fysik och komedi möts under ledning av lysande artister.</p><p>Njut av serveringen tillsammans med vänner, fundera över livet och upplev oanade möten i den dunkla barstämningen.</p><p>Cirkusartister:<br>Rauli Dahlberg<br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p>Musiker:<br>Jussi Liukkonen<br>Roope Mantere</p><p>Åldersgräns: K18 (servering i salen)</p>", "en": "<p>Welcome to Stoa for a weird and wonderful circus experience of the Christmas season!</p><p>Step into the circus world of the Theatre Hall, where music, wild physics and comedy collide under the direction of amazing performers.</p><p>Enjoy refreshments with friends, wonder about life and experience unique encounters in the dim atmosphere of the bar.</p><p>Circus performers:<br>Rauli Dahlberg<br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p>Musicians:<br>Jussi Liukkonen<br>Roope Mantere</p><p>Age limit: 18 (drink service in the hall)</p>" }, "name": { "fi": "The weird and wonderful circus cabaret with a twist (K18) – Race Horse & Big Wolf Companies presents", "sv": "The weird and wonderful circus cabaret with a twist (F18) – Race Horse & Big Wolf Companies presents", "en": "The weird and wonderful circus cabaret with a twist (18+) – Race Horse & Big Wolf Companies presents" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67102/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67092", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/", "sv": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/", "en": "https://www.lippu.fi/artist/race-horse-company/race-horse-big-wolf-company-the-weird-and-wonderful-circus-cabaret-with-a-twist-k-18-3944089/" }, "description": null, "price": { "fi": "24,50 € / 19 € / 15 €", "sv": "24,50 € / 19 € / 15 €", "en": "24,50 € / 19 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490987, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-02T09:13:32.183445Z", "last_modified_time": "2025-10-02T09:13:32.183457Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773983.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490987/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-02T09:13:32.065111Z", "last_modified_time": "2025-10-17T10:14:04.922056Z", "date_published": null, "start_time": "2025-12-11T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Stoaan pikkujoulukauden outoon ja ihanaan sirkuselämykseen!", "sv": "Välkommen till Stoa för en märklig och underbar cirkusupplevelse kring lillajul!", "en": "Welcome to Stoa for a weird and wonderful circus experience of the Christmas season!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/089F34F86BEAE325684D2B3D43A68A2C/The_weird_and_wonderful_circus_cabaret_with_a_twist_K18_", "sv": "http://www.stoa.fi/sv/evenemang/event/089F34F86BEAE325684D2B3D43A68A2C/The_weird_and_wonderful_circus_cabaret_with_a_twist_F18_", "en": "http://www.stoa.fi/en/events/event/089F34F86BEAE325684D2B3D43A68A2C/The_weird_and_wonderful_circus_cabaret_with_a_twist_18_" }, "description": { "fi": "<p>Tervetuloa Stoaan pikkujoulukauden outoon ja ihanaan sirkuselämykseen!</p><p>Astu Teatterisalin sirkusmaailmaan missä musiikki, villi fysiikka ja komedia kohtaavat upeiden esiintyjien johdattamana.</p><p>Nauti virvokkeita ystävien seurassa, ihmettele elämää ja koe ennen näkemättömiä kohtaamisia baarin hämyisessä tunnelmassa.</p><p><b>Sirkusesiintyjät: </b><br>Rauli Dahlberg <br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p><b>Muusikot:</b><br>Jussi Liukkonen<br>Roope Mantere</p><p>Ikäraja: K18 (anniskelu salissa)</p>", "sv": "<p>Välkommen till Stoa för en märklig och underbar cirkusupplevelse kring lillajul!</p><p>Kliv in i Teatersalens cirkusvärld där musik, vild fysik och komedi möts under ledning av lysande artister.</p><p>Njut av serveringen tillsammans med vänner, fundera över livet och upplev oanade möten i den dunkla barstämningen.</p><p>Cirkusartister:<br>Rauli Dahlberg<br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p>Musiker:<br>Jussi Liukkonen<br>Roope Mantere</p><p>Åldersgräns: K18 (servering i salen)</p>", "en": "<p>Welcome to Stoa for a weird and wonderful circus experience of the Christmas season!</p><p>Step into the circus world of the Theatre Hall, where music, wild physics and comedy collide under the direction of amazing performers.</p><p>Enjoy refreshments with friends, wonder about life and experience unique encounters in the dim atmosphere of the bar.</p><p>Circus performers:<br>Rauli Dahlberg<br>Grete Gross<br>Kalle Lehto<br>Lizeth Wolk</p><p>Musicians:<br>Jussi Liukkonen<br>Roope Mantere</p><p>Age limit: 18 (drink service in the hall)</p>" }, "name": { "fi": "The weird and wonderful circus cabaret with a twist (K18) – Race Horse & Big Wolf Companies presents", "sv": "The weird and wonderful circus cabaret with a twist (F18) – Race Horse & Big Wolf Companies presents", "en": "The weird and wonderful circus cabaret with a twist (18+) – Race Horse & Big Wolf Companies presents" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67092/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67002", "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:646/?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/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490717, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T11:14:53.527700Z", "last_modified_time": "2025-09-10T11:14:53.527719Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777074.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T11:14:53.379562Z", "last_modified_time": "2025-10-17T10:14:01.733414Z", "date_published": null, "start_time": "2025-11-29T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa.", "sv": "När det är dags att släppa taget om ett älskat husdjur kan det vara en hjälp i sorgens stund att vårda minnena.", "en": "When it is time to let go of a beloved pet, cherishing fond memories can help deal with the grief." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe", "sv": "http://www.stoa.fi/sv/evenemang/event/9BA0CB8166065D1D280F65B7679EE77C/Verkstad_kring_kompisdjur_Death_Cafe", "en": "http://www.stoa.fi/en/events/event/9BA0CB8166065D1D280F65B7679EE77C/Companion_animal_workshop_Death_Caf_" }, "description": { "fi": "<p>Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa.</p><p>Tervetuloa työpajaan, jossa voit jakaa ajatuksia ja tunteita muiden samassa tilanteessa olevien kanssa ja luoda samalla kauniin, käsintehdyn muistoesineen sydänystävällesi - pussin, rasian tai pesän.</p><p><b>Mitä työpajassa tapahtuu?</b></p><p>Tapahtuma alkaa keskustelulla, jossa jaetaan kokemuksia ja ideoita. Näiden ideoiden pohjalta pääset suunnittelemaan ja valmistamaan pussin, rasian tai pesän, joka on tarkoitettu lemmikin tuhkan säilyttämiseen tai maahan hautaamiseen. Tässä työpajassa emme tavoittele teknisesti vaativia ratkaisuja, vaan luovuutta ja yhteisöllisyyttä.<br> <br>Työpajaa ohjaavat kokeneet muotoilun, taiteen ja käsityön ammattilaiset: keramiikkataiteilija Leena Mäki-Patola, tekstiilitaiteilija Mervi Vuolas ja muotoilija Hanna van Ingen. He kaikki ovat mukana myös KUN AIKA ON -näyttelyssä, joten tämä on ainutlaatuinen tilaisuus tavata heidät ja kuulla heidän ajatuksiaan.</p><p><b> Aikataulut</b></p><p>klo 11–12 Death Café - Kuolemankahvila<br>klo 12–15 Kumppanieläin-työpaja</p><p><b>Osallistuminen ja materiaalit</b></p><p>Työpaja on maksuton ja toimii nyyttikesti-periaatteella. Materiaaleja on käytössä rajoitetusti, joten tuo mukanasi maatuvia materiaaleja esim. kangasta, narua, puunpalasia, pahvisia rasioita sekä pieniä työvälineitä kuten sakset, neula, viivoitin, liima, jaettavaksi muiden osallistujien kanssa. <br> <br>Paikkoja on rajoitetusti, joten ilmoittaudu nopeasti! Mukaan mahtuu 10 henkilöä ilmoittautumisjärjestyksessä.<br> <br><b>Death Café - Kuolemankahvila ennen työpajaa</b><br>Ennen työpajaa on mahdollista osallistua Death Caféen, jota uskontotieteilijä Pauli Jyrkinewsky isännöi. Kuolemankahvila on avoin keskustelutilaisuus, jossa ihmiset kokoontuvat keskustelemaan kumppanieläinten menettämisestä ja surun käsittelystä. Tavoitteena on lisätä kuoleman kohtaamisen luonnollisuutta.<br> <br>Voit osallistua kumppanieläin-työpajaan ilman kahvilaa tai tulla vain kahvilaan ilman työpajaa. Valitse itsellesi sopivin vaihtoehto ja saavu paikalle kokemaan ja keskustelemaan.<br> <br><b>Ilmoittautumiset työpajaan:</b></p><p>23.11.2025 mennessä osoitteeseen nayttelyt@taiteilijato.fi</p><p>Tapahtuman tuottaa <br>Taiteilijat O ry https://taiteilijato.fi/<br> <br>Yhteistyössä <br>Kulttuurikeskus Stoa https://www.stoa.fi/ <br>Death Café https://deathcafe.com/what/</p>", "sv": "<p>När det är dags att släppa taget om ett älskat husdjur kan det vara en hjälp i sorgens stund att vårda minnena.</p><p>Välkommen till en verkstad där du kan dela dina tankar och känslor med andra i samma situation och skapa en vacker, handgjord minnessak för din älskling – en påse, ask eller ett bo.</p><p>Vad händer i verkstaden?</p><p>Evenemanget inleds med en debatt där vi utbyter erfarenheter och idéer. Dessa idéer hjälper dig att designa och tillverka en påse, låda eller ett bo för förvaring av askan efter dit husdjur eller för att begrava det.I den här verkstaden är vi inte ute efter tekniskt krävande lösningar, utan efter kreativitet och gemenskap.</p><p>Verkstaden leds av de erfarna design-, konst- och hantverksproffsen Leena Mäki-Patola, keramiker, Mervi Vuolas, textilkonstnär och Hanna van Ingen, formgivare. De deltar även alla i NÄR TIDEN ÄR KoMMEN-utställningen, så det här är ett unikt tillfälle att träffa dem och höra deras tankar.</p><p>Tidtabeller</p><p>11–12 Death Café - Dödskaféet<br>12–15 Verkstad för sällskapsdjur</p><p>Deltagande och material</p><p>Verkstaden är avgiftsfri och fungerar enligt knytkalasprincipen. Materialen är begränsade, så ta med nedbrytbart material som tyg, snöre, träbitar, kartonger och små verktyg som sax, nål, linjal, lim för att dela med dig av till andra deltagare.</p><p>Antalet platser är begränsat, så anmäl dig snabbt! 10 personer ryms med i anmälningsordning.</p><p>Death Café – Ett dödskafé före verkstaden<br>Före verkstaden kommer det att finnas möjlighet att delta i Death Café, som leds av religionsvetaren Pauli Jyrkinewsky. Death Café är ett öppet diskussionsforum där människor träffas för att diskutera förlusten av ett sällskapsdjur och hur man hanterar sorgen. Syftet är att göra det mer naturligt att möta döden.</p><p>Du kan delta i verkstaden om sällskapsdjur utan att delta i kaféet eller bara komma till kaféet utan verkstaden. Välj det alternativ som passar dig bäst och kom med för att uppleva och diskutera.</p><p>Anmälan till verkstaden:</p><p>Senast den 25 november 2025 till nayttelyt@taiteilijato.fi</p><p>Evenemanget produceras av<br>Taiteilijat O ry https://taiteilijato.fi/</p><p>I samarbete med<br>Kulturcentrum Stoa https://www.stoa.fi/<br>Death Café https://deathcafe.com/what/</p>", "en": "<p>When it is time to let go of a beloved pet, cherishing fond memories can help deal with the grief.</p><p>In this workshop, you can share your thoughts and feelings with others in the same situation and create a beautiful, handmade memento for your dearly departed friend – a bag, box or nest.</p><p>What happens in the workshop?</p><p>The event will start with a discussion aimed at sharing experiences and ideas. These ideas will help you to design and make a bag, box or nest for storing your pet's ashes or burying them in the ground. In this workshop, we are not looking for technically demanding solutions, but for creativity and a sense of community.</p><p>The workshop is hosted by experienced design, art and craft professionals: ceramic artist Leena Mäki-Patola, textile artist Mervi Vuolas and designer Hanna van Ingen. All three of them are also featured in the Kun aika on (When it’s time) exhibition, so this is a unique opportunity to meet the artists and hear their thoughts.</p><p>Timetables</p><p>11.00–12.00 Death Café<br>12.00–15.00 Companion animal workshop</p><p>Participation and materials</p><p>The workshop is free of charge and works on a ‘bring your own materials’ principle. Materials are limited, so please bring along decomposable materials, such as fabric, string, pieces of wood, cardboard boxes, and small tools, such as scissors, a needle, a ruler and glue, to share with other participants.</p><p>Places are limited, so sign up soon! The event has a capacity of 10 people on a first-come, first-served basis.</p><p>Death Café before the workshop<br>Before the workshop, you can participate in the Death Café hosted by religious scholar Pauli Jyrkinewsky. A Death Café is an open discussion event where people come together to discuss the loss of a companion animal and how to deal with grief. The aim is to make facing death more natural.</p><p>You can participate in the companion animal workshop without participating in the café or come to the café without participating in the workshop. Choose the option that suits you best and come on by to share experiences and engage in discuss.</p><p>Registration for the workshop:</p><p>Register your participation by 23 November 2025 by sending a message to nayttelyt@taiteilijato.fi</p><p>The event is produced by<br>Taiteilijat O ry https://taiteilijato.fi/</p><p>In cooperation with<br>Cultural Centre Stoa https://www.stoa.fi/<br>Death Café https://deathcafe.com/what/</p>" }, "name": { "fi": "Kumppanieläin-työpaja & Death Cafe – Kun aika on -näyttelyn oheisohjelmaa", "sv": "Verkstad kring kompisdjur & Death Cafe – Kompletterande program till utställningen När tiden är kommen", "en": "Companion animal workshop & Death Café – Kun aika on (When it’s time) exhibition side programme" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Taiteilijat O ry https://taiteilijato.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm5yqe5ru", "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/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5yqfanm/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T07:45:06.398951Z", "last_modified_time": "2025-10-08T07:45:06.398966Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5447785-399b-4a30-8c8f-49c0a38675a6.png", "name": "Kirjastokaveri.", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Viisi erilaista piirrettyä ihmishahmoa. Eri-ikäisiä, eri kulttuuritaustoista.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-13T06:01:51.537600Z", "last_modified_time": "2025-10-17T10:01:37.898924Z", "date_published": null, "start_time": "2025-11-27T15:00:00Z", "end_time": "2025-11-27T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p><p>BENGALIN-, HINDIN-, NEPALIN- JA PUNJABINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:</p><p><br></p><p><strong>Joka torstai klo 17–19:</strong></p><ul><li>torstaisin 23.10 - 18.12.2025.</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language.</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p>MEET A BENGALI, HINDI, NEPALI AND PUNJABI SPEAKING LIBRARY BUDDY:</p><p><br></p><p><strong>Every Thursday at 17-19:</strong></p><ul><li>Thursdays 23.10. - 18.12.2025</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": " PERUTTU! Kirjastokaveri: BENGALI, HINDI, NEPALI, PUNJABI", "en": "CANCELLED! Library buddy: BENGALI, HINDI, NEPALI, PUNJABI" }, "provider_contact_info": null, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5yqe5ru/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm62m6irm", "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:agggfz67dq/?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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-16T12:37:32.068022Z", "last_modified_time": "2025-10-17T09:53:52.463149Z", "date_published": null, "start_time": "2025-11-03T14:00:00Z", "end_time": "2025-11-03T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Peliviikon biljarditurnaus Ison Omenan kirjastossa alle 12-vuotiaille.", "sv": "Spelveckans biljardturnering på Iso Omena bibliotek för barn under 12 år.", "en": "Game Week billiards tournament at Iso Omena Library for children under 12." }, "info_url": null, "description": { "fi": "<p>Biljarditurnaus alle 12-vuotiaille kirjaston Vox-tilassa. Ilmoittautuminen turnaukseen paikan päällä.</p>", "sv": "<p>Biljardturnering för under 12-åringar i bibliotekets Vox-utrymme. Anmälan till turneringen sker på plats.</p>", "en": "<p>Billiards tournament for children under 12 in the library’s Vox space. Registration for the tournament takes place on site.</p>" }, "name": { "fi": "Peliviikko: Biljarditurnaus alle 12-vuotiaille", "sv": "Spelvecka: Biljardturnering för barn under 12 år", "en": "Game Week: Billiards Tournament for Children Under 12" }, "provider_contact_info": null, "location_extra_info": { "fi": "Vox", "sv": "Vox", "en": "Vox" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm62m6irm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7dnigvq", "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:agggfz67dq/?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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-17T09:29:15.778138Z", "last_modified_time": "2025-10-17T09:53:19.892395Z", "date_published": null, "start_time": "2025-11-05T14:00:00Z", "end_time": "2025-11-05T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Peliviikon biljarditurnaus Ison Omenan kirjastossa 12-17 -vuotiaille nuorille.", "sv": "Spelveckans biljardturnering i biblioteket Iso Omena för ungdomar i åldern 12–17 år.", "en": "Game Week billiards tournament at the Iso Omena Library for youth aged 12–17." }, "info_url": null, "description": { "fi": "<p>Biljarditurnaus 12-17 -vuotiaille nuorille kirjaston Vox-tilassa. Kaksi parasta pääsevät kirjastojen välisten biljarditurnauksen finaalipeleihin, jotka pelataan Lippulaivan kirjastossa lauantaina 8.11 klo 12-14.</p><p>Ilmoittautumine turnaukseen paikan päällä.</p>", "sv": "<p>Biljardturnering för ungdomar i åldern 12–17 år i bibliotekets Vox-utrymme. De två bästa går vidare till finalspelen i bibliotekens gemensamma biljardturnering, som spelas i biblioteket Lippulaiva lördagen den 8.11 kl. 12–14.</p><p>Anmälan till turneringen sker på plats.</p>", "en": "<p>Billiards tournament for youth aged 12–17 in the library’s Vox space. The two best players will advance to the finals of the inter-library billiards tournament, which will take place at the Lippulaiva Library on Saturday, November 8, from 12:00 to 14:00.</p><p>Registration for the tournament takes place on-site.</p>" }, "name": { "fi": "Peliviikko: Biljarditurnaus 12-17 -vuotiaille", "sv": "Spelveckan: Biljardturnering för ungdomar i åldern 12–17 år.", "en": "Game Week: Billiards Tournament for Youth Aged 12–17." }, "provider_contact_info": null, "location_extra_info": { "fi": "Vox", "sv": "Vox", "en": "Vox" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7dnigvq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7dnihoq", "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:agggfz67dq/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-17T09:51:40.669923Z", "last_modified_time": "2025-10-17T09:51:40.669941Z", "date_published": null, "start_time": "2025-11-03T12:30:00Z", "end_time": "2025-11-09T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Peliviikon Seal Splash -hyljepeliturnaus Ison Omenan kirjastossa. ", "sv": "Spelveckans Seal Splash – sälspelturnering i biblioteket Iso Omena.", "en": "Game Week's Seal Splash – Seal Game Tournament at the Iso Omena Library." }, "info_url": { "fi": "https://www.peliviikko.fi/", "sv": "https://www.peliviikko.fi/", "en": "https://www.peliviikko.fi/" }, "description": { "fi": "<p>Osallistu peliviikon huikeaan Seal Splash -hyljepeliturnaukseen kirjaston Vox tilassa. Peliä pelataan tietokoneella selaimessa. Parhaan pelaajan yhteystiedot ilmoitetaan luvalla Kansalliselle audiovisuaaliselle instituutille. Suomen kolmelle parhaalle pelaajalle on luvassa huikeita pelipalkintoja!</p><p><br></p>", "sv": "<p>Delta i Spelveckans fantastiska Seal Splash – sälspelturnering i bibliotekets Vox-utrymme. Spelet spelas på datorn i webbläsaren. Kontaktuppgifterna för den bästa spelaren kommer att delas med Finlands nationella audiovisuella institut med tillstånd. De tre bästa spelarna i Finland får fantastiska spelpriser!</p>", "en": "<p>Join the amazing Seal Splash – Seal Game Tournament during Game Week in the library’s Vox space. The game is played on a computer in a web browser. The contact details of the top player will be shared with the National Audiovisual Institute with permission. The top three players in Finland will receive amazing gaming prizes!</p>" }, "name": { "fi": "Peliviikko: Seal Splash -hyljepeliturnaus", "sv": "Spelveckan: Seal Splash – sälspelturnering", "en": "Game Week: Seal Splash – Seal Game Tournament" }, "provider_contact_info": null, "location_extra_info": { "fi": "Vox", "sv": "Vox", "en": "Vox" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7dnihoq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7dnih3a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-17T09:22:08.802093Z", "last_modified_time": "2025-10-17T09:22:08.802111Z", "date_published": null, "start_time": "2025-10-27T16:00:00Z", "end_time": "2025-10-27T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tapaamisessa keskustellaan Salla Vuorikosken tietokirjallisuuden Finlandia-palkintoehdokas 2024-kirjasta \"Sanna Marin. Poikkeuksellinen pääministeri\". ", "sv": "Mötet kommer att diskutera Salla Vuorikoskis fackbok ”Sanna Marin. En exceptionell statsminister”. Evenemanget inleds med en paneldiskussion.", "en": "The meeting will discuss Salla Vuorikoski's non-fiction book \"Sanna Marin. An Exceptional Prime Minister\". The event will begin with a panel discussion." }, "info_url": null, "description": { "fi": "<p>Kaikille avoin lukupiiri kokoontuu maanantaina 27.10 klo 18 Sellon kirjaston aulan lavalla. Tapaamisessa keskustellaan Salla Vuorikosken tietokirjallisuuden Finlandia-palkintoehdokas 2024-kirjasta \"Sanna Marin. Poikkeuksellinen pääministeri\". Tilaisuutta alustetaan paneelikeskustelulla, jonka aiheena on “Naispoliitikot Suomessa - millaista on olla nuori nainen politiikassa”. Panelisteina muun muassa kaupungin- ja hyvinvointialueen valtuutettu (SD) Ella Immonen, puolustustoimiala-asiantuntija (SD) Ida-Susanna Pöllänen ja kaupunginvaltuutettu (SD) Hilkka Ahde. Tilaisuuden juontaa toimittaja Pirjo Hilakari.</p>", "sv": "<p>Mötet kommer att diskutera Salla Vuorikoskis fackbok ”Sanna Marin. En exceptionell statsminister”, som har nominerats till Finlandiapriset 2024. Evenemanget inleds med en paneldiskussion på temat ”Kvinnliga politiker i Finland – hur är det att vara en ung kvinna i politiken?” </p>", "en": "<p>The meeting will discuss Salla Vuorikoski's non-fiction book \"Sanna Marin. An Exceptional Prime Minister,\" which has been nominated for the 2024 Finlandia Prize. The event will begin with a panel discussion on the topic \"Female politicians in Finland – what is it like to be a young woman in politics?\" </p>" }, "name": { "fi": "Naispoliitikot Suomessa - millaista on olla nuori nainen politiikassa", "sv": "Kvinnliga politiker i Finland – hur är det att vara en ung kvinna i politiken? Evengeman är på finka.", "en": "Female politicians in Finland – what is it like to be a young woman in politics? Event is in Finnish." }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7dnih3a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67062", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490896, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-24T13:13:45.542300Z", "last_modified_time": "2025-09-24T13:13:45.542315Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777732.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-24T13:13:45.388230Z", "last_modified_time": "2025-10-17T09:13:42.742129Z", "date_published": null, "start_time": "2025-11-23T11:00:00Z", "end_time": "2025-11-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kun aika on -minifestivaali avaa uusia näkökulmia kuolemaan ja sen merkityksiin taiteen ja tieteen kautta.", "sv": "Minifestivalen När tiden är kommen öppnar nya perspektiv på döden och dess innebörd genom konst och vetenskap.", "en": "The Kun aika on (When it’s time) mini-festival offers new perspectives on death and its meanings through art and science." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B41577DA7F4BCA52C3B6C03473997FC0/Kun_aika_on_-minifestivaali", "sv": "http://www.stoa.fi/sv/evenemang/event/B41577DA7F4BCA52C3B6C03473997FC0/Kun_aika_on_Nar_tiden_ar_kommen_-minifestival", "en": "http://www.stoa.fi/en/events/event/B41577DA7F4BCA52C3B6C03473997FC0/Kun_aika_on_When_it_s_time_mini-festival_" }, "description": { "fi": "<p>Kun aika on -minifestivaali avaa uusia näkökulmia kuolemaan ja sen merkityksiin taiteen ja tieteen kautta.</p><p>Festivaaliohjelma kutsuu pohtimaan kuolemaa, kuolemanjälkeisyyttä ja elämän jatkumoa niin asiantuntijoiden puheenvuoroissa kuin taiteen keinoin. Teemoja lähestytään muun muassa vainajan tuhkaan liittyvän symboliikan ja juridisen aseman, populaarikulttuurin tarjoamien myötätuntoisten kohtaamismallien, sekä shamanismin kautta. Festivaalilla koetaan Harri Piispasen vaikuttava It’s a job -performanssi sekä syvennytään Kun aika on -näyttelyn taiteilijoiden teoksiin ja ajatuksiin. Tapahtuma on osa Kun aika on -näyttelyn oheisohjelmaa. Osallistuminen ei edellytä rekisteröintiä eikä ilmoittautumista ennakkoon. Vapaa pääsy!<br> <br><b> Ohjelma</b></p><p><b>13.00 Musiikkisali</b><br>Tervetuloa, festivaaliohjelman esittely<br>Taiteilija Piia Rossi, Taiteilijat O ry</p><p><b>13.15 Musiikkisali </b> <br>Kuolema loppuna vai muutoksena? Uskonnottomien käsitykset kuolemasta ja kuolemanjälkeisyydestä<br>Roosa Haimila, FT, uskontotieteen tutkijatohtori, Helsingin yliopisto<br>Uskonnottomuus ei välttämättä tarkoita kuolemanpelkoa, eikä kuolemaa usein nähdä yksiselitteisesti vain loppuna. Haimila esittelee uusinta tutkimusta siitä, millaisia moninaisia merkityksiä uskonnottomat liittävät kuolemaan ja sen jälkeisyyteen.</p><p><b>13.45 Musiikkisali </b> <br>Mitä meistä jää? Oikeudellinen katsaus vainajan tuhkaan<br>Matias A. Stubbe, OTM<br>Esitelmä avaa tuhkan symboliikkaa ja asemaa länsimaisessa oikeusperinteessä sekä suomalaisessa lainsäädännössä. Miksi tuhkaa ei saa säilyttää kotona ja millaisia haasteita hautauskulttuurin monipuolistuminen tuo tulevaisuudessa?</p><p><b>14.15 tauko </b></p><p><b>14.30-16.30 Galleria </b> <br>It´s a Job -performanssi<br>Taiteilija Harri Piispanen<br>Esitys käsittelee suhdettamme kuolevaisuuteen. Teoksen lähtökohtana on Ars Moriendi – taito muistaa oma kuolevaisuus ja harjoittaa siihen liittyvää taitoa. Osana prosessia taiteilija on rakentanut itselleen arkun, esineen viimeiselle matkalle. Samalla hän tutkii tätä ruumiille tarkoitettua viimeistä ja äärimmäisen henkilökohtaista tilaa.</p><p><b>14.45 Galleria </b> <br>Kun aika on -näyttelyyn tutustuminen<br>Taiteilijat kertovat näyttelyn teoksista ja niiden taustoista</p><p><b>15.15 Musiikkisali </b> <br>Kuoleman myötätuntoinen kohtaaminen mediassa<br>Enni Salo, FM, väitöskirjatutkija, Turun yliopisto<br>Miten fiktiiviset kuolemankuvaukset mediassa voivat auttaa katsojaa käsittelemään elämän loppua? Salo tarkastelee muun muassa Disneyn animaatioita ja televisioviihdettä, joissa kuolemaa käsitellään myötätuntoisesti ja samalla luodaan valmiuksia terveempään suhtautumiseen kuolemaan.</p><p><b>15.45 Musiikkisali </b> <br>Tuonilmaisista – ajatuksia elämän–kuoleman rajoilta<br>Jaana Kouri, FT, kirjailija, shamanismin tutkija ja harjoittaja <br>Esityksessä kerrotaan shamaanin syntymiseen ja kuolemaan liittyvistä tehtävistä ja käsityksistä. Shamaanius on animistinen elämänpolku, jonka kulkijan yhtenä tehtävänä on saattaa sieluja niin maanpäälliseen elämään kuin sieltä eteenpäinkin.</p><p><b>16.15-17.00 Musiikkisali ja galleria </b> <br>Keskustelua, Kun aika on -näyttelyyn tutustuminen jatkuu<br>Taiteilija Piia Rossi, Taiteilijat O ry</p>", "sv": "<p>Minifestivalen När tiden är kommen öppnar nya perspektiv på döden och dess innebörd genom konst och vetenskap.</p><p>Festivalprogrammet bjuder in dig att reflektera över döden, livet efter döden och livets kontinuitet, både genom expertföreläsningar och genom konst. Temana behandlas genom symboliken och den juridiska statusen för askan efter den avlidne samt modeller för medmänskliga möten som erbjuds av populärkulturen och shamanismen. Festivalen visar Harri Piispanens imponerande performans It's a job och fördjupar sig i konstnärernas verk och idéer i utställningen När tiden är kommen. Evenemanget är en del av det kompletterande programmet till utställningen När tiden är kommen. Deltagandet kräver ingen registrering eller förhandsbokning. Fritt inträde!</p><p>Program</p><p>13.00 Musiksalen<br>Välkommen, presentation av festivalprogrammet<br>Konstnär Piia Rossi, Taiteilijat O ry</p><p>13.15 Musiksalen<br>Döden som ett slut eller som en förändring? Icke-religiösa föreställningar om döden och livet efter detta<br>Roosa Haimila, FD, postdoktoral forskare i religionsvetenskap, Helsingfors universitet<br>Att vara icke-religiös behöver inte betyda att man är rädd för döden, och döden ses ofta inte enbart som ett slut. Haimila kommer att presentera den senaste forskningen om de många betydelser som icke-religiösa människor fäster vid döden och dess efterverkningar.</p><p>13.45 Musiksalen<br>Vad blir kvar av oss? En rättslig insikt av askan efter den avlidne<br>Matias A. Stubbe, JM<br>I presentationen redogörs för askans symbolik och ställning i den västerländska rättstraditionen och i den finländska lagstiftningen. Varför ska vi inte förvara askan hemma och vilka utmaningar kommer diversifieringen av begravningskulturen att medföra i framtiden?</p><p>14.15 paus</p><p>14.30–16.30 Galleriet<br>It´s a Job-performansen<br>Konstnär Harri Piispanen<br>Föreställningen handlar om vår relation till dödligheten. Utgångspunkten för verket är Ars Moriendi – konsten att komma ihåg sin egen dödlighet och att öva upp de färdigheter som är förknippade med den. Som en del av processen har konstnären byggt en kista åt sig själv, ett föremål för sin sista resa. Samtidigt utforskar han denna sista och ytterst personliga boning för kroppen.</p><p>14.45 Galleriet<br>Lär känna utställningen När tiden är kommen<br>Konstnärer berättar om sina verk och sin bakgrund</p><p>15.15 Musiksalen<br>Att möta döden med medkänsla i media<br>Enni Salo, M.Sc., FD Forskare, Åbo universitet<br>Hur kan fiktiva skildringar om döden i medier hjälpa tittarna att hantera livets slutskede? Salo tittar bland annat på Disney-animationer och tv-underhållning, som behandlar döden med medkänsla , samtidigt som de skapar en sundare inställning till döden.</p><p>15.45 Musiksalen<br>Från underjorden - tankar från gränsen mellan liv och död<br>Jaana Kouri, FD, författare, shamanismforskare och utövare<br>Presentationen kommer att förklara de uppgifter och övertygelser som är relaterade till en shamans födelse och död. Shamanism är en animistisk livsväg, där en av resenärens uppgifter är att föra själar både till och från livet på jorden.</p><p>16.15–17.00 Musiksal och galleri<br>Diskussion, bekantskapen med utställningen \"När tiden är kommen\" fortsätter<br>Konstnär Piia Rossi, Taiteilijat O ry</p>", "en": "<p>The Kun aika on (When it’s time) mini-festival offers new perspectives on death and its meanings through art and science.</p><p>The festival programme invites you to reflect on death, the afterlife and the continuum of life, through both expert talks and art. The themes are explored through e.g. the symbolism and legal status of the ashes of the deceased, compassionate approaches to facing death offered by popular culture and shamanism. The festival features Harri Piispanen's impressive performance It's a Job and delves into the works and ideas of the artists featured in the Kun aika on (When it’s time) exhibition. The event is part of the side programme of the Kun aika on (When it’s time) exhibition. Participation does not require registration or pre-booking. Free entry!</p><p>Programme</p><p>13.00 Music hall<br>Opening speech, presentation of the festival programme<br>Artist Piia Rossi, Taiteilijat O ry</p><p>13.15 Music hall<br>Death as an end or as a change? Non-religious beliefs about death and the afterlife<br>Roosa Haimila, PhD, postdoctoral researcher in religious studies, University of Helsinki<br>Being non-religious does not necessarily mean that you fear death, and death is often not explicitly seen as an end. Haimila will present the latest research on the multiple meanings that non-religious people attach to death and its aftermath.</p><p>13.45 Music hall<br>What do we leave behind? A legal review of the ashes of the deceased<br>Matias A. Stubbe, Master of Laws<br>This presentation explores the symbolism and status of ashes in the Western legal tradition and in Finnish legislation. Why are you not allowed to keep ashes at home and what challenges will the diversification of burial culture bring in the future?</p><p>14.15 break</p><p>14.30–16.30 Gallery<br>It’s a Job performance<br>Artist Harri Piispanen<br>This performance explores our relationship with mortality. It is based on the Ars moriendi – the art of remembering one's own mortality and practising the skill associated with it. As part of the process, the artist has built himself a coffin, an object for his final journey. At the same time, he explores this final and extremely personal space for the body.</p><p>14.45 Gallery<br>Introduction to the Kun aika on (When it’s time) exhibition<br>The artists talk about their featured works and their backgrounds</p><p>15.15 Music hall<br>Facing death with compassion in the media<br>Enni Salo, MA, doctoral researcher, University of Turku<br>How can fictional depictions of death in the media help viewers to deal with the end of life? Salo examines Disney animation and television entertainment, among other things, which deal with death in a compassionate way, creating a basis for a healthier attitude towards death.</p><p>15.45 Music hall<br>From the underworld – thoughts from the borders of life and death<br>Jaana Kouri, PhD, author, researcher and practitioner of shamanism<br>This presentation explores a shaman’s tasks and beliefs related to birth and death. Shamanism is an animistic path of life, and one of the tasks of a shaman is to bring souls to this life and take them beyond it.</p><p>16.15–17.00 Music hall and gallery<br>Discussion, introduction to the Kun aika on (When it’s time) exhibition continues<br>Artist Piia Rossi, Taiteilijat O ry</p>" }, "name": { "fi": "Kun aika on -minifestivaali", "sv": "Kun aika on (När tiden är kommen)-minifestival", "en": "Kun aika on (When it’s time) mini-festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67062/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "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": [], "info_url": null, "description": 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", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778067.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "name": { "fi": "Valtuutetut – musiikkia yli vuosikymmenten", "sv": "Valtuutetut – musiikkia yli vuosikymmenten", "en": "Valtuutetut – musiikkia yli vuosikymmenten" }, "provider_contact_info": null, "location_extra_info": null, "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": [], "info_url": null, "description": 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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777861.jpg", "name": "", "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, "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." }, "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_" }, "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>" }, "name": { "fi": "Myllyteatterin sarjakuvatyöpaja", "sv": "Myllyteatteris serieverkstad", "en": "Comic Art Workshop" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67108/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66404", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:p2625/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/lastenteatteriloihu/", "sv": "https://www.lippu.fi/artist/lastenteatteriloihu/", "en": "https://www.lippu.fi/artist/lastenteatteriloihu/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490998, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-03T10:13:19.894255Z", "last_modified_time": "2025-10-03T10:13:19.894268Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774080.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490998/?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-10-03T10:13:19.769728Z", "last_modified_time": "2025-10-17T08:13:45.731487Z", "date_published": null, "start_time": "2025-10-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, "short_description": { "fi": "Lastenteatteri Loihun seikkailunäytelmässä ratkaistaan arvoitusta ullakolla.", "sv": "Barnteatern Loihus äventyrsspel löser ett mysterium på vinden.", "en": "Lastenteatteri Loihu's adventure play about solving a mystery in the attic." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C0BD4CF077B13448271AF24B7CF960D9/Lastenteatteri_Loihu_Kyldemar-sedan_kirje_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C0BD4CF077B13448271AF24B7CF960D9/Lastenteatteri_Loihu_Kyldemar-sedan_kirje_", "en": "http://www.malmitalo.fi/en/events/event/C0BD4CF077B13448271AF24B7CF960D9/Lastenteatteri_Loihu_Kyldemar-sedan_kirje_" }, "description": { "fi": "<p>Lastenteatteri Loihun seikkailunäytelmässä ratkaistaan arvoitusta ullakolla.</p><p>Kytysen sisarukset ovat löytäneet talonsa ullakolta Kyldemar-sedän ikivanhan seikkailunhalua herättävän kirjeen. Repaleinen kirje on vuosikymmenten aikana selvästi kokenut kovia, mutta erotettavissa ovat vielä kirjeen viimeiset arvoitukselliset sanat: ”… ja niin löysin aarteen kirjastosta. Rakauvella Kyltemaar”.</p><p>Kyldemar-sedän kirjeen sisältö alkaa kaikua sisarusten harmaissa aivosoluissa ja yhdessä he päättävät löytää suuren aarteen.</p><p>Kesto: n. 40 min</p>", "sv": "<p>Barnteatern Loihus äventyrsspel löser ett mysterium på vinden.</p><p>Syskonen Kytynen har hittat ett gammalt brev från sin farbror Kyldemar på vinden i sitt hus, ett brev som väcker äventyrslusten. Det slitna brevet har uppenbarligen gått igenom en tuff period under årtiondena, men de sista gåtfulla orden i brevet går fortfarande att urskilja: \"... och så hittade jag en skatt i biblioteket. Kära hälsningar Kyltemaar\".</p><p>Innehållet i farbror Kyldemars brev börjar eka i syskonens grå hjärnceller och tillsammans bestämmer de sig för att hitta den stora skatten.</p><p>Längd: ca 40 minuter</p>", "en": "<p>Lastenteatteri Loihu's adventure play about solving a mystery in the attic.</p><p>The Kytynen siblings have found an ancient letter from their Uncle Kyldemar in the attic of their house, a letter that sparks the spirit of adventure. The tattered letter has clearly been through a lot over the decades, but the last enigmatic words of the letter are still discernible: \"... and so I found a treasure in the library. With love, Kyltemaar\".</p><p>The content of Uncle Kyldemar's letter begins to resonate in the siblings' grey brain cells, and, together, they decide to find the great treasure.</p><p>Duration: approx. 40 min</p>" }, "name": { "fi": "Lastenteatteri Loihu: Kyldemar-sedän kirje", "sv": "Lastenteatteri Loihu: Kyldemar-sedän kirje", "en": "Lastenteatteri Loihu: Kyldemar-sedän kirje" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66404/?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": [], "info_url": null, "description": 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", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778073.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67107", "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:33/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/baltic-circle/", "sv": "https://www.lippu.fi/artist/baltic-circle/", "en": "https://www.lippu.fi/artist/baltic-circle/" }, "description": null, "price": { "fi": "17 €", "sv": "17 €", "en": "17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490997, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-02T15:13:24.513175Z", "last_modified_time": "2025-10-02T15:13:24.513188Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778042.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490997/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-02T15:13:24.375337Z", "last_modified_time": "2025-10-17T07:13:55.208931Z", "date_published": null, "start_time": "2025-11-26T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Flis Hollandin ja Joy Mariama Smithin yhteisessä iltamassa esitetään kaksi uutta teosta, jotka venyttävät viestinnän, saavutettavuuden ja aistimisen rajoja.", "sv": "Flis Holland och Joy Mariama Smith presenterar två nya verk som tänjer på gränserna för kommunikation, tillgänglighet och upplevelser.", "en": "An evening of two new performative works by artists Flis Holland and Joy Mariama Smith that stretch the limits of communication, access, and perception." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3D8A7F4362E32428561BA562840C7A77/Everyday_Priorities_Flis_Holland_Joy_Mariama_Smith", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3D8A7F4362E32428561BA562840C7A77/Everyday_Priorities_Flis_Holland_Joy_Mariama_Smith", "en": "http://www.kanneltalo.fi/en/events/event/3D8A7F4362E32428561BA562840C7A77/Everyday_Priorities_Flis_Holland_Joy_Mariama_Smith" }, "description": { "fi": "<p>Flis Hollandin ja Joy Mariama Smithin yhteisessä iltamassa esitetään kaksi uutta teosta, jotka venyttävät viestinnän, saavutettavuuden ja aistimisen rajoja.</p><p>Taiteilijat kysyvät, mitä yhteys, kollektiivisuus ja vapautuminen voivat merkitä, olipa kyseessä tähdistöjen väliset signaalit tai aistihierarkioiden kyseenalaistaminen. Teokset tuotetaan osana “Everyday Priorities – Art, Technology and Accommodations” -ohjelmaa.</p><p>Teokset tuotetaan osana Everyday Priorities – Art, Technology and Accommodations -ohjelmaa, jonka toteuttavat M-Cult (Helsinki) ja Metro54 (Amsterdam) yhteistyössä Suomen Benelux-instituutin kanssa. Baltic Circlessä nähtävät ensi-illat ovat M-Cultin ja Baltic Circlen yhteistyön tulosta.</p><p>Everyday Priorities – Art, Technology and Accommodations on sarja yhteisöllisiä kokoontumisia ja uusia taiteellisia tuotantoja. Sen puitteissa tutkitaan, kokeillaan ja valjastetaan vaihtoehtoisia tapoja tilata, tuottaa ja esittää (media)taidetta sekä dialogisia ja performatiivisia työskentelytapoja. Kollektiivisena (pois)oppimisen prosessina projekti tukee uusien teknologioiden kriittistä ja spekulatiivista käyttöä, erilaisia vieraanvaraisuuden muotoja sekä työkaluja saavutettavuuteen.</p><p><b>Flis Holland:</b> Unansible<br>Ansible-verkko*1 tarjoaa viiveettömän viestinnän tähdistöjen välille. Ilman viivettä tai kohinaa. Näiden saumattomien yhteyksien sanotaan häivyttävän etäisyydet väliltämme ja edistävän intergalaktista ymmärrystä. Kaikesta täydellisyydestään huolimatta signaali tuntuu vieraalta.</p><p>Flis Hollandin performatiivisessa ääniteoksessa Ansible-verkko pusketaan sen rajojen yli: tavoitteena on purkaa verkon hiottu sujuvuus. James Webb -avaruusteleskoopin kuvien alt-tekstit käynnistävät keskustelun, joka hidastuu, tihenee ja pirstaloituu lopulta moniääniseksi tilaksi.</p><p>*1. Ansible (johdettu englanninkielisestä sanasta ‘answerable’) on Ursula K. Le Guinin keksimä konsepti ja termi, joka esiintyy Osattomien planeetta (The Dispossessed: An Ambiguous Utopia, 1974) -kirjassa.</p><p>Tekijätiedot: Kaikki teoksen alt-tekstit on sovitettu ja muokattu STScl Space Telescope Science Institute -tutkimussäätiön materiaaleista.</p><p><b>Joy Mariama Smith:</b> Untitled [Scents Sense]<br>Untitled [Scents Sense] on Joy Mariama Smithin interaktiivinen installaatio, joka tutkii läheisyyttä, jossa koetaan saavutettavuuteen liittyvien tarpeiden tulevan ymmärretyksi, sekä näennäisesti saavutettavuutta tukevien teknologioiden käyttöä. Samalla teos tarkastelee anosmian (eli “hajusokeuden”) merkityksiä suhteessa kolonialistisiin historioihin, diasporaidentiteetteihin ja aistien hierarkiaan. <br>Interventiossa avustavat teknologiat, yhdessä äänen ja videon kanssa, johdattavat yleisön valittujen hajujen äärelle. Hajuaistin kautta heidät kutsutaan pohtimaan rajoja, eroja, saavutettavuutta, valtaa, valvontaa, leimaantumista sekä tarkastelemaan yhteisöllisyyttä, vapautumista, läheisyyttä, hoivaa, muuttoliikkeitä ja vastarintaa. <br>Yleisö on tervetullut tutustumaan teoksessa esillä oleviin tuoksuihin ja videomateriaaliin omassa tahdissaan.</p><p>Hanketta tukevat Suomen opetus- ja kulttuuriministeriö sekä Mondriaan Fonds.</p><p>Kesto 1 h 30 min (sis. väliaika)</p>", "sv": "<p>Flis Holland och Joy Mariama Smith presenterar två nya verk som tänjer på gränserna för kommunikation, tillgänglighet och upplevelser.</p><p>Konstnärerna frågar sig vad förbindelse, kollektivitet och frigörelse kan innebära, oavsett om det handlar om signaler mellan konstellationer eller ifrågasättande av sensoriska hierarkier. Verken är framtagna inom programmet \"Everyday Priorities – Art, Technology and Accommodations\".</p><p>Verken är framtagna inom ramen för programmet Everyday Priorities – Art, Technology and Accommodations, som genomförs av M-Cult (Helsingfors) och Metro54 (Amsterdam) i samarbete med Beneluxinstitutet i Finland. Premiärerna vi ser på Baltic Circle är resultatet av ett samarbete mellan M-Cult och Baltic Circle.</p><p>Everyday Priorities – Art, Technology and Accommodations är en serie sammankomster för allmänheten och nya konstnärliga produktioner. Här utforskas, experimenteras och utnyttjas alternativa sätt att beställa, producera och presentera (medie)konst, liksom dialogiska och performativa arbetssätt. Som en kollektiv (bort)lärandeprocess stödjer projektet en kritisk och spekulativ användning av ny teknik, olika former av gästfrihet och verktyg för tillgänglighet.</p><p>Flis Holland: Unansible<br>Ansible-nätverket*1 erbjuder sömlös kommunikation mellan konstellationer. Utan dröjsmål eller brus. Dessa sömlösa förbindelser sägs sudda ut avstånden oss emellan och främja intergalaktisk förståelse. Trots all sin perfektion känns signalen främmande.</p><p>I Flis Hollands performativa ljudverk pressas Ansible-nätverket bortom sina gränser: målet är att demontera nätverkets polerade fluiditet. Alt-texterna till bilderna från James Webbs rymdteleskop inleder en konversation som saktar ner, intensifieras och till slut fragmenteras till ett polyfoniskt rum.</p><p>*1. Ansible (från engelskans \"answerable\") är ett begrepp och en term som myntades av Ursula K. Le Guin och som förekommer i boken De obesuttna (The Dispossessed: An Ambiguous Utopia, 1974).</p><p>Information om upphovsmannen. Alla alt-texter i verket har anpassats och redigerats från material som tillhandahållits av STScl Space Telescope Science Institute.</p><p>Joy Mariama Smith: Untitled [Scents Sense]<br>Untitled [Scents Sense] är en performativ intervention av Joy Mariama Smith som använder sig av intimiteten i att uppleva att tillgänglighetsbehov förstås och att tekniken verkar stödja dem. Samtidigt utforskar verket betydelsen av anosmi (eller \"doftblindhet\") i relation till koloniala historier, diasporiska identiteter och sinnenas hierarki.</p><p>I interventionen leder assisterande teknologier, tillsammans med ljud och video, publiken till valda dofter. Genom doftsinnet uppmanas de att reflektera över gränser, olikheter, tillgänglighet, makt, kontroll, stigma och att fundera över gemenskap, frigörelse, intimitet, vård, migration och motstånd.</p><p>Projektet stöds av det finska undervisnings- och kulturministeriet och Mondriaan Fonds.</p><p>Längd 1 h 30 min (inkl. paus)</p>", "en": "<p>An evening of two new performative works by artists Flis Holland and Joy Mariama Smith that stretch the limits of communication, access, and perception.</p><p>Together, the performances invite questions of connection, collectivity, and liberation — whether through an interstellar signal or the refusal of dominant sensory hierarchies. The commissions are produced as part of the “Everyday Priorities – Art, Technology and Accommodations” project.</p><p>Commissions are produced within Everyday Priorities – Art, Technology and Accommodations, a project by M-Cult (Helsinki) and Metro54 (Amsterdam) in collaboration with the Finnish Cultural Institute for the Benelux. The premieres at Baltic Circle are the result of a partnership between M-Cult and Baltic Circle.</p><p>Everyday Priorities—Art, Technology and Accommodations is a series of gatherings and new artistic commissions that explore, experiment with, and put into action alternative ways of commissioning, producing, and presenting artistic work, media art as well as dialogic and performative practices. As a collective (un)learning process, the project enhances the critical and speculative use of new technologies, different forms of hospitality, and access toolkits.</p><p><b>Flis Holland: Unansible</b><br>The Ansible network*1 offers instantaneous interstellar communication. No delays. No static. Seamless exchanges, said to dissolve the distances between us and foster understanding. Yet the signal, for all its perfection, feels alien.</p><p>In this small group audio performance, we will push the Ansible beyond its intended limits in an attempt to undo the network’s polished fluency. Alt texts for astronomical images from the James Webb Space Telescope are seeds for a dialogue that slows, thickens, and splinters, opening up space for more voices.</p><p>*1. Ansible (derived from ‘answerable’) coined by Ursula K. Le Guin, a concept developed in “The Dispossessed: an ambiguous utopia”, 1974.</p><p>Credits for all the alt texts used in the work: Alt text by STScI Space Telescope Science Institute, adapted.</p><p><b>Joy Mariama Smith: Untitled [Scents Sense]</b><br>Joy Mariama Smith’s Untitled [Scents Sense] is an interactive installation that explores access intimacy and the use of seemingly supportive technologies to consider the implications of Anosmia (aka ‘smell blindness’) in relation to colonial histories, diasporic identities, and the hierarchy of the senses. <br>In this sensory intervention, assistive technologies, in conjunction with audio and video, accompany selected smells. Together, they invite the viewer to consider borders, boundaries, access, power, policing, stigmatization, as well as collectivity, liberation, intimacy, care, migration, and resistance through the lens of the olfactory.<br>Visitors are invited to explore the video material and scents presented in the piece at their own pace.</p><p>Supported by the Ministry of Education and Culture, Finland and the Mondriaan Fonds, Netherlands.</p>" }, "name": { "fi": "Everyday Priorities: Flis Holland & Joy Mariama Smith – Baltic Circle Festival", "sv": "Everyday Priorities: Flis Holland & Joy Mariama Smith – Baltic Circle Festival", "en": "Everyday Priorities: Flis Holland & Joy Mariama Smith – Baltic Circle Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67107/?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": [], "info_url": null, "description": 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", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777792.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "name": { "fi": "Lasten lauantai", "sv": "Barnens lördag", "en": "Children’s Saturday" }, "provider_contact_info": null, "location_extra_info": null, "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": [], "info_url": null, "description": 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", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778074.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "name": { "fi": "Pois leikatut -valokuvanäyttely", "sv": "Pois leikatut Fotoutställningen", "en": "Pois leikatut photo exhibition" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67113/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66898", "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/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2025-kulttuurikeskus-caisa-20645194/", "sv": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2025-kulttuurikeskus-caisa-20645194/", "en": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2025-kulttuurikeskus-caisa-20645194/" }, "description": null, "price": { "fi": "33 € / 17 €", "sv": "33 € / 17 €", "en": "33 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490758, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-12T08:12:58.615376Z", "last_modified_time": "2025-09-12T08:12:58.615390Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776778.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490758/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-12T08:12:58.555740Z", "last_modified_time": "2025-10-17T06:13:53.611190Z", "date_published": null, "start_time": "2025-11-11T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mother Tongue on kieltä käsittelevä soolo, äänen ja kaiun duetto, väliin asettuva olento.", "sv": "Mother Tongue är ett solo om språk, en duett för ljud och eko, en varelse mitt emellan.", "en": "Mother Tongue is a solo about language, a duet of the voice and its echo, an in-between being." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/5484DE5BA103EFAD79191E58786B0492/Liikkeella_marraskuussa_Luc_a_Garc_a_Pull_s_Mother_Tongue", "sv": "http://www.caisa.fi/sv/evenemang/event/5484DE5BA103EFAD79191E58786B0492/Liikkeella_marraskuussa_Luc_a_Garc_a_Pull_s_Mother_Tongue", "en": "http://www.caisa.fi/en/events/event/5484DE5BA103EFAD79191E58786B0492/Moving_in_November_Luc_a_Garc_a_Pull_s_Mother_Tongue" }, "description": { "fi": "<p>Mother Tongue on kieltä käsittelevä soolo, äänen ja kaiun duetto, väliin asettuva olento.</p><p>Lucía García Pullésin lähtökohta on, että identiteetti on henkilökohtaisten kokemusten muovaamia intiimejä narratiiveja, joita normatiivisuuden yliote pyrkii peittämään alleen.</p><p>Omasta kuvitteellisesta, fiktiivisestä ja herkästä arkeologiastaan käsin García Pullés työskentelee äänenkäytöllisten ja kehollisten eleiden kanssa toisteisesti ja hellittämättä, samalla kaivautuen kehon erilaisiin ajallisiin ja maantieteellisiin kerrostumiin.</p><p>Kesto: 40 min<br>Paikka: Caisan sali</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 6.–16.11.2025. Osana festivaalia García Pullés käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks -tilaisuudessa 12.11. klo 12 Caisassa.</p><p>Festivaaliesityksiin myynnissä myös festivaalipasseja. Lisätietoja: https://liikkeellamarraskuussa.fi/liput-ja-esityspaikat-2/</p><p>Koreografia ja esitys: Lucía García Pullés <br>Äänisuunnittelu: Aria Seashell Delacelle<br>Laulu: Mailén Pankonin<br>Pukusuunnittelu: Anna Carraud<br>Valosuunnittelu: Carolina Oliveira <br>Näyttämömestari: Marie Predour<br>Äänenkäytön valmentaja: Daniel Wendler<br>Ulkopuolinen neuvonanto: Marcos Arriola<br>Taiteellinen yhteistyö: Sophie Demeyer, Volmir Cordeiro <br>Tuotanto: Bureau Cokot - Julie Le Gall <br>Yhteistuotanto: MC93 - Maison de la Culture de Seine-Saint- Denis (FR) ja Riksteatern (SE), osana Euroopan Unionin rahoittamaa Common Stories Luova Eurooppa projektia - Charleroi Danse (BE) - La Manufacture CDCN Nouvelle Aquitaine Bordeaux, La Rochelle - Théatre de Vanves (FR) – Ranskan kulttuuriministeriön tuki <br>Teosta tukee: La Ménagerie de Verre (FR), Carreau du Temple (FR), Danse Dense (FR), Centre National de la Danse (FR), La Compagnie DCA à Saint-Denis, Festival Solos al Mediodía, Théâtre Solis (UR)</p><p>Mother Tongue sai ensi-iltansa Festival Artdanthéssa Vanvesissa maaliskuussa 2025.</p>", "sv": "<p>Mother Tongue är ett solo om språk, en duett för ljud och eko, en varelse mitt emellan.</p><p>Lucía García Pullés utgångspunkt är att identitet är en intim berättelse som formas av personliga erfarenheter och som normativitetens övergrepp försöker att dölja.</p><p>Med utgångspunkt i sin egen fantasifulla, fiktiva och känsliga arkeologi arbetar García Pullés med vokala och kroppsliga gester på ett repetitivt och obevekligt sätt, samtidigt som hon fördjupar sig i kroppens olika tidsmässiga och geografiska skikt.</p><p>Längd: 40 min.<br>Plats: Salen i Caisa</p><p>Verket är en del av festivalen Liikkeellä marraskuussa 6–16.11.2025. Som en del av festivalen kommer García Pullés att samtala med en lokal konstnär vid det öppna evenemanget Soup Talks den 12 november kl. 12.00 på Caisa.</p><p>Festivalpass för festivalens föreställningar finns också till försäljning. Mer information: https://liikkeellamarraskuussa.fi/liput-ja-esityspaikat-2/</p><p>Koreografi och framträdande: Lucía García Pullés<br>Ljuddesign: Aria Seashell Delacelle<br>Sång Mailén Pankonin<br>Kostym: Anna Carraud<br>Ljusdesign: Carolina Oliveira<br>Scenmästare: Marie Predour<br>Röstcoach: Daniel Wendler<br>Extern rådgivning: Marcos Arriola<br>Konstnärligt samarbete: Sophie Demeyer, Volmir Cordeiro<br>Produktion: Bureau Cokot - Julie Le Gall<br>Samproduktion: MC93 - Maison de la Culture de Seine-Saint- Denis (FR) och Riksteatern (SE), inom ramen för projektet Common Stories Kreativa Europa som finansieras av Europeiska unionen - Charleroi Danse (BE) - La Manufacture CDCN Nouvelle Aquitaine Bordeaux, La Rochelle - Théatre de Vanves (FR) - Stöd från det franska kulturministeriet<br>Verket stöds av: La Ménagerie de Verre (FR), Carreau du Temple (FR), Danse Dense (FR), Centre National de la Danse (FR), La Compagnie DCA à Saint-Denis, Festival Solos al Mediodía, Théâtre Solis (UR)</p><p>Mother Tongue fick sin premiär på Festival Artdanthé i Vanves i mars 2025.</p>", "en": "<p>Mother Tongue is a solo about language, a duet of the voice and its echo, an in-between being.</p><p>Lucía García Pullés starts with the idea that identity is a construction made up of stories about ourselves: intimate narratives nourished by our personal experiences, which are in turn overlaid by normativity’s precedence. Repetitive, saturated, and insistent,</p><p>García Pullés works with vocal and physical gestures from her personal phantasmagorical, fictional, and sensitive archaeology, digging into the different temporal and geographical layers of the body.</p><p>Duration: 40 min</p><p>The performance is part of Moving in November 6.-16.11.2025. As part of the festival, there will be an open Soup Talks discussion with García Pullés and local host on the 12th of November at noon in Caisa.</p><p>Choreography and interpretation: Lucía García Pullés <br>Sound creation: Aria Seashell Delacelle<br>Song: Mailén Pankonin<br>Costume: Anna Carraud<br>Light creation: Carolina Oliveira <br>Stage manager on tour: Marie Predour<br>Vocal coach: Daniel Wendler<br>External eye: Marcos Arriola<br>Artistic collaboration: Sophie Demeyer, Volmir Cordeiro <br>Production: Bureau Cokot - Julie Le Gall <br>Co-production: MC93 - Maison de la Culture de Seine-Saint-Denis (FR) and Riksteatern (SE) as part of Common Stories, a Creative Europe programme financed by the European Union, Charleroi Danse (BE), La Manufacture CDCN Nouvelle Aquitaine Bordeaux, La Rochelle, Théatre de Vanves (FR), Project support of DRAC Ile-de-France</p><p>Supported by: La Ménagerie de Verre (FR), Carreau du Temple (FR), Danse Dense (FR), Centre National de la Danse (FR), La Compagnie DCA à Saint-Denis, Festival Solos al Mediodía, Théâtre Solis (UR)</p><p>Mother Tongue premiered in Festival Artdanthé, Vanves in March 2025.</p>" }, "name": { "fi": "Liikkeellä marraskuussa – Lucía García Pullés: Mother Tongue", "sv": "Liikkeellä marraskuussa – Lucía García Pullés: Mother Tongue", "en": "Moving in November – Lucía García Pullés: Mother Tongue" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66898/?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": [], "info_url": null, "description": 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", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776795.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks", "sv": "Liikkeellä marraskuussa – Soup Talks", "en": "Moving in November – Soup Talks" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66901/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }