Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=72
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=73", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=71" }, "data": [ { "id": "kulke:69570", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "28,90 eur", "sv": "28,90 eur", "en": "28,90 eur" }, "info_url": { "fi": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-mape-veijalainen-vuotalo-21817029/", "sv": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-mape-veijalainen-vuotalo-21817029/", "en": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-mape-veijalainen-vuotalo-21817029/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385462, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T12:14:13.857081Z", "last_modified_time": "2026-07-01T12:14:13.857095Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795609.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385462/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-01T12:14:13.744599Z", "last_modified_time": "2026-08-26T11:23:31.437550Z", "date_published": null, "start_time": "2026-10-29T16:00:00Z", "end_time": "2026-10-29T18: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, "location_extra_info": null, "provider": null, "name": { "fi": "The Mystery Wires & Mape Veijalainen: A Tribute to Cliff & The Shadows", "sv": "The Mystery Wires & Mape Veijalainen: A Tribute to Cliff & The Shadows", "en": "The Mystery Wires & Mape Veijalainen: A Tribute to Cliff & The Shadows" }, "description": { "fi": "<p>Luvassa rautalankaklassikoita ja nuorisoelokuvamusiikkia Cliff Richard & The Shadows -tyyliin – jo kymmenettä kertaa Vuotalossa!</p><p>Illan juontaja Mape vie yleisön 1960- luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties- yhdistyksen tapahtumissa vaikuttavien ja soittavien legendojen tulkitsemana.</p><p>Klubi-ilta, A-oikeudet. Tarjoiluista vastaa Café Pokkari. <br>Ovet avataan klo 17.30. Alle 18-vuotiaat huoltajan seurassa.</p><p>Kesto: 2 t 30 min, sis väliajan 30 min.</p><p>Liput tulee myyntiin elokuussa</p>", "sv": "<p>Det utlovas ståltrådsklassiker och ungdomsfilmmusik i stil med Cliff Richard & The Shadows – redan för tionde gången på Nordhuset!</p><p>Kvällens värd Mape tar publiken med på en resa till 1960-talets ungdomsmusik, tolkad av legender som uppträder på föreningen Back To The Sixties evenemang.</p><p>Klubbkväll, A-rättigheter. Café Pokkari står för serveringen. <br>Dörrarna öppnas kl. 17.30. Barn under 18 år tillsammans med en vårdnadshavare. <br> <br>Längd: 2 h 30 min., inklusive 30 minuters paus</p>", "en": "<p>Get ready for some rautalanka classics and youth film music in the style of Cliff Richard & The Shadows – now for the tenth time at Vuosaari House!</p><p>The evening’s host, Mape, will lead the audience into the world of young people’s music from the 60s, interpreted by legends known from the events organised by the Back To The Sixties association.</p><p>Club night, fully licensed bar. Refreshments are served by Café Pokkari. <br>The doors open at 17.30. Persons under the age of 18 must be accompanied by their guardian. <br> <br>Duration: 2 h 30 min, incl. 30 min interval</p>" }, "provider_contact_info": null, "short_description": { "fi": "Luvassa rautalankaklassikoita ja nuorisoelokuvamusiikkia Cliff Richard & The Shadows -tyyliin – jo kymmenettä kertaa Vuotalossa!", "sv": "Det utlovas ståltrådsklassiker och ungdomsfilmmusik i stil med Cliff Richard & The Shadows – redan för tionde gången på Nordhuset!", "en": "Get ready for some rautalanka classics and youth film music in the style of Cliff Richard & The Shadows – now for the tenth time at Vuosaari House!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2EFC62D3AB5951AB532A6FA73BE4A6F6/The_Mystery_Wires_Mape_Veijalainen_A_Tribute_to_Cliff_The_Shadows", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2EFC62D3AB5951AB532A6FA73BE4A6F6/The_Mystery_Wires_Mape_Veijalainen_A_Tribute_to_Cliff_The_Shadows", "en": "http://www.vuotalo.fi/en/events/event/2EFC62D3AB5951AB532A6FA73BE4A6F6/The_Mystery_Wires_Mape_Veijalainen_A_Tribute_to_Cliff_The_Shadows" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69570/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385351, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-24T12:14:49.377493Z", "last_modified_time": "2026-06-24T12:14:49.377508Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792341.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385351/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-24T12:14:49.279149Z", "last_modified_time": "2026-08-26T10:23:29.361308Z", "date_published": null, "start_time": "2026-10-28T07:00:00Z", "end_time": "2026-10-28T08:50: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, "location_extra_info": null, "provider": null, "name": { "fi": "Yläkoulukino: Jossain on valo joka ei sammu (12) – Elokuvanäytös kouluryhmille", "sv": "Högstadiekino: Det finns ett ljus som aldrig slocknar (12) – Filmvisning för skolgrupper", "en": "Yläkoulukino: A Light That Never Goes Out (12) – Film screening for school groups" }, "description": { "fi": "<p>“Kui moni raumalainen on tehny levyn, mikä jonai päivänä lähetetään avaruuteen?”</p><p>Romahduksen kokenut ammattihuilisti Pauli (Samuel Kujala) palaa lapsuudenkotiinsa Raumalle. Hän tapaa vanhan koulukaverinsa Iiriksen (Anna Rosaliina Kauno), joka sinnikkäästi taivuttelee Paulin mukaansa tekemään outoa musiikkia, jota kukaan ei tiennyt haluavansa kuulla. Aiemmin virheettömyyteen pyrkinyt Pauli alkaa löytää lohtua kummallisista äänistä ja omalaatuisesta ystävyydestä.</p><p>Lauri-Matti Parppein Jossain on valo joka ei sammu on anteeksipyytelemätön esikoisohjaus ja vilpitön rakkaudentunnustus kotikaupungilleen Raumalle. Elokuva voitti yhteensä seitsemän eri Jussi-palkintoa. Elokuva putsasi pöydän muun muassa kategorioissa vuoden elokuva, vuoden pääosa (Samuel Kujala), vuoden käsikirjoitus (Lauri-Matti Parppei) ja vuoden läpimurtorooli (Anna Rosaliina Kauno).</p><p><u><a href=\"https://www.koulukino.fi/oppimateriaalit/jossain-on-valo-joka-ei-sammu/\">Elokuvaan liittyvät oppimateriaalit löydät Koulukinosta</u></a>. Oppimateriaali on suunnattu lukioon ja toiselle asteelle. Oppimateriaalin teemoja: kokeellinen musiikki, äänitaide, taide, taiteilijuus, ystävyys, itsetuhoisuus, voimavarat.</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agppi75prq\">Ilmoita ryhmäsi mukaan osoitteessa kultus.hel.fi</u></a>.</p><p>Valmistumisvuosi: 2025<br>Ikäraja: 12<br>Pituus: 110 min.<br>Ohjaus: Lauri-Matti Parppei<br>Käsikirjoitus: Lauri-Matti Parppei<br>Näyttelijät: Samuel Kujala, Anna Kauno, Camille Auer, Kaisa Koskenkorva, Mari Rantasila, Jarkko Pajunen</p>", "sv": "<p>Lauri-Matti Parppeis kompromisslösa debutfilm är en uppriktig kärleksförklaring till hans hemstad Raumo. <i>”Hur många från Raumo har gjort en skiva som en dag kommer att skickas ut i rymden?”</i></p><p>Den professionella flöjtisten Pauli (Samuel Kujala) har kraschat mentalt och återvänder till sitt barndomshem i Raumo. Han träffar sin gamla skolkompis Iiris (Anna Rosaliina Kauno), som envetet försöker övertala honom att följa med och göra udda musik, som ingen visste att de ville höra. Pauli, som alltid har varit en perfektionist, finner tröst i de märkliga ljuden och den speciella vänskapen.</p><p><i>Ett ljus som aldrig slocknar</i> är <b>Lauri-Matti Parppeis</b> kompromisslösa första regi, och fick sin världspremiär i ACID-kategorin vid filmfestivalen i Cannes. Den är en oförställd kärleksförklaring till hemstaden Raumo.</p><p><u><a href=\"https://www.koulukino.fi/oppimateriaalit/jossain-on-valo-joka-ei-sammu/\">Läromedel kopplade till filmen hittar du på Skolbio (på finska)</u></a>. Läromedlet riktar sig till gymnasiet och den andra stadiet. Teman i läromedlet: experimentell musik, ljudkonst, konst, konstnärskap, vänskap, självdestruktivitet, resurser.</p><p><u><a href=\"https://kultus.hel.fi/sv/event/kultus:agppi75prq\">Anmäl din grupp på kultus.hel.fi</u></a>.</p><p>Produktionsår: 2025 <br>Åldersgräns: 12 <br>Längd: 110 min. <br>Regi: Lauri-Matti Parppei <br>Manus: Lauri-Matti Parppei <br>Medverkande: Samuel Kujala, Anna Kauno, Camille Auer, Kaisa Koskenkorva, Mari Rantasila, Jarkko Pajunen</p>", "en": "<p>“How many people from Rauma have made a record that will one day be sent into space?”</p><p>Pauli (Samuel Kujala), a classical flutist, returns to his small Finnish hometown to recover after a breakdown. Unable to play, he feels like a failure. Pauli runs into Iiris (Anna Rosaliina Kauno), who makes experimental music by herself. Iiris starts persuading him to try and make some music together, and she’s convinced that by joining forces, they’d be able to create something completely new and unique. Pauli, who has always sought perfection, is drawn to her chaotic energy and finds comfort in their sonic experiments.</p><p>The film won a total of seven Jussi Awards, including in the categories of Film of the Year, Best Director and Best Screenplay (Lauri-Matti Parppei), Lead Actor of the Year (Samuel Kujala) and Breakthrough Performance of the Year (Anna Rosaliina Kauno).</p><p><u><a href=\"https://www.koulukino.fi/oppimateriaalit/jossain-on-valo-joka-ei-sammu/\">You can find learning materials related to the film via Koulukino (in Finnish)</u></a>. The learning material is aimed at general upper secondary schools and other upper secondary education institutions. Themes in the learning materials: experimental music, sound art, art, artistry, friendship, self-destruction, resources.</p><p><u><a href=\"https://kultus.hel.fi/en/event/kultus:agppi75prq\">Register your group via kultus.hel.fi</u></a>.</p><p>Year of release: 2025 <br>Age rating: 12 <br>Duration: 110 min <br>Directed by: Lauri-Matti Parppei <br>Written by: Lauri-Matti Parppei <br>Cast: Samuel Kujala, Anna Kauno, Camille Auer, Kaisa Koskenkorva, Mari Rantasila, Jarkko Pajunen</p>" }, "provider_contact_info": null, "short_description": { "fi": "“Kui moni raumalainen on tehny levyn, mikä jonai päivänä lähetetään avaruuteen?”", "sv": "Lauri-Matti Parppeis kompromisslösa debutfilm är en uppriktig kärleksförklaring till hans hemstad Raumo. <i>”Hur många från Raumo har gjort en skiva som en dag kommer att skickas ut i rymden?”</i>", "en": "“How many people from Rauma have made a record that will one day be sent into space?”" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8CB11A999774B3F4BA2BD87F1CD828D3/Ylakoulukino_Jossain_on_valo_joka_ei_sammu_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8CB11A999774B3F4BA2BD87F1CD828D3/Hogstadiekino_Det_finns_ett_ljus_som_aldrig_slocknar_12_", "en": "http://www.vuotalo.fi/en/events/event/8CB11A999774B3F4BA2BD87F1CD828D3/Ylakoulukino_A_Light_That_Never_Goes_Out_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69568", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "10 €", "sv": "10 €", "en": "10 €" }, "info_url": { "fi": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21877352/", "sv": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21877352/", "en": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21877352/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385457, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T11:14:18.482049Z", "last_modified_time": "2026-07-01T11:14:18.482070Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795607.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385457/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-01T11:14:18.320201Z", "last_modified_time": "2026-08-26T10:23:28.975390Z", "date_published": null, "start_time": "2026-10-27T12:00:00Z", "end_time": "2026-10-27T14: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, "location_extra_info": null, "provider": null, "name": { "fi": "HopeaCine: Presidentin kyyditys", "sv": "HopeaCine: Presidentin kyyditys", "en": "HopeaCiné: The Kidnapping of a President" }, "description": { "fi": "<p>Tervetuloa nauttimaan huippusuosituista HopeaCine-näytöksistä ja tekijävierailuista!</p><p>Tositapahtumien inspiroima Presidentin kyyditys vie katsojan keskelle vuoden 1930 absurdeja tapahtumia. Raskaan ryyppyillan aikana joukko kunnianhimoisia upseereita päättää kaapata Suomen ensimmäisen presidentin – jo eläkkeellä olevan K. J. Ståhlbergin.</p><p>Uppiniskainen presidentin vaimo Ester Ståhlberg ei tiukassakaan tilanteessa suostu jättämään miestään, vaan änkeää muiluttajien pään menoksi samaan kyytiin auton takapenkille. Alkaa uskomaton matka halki levottoman Suomen, jossa huhupuheet ja historia kietoutuvat yhteen – eikä vieläkään tiedetä, mikä presidentin kyydityksessä oli totta ja mikä tarua.</p><p>Ohjaus: Samuli Valkama<br>Pääosissa: Elias Salonen, Aku Sipola, Jussi Vatanen<br>Kieli: suomi<br>Kesto: 1h30<br>Keskustelu: 30 min</p><p><b>HopeaCinen</b> syksyn ohjelmistossa on tuttuun tapaan kotimaisia uutuuselokuvia kerran kuussa. Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi.</p><p>HopeaCine-sarjan elokuvia esitetään Cinema Orionissa, Malmitalossa ja Vuotalossa.</p><p>Lokakuun elokuva: Presidentin kyyditys<br>Cinema Orion ke 14.10. klo 13.00<br>Malmitalo to 22.10. klo 13.00<br>Vuotalo ti 27.10. klo 14.00</p><p>Marraskuun elokuva: Lapin sota<br>Malmitalo to 12.11. klo 13.00<br>Cinema Orion ke 18.11. klo 13.00<br>Vuotalo ti 24.11. klo 14.00</p><p>Joulukuun elokuva: Kerro kaikille<br>Cinema Orion ke 9.12. klo 13.00<br>Malmitalo to 10.12. klo 13.00<br>Vuotalo ti 15.12. klo 14.00</p>", "sv": "<p>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.</p><p>Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som efter föreställningen berättar om processen med att göra filmen och ger något nytt att tänka på för att fördjupa filmvisningen.</p><p>Filmen <i>Presidentin kyyditys</i>, som är inspirerad av verkliga händelser, för tittaren rakt in i de absurda händelserna under 1930. Under en kväll med kraftigt drickande beslutar en grupp ambitiösa officerare att kidnappa Finlands första president – den redan pensionerade K. J. Ståhlberg. Den envisa presidentfrun Ester Ståhlberg vägrar att lämna sin man, inte ens när det hettar till, utan tjatar på skjutsarna tills de till slut låter henne sätta sig i baksätet på samma bil. En otrolig resa genom ett oroligt Finland tar sin början, där rykten och historia flätas samman – och man vet fortfarande inte vad som var sant och vad som var falskt i samband med presidentens bortförande.</p>", "en": "<p>Designed for seniors, HopeaCiné’s programme features new Finnish films once a month.</p><p>Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film.</p><p>Inspired by true events, <i>The Kidnapping of a President</i> transports the viewer into the heart of absurd events in 1930. During a night of heavy drinking, a group of ambitious officers decide to kidnap Finland’s first president – the already retired K. J. Ståhlberg. Ester Ståhlberg, the president’s headstrong wife, refuses to leave her husband’s side even in those dire circumstances, and instead stubbornly insists on getting into the backseat of the car with the kidnappers. An incredible journey begins through a turbulent Finland, where rumours and history are intertwined – and even now, it remains unclear what was fact and what was fiction in the president’s kidnapping.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa nauttimaan huippusuosituista HopeaCine-näytöksistä ja tekijävierailuista!", "sv": "I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.", "en": "Designed for seniors, HopeaCiné’s programme features new Finnish films once a month." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7890304F6FBC3A55358461C73FB9FAD1/HopeaCine_Presidentin_kyyditys", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7890304F6FBC3A55358461C73FB9FAD1/HopeaCine_Presidentin_kyyditys", "en": "http://www.vuotalo.fi/en/events/event/7890304F6FBC3A55358461C73FB9FAD1/HopeaCin_The_Kidnapping_of_a_President_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69568/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69487", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 / 15 €", "sv": "20 / 15 €", "en": "20 / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kom-teatteri-kuinka-tulla-tapio-rautavaaraksi-vuotalo-21815354/#tab=", "sv": "https://www.lippu.fi/event/kom-teatteri-kuinka-tulla-tapio-rautavaaraksi-vuotalo-21815354/#tab=", "en": "https://www.lippu.fi/event/kom-teatteri-kuinka-tulla-tapio-rautavaaraksi-vuotalo-21815354/#tab=" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385310, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-24T05:13:50.219153Z", "last_modified_time": "2026-06-24T05:13:50.219167Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795597.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385310/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-24T05:13:50.079179Z", "last_modified_time": "2026-08-26T10:23:28.189372Z", "date_published": null, "start_time": "2026-10-24T15:00:00Z", "end_time": "2026-10-24T17: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, "location_extra_info": null, "provider": null, "name": { "fi": "Kuinka tulla Tapio Rautavaaraksi", "sv": "Hur man blir Tapio Rautavaara", "en": "Guide to Becoming Tapio Rautavaara" }, "description": { "fi": "<p>Kun syyrialaistaustainen Youssef Asad Alkhatib saapui 16-vuotiaana pakolaisena Suomeen, hän löysi yllättävän ystävän suomalaisesta äänimaisemasta ja Tapio Rautavaaran lauluista.</p><p>Niihin hän samaistui ja tunnisti jotakin itsessään. Siitä lähtien Alkhatibin haaveena on ollut tehdä esitys suomalaisesta kulttuurista sekä mutkikkaasta suhteestaan idoliinsa. Itsenäisyyspäivänä 2025 tämä pitkäaikainen unelma toteutui KOM-teatterissa.</p><p>Esitys kertoo hymyssä suin matkan takaa saapuvasta kulkurista, joka on kuullut puhuttavan Suomesta ja siellä elävästä maailman onnellisimmasta kansasta. Kieli on vieras ja tavat oudot, mutta Rautavaaran laulut antavat suunnan ja toivon paremmasta. Kun kulkuri kuulee idolinsa olleen myös olympiavoittaja ja filmitähti, nousevat ihanteet pilviin. Miten sinnikäs sankarimme onnistuu lunastamaan itse itselleen asettamat odotukset ja täyttämään suomalaisen kiiltokuvamiehen mallin? Ja kuinka pitkälle hän on valmis menemään tullakseen yhtä rakastetuksi kuin koko kansan Tapsa?</p><p><b>Youssef Asad Alkhatib</b> on yksi suomalaisen teatterin kiinnostavimmista uusista äänistä. Teatteri on tarjonnut hänelle väylän ymmärtää uutta kotimaataan, ja nyt Teatterikorkeakoulussa opiskelevana hän muuntaa kokemuksensa kertomuksiksi, jotka koskettavat niin kantasuomalaisia nuoria kuin maahanmuuttajayhteisöjäkin. Alkhatib on nähty KOM-teatterissa aikaisemmin esityksissä <i>Seitsemän tarinaa häpeästä</i>, <i>Hölmölä – Suuri Talousfoorumi</i> sekä omakohtaisessa monologiesityksessään <i>Hajuvesi</i>.</p><p>Lavalla Alkhatibin lisäksi nähdään muusikko <b>Taavi Hasunen</b>, joka työskentelee KOM-teatterissa myös AV-suunnittelijana sekä ääni- ja valoteknikkona. Esityksen tekstistä ja ohjauksesta vastaa <b>Otto Nyberg</b>, jonka aiempia töitä ovat mm. <i>Kanijanikani</i> ja <i>Julius – Kaukaisella tähdellä oman päänsä sisällä</i>, joka palkittiin Vuoden esityksen Thalia-palkinnolla vuonna 2024.</p><p>KOM-teatterin tuottaman kantaesityksen ensi-ilta oli Kaapelitehtaan Turbiinisalissa 6.12.2025.</p><p>Teksti ja ohjaus: Otto Nyberg<br>Näyttämöllä: Youssef Asad Alkhatib ja Taavi Hasunen<br>Pukusuunnittelu: Ella Aurora Snellman<br>Lavastussuunnittelu: työryhmä<br>Valot ja äänet: Taavi Hasunen<br>Ompelija/modisti: Fiona Timantti</p><p>Esityskieli: suomi<br>Esityksen kesto: 60 min</p>", "sv": "<p>När Youssef Asad Alkhatib av syriskt ursprung kom till Finland som 16-årig flykting, fann han en oväntad vän i det finska ljudlandskapet och i Tapio Rautavaaras sånger.</p><p>Han kunde identifiera sig med dem och kände igen något av sig själv i dem. Sedan dess har Alkhatibs dröm varit att skapa en föreställning om den finska kulturen och hans komplicerade relation till sin idol. På självständighetsdagen 2025 gick denna långvariga dröm i uppfyllelse på KOM-teatern. <br> <br>Föreställningen handlar på ett humoristiskt sätt om en vagabond som anländer från fjärran och som har hört talas om Finland och det lyckligaste folket i världen som bor där. Språket är främmande och sederna märkliga, men Rautavaaras sånger visar vägen och inger hopp om en bättre framtid. När vagabonden får höra att hans idol också varit olympisk mästare och filmstjärna, stiger hans förväntningar till skyarna. Hur lyckas vår uthållige hjälte leva upp till de förväntningar han själv har ställt på sig och uppfylla idealbilden av en finsk man? Och hur långt är han beredd att gå för att bli lika älskad som hela folkets Tapsa?</p><p><b>Youssef Asad Alkhatib</b> är en av de intressantaste nya rösterna inom finsk teater. Teatern har gett honom en möjlighet att förstå sitt nya hemland, och nu som studerande vid Teaterhögskolan omvandlar han sina erfarenheter till berättelser, som berör såväl unga infödda finländare som invandrargrupper. På KOM-teatern har Alkhatib tidigare medverkat i föreställningarna <i>Seitsemän tarinaa häpeästä</i> och <i>Hölmölä – Suuri Talousfoorumi</i> samt i sin egen monologföreställning <i>Hajuvesi</i>.</p><p>Förutom Alkhatib står också musikern <b>Taavi Hasunen</b> på scenen, som även arbetar som AV-designer samt ljud- och ljustekniker på KOM-teatern. <b>Otto Nyberg</b> ansvarar för föreställningens text och regi. Hans tidigare verk inkluderar bland annat <i>Kanijanikani</i> och <i>Julius – Kaukaisella tähdellä oman päänsä sisällä</i>, som tilldelades Thalia-priset för Årets föreställning 2024.</p><p>Premiären för den nya föreställningen som producerats av KOM-teatern ägde rum i Turbinsalen på Kabelfabriken den 6 december 2025.</p><p>Text och regi: Otto Nyberg <br>På scenen: Youssef Asad Alkhatib och Taavi Hasunen <br>Kostymdesign: Ella Aurora Snellman <br>Scenografi: arbetsgrupp <br>Ljus och ljud: Taavi Hasunen <br>Sömmare/modist: Fiona Timantti</p><p>Föreställningens språk: finska <br>Föreställningens längd: 60 min.</p>", "en": "<p>When Youssef Asad Alkhatib, who is of Syrian origin, arrived in Finland as a refugee at the age of 16, he found an unexpected source of comfort in the Finnish soundscape and the songs of Tapio Rautavaara.</p><p>He identified with them and recognised something of himself in them. Ever since then, Alkhatib’s dream has been to create a performance about Finnish culture and his complex relationship with his idol. On Independence Day 2025, this long-held dream came true in KOM-teatteri. <br> <br>The performance tells, with a smile, the story of a vagabond arriving from afar who has heard people talking about Finland and the happiest people in the world who live there. The language is unfamiliar and the customs strange, but Rautavaara’s songs offer guidance and hope for a better future. When the vagabond learns that his idol was also an Olympic medallist and a film star, his standards soar to the skies. How does our tenacious hero manage to live up to the expectations that he has set for himself and embody the archetype of the perfect Finnish man? And how far is he prepared to go to become as beloved as Tapsa, who was adored by the whole nation?</p><p><b>Youssef Asad Alkhatib</b> is one of the most interesting new voices in Finnish theatre. Theatre has provided him with a way of understanding his new homeland, and now, as a student at the Theatre Academy, he is transforming his experiences into stories that resonate with both young people of Finnish descent and immigrant communities. Alkhatib has previously appeared with KOM-teatteri in the productions <i>Seitsemän tarinaa häpeästä</i> and <i>Hölmölä – Suuri Talousfoorumi</i>, and in his autobiographical monologue performance <i>Hajuvesi</i>.</p><p>Alongside Alkhatib, the cast includes musician <b>Taavi Hasunen</b>, who also works in KOM-teatteri as an AV designer and as a sound and lighting technician. <b>Otto Nyberg</b> is responsible for the script and direction of the production; his career include works such as <i>Kanijanikani</i> and <i>Julius – Kaukaisella tähdellä oman päänsä sisällä</i>, which was awarded the Thalia Prize for Performance of the Year in 2024.</p><p>The premiere of the new production by KOM-teatteri took place in the Turbine Hall of Cable Factory on 6 December 2025.</p><p>Written and directed by: Otto Nyberg <br>On stage: Youssef Asad Alkhatib and Taavi Hasunen <br>Costume design: Ella Aurora Snellman <br>Set design: creative team <br>Lighting and audio: Taavi Hasunen <br>Seamstress/milliner: Fiona Timantti</p><p>Performance language: Finnish <br>Performance duration: 60 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kun syyrialaistaustainen Youssef Asad Alkhatib saapui 16-vuotiaana pakolaisena Suomeen, hän löysi yllättävän ystävän suomalaisesta äänimaisemasta ja Tapio Rautavaaran lauluista.", "sv": "När Youssef Asad Alkhatib av syriskt ursprung kom till Finland som 16-årig flykting, fann han en oväntad vän i det finska ljudlandskapet och i Tapio Rautavaaras sånger.", "en": "When Youssef Asad Alkhatib, who is of Syrian origin, arrived in Finland as a refugee at the age of 16, he found an unexpected source of comfort in the Finnish soundscape and the songs of Tapio Rautavaara." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F23D8A43C1CDC43E7A67B3A0369D1EA7/Kuinka_tulla_Tapio_Rautavaaraksi", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F23D8A43C1CDC43E7A67B3A0369D1EA7/Hur_man_blir_Tapio_Rautavaara", "en": "http://www.vuotalo.fi/en/events/event/F23D8A43C1CDC43E7A67B3A0369D1EA7/Guide_to_Becoming_Tapio_Rautavaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69487/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69567", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" }, "info_url": { "fi": "https://www.lippu.fi/event/jukka-poika-vuotalo-21815201/", "sv": "https://www.lippu.fi/event/jukka-poika-vuotalo-21815201/", "en": "https://www.lippu.fi/event/jukka-poika-vuotalo-21815201/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385456, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T11:14:17.336556Z", "last_modified_time": "2026-07-01T11:14:17.336623Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795596.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385456/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-01T11:14:17.227085Z", "last_modified_time": "2026-08-26T10:23:27.652427Z", "date_published": null, "start_time": "2026-10-23T15:00:00Z", "end_time": "2026-10-23T17: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, "location_extra_info": null, "provider": null, "name": { "fi": "Jukka Poika", "sv": "Jukka Poika", "en": "Jukka Poika" }, "description": { "fi": "<p>Suomireggaen kärkinimen, Jukka Pojan odotettu uusi Comeback-albumi katkaisi kymmenen vuoden albumitauon ja käynnisti uuden luvun artistin uralla.</p><p>Albumilla kuullaan artistin sanoin “suomireggaeta vuonna 2026” – tuttua, tunnistettavaa soundia, joka saa modernin twistin määrätietoisesta energiasta ja kansainvälisistä vivahteista.</p><p><i>“Albumilla on biisejä itsensä ja toisen kanssa olemisesta sekä jokunen rivi yhteiskuntana olemisestakin. Joskus laulu lähtee liikkeelle ajatus edellä, mutta usein annan riimien viedä paikkoihin, joihin ei muuten tulisi kurkittua”</i>, Jukka Poika kuvailee albumia.</p><p>Uudella aikakaudellaan Jukka Poika kuulostaa samanaikaisesti tutulta ja uudelta. Lempeä groove on yhä läsnä, mutta sen rinnalle on kasvanut aiempaa terävämpi soundi. Tammikuussa julkaistu albumin ensimmäinen single \"Stand Back\" osoitti sen, että yleisö on valmis tähän seuraavaan lukuun.</p><p>Tulevaisuudelta voidaan odottaa lisää musiikkia, uusia julkaisuja ja aktiivista keikkailua.</p><p>Kesto: 2 t, sisältäen väliajan</p>", "sv": "<p>Det efterlängtade nya albumet Comeback av Jukka Poika, en av de främsta namnen inom finsk reggae, avslutade ett tioårigt uppehåll i skivutgivningen och inledde ett nytt kapitel i sin artistkarriär.</p><p>På albumet får vi efter artistens egna ord höra ”finsk reggae anno 2026” – ett välbekant och igenkännbart sound, som får en modern twist tack vare sin målmedvetna energi och internationella inslag.</p><p><i>”Albumet innehåller låtar om att vara sig själv och att vara tillsammans med någon annan, samt några rader om att vara ett samhälle. Ibland föds en låt ur en tanke, men ofta låter jag rimmen föra mig till platser som jag annars inte skulle ha tittat in på”</i>, beskriver Jukka Poika albumet.</p><p>I sin nya era låter Jukka Poika på samma gång både bekant och ny. Den mjuka grooven finns fortfarande kvar, men vid sidan av den har ett skarpare sound vuxit fram. Den första singeln från albumet, Stand Back, som släpptes i januari, visade att publiken är redo för detta nästa kapitel. <br> <br>I framtiden kan vi förvänta oss mer musik, nya utgåvor och ett aktivt turnérande.</p><p>Längd: 2 h, inklusive paus</p>", "en": "<p>The long-awaited new album Comeback by Jukka Poika, the leading name in Finnish reggae, brought an end to a ten-year hiatus from releasing albums and marked the start of a new chapter in the artist’s career.</p><p>In the artist’s own words, the album features “Finnish reggae in 2026” – a familiar, recognisable sound given a modern twist by its determined energy and international influences.</p><p><i>“The album features songs about being with yourself and with others, as well as a few lines about being a society. Sometimes a song starts from a thought, but often I let the rhymes take me to places I wouldn’t otherwise have explored,”</i>, says Jukka Poika about the album.</p><p>In this new era, Jukka Poika sounds both familiar and fresh. The gentle groove is still there, but it has been joined by a sharper sound than before. The album’s first single, ‘Stand Back’, released in January, showed that the public is ready for this next chapter. <br> <br>We can look forward to more music, new releases and an active live show schedule in the future.</p><p>Duration: 2 h, incl. intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Suomireggaen kärkinimen, Jukka Pojan odotettu uusi Comeback-albumi katkaisi kymmenen vuoden albumitauon ja käynnisti uuden luvun artistin uralla.", "sv": "Det efterlängtade nya albumet Comeback av Jukka Poika, en av de främsta namnen inom finsk reggae, avslutade ett tioårigt uppehåll i skivutgivningen och inledde ett nytt kapitel i sin artistkarriär.", "en": "The long-awaited new album Comeback by Jukka Poika, the leading name in Finnish reggae, brought an end to a ten-year hiatus from releasing albums and marked the start of a new chapter in the artist’s career." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8FFCA81C52907CB650F87228EC4D7979/Jukka_Poika", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8FFCA81C52907CB650F87228EC4D7979/Jukka_Poika", "en": "http://www.vuotalo.fi/en/events/event/8FFCA81C52907CB650F87228EC4D7979/Jukka_Poika" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69567/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp7whvawi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7whvbv4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 152115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-15T06:47:28.191606Z", "last_modified_time": "2024-08-15T06:47:28.191622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Avoin kirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-13T11:41:36.844807Z", "last_modified_time": "2026-08-26T10:02:49.751097Z", "date_published": null, "start_time": "2026-09-16T14:30:00Z", "end_time": "2026-09-16T16: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, "location_extra_info": { "fi": "Apaja", "sv": "Apaja", "en": "Apaja" }, "provider": null, "name": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "description": { "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu syyskauden 2026 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja-tilassa</p><p>19.8. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Maria+Turtschaninoff%3A+Suomaa&type=AllFields\">Maria Turtschaninoff: Suomaa</a></p><p>16.9. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Irene+Zidan%3A+Is%C3%A4ni+appelsiinikukkien+maasta&type=AllFields&limit=20&sort=relevance\">Irene Zidan: Isäni appelsiininkukkien maasta</a></p><p>14.10. <a href=\"https://helmet.finna.fi/Record/helmet.2044363?sid=5488434611\">Hernán Rivera Letelier : Elokuvankertoja </a></p><p>11.11.</p><p>9.12.</p><p>Kirjat päivittyvät syksyn edetessä.</p>", "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>", "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7whvawi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp7whvage", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7whvbv4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 152115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-15T06:47:28.191606Z", "last_modified_time": "2024-08-15T06:47:28.191622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Avoin kirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-13T11:41:36.974719Z", "last_modified_time": "2026-08-26T10:02:49.703282Z", "date_published": null, "start_time": "2026-10-14T14:30:00Z", "end_time": "2026-10-14T16: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, "location_extra_info": { "fi": "Apaja", "sv": "Apaja", "en": "Apaja" }, "provider": null, "name": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "description": { "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu syyskauden 2026 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja-tilassa</p><p>19.8. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Maria+Turtschaninoff%3A+Suomaa&type=AllFields\">Maria Turtschaninoff: Suomaa</a></p><p>16.9. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Irene+Zidan%3A+Is%C3%A4ni+appelsiinikukkien+maasta&type=AllFields&limit=20&sort=relevance\">Irene Zidan: Isäni appelsiininkukkien maasta</a></p><p>14.10. <a href=\"https://helmet.finna.fi/Record/helmet.2044363?sid=5488434611\">Hernán Rivera Letelier : Elokuvankertoja </a></p><p>11.11.</p><p>9.12.</p><p>Kirjat päivittyvät syksyn edetessä.</p>", "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>", "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7whvage/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp7whu7wa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7whvbv4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 152115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-15T06:47:28.191606Z", "last_modified_time": "2024-08-15T06:47:28.191622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Avoin kirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-13T11:41:37.130238Z", "last_modified_time": "2026-08-26T10:02:49.657784Z", "date_published": null, "start_time": "2026-12-09T15:30:00Z", "end_time": "2026-12-09T17: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, "location_extra_info": { "fi": "Apaja", "sv": "Apaja", "en": "Apaja" }, "provider": null, "name": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "description": { "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu syyskauden 2026 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja-tilassa</p><p>19.8. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Maria+Turtschaninoff%3A+Suomaa&type=AllFields\">Maria Turtschaninoff: Suomaa</a></p><p>16.9. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Irene+Zidan%3A+Is%C3%A4ni+appelsiinikukkien+maasta&type=AllFields&limit=20&sort=relevance\">Irene Zidan: Isäni appelsiininkukkien maasta</a></p><p>14.10. <a href=\"https://helmet.finna.fi/Record/helmet.2044363?sid=5488434611\">Hernán Rivera Letelier : Elokuvankertoja </a></p><p>11.11.</p><p>9.12.</p><p>Kirjat päivittyvät syksyn edetessä.</p>", "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>", "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7whu7wa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp7whu62m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7whvbv4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 152115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-15T06:47:28.191606Z", "last_modified_time": "2024-08-15T06:47:28.191622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Avoin kirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-13T11:41:37.262508Z", "last_modified_time": "2026-08-26T10:02:49.608034Z", "date_published": null, "start_time": "2026-11-11T15:30:00Z", "end_time": "2026-11-11T17: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, "location_extra_info": { "fi": "Apaja", "sv": "Apaja", "en": "Apaja" }, "provider": null, "name": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "description": { "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu syyskauden 2026 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja-tilassa</p><p>19.8. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Maria+Turtschaninoff%3A+Suomaa&type=AllFields\">Maria Turtschaninoff: Suomaa</a></p><p>16.9. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Irene+Zidan%3A+Is%C3%A4ni+appelsiinikukkien+maasta&type=AllFields&limit=20&sort=relevance\">Irene Zidan: Isäni appelsiininkukkien maasta</a></p><p>14.10. <a href=\"https://helmet.finna.fi/Record/helmet.2044363?sid=5488434611\">Hernán Rivera Letelier : Elokuvankertoja </a></p><p>11.11.</p><p>9.12.</p><p>Kirjat päivittyvät syksyn edetessä.</p>", "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>", "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7whu62m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:355abf9d-9a65-4a0e-93d2-96d2d6513f30", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20403/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2386017, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-26T09:44:33.362003Z", "last_modified_time": "2026-08-26T09:44:33.362020Z", "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/398f83e9-b2ee-ef11-9341-6045bde0ef17", "name": "tedst", "cropping": "", "photographer_name": "test", "alt_text": "test", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386017/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "created_time": "2026-08-26T09:44:35.999727Z", "last_modified_time": "2026-08-26T09:44:35.999762Z", "date_published": "2026-08-26T09:42:57Z", "start_time": "2026-08-26T20:00:00Z", "end_time": "2026-08-26T21: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, "location_extra_info": { "fi": "lisätietoa" }, "provider": { "fi": "Molla Magia" }, "name": { "fi": "testi 26.8." }, "description": { "fi": "<div><p>pidempi kuvaus</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "kuvaus" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:355abf9d-9a65-4a0e-93d2-96d2d6513f30/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69565", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385453, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T09:14:35.596406Z", "last_modified_time": "2026-07-01T09:14:35.596430Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791042.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-01T09:14:35.520892Z", "last_modified_time": "2026-08-26T09:23:26.972594Z", "date_published": null, "start_time": "2026-10-20T11:00:00Z", "end_time": "2026-10-20T12: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, "location_extra_info": null, "provider": null, "name": { "fi": "Vartiokylänlahden ympäristön historiaa – Työväenopiston luento", "sv": "Historien kring Botbyviken – Föreläsning på arbetarinstitutet", "en": "History of the Vartiokylänlahti bay area – Lecture at the Finnish Adult Education Centre in Helsinki" }, "description": { "fi": "<p>Luennolla kerrotaan paikoista ja ihmisistä Vartiokylänlahden äärellä menneinä vuosisatoina sekä kurkistetaan myös alueen tulevaisuuteen.</p><p>Keskiajalla Vartiokylänlahden reunoille syntyi kaksi kylää, joista myöhemmin muodostuivat Puotilan ja Rastilan kartanot. Alueella sijaitsi myös muinaista merensalmea vartioinut linnavuori.</p><p>Luennoitsijana <b>FM Matti Lipponen</b>.<br>Kesto: 1 t 30 min<br>Vapaa pääsy</p>", "sv": "<p>Under föreläsningen berättas det om platser och människor kring Botbyviken under tidigare århundraden, och man får även en inblick i områdets framtid.</p><p>Under medeltiden uppstod två byar på stränderna kring Botbyviken, vilka senare utvecklades till Botby gård och Rastböle gård. I området fanns också ett borgberg som bevakade det forntida sundet. <br> <br>Föreläsare <b>FM Matti Lipponen</b>. <br>Längd: 1 h 30 min. <br>Fritt inträde</p>", "en": "<p>This lecture explores places and people along the shores of Vartiokylänlahti over the past centuries, while also offering a glimpse into the area’s future.</p><p>In the Middle Ages, two villages sprang up on the shores of Vartiokylänlahti, which later became the Puotila and Rastila estates. The area was also home to a hill fort that once guarded an ancient strait. <br> <br>Lecturer <b>Matti Lipponen M.A.</b> <br>Duration: 1 h 30 min <br>Free entry</p>" }, "provider_contact_info": null, "short_description": { "fi": "Luennolla kerrotaan paikoista ja ihmisistä Vartiokylänlahden äärellä menneinä vuosisatoina sekä kurkistetaan myös alueen tulevaisuuteen.", "sv": "Under föreläsningen berättas det om platser och människor kring Botbyviken under tidigare århundraden, och man får även en inblick i områdets framtid.", "en": "This lecture explores places and people along the shores of Vartiokylänlahti over the past centuries, while also offering a glimpse into the area’s future." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5B3145F34CFC6AFA0A9A55013D96AC78/Vartiokylanlahden_ympariston_historiaa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5B3145F34CFC6AFA0A9A55013D96AC78/Historien_kring_Botbyviken", "en": "http://www.vuotalo.fi/en/events/event/5B3145F34CFC6AFA0A9A55013D96AC78/History_of_the_Vartiokylanlahti_bay_area" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69565/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69564", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" }, "info_url": { "fi": "https://www.lippu.fi/event/michael-monroe-soolo-vuotalo-21815106/", "sv": "https://www.lippu.fi/event/michael-monroe-soolo-vuotalo-21815106/", "en": "https://www.lippu.fi/event/michael-monroe-soolo-vuotalo-21815106/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385452, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T09:14:35.097781Z", "last_modified_time": "2026-07-01T09:14:35.097802Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795606.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-01T09:14:34.951896Z", "last_modified_time": "2026-08-26T09:23:26.359470Z", "date_published": null, "start_time": "2026-10-17T15:00:00Z", "end_time": "2026-10-17T16:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Michael Monroe Solo Acoustic", "sv": "Michael Monroe Solo Acoustic", "en": "Michael Monroe Solo Acoustic" }, "description": { "fi": "<p>Rocklegenda Michael Monroe on yksi historian menestyneimmistä suomalaismuusikoista.</p><p>Energisen ja omaa tietään kulkevan rocktähden ura alkoi vuonna 1979 perustetun Hanoi Rocksin solistina. Yhtye on toiminut monien maailmanmaineeseen nousseiden yhtyeiden esikuvana. Hanoi Rocksin hajottua vuonna 1984 rumpali Razzlen tapaturmaisen kuoleman jälkeen, Monroe siirtyi menestyksekkäälle soolouralle. Vuoden 2012 artikkelissaan <i>The Wall Street Journal</i> kutsui Monroeta yhdeksi maailman kunnioitetuimmista rock-tähdistä.<br> <br>Viimeiset reilut kymmenen vuotta Monroe on tehnyt yhteistyötä huippulahjakkaan bändin kanssa, jossa ovat mukana Sami Yaffa (Hanoi Rocks, New York Dolls), Karl Rockfist (Glenn Danzig, Joan Osborne), Rich Jones (The Ginger Wildheart Band, The Black Halos) ja Steve Conte (New York Dolls, The Crazy Truth).</p><p>Kesto: 75 min, ei väliaikaa</p>", "sv": "<p>Rocklegenden Michael Monroe är en av de mest framgångsrika finska musikerna genom tiderna.</p><p>Karriären för den energiska rockstjärnan som går sin egen väg inleddes som solist i bandet Hanoi Rocks, som bildades 1979. Bandet har fungerat som en förebild för många band som nått världsberömmelse. Efter att Hanoi Rocks upplöstes 1984 till följd av trummisen Razzles dödsfall genom en olyckshändelse, inledde Monroe en framgångsrik solokarriär. I en artikel i <i>The Wall Street Journal</i> 2012 beskrev tidningen Monroe som en av världens mest respekterade rockstjärnor. <br> <br>Under de senaste drygt tio åren har Monroe samarbetat med ett extremt begåvat band, där bland andra ingår Sami Yaffa (Hanoi Rocks, New York Dolls), Karl Rockfist (Glenn Danzig, Joan Osborne), Rich Jones (The Ginger Wildheart Band, The Black Halos) och Steve Conte (New York Dolls, The Crazy Truth).</p><p>Längd: 75 min.</p>", "en": "<p>Rock legend Michael Monroe is one of the most successful Finnish musicians in history.</p><p>The career of this energetic rock star, who marches to the beat of his own drum, began as the lead singer of Hanoi Rocks, which was formed in 1979. The band has served as a role model for many bands that have gone on to achieve international fame. Following the break-up of Hanoi Rocks in 1984, after the accidental death of drummer Razzle, Monroe embarked on a successful solo career. In its 2012 article, <i>The Wall Street Journal</i> described Monroe as one of the world’s most revered rock stars. <br> <br>For over ten years now, Monroe has been collaborating with a highly talented band featuring Sami Yaffa (Hanoi Rocks, New York Dolls), Karl Rockfist (Glenn Danzig, Joan Osborne), Rich Jones (The Ginger Wildheart Band, The Black Halos) and Steve Conte (New York Dolls, The Crazy Truth).</p><p>Duration: 75 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Rocklegenda Michael Monroe on yksi historian menestyneimmistä suomalaismuusikoista.", "sv": "Rocklegenden Michael Monroe är en av de mest framgångsrika finska musikerna genom tiderna.", "en": "Rock legend Michael Monroe is one of the most successful Finnish musicians in history." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C5EDAC9A5824B077729DBBA33CE2319A/Michael_Monroe_Solo_Acoustic", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C5EDAC9A5824B077729DBBA33CE2319A/Michael_Monroe_Solo_Acoustic", "en": "http://www.vuotalo.fi/en/events/event/C5EDAC9A5824B077729DBBA33CE2319A/Michael_Monroe_Solo_Acoustic" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69564/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69594", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "24,80€ 20€", "sv": "24,80€ 20€", "en": "24,80€ 20€" }, "info_url": { "fi": "https://www.lippu.fi/event/muumit-pyrstotahtea-etsimassa-vuotalo-21624080/", "sv": "https://www.lippu.fi/event/muumit-pyrstotahtea-etsimassa-vuotalo-21624080/", "en": "https://www.lippu.fi/event/muumit-pyrstotahtea-etsimassa-vuotalo-21624080/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-19T09:14:09.881173Z", "last_modified_time": "2026-08-19T09:14:09.881191Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795605.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385853/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-19T09:14:09.736774Z", "last_modified_time": "2026-08-26T09:23:25.741877Z", "date_published": null, "start_time": "2026-10-16T15:00:00Z", "end_time": "2026-10-16T16: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, "location_extra_info": null, "provider": null, "name": { "fi": "Muumit: Pyrstötähteä etsimässä", "sv": "Mumintrollen: Pyrstötähteä etsimässä", "en": "Moomins: Pyrstötähteä etsimässä" }, "description": { "fi": "<p>Upouuden muumimusiikin live-esitys kutsuu niin lapset kuin aikuisetkin mukaan Muumilaakson seikkailuihin.</p><p>Sony Music tuo tutut muumihahmot uuden musiikin ja näyttämön äärelle: uusi muumialbumi saa rinnalleen musiikkiteatterimuotoisen live-esityksen <i>Pyrstötähteä etsimässä</i>. <b>Henna Tanskasen</b> käsikirjoittama ja ohjaama esitys tuo tarinan eläväksi laulun, näyttelijäntyön ja visuaalisen kerronnan keinoin. Teos saa ensi-iltansa 29.9. ja jatkaa kiertävänä esityksenä ympäri Suomen.</p><p><i>Muumipeikko ja pyrstötähti</i> -romaaniin (<i>Kometjakten</i>, 1946) perustuva esitys keskittyy teemoihin, jotka ovat keskeisiä <b>Tove Janssonin</b> alkuperäisissä tarinoissa: ystävyyteen, seikkailuun, yhdessä tekemiseen ja rohkeuteen olla oma itsensä. Uudet kappaleet laajentavat muumimusiikin perinnettä uusilla sanoituksilla ja nykyaikaisella tuotannolla, samalla kun näyttämöllä kuullaan myös yleisön rakastamia klassikoita uusina sovituksina.</p><p>Esitys sopii kaikenikäisille.<br>Kesto: 60 min</p>", "sv": "<p>Denna helt nya liveföreställning med muminmusik bjuder in både barn och vuxna till äventyr i Mumindalen.</p><p>Sony Music presenterar välkända mumintroll till ny musik och på en ny scen: Det nya muminalbumet kompletteras av en liveföreställning i musikteaterform, <i>Pyrstötähteä etsimässä</i>. Föreställningen, som är skriven och regisserad av <b>Henna Tanskanen</b>, väcker berättelsen till liv med hjälp av sång, skådespeleri och visuell berättarkonst. Föreställningen har premiär den 29 september och fortsätter sedan som en turnéföreställning runt om i Finland. <br> <br>Föreställningen, som bygger på romanen <i></i><i>Kometjakten</i> (1946), fokuserar på teman som är centrala i <b>Tove Janssons</b> ursprungliga berättelser: vänskap, äventyr, att göra saker tillsammans och modet att vara sig själv. De nya sångerna vidareutvecklar traditionen med muminmusik genom nya texter och en modern produktion, samtidigt som publikens älskade klassiker framförs på scenen i nya arrangemang.</p><p>Föreställningen lämpar sig för alla åldrar. <br>Längd: 60 min.</p>", "en": "<p>This live performance of brand-new Moomin music invites both children and adults to join in the adventures of Moominvalley.</p><p>Sony Music is bringing the familiar Moomin characters to new music and the stage: the new Moomin album is accompanied by a live musical theatre production, <i>Pyrstötähteä etsimässä</i>. Written and directed by <b>Henna Tanskanen</b>, the performance brings the story to life through song, acting and visual storytelling. The production premieres on 29 September and will then go on tour across Finland. <br> <br>Based on the novel <i>Comet in Moominland</i> (<i>Kometjakten</i>, 1946), the performance focuses on themes that are central to <b>Tove Jansson’s</b> original stories: friendship, adventure, working together and the courage to be oneself. The new songs expand on the Moomin music tradition with fresh lyrics and contemporary production, while the stage show also features new arrangements of the classics beloved by the audience.</p><p>The show is suitable for people of all ages. <br>Duration: 60 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Upouuden muumimusiikin live-esitys kutsuu niin lapset kuin aikuisetkin mukaan Muumilaakson seikkailuihin.", "sv": "Denna helt nya liveföreställning med muminmusik bjuder in både barn och vuxna till äventyr i Mumindalen.", "en": "This live performance of brand-new Moomin music invites both children and adults to join in the adventures of Moominvalley." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/57FD59216659A5CC29C5857D1B89AF2F/Muumit_Pyrstotahtea_etsimassa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/57FD59216659A5CC29C5857D1B89AF2F/Mumintrollen_Pyrstotahtea_etsimassa", "en": "http://www.vuotalo.fi/en/events/event/57FD59216659A5CC29C5857D1B89AF2F/Moomins_Pyrstotahtea_etsimassa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69594/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69563", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T08:13:37.102803Z", "last_modified_time": "2026-07-01T08:13:37.102819Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790230.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-07-01T08:13:37.003542Z", "last_modified_time": "2026-08-26T09:23:25.353682Z", "date_published": null, "start_time": "2026-10-16T07:00:00Z", "end_time": "2026-10-16T10: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, "location_extra_info": null, "provider": null, "name": { "fi": "Lomaa ja mangaa! – Sarjakuvakeskuksen työpajat syyslomalla", "sv": "Lov och manga! – Sarjakuvakeskus verkstäder under höstlovet", "en": "Break week and manga! – Comics Centre workshops during the autumn break" }, "description": { "fi": "<p>Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!</p><p>Syyslomaviikon työpajoissa hypätään sarjakuvan ja mangan maailmaan. Osallistuminen ei vaadi ennakkoilmoittautumista, voit piipahtaa työpajassa tai jäädä piirtämään pidemmäksikin aikaa. Työpaja on suunnattu koululaisille.</p><p>Työpajat Vuotalon aulassa syyslomaviikolla 42 (12.–16.10.2026):<br>ma 12.10. 15–18<br>ti 13.10. 15–18<br>ke 14.10. 10–13<br>to 15.10. 10–13<br>pe 16.10. 10–13</p>", "sv": "<p>Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!</p><p>Under höstlovsveckans verkstäder dyker vi in i seriernas och mangans värld. Det krävs ingen föranmälan för att delta – du kan göra ett kort besök på verkstaden eller stanna kvar och rita en längre stund. Verkstaden är avsedd för barn i skolåldern. <br> <br>Verkstäder i Nordhusets entréhall under höstlovsveckan 42 (12–16.10.2026): <br>må 12.10 kl. 15–18 <br>ti 13.10 kl. 15–18 <br>on 14.10 kl. 10–13 <br>to 15.10 kl. 10–13 <br>fr 16.10 kl. 10–13</p>", "en": "<p>Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!</p><p>During the autumn break week’s workshops, we take a dive into the world of comics and manga. No advance registration is required; you can just pop into the workshop or stay and draw for as long as you like. The workshop is aimed at schoolchildren. <br> <br>Workshops in the Vuosaari House lobby during the autumn break week (12–16 October 2026): <br>Monday 12 October at 15.00–18.00 <br>Tuesday 13 October at 15.00–18.00 <br>Wednesday 14 October at 10.00–13.00 <br>Thursday 15 October at 10.00–13.00 <br>Friday 16 October at 10.00–13.00</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!", "sv": "Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!", "en": "Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C4ADDA179BBB20F5F3613C702103FD61/Lomaa_ja_mangaa_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C4ADDA179BBB20F5F3613C702103FD61/Lov_och_manga_", "en": "http://www.vuotalo.fi/en/events/event/C4ADDA179BBB20F5F3613C702103FD61/Break_week_and_manga_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69563/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69562", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385449, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T08:13:36.632569Z", "last_modified_time": "2026-07-01T08:13:36.632585Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790229.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385449/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-07-01T08:13:36.528061Z", "last_modified_time": "2026-08-26T09:23:24.780668Z", "date_published": null, "start_time": "2026-10-15T07:00:00Z", "end_time": "2026-10-15T10: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, "location_extra_info": null, "provider": null, "name": { "fi": "Lomaa ja mangaa! – Sarjakuvakeskuksen työpajat syyslomalla", "sv": "Lov och manga! – Sarjakuvakeskus verkstäder under höstlovet", "en": "Break week and manga! – Comics Centre workshops during the autumn break" }, "description": { "fi": "<p>Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!</p><p>Syyslomaviikon työpajoissa hypätään sarjakuvan ja mangan maailmaan. Osallistuminen ei vaadi ennakkoilmoittautumista, voit piipahtaa työpajassa tai jäädä piirtämään pidemmäksikin aikaa. Työpaja on suunnattu koululaisille.</p><p>Työpajat Vuotalon aulassa syyslomaviikolla 42 (12.–16.10.2026):<br>ma 12.10. 15–18<br>ti 13.10. 15–18<br>ke 14.10. 10–13<br>to 15.10. 10–13<br>pe 16.10. 10–13</p>", "sv": "<p>Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!</p><p>Under höstlovsveckans verkstäder dyker vi in i seriernas och mangans värld. Det krävs ingen föranmälan för att delta – du kan göra ett kort besök på verkstaden eller stanna kvar och rita en längre stund. Verkstaden är avsedd för barn i skolåldern. <br> <br>Verkstäder i Nordhusets entréhall under höstlovsveckan 42 (12–16.10.2026): <br>må 12.10 kl. 15–18 <br>ti 13.10 kl. 15–18 <br>on 14.10 kl. 10–13 <br>to 15.10 kl. 10–13 <br>fr 16.10 kl. 10–13</p>", "en": "<p>Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!</p><p>During the autumn break week’s workshops, we take a dive into the world of comics and manga. No advance registration is required; you can just pop into the workshop or stay and draw for as long as you like. The workshop is aimed at schoolchildren. <br> <br>Workshops in the Vuosaari House lobby during the autumn break week (12–16 October 2026): <br>Monday 12 October at 15.00–18.00 <br>Tuesday 13 October at 15.00–18.00 <br>Wednesday 14 October at 10.00–13.00 <br>Thursday 15 October at 10.00–13.00 <br>Friday 16 October at 10.00–13.00</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!", "sv": "Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!", "en": "Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B45D28C36D1DE5A8533D7E942B682AC3/Lomaa_ja_mangaa_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B45D28C36D1DE5A8533D7E942B682AC3/Lov_och_manga_", "en": "http://www.vuotalo.fi/en/events/event/B45D28C36D1DE5A8533D7E942B682AC3/Break_week_and_manga_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69562/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69561", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385448, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T08:13:36.046932Z", "last_modified_time": "2026-07-01T08:13:36.046949Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790228.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385448/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-07-01T08:13:35.914468Z", "last_modified_time": "2026-08-26T09:23:24.006296Z", "date_published": null, "start_time": "2026-10-14T07:00:00Z", "end_time": "2026-10-14T10: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, "location_extra_info": null, "provider": null, "name": { "fi": "Lomaa ja mangaa! – Sarjakuvakeskuksen työpajat syyslomalla", "sv": "Lov och manga! – Sarjakuvakeskus verkstäder under höstlovet", "en": "Break week and manga! – Comics Centre workshops during the autumn break" }, "description": { "fi": "<p>Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!</p><p>Syyslomaviikon työpajoissa hypätään sarjakuvan ja mangan maailmaan. Osallistuminen ei vaadi ennakkoilmoittautumista, voit piipahtaa työpajassa tai jäädä piirtämään pidemmäksikin aikaa. Työpaja on suunnattu koululaisille.</p><p>Työpajat Vuotalon aulassa syyslomaviikolla 42 (12.–16.10.2026):<br>ma 12.10. 15–18<br>ti 13.10. 15–18<br>ke 14.10. 10–13<br>to 15.10. 10–13<br>pe 16.10. 10–13</p>", "sv": "<p>Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!</p><p>Under höstlovsveckans verkstäder dyker vi in i seriernas och mangans värld. Det krävs ingen föranmälan för att delta – du kan göra ett kort besök på verkstaden eller stanna kvar och rita en längre stund. Verkstaden är avsedd för barn i skolåldern. <br> <br>Verkstäder i Nordhusets entréhall under höstlovsveckan 42 (12–16.10.2026): <br>må 12.10 kl. 15–18 <br>ti 13.10 kl. 15–18 <br>on 14.10 kl. 10–13 <br>to 15.10 kl. 10–13 <br>fr 16.10 kl. 10–13</p>", "en": "<p>Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!</p><p>During the autumn break week’s workshops, we take a dive into the world of comics and manga. No advance registration is required; you can just pop into the workshop or stay and draw for as long as you like. The workshop is aimed at schoolchildren. <br> <br>Workshops in the Vuosaari House lobby during the autumn break week (12–16 October 2026): <br>Monday 12 October at 15.00–18.00 <br>Tuesday 13 October at 15.00–18.00 <br>Wednesday 14 October at 10.00–13.00 <br>Thursday 15 October at 10.00–13.00 <br>Friday 16 October at 10.00–13.00</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!", "sv": "Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!", "en": "Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E98F56C704D61D00F228CCE244634D85/Lomaa_ja_mangaa_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E98F56C704D61D00F228CCE244634D85/Lov_och_manga_", "en": "http://www.vuotalo.fi/en/events/event/E98F56C704D61D00F228CCE244634D85/Break_week_and_manga_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69561/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69560", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385444, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T07:13:37.527805Z", "last_modified_time": "2026-07-01T07:13:37.527826Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790227.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385444/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-07-01T07:13:37.421787Z", "last_modified_time": "2026-08-26T09:23:23.585839Z", "date_published": null, "start_time": "2026-10-13T12:00:00Z", "end_time": "2026-10-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Lomaa ja mangaa! – Sarjakuvakeskuksen työpajat syyslomalla", "sv": "Lov och manga! – Sarjakuvakeskus verkstäder under höstlovet", "en": "Break week and manga! – Comics Centre workshops during the autumn break" }, "description": { "fi": "<p>Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!</p><p>Syyslomaviikon työpajoissa hypätään sarjakuvan ja mangan maailmaan. Osallistuminen ei vaadi ennakkoilmoittautumista, voit piipahtaa työpajassa tai jäädä piirtämään pidemmäksikin aikaa. Työpaja on suunnattu koululaisille.</p><p>Työpajat Vuotalon aulassa syyslomaviikolla 42 (12.–16.10.2026):<br>ma 12.10. 15–18<br>ti 13.10. 15–18<br>ke 14.10. 10–13<br>to 15.10. 10–13<br>pe 16.10. 10–13</p>", "sv": "<p>Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!</p><p>Under höstlovsveckans verkstäder dyker vi in i seriernas och mangans värld. Det krävs ingen föranmälan för att delta – du kan göra ett kort besök på verkstaden eller stanna kvar och rita en längre stund. Verkstaden är avsedd för barn i skolåldern. <br> <br>Verkstäder i Nordhusets entréhall under höstlovsveckan 42 (12–16.10.2026): <br>må 12.10 kl. 15–18 <br>ti 13.10 kl. 15–18 <br>on 14.10 kl. 10–13 <br>to 15.10 kl. 10–13 <br>fr 16.10 kl. 10–13</p>", "en": "<p>Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!</p><p>During the autumn break week’s workshops, we take a dive into the world of comics and manga. No advance registration is required; you can just pop into the workshop or stay and draw for as long as you like. The workshop is aimed at schoolchildren. <br> <br>Workshops in the Vuosaari House lobby during the autumn break week (12–16 October 2026): <br>Monday 12 October at 15.00–18.00 <br>Tuesday 13 October at 15.00–18.00 <br>Wednesday 14 October at 10.00–13.00 <br>Thursday 15 October at 10.00–13.00 <br>Friday 16 October at 10.00–13.00</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!", "sv": "Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!", "en": "Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/76A90621BC83A01EA4247CB1CC588C89/Lomaa_ja_mangaa_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/76A90621BC83A01EA4247CB1CC588C89/Lov_och_manga_", "en": "http://www.vuotalo.fi/en/events/event/76A90621BC83A01EA4247CB1CC588C89/Break_week_and_manga_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69560/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69499", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385350, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-24T12:14:47.125037Z", "last_modified_time": "2026-06-24T12:14:47.125053Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795697.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385350/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-24T12:14:47.026067Z", "last_modified_time": "2026-08-26T09:23:23.274002Z", "date_published": null, "start_time": "2026-10-13T07:00:00Z", "end_time": "2026-10-13T08:20:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Syyslomaleffa: Muumi ja punainen pyrstötähti (3)", "sv": "Höstlovsfilm: Mumintrollet och kometjakten (3)", "en": "Autumn Break Movie: Moomins and the Comet Chase (3)" }, "description": { "fi": "<p>Tule Vuotaloon elokuviin syyslomalla!</p><p>Outo pöly peittää Muumilaakson ja Piisamirotta ennustaa maailmanloppua. Mikä on tämä uhka avaruudesta?</p><p>Muumipeikko, Nuuskamuikkunen ja Nipsu rakentavat Muumipapan avustuksella lautan ja lähtevät selvittämään asiaa Yksinäisille vuorille. Ehkäpä tähtitornin viisaat professorit osaavat kertoa, mistä oikein on kyse.</p><p>Tielle osuvat paitsi vanhat ystävät Niiskuneiti, Niisku ja Hemuli, mutta myös uudet, kummalliset otukset ja vaarat. Kesäinen lauttaretki muuttuu jännittäväksi ja katsojatkin tempaistaan mukaan seikkailuun elokuvassa <i>Muumi ja punainen pyrstötähti</i>.</p><p>Osa Vuosalista on varattu ryhmille, mutta myös syyslomaa viettävät koululaiset ja aikuiset ovat tervetulleita näytökseen!</p><p>Kesto: 77 min<br>Suositusikä: yli 3-vuotiaille<br>Valmistusvuosi: 2010<br>Kieli: suomi<br>Vapaa pääsy</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprm6jcq\">Ryhmille ilmoittautuminen osoitteessa kultus.hel.fi</u></a>.</p>", "sv": "<p>Kom till Nordhuset för att se på film under höstlovet!</p><p>Ett märkligt damm täcker Mumindalen och Bisamråttan förutspår världens undergång. Vad är det här hotet från rymden?</p><p>Mumintrollet, Snusmumriken och Sniff bygger en flotte med Muminpappans hjälp och ger sig iväg till Ensliga bergen för att reda ut saken. Kanske kan de kloka professorerna vid observatoriet förklara vad det egentligen är fråga om. <br> <br>På vägen möter de inte bara sina gamla vänner Snorkfröken, Snorken och Hemulen, utan också nya, märkliga varelser och faror. En sommarutflykt med flotte förvandlas till ett spännande äventyr, och också tittarna dras med in i äventyret i filmen <i>Mumintrollet och kometjakten</i>. <br> <br>En del av Nordsalen är reserverad för grupper, men också skolbarn och vuxna som har höstlov är välkomna till föreställningen! <br> <br>Längd: 77 min. <br>Åldersrekommendation: barn över 3 år <br>Produktionsår: 2010 <br>Språk: finska <br>Fritt inträde <br> <br><u><a href=\"https://kultus.hel.fi/sv/event/kultus:agpprm6jcq\">Anmälan för grupper på kultus.hel.fi</u></a>.</p>", "en": "<p>Come to Vuosaari House to watch films during the autumn break!</p><p>With Moominpappa’s help, Moomintroll, Snufkin and Sniff build a raft and set off for the Lonely Mountains to get to the bottom of the matter. Perhaps the wise professors at the observatory will be able to explain what is going on. <br> <br>On their journey, they encounter not only their old friends Snorkmaiden, Snork and Hemulens, but also new, strange creatures and dangers. A summer raft trip turns into an exciting adventure, and viewers are swept up in the excitement in the film <i>Moomins and the Comet Chase</i>. <br> <br>A section of Vuosali Hall is reserved for groups, but schoolchildren on their autumn break and adults are also welcome to attend the screening! <br> <br>Duration: 77 min <br>Recommended age: 3+ <br>Year of release: 2010 <br>Language: Finnish <br>Free entry <br> <br><u><a href=\"https://kultus.hel.fi/en/event/kultus:agpprm6jcq\">Registration for groups via kultus.hel.fi</u></a>.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule Vuotaloon elokuviin syyslomalla!", "sv": "Kom till Nordhuset för att se på film under höstlovet!", "en": "Come to Vuosaari House to watch films during the autumn break!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8FF85FC2931C8409947DC910F5458AFB/Syyslomaleffa_Muumi_ja_punainen_pyrstotahti_3_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8FF85FC2931C8409947DC910F5458AFB/Hostlovsfilm_Mumintrollet_och_kometjakten_3_", "en": "http://www.vuotalo.fi/en/events/event/8FF85FC2931C8409947DC910F5458AFB/Autumn_Break_Movie_Moomins_and_the_Comet_Chase_3_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69499/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69559", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385443, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T07:13:36.939307Z", "last_modified_time": "2026-07-01T07:13:36.939323Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790226.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385443/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-07-01T07:13:36.781432Z", "last_modified_time": "2026-08-26T09:23:22.869861Z", "date_published": null, "start_time": "2026-10-12T12:00:00Z", "end_time": "2026-10-12T15: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, "location_extra_info": null, "provider": null, "name": { "fi": "Lomaa ja mangaa! – Sarjakuvakeskuksen työpajat syyslomalla", "sv": "Lov och manga! – Sarjakuvakeskus verkstäder under höstlovet", "en": "Break week and manga! – Comics Centre workshops during the autumn break" }, "description": { "fi": "<p>Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!</p><p>Syyslomaviikon työpajoissa hypätään sarjakuvan ja mangan maailmaan. Osallistuminen ei vaadi ennakkoilmoittautumista, voit piipahtaa työpajassa tai jäädä piirtämään pidemmäksikin aikaa. Työpaja on suunnattu koululaisille.</p><p>Työpajat Vuotalon aulassa syyslomaviikolla 42 (12.–16.10.2026):<br>ma 12.10. 15–18<br>ti 13.10. 15–18<br>ke 14.10. 10–13<br>to 15.10. 10–13<br>pe 16.10. 10–13</p>", "sv": "<p>Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!</p><p>Under höstlovsveckans verkstäder dyker vi in i seriernas och mangans värld. Det krävs ingen föranmälan för att delta – du kan göra ett kort besök på verkstaden eller stanna kvar och rita en längre stund. Verkstaden är avsedd för barn i skolåldern. <br> <br>Verkstäder i Nordhusets entréhall under höstlovsveckan 42 (12–16.10.2026): <br>må 12.10 kl. 15–18 <br>ti 13.10 kl. 15–18 <br>on 14.10 kl. 10–13 <br>to 15.10 kl. 10–13 <br>fr 16.10 kl. 10–13</p>", "en": "<p>Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!</p><p>During the autumn break week’s workshops, we take a dive into the world of comics and manga. No advance registration is required; you can just pop into the workshop or stay and draw for as long as you like. The workshop is aimed at schoolchildren. <br> <br>Workshops in the Vuosaari House lobby during the autumn break week (12–16 October 2026): <br>Monday 12 October at 15.00–18.00 <br>Tuesday 13 October at 15.00–18.00 <br>Wednesday 14 October at 10.00–13.00 <br>Thursday 15 October at 10.00–13.00 <br>Friday 16 October at 10.00–13.00</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kokeilemaan mangakan eri työvälineitä ja tekniikoita, saa vinkkejä omaan sarjikseen tai kehitä omaa hahmoa!", "sv": "Kom och prova olika verktyg och tekniker inom mangakonst, få tips för din egen serie eller utveckla din egen karaktär!", "en": "Come and try out the various tools and techniques used in manga, get some tips for your own comic, or develop your own character!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CCE089F94091037E4E60FD8E168663D1/Lomaa_ja_mangaa_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CCE089F94091037E4E60FD8E168663D1/Lov_och_manga_", "en": "http://www.vuotalo.fi/en/events/event/CCE089F94091037E4E60FD8E168663D1/Break_week_and_manga_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69559/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69716", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385852, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-19T08:14:33.107800Z", "last_modified_time": "2026-08-19T08:14:33.107816Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795603.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385852/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-19T08:14:32.979001Z", "last_modified_time": "2026-08-26T09:23:22.292115Z", "date_published": null, "start_time": "2026-10-10T15:00:00Z", "end_time": "2026-10-10T17: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, "location_extra_info": null, "provider": null, "name": { "fi": "Vuosaari-Seuran 60-vuotisjuhlagaala Vuosalissa", "sv": "Nordsjö-sällskapets 60-årsjubileumsgala i Nordsalen", "en": "Vuosaari-seura’s 60th Anniversary Gala in Vuosali Hall" }, "description": { "fi": "<p>Vuosaari-Seura täyttää tänä vuonna 60 vuotta ja kutsuu kaikkia vuosaarelaisia juhlimaan Vuotaloon.</p><p>Juhlagaalan ohjelmassa on paikallisten toimijoiden ja taiteilijoiden monipuolinen kattaus musiikkia, teatteria ja sirkusta. Hugo-kalastaja (<b>Eero Hilden</b>) ja teatteriohjaaja <b>Nea Virtanen</b> vievät osallistujat matkalle Vuosaareen historiaan, nykyhetkeen ja tulevaisuuteen.</p><p>Koko perheen juhlagaalat järjestetään kahtena iltana: 9. ja 10.10. Perjantain 9.10. gaala sopii 12 vuotta täyttäneille lapsille. 10.10. gaalassa on ohjelmaa myös pienemmille, ja se sopii 5 vuotta täyttäneille.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi<br>Kesto: 2 tuntia, sisältäen väliajan<br>Ikäsuositus: 12 + (pe 9.10.) / 5 + (la 10.10.)</p><p>Ilmaiset liput 10.9.2026 alkaen Fienta.fi</p><p>Pe 9.10.2026 <u><a https://fienta.com/fi/vuosaari-seuran-60-v-juhlagaala-vuotalossa </u></a>.</p><p>La 10.10.2026 <u><ahttps://fienta.com/fi/vuosaari-seuran-60-v-juhlagaala-vuotalossa-183011 </u></a>.</p><p>Järjestäjä: Vuosaari-Seura https://kaupunginosat.fi/vuosaari/</p><p>Tapahtuman järjestää: Vuosaari-Seura</p><p>https://kaupunginosat.fi/vuosaari/</p>", "sv": "<p>Nordsjö-sällskapet firar i år sitt 60-årsjubileum och bjuder in alla invånare i Nordsjö att fira på Nordhuset.</p><p>Programmet för festgalan består av ett varierat utbud av musik, teater och cirkus från lokala aktörer och konstnärer. Fiskaren Hugo (<b>Eero Hilden</b>) och teaterregissören <b>Nea Virtanen</b> tar deltagarna med på en resa genom Nordsjös historia, nutid och framtid. <br> <br>Festgalor för hela familjen ordnas under två kvällar: 9 och 10 oktober. Galan på fredagen den 9 oktober är avsedd för barn som har fyllt 12 år. Vid galan den 10 oktober finns det program också för de yngre, och den är lämplig för barn som fyllt 5 år.</p><p>Varmt välkommen! <br> <br>Språk: finska <br>Längd: 2 h, inklusive paus</p><p>Åldersrekommendation: 12+ (fr 9.10)/5+ (lö 10.10)</p><p>Fritt inträde: <u><a href=\"https://fienta.com/fi/o/39939”>Obligatorisk platsbokning i förväg på fienta.com (på finska)</u></a>.</p><p>Evenemangsarrangör: Nordsjö-sällskapet</p>", "en": "<p>The Vuosaari-seura association is celebrating its 60th anniversary this year and invites all Vuosaari residents to join the celebrations at Vuosaari House.</p><p>The gala programme features a diverse line-up of music, theatre and circus performances by local operators and artists. Hugo the fisherman (<b>Eero Hilden</b>) and theatre director <b>Nea Virtanen</b> take participants on a journey through Vuosaari’s history, present and future. <br> <br>The gala events for the whole family are held over two evenings: 9 and 10 October. The gala on Friday 9 October is suitable for children aged 12 and over. The gala on 10 October features entertainment for younger children as well, and is suitable for ages 5 and over.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Duration: 2 h, incl. intermission</p><p>Recommended age: 12+ (Fri 9 Oct) / 5+ (Sat 10 Oct)</p><p>Free entry; <u><a href=\"https://fienta.com/fi/o/39939\">advance registration is required via fienta.com (in Finnish)</u></a>.</p><p>The event is organised by: Vuosaari-seura</p>" }, "provider_contact_info": null, "short_description": { "fi": "Vuosaari-Seura täyttää tänä vuonna 60 vuotta ja kutsuu kaikkia vuosaarelaisia juhlimaan Vuotaloon.", "sv": "Nordsjö-sällskapet firar i år sitt 60-årsjubileum och bjuder in alla invånare i Nordsjö att fira på Nordhuset.", "en": "The Vuosaari-seura association is celebrating its 60th anniversary this year and invites all Vuosaari residents to join the celebrations at Vuosaari House." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DD96E0A286BC606698516CF4D91E76DB/Vuosaari-Seuran_60-vuotisjuhlagaala_Vuosalissa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DD96E0A286BC606698516CF4D91E76DB/Nordsjo-sallskapets_60-arsjubileumsgala_i_Nordsalen", "en": "http://www.vuotalo.fi/en/events/event/DD96E0A286BC606698516CF4D91E76DB/Vuosaari-seura_s_60th_Anniversary_Gala_in_Vuosali_Hall_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69716/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }