Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=38®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=39®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=37®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:66866", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "27/34 €", "sv": "27/34 €", "en": "27/34 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/", "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/", "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490401, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T09:14:03.552368Z", "last_modified_time": "2025-08-18T09:14:03.552388Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775701.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490401/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-18T09:14:03.434440Z", "last_modified_time": "2025-09-26T10:13:29.824937Z", "date_published": null, "start_time": "2025-10-17T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/679F0DAC168B065FC21B6C3FD613D11C/The_Great_Helsinki_Swing_Big_Band_It_s_a_Swingin_Affair_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/679F0DAC168B065FC21B6C3FD613D11C/The_Great_Helsinki_Swing_Big_Band_It_s_a_Swingin_Affair_", "en": "http://www.savoyteatteri.fi/en/events/event/679F0DAC168B065FC21B6C3FD613D11C/The_Great_Helsinki_Swing_Big_Band_It_s_a_Swingin_Affair_" }, "name": { "fi": "The Great Helsinki Swing Big Band: \"It's a Swingin Affair\"", "sv": "The Great Helsinki Swing Big Band: \"It's a Swingin Affair\"", "en": "The Great Helsinki Swing Big Band: \"It's a Swingin Affair\"" }, "description": { "fi": "<p>Vuonna 2005 perustettu <b>The Great Helsinki Swing Big Band</b> on Suomen ainoa perinteiseen swing-aikakauden big band -musiikkiin erikoistunut musiikin ammattilaisista koostuva orkesteri. Orkesteri vaalii monimuotoista swing-musiikin historiaa esittämällä swing-aikakauden mestariteoksia mahdollisimman autenttisesti. Tässä konsertissa musiikkinsa kautta mukana ovat Glenn Miller, Tommy Dorsey, Gene Grupa, Frank Sinatra ja Anita O Day. Orkesterin solisteina toimivat <b>Annimaria Rinne, Juki Välipakka</b> ja <b>Hanne Rouvalin</b> luotsaama <b>The Oldinaires-lauluyhtye</b>. Konsertin johtaa <b>Antti Rissanen</b>.</p><p>Kesto n. 2 h 30min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>The Great Helsinki Swing Big Band grundades 2005 och är Finlands enda orkester med professionella musiker som specialiserat sig på traditionell storbandsmusik från swingeran. Orkestern hyllar swingmusikens mångfacetterade historia genom att på ett så autentiskt sätt som möjligt framföra mästerverk från swingeran. Denna konsert presenterar Glenn Miller, Tommy Dorsey, Gene Grupa, Frank Sinatra och Anita O’Day genom deras musik. Orkesterns solister är Annimaria Rinne, Juki Välipakka och The Oldinaires, en vokalensemble under ledning av Hanne Rouval. Konserten leds av Antti Rissanen.</p><p>Längd ca 2 h 30 min., inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>Founded in 2005, The Great Helsinki Swing Big Band is Finland's only orchestra of music professionals specialising in traditional swing-era big band music. The orchestra strives to cherish the diverse history of swing music by performing the masterpieces of the swing era as authentically as possible. Through the music of old masters, this concert will feature Glenn Miller, Tommy Dorsey, Gene Grupa, Frank Sinatra and Anita O'Day. The soloists of the orchestra are Annimaria Rinne, Juki Välipakka and The Oldinaires, a vocal ensemble led by Hanne Rouvali. The concert will be conducted by Antti Rissanen.</p><p>Duration approx. 2 h 30 min, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri & The Great Helsinki Swing Big Band -yhdistys ry", "sv": "Savoy-teatteri & The Great Helsinki Swing Big Band -yhdistys ry", "en": "Savoy-teatteri & The Great Helsinki Swing Big Band -yhdistys ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66866/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66988", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "36,50-64,50 €", "sv": "36,50-64,50 €", "en": "36,50-64,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3849337", "sv": "https://www.lippu.fi/eventseries/name-3849337", "en": "https://www.lippu.fi/eventseries/name-3849337" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490644, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-05T14:14:26.875713Z", "last_modified_time": "2025-09-05T14:14:26.875731Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777390.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490644/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-05T14:14:26.740219Z", "last_modified_time": "2025-09-26T10:13:28.327469Z", "date_published": null, "start_time": "2025-10-13T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Ainutlaatuinen Alice – Amazing Circus Show valloittaa lokakuussa Suomen!", "sv": "Den unika Alice – Amazing Circus Show intar Finland i oktober!", "en": "The unique ‘Alice – Amazing Circus Show’ takes over Finland in October!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5570E9A4591420C282C5787E399EA0C5/Alice_Amazing_Circus_Show", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5570E9A4591420C282C5787E399EA0C5/Alice_Amazing_Circus_Show", "en": "http://www.savoyteatteri.fi/en/events/event/5570E9A4591420C282C5787E399EA0C5/Alice_Amazing_Circus_Show" }, "name": { "fi": "Alice – Amazing Circus Show", "sv": "Alice – Amazing Circus Show", "en": "Alice – Amazing Circus Show" }, "description": { "fi": "<p>Ainutlaatuinen Alice – Amazing Circus Show valloittaa lokakuussa Suomen!</p><p>Henkeäsalpaavaa sirkustaidetta, modernia koreografiaa, leikkisää puvustusta ja unenomaisia lavasteita – klassikkotarina Liisan seikkailuista Ihmemaassa ei ole koskaan näyttänyt näin upealta!</p><p>Ukrainalaisen Eastfire-tuotannon Liisa Ihmemaassa -sirkusesitys on hurmannut yleisön ympäri Eurooppaa, ja nyt se tulee vihdoin kiertueelle myös Suomeen. Tämä uskomattomia sirkustaitoja, tanssia, teatteria ja huumoria yhdistävä spektaakkeli vie kaikenikäiset katsojat keskelle värikylläistä fantasiamaailmaa, jossa liike, luovuus ja tarina yhdistyvät ennennäkemättömällä tavalla. Kokonaisuuden kruunaavat viimeisintä teknologiaa hyödyntävät erikoistehosteet.</p><p>Viihdyttävä show herättää kaikille tutut Liisa Ihmemaassa -hahmot eloon. Lavalla nähdään muun muassa hämmästyttävää akrobatiaa, jongleerausta, trampoliinitemppuja ja notkeutta, jollaista et tiennyt olevan olemassakaan. Ilmiömäisten esiintyjien loppuun asti hiottu ammattimaisuus saa katsojat haukkomaan henkeään ja tuntemaan, että mikä tahansa on mahdollista.</p><p>Unohtumaton ja mielikuvitusta kutkuttava show on elämys niin lapsille, nuorille kuin aikuisille.</p><p>Helsingin yleisö pääsee kokemaan tämän taianomaisen esityksen Savoy-teatterissa. Helsingin lisäksi esitys nähdään myös Kuopiossa 15.10., Tampereella 16.10., Lahdessa 17.10. ja Jyväskylässä 18.10.</p><p>Esityksen kesto: 1 h 30 min (ei väliaikaa).</p>", "sv": "<p>Den unika Alice – Amazing Circus Show intar Finland i oktober!</p><p>Hisnande cirkuskonst, modern koreografi, lekfulla kostymer och drömlika kulisser – den klassiska berättelsen om Alice i Underlandet har aldrig sett så här fantastisk ut!</p><p>Den ukrainska produktionen Eastfires cirkusföreställning Alice i Underlandet har fängslat publiken runt om i Europa, och nu kommer den äntligen på turné till Finland. Detta spektakel med otroliga cirkuskonster, dans, teater och humor tar med åskådare i alla åldrar till en färgstark fantasivärld, där rörelse, kreativitet och berättelse kombineras på ett aldrig tidigare skådat sätt. Helheten kröns av specialeffekter som skapas med hjälp av den senaste tekniken.</p><p>Den underhållande showen väcker de välkända karaktärerna från Alice i Underlandet till liv. På scenen får du se bland annat fantastisk akrobatik, jonglering, trampolintrick och smidighet som du inte ens visste fanns. Den perfekt finslipade professionalismen hos de fenomenala artisterna får publiken att dra efter andan och känna att allt är möjligt.</p><p>Den oförglömliga och fantasifulla showen är en upplevelse för både barn, ungdomar och vuxna.</p><p>Föreställningens längd: 1 h 30 min. (ingen paus).</p>", "en": "<p>The unique ‘Alice – Amazing Circus Show’ takes over Finland in October!</p><p>Breathtaking circus art, modern choreography, playful costumes and dreamlike sets – the classic story of Alice's adventures in Wonderland has never looked so amazing!</p><p>The Alice in Wonderland circus performance by the Ukrainian production Eastfire has been captivating audiences across Europe, and now it's finally coming to tour Finland. This spectacle of incredible circus skills, dance, theatre and humour takes audiences of all ages on a journey to a colourful fantasy world where movement, creativity and storytelling come together in ways never seen before. The performance is enhanced even further by special effects using the latest technology.</p><p>This entertaining show brings the familiar Alice in Wonderland characters to life. The audience will get to enjoy amazing acrobatics, juggling, trampoline tricks and flexibility that you never knew even existed. The polished professionalism of the phenomenal performers will make the audience gasp in wonder and believe that anything is possible.</p><p>The unforgettable and imaginative show is an experience for children, young people and adults alike.</p><p>Helsinki audiences will be able to experience this magical performance at the Savoy Theatre. In addition to Helsinki, the show will also be performed in Kuopio on 15 October, Tampere on 16 October, Lahti on 17 October and Jyväskylä on 18 October.</p><p>Duration of the performance: 1 h 30 min (no intermission).</p>" }, "location_extra_info": null, "provider": { "fi": "Aftersunset Oy", "sv": "Aftersunset Oy", "en": "Aftersunset Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66988/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65863", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "39,90 €, VIP 79,90 €", "sv": "39,90 €, VIP 79,90 €", "en": "39,90 €, VIP 79,90 €" }, "info_url": { "fi": "https://www.lippu.fi/event/20038134", "sv": "https://www.lippu.fi/event/20038134", "en": "https://www.lippu.fi/event/20038134" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 452087, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-02T10:13:40.472859Z", "last_modified_time": "2025-04-02T10:13:40.472875Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765974.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/452087/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-02T10:13:40.444906Z", "last_modified_time": "2025-09-26T10:13:27.902501Z", "date_published": null, "start_time": "2025-10-12T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Ronn Moss kiertueelle Suomeen – Mahdollisuus kokea legendaarinen tähti livenä!", "sv": "Ronn Moss på turné i Finland – en chans att uppleva den legendariska stjärnan live!", "en": "Ronn Moss to tour Finland – A chance to experience the legendary star live!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EB7648A698FBD377D931CE713CF12CF2/Evening_with_Ronn_Moss", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/EB7648A698FBD377D931CE713CF12CF2/Evening_with_Ronn_Moss", "en": "http://www.savoyteatteri.fi/en/events/event/EB7648A698FBD377D931CE713CF12CF2/Evening_with_Ronn_Moss" }, "name": { "fi": "Evening with Ronn Moss", "sv": "Evening with Ronn Moss", "en": "Evening with Ronn Moss" }, "description": { "fi": "<p>Ronn Moss kiertueelle Suomeen – Mahdollisuus kokea legendaarinen tähti livenä!</p><p>Maailmantähti <b>Ronn Moss</b> saapuu Suomeen lokakuussa. Kiertue tarjoaa harvinaislaatuisen tilaisuuden nähdä Ronnin tunnelmallinen lavashow ja kokea hänen ikoninen karismansa livenä. <i>“An evening with Ronn Moss”</i> -show yhdistää musiikin ja tarinankerronnan, vieden yleisön Ronn Mossin elämän käännekohtiin ja uran huippuhetkiin.</p><p>Ronn Moss on yhdysvaltalainen näyttelijä ja muusikko, joka tunnetaan parhaiten roolistaan Ridge Forresterina suosituissa <i>The Bold and the Beautiful</i> -saippuasarjassa. Näyttelijäntyönsä lisäksi hän on Player-yhtyeen jäsen, jonka suurimpia hittejä ovat muun muassa <i>“Baby Come Back”</i> ja <i>“This Time I'm in It for Love”</i>.</p><p>Kovana Suomi-fanina Ronn Moss on vieraillut Suomessa useita kertoja. Huhtikuussa 2022 hän esiintyi MTV:n <i>Huomenta Suomi</i> -ohjelmassa ensimmäistä kertaa kymmeneen vuoteen, keskustellen terveellisistä elämäntavoistaan. Kesällä 2022 Moss vieraili Suomessa osallistuakseen <i>Vain elämää</i> -ohjelman kuvauksiin. Lisäksi hän yllätti suomalaiset lähettämällä videotervehdyksen <i>Huomenta Suomen</i> 35- vuotisjuhlalähetyksessä, jossa hän muisteli aikaisempia vierailujaan Suomessa ja kiitti fanejaan. Vuonna 2025 Ellen Jokikunnas vieraili <i>Talo Italiassa</i> -ohjelmassa Ronnin Italian kodissa.</p><p>Varmista paikkasi ja tule kokemaan tämä ainutlaatuinen ilta Ronn Mossin seurassa!</p><p><b>VIP-lippu</b> sisältää pääsylipun, fanituotelahjan ja tapaamisen artistin kanssa VIP-lipun lunastaneiden kesken.</p><p>Kesto n. 2 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Ronn Moss på turné i Finland – en chans att uppleva den legendariska stjärnan live!</p><p>Världsstjärnan Ronn Moss kommer till Finland i oktober. Turnén ger publiken en sällsynt möjlighet att se Ronns stämningsfulla scenshow och uppleva hans ikoniska karisma live. An evening with Ronn Moss kombinerar musik och historieberättande, och avslöjar vändpunkterna i Ronn Moss liv och höjdpunkterna i hans karriär.</p><p>Ronn Moss är en amerikansk skådespelare och musiker, som är mest känd för sin roll som Ridge Forrester i den populära såpoperan The Bold and the Beautiful. Vid sidan av sitt skådespeleri är han medlem i bandet Player, vars största hits är bland annat Baby Come Back och This Time I'm in It for Love.</p><p>Ronn Moss är en stor beundrare av Finland och har besökt landet flera gånger. I april 2022 medverkade han i MTV:s program Huomenta Suomi för första gången på tio år för att diskutera sin hälsosamma livsstil. Sommaren 2022 besökte Moss Finland för att delta i inspelningen av tv-programmet Vain elämää. Dessutom överraskade han finländarna genom att skicka en videohälsning i samband med Huomenta Suomis 35-årsjubileumssändning där han tänkte tillbaka på sina tidigare besök i Finland och tackade sina fans. År 2025 besökte Ellen Jokikunnas Ronns hem i Italien i programmet Talo Italiassa.</p><p>Boka din plats och kom för att uppleva en unik kväll tillsammans med Ronn Moss!</p><p>VIP-biljetten inkluderar en entrébiljett, en fanartikel och ett möte med artisten tillsammans med dem som har köpt en VIP-biljett.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>Ronn Moss to tour Finland – A chance to experience the legendary star live!</p><p>World star Ronn Moss will come to Finland in October. The tour offers a rare opportunity to see Ronn's intimate stage show and experience his iconic charisma live. ‘An evening with Ronn Moss’ show combines music and storytelling, taking audiences to the turning points of Ronn Moss’s life and his career highlights.</p><p>Ronn Moss is an American actor and musician, best known for his role as Ridge Forrester in the popular soap opera The Bold and the Beautiful. In addition to his work as an actor, he is a member of the band Player, whose biggest hits include songs ‘Baby Come Back’ and ‘This Time I'm in It for Love’.</p><p>As a big fan of Finland, Ronn Moss has visited our country several times. In April 2022, he appeared on MTV's Huomenta Suomi programme for the first time in ten years, discussing his healthy lifestyle. In the summer of 2022, Moss visited Finland to take part in the filming of the TV show Vain elämää. He also surprised Finns by sending a video greeting on the 35th anniversary broadcast of the show Huomenta Suomi, in which he reminisced about his previous visits to Finland and thanked his fans. In 2025, Ellen Jokikunnas visited Ronn's Italian home in the show Talo Italiassa.</p><p>Reserve your place and come and experience this unique evening with Ronn Moss!</p><p>The VIP ticket includes an entrance ticket, a fan product gift and a meeting with the artist along with others who have bought the VIP ticket.</p><p>Duration approx. 2 h, including intermission.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "location_extra_info": null, "provider": { "fi": "Dex Viihde Oy", "sv": "Dex Viihde Oy", "en": "Dex Viihde Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65863/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66013", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "29-35 €", "sv": "29-35 €", "en": "29-35 €" }, "info_url": { "fi": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/", "sv": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/", "en": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 546547, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-16T10:14:42.189710Z", "last_modified_time": "2025-04-16T10:14:42.189730Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769728.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/546547/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-16T10:14:42.153932Z", "last_modified_time": "2025-09-26T10:13:25.801070Z", "date_published": null, "start_time": "2025-10-04T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.", "sv": "Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).", "en": "Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/83DCE376AF86602C6C858B774ECD8D29/Kopi_Kallio_Huono_suoritus_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/83DCE376AF86602C6C858B774ECD8D29/Kopi_Kallio_Huono_suoritus_stand_up_-esitys_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/83DCE376AF86602C6C858B774ECD8D29/Kopi_Kallio_Huono_suoritus_stand_up_-esitys_K-18" }, "name": { "fi": "Köpi Kallio: Huono suoritus K-18 – Loppuunmyyty! / Sold out!", "sv": "Köpi Kallio: Huono suoritus, stand up -esitys K-18 – Slutsåld!", "en": "Köpi Kallio: Huono suoritus, stand up -esitys K-18 – Sold out!" }, "description": { "fi": "<p>Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.</p><p><i>Huono suoritus</i> on särmikäs summaus kolmekymppisen radio- ja tv-tähden tähänastisesta elämästä ja parhaista stand up -jutuista.</p><p>Tässä esityksessä mustaa huumoria huokuvat ja paikoin kohtuuttomuuksiin yltyvät vitsit saavat lisäpotkua Köpille itselleen tapahtuneesta pysäyttävästä tarinasta.</p><p>Mitä tarvitaan, että ihminen pysähtyy, lopettaa oman elämänsä suorittamisen ja keskittyy nauttimaan hetkestä? Siihen tarvitaan <i>Huono suoritus</i>.</p><p>Jokaisen shown alussa <i>Huonon suorituksen</i> “virallisena valvojana” ja erikoisvieraana esiintyy <b><i>Kovan viikon ilta</b></i> -ohjelmasta tuttu stand up -koomikko <b>Jukka Lindström</b>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: K-18</p><p>Permanto K18 anniskelualue. Parvella ei anniskelua.</p>", "sv": "<p>Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).</p><p>Huono suoritus är en kantig sammanfattning av den trettioåriga radio- och tv-stjärnans liv hittills och hans bästa ståupphistorier.</p><p>I föreställningen får skämten, som är fulla av svart humor och ibland orimligheter, en skjuts av Köpis fängslande berättelse om sig själv.</p><p>Vad krävs för att en person ska stanna upp, sluta se sitt liv som en prestation och börja njuta av ögonblicket? För det behövs showen Huono suoritus.</p><p>Varje show inleds av ståuppkomikern Jukka Lindström, känd från programmet Kovan viikon ilta, som \"officiell övervakare\" för föreställningen och som gästande artist.</p><p>Längd ca 2 h, inklusive paus.</p><p>Åldersgräns: K-18.</p><p>Parkett K-18-område med serveringstillstånd. Ingen servering på balkongen.</p>", "en": "<p>Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance.</p><p>Huono suoritus is an edgy summation of the thirtysomething radio and TV star's life so far and his best stand-up stories.</p><p>The jokes in the show – full of black humour and sometimes even over the top – become even more poignant after hearing Köpi’s own extraordinary experience.</p><p>What does it take for a person to stop, put a pause on performing their life and focus on enjoying the moment? It takes a poor performance.</p><p>Stand-up comedian Jukka Lindström, a familiar face from the TV show Kovan viikon ilta, will launch each Huono suoritus show with his own performance, filling the shoes of both the show’s ‘official supervisor’ and special guest.</p><p>Duration approx. 2 h, including intermission</p><p>Age rating: 18 and up</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "location_extra_info": null, "provider": { "fi": "JL-Komediapaja Oy", "sv": "JL-Komediapaja Oy", "en": "JL-Komediapaja Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66013/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66210", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "29-35 €", "sv": "29-35 €", "en": "29-35 €" }, "info_url": { "fi": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/", "sv": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/", "en": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 715326, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-08T11:14:03.614336Z", "last_modified_time": "2025-05-08T11:14:03.614354Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772834.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/715326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-08T11:14:03.499053Z", "last_modified_time": "2025-09-26T10:13:25.465947Z", "date_published": null, "start_time": "2025-10-04T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.", "sv": "Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).", "en": "Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DE86856FA7EA91D2976A5A9CE7DF0E91/Kopi_Kallio_Huono_suoritus_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DE86856FA7EA91D2976A5A9CE7DF0E91/Kopi_Kallio_Huono_suoritus_stand_up_-esitys_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/DE86856FA7EA91D2976A5A9CE7DF0E91/Kopi_Kallio_Huono_suoritus_stand_up_-esitys_K-18" }, "name": { "fi": "Köpi Kallio: Huono suoritus K-18 – Loppuunmyyty! / Sold out!", "sv": "Köpi Kallio: Huono suoritus, stand up -esitys K-18 – Slutsåld!", "en": "Köpi Kallio: Huono suoritus, stand up -esitys K-18 – Sold out!" }, "description": { "fi": "<p>Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.</p><p><i>Huono suoritus</i> on särmikäs summaus kolmekymppisen radio- ja tv-tähden tähänastisesta elämästä ja parhaista stand up -jutuista.</p><p>Tässä esityksessä mustaa huumoria huokuvat ja paikoin kohtuuttomuuksiin yltyvät vitsit saavat lisäpotkua Köpille itselleen tapahtuneesta pysäyttävästä tarinasta.</p><p>Mitä tarvitaan, että ihminen pysähtyy, lopettaa oman elämänsä suorittamisen ja keskittyy nauttimaan hetkestä? Siihen tarvitaan <i>Huono suoritus</i>.</p><p>Jokaisen shown alussa <i>Huonon suorituksen</i> “virallisena valvojana” ja erikoisvieraana esiintyy <b><i>Kovan viikon ilta</b></i> -ohjelmasta tuttu stand up -koomikko <b>Jukka Lindström</b>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: K-18</p><p>Permanto K18 anniskelualue. Parvella ei anniskelua.</p>", "sv": "<p>Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).</p><p>Huono suoritus är en kantig sammanfattning av den trettioåriga radio- och tv-stjärnans liv hittills och hans bästa ståupphistorier.</p><p>I föreställningen får skämten, som är fulla av svart humor och ibland orimligheter, en skjuts av Köpis fängslande berättelse om sig själv.</p><p>Vad krävs för att en person ska stanna upp, sluta se sitt liv som en prestation och börja njuta av ögonblicket? För det behövs showen Huono suoritus.</p><p>Varje show inleds av ståuppkomikern Jukka Lindström, känd från programmet Kovan viikon ilta, som \"officiell övervakare\" för föreställningen och som gästande artist.</p><p>Längd ca 2 h, inklusive paus.</p><p>Åldersgräns: K-18.</p><p>Parkett K-18-område med serveringstillstånd. Ingen servering på balkongen.</p>", "en": "<p>Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance.</p><p>Huono suoritus is an edgy summation of the thirtysomething radio and TV star's life so far and his best stand-up stories.</p><p>The jokes in the show – full of black humour and sometimes even over the top – become even more poignant after hearing Köpi’s own extraordinary experience.</p><p>What does it take for a person to stop, put a pause on performing their life and focus on enjoying the moment? It takes a poor performance.</p><p>Stand-up comedian Jukka Lindström, a familiar face from the TV show Kovan viikon ilta, will launch each Huono suoritus show with his own performance, filling the shoes of both the show’s ‘official supervisor’ and special guest.</p><p>Duration approx. 2 h, including intermission</p><p>Age rating: 18 and up</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "location_extra_info": null, "provider": { "fi": "JL-Komediapaja Oy", "sv": "JL-Komediapaja Oy", "en": "JL-Komediapaja Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66210/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65921", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "45,90 €", "sv": "45,90 €", "en": "45,90 €" }, "info_url": { "fi": "https://www.lippu.fi/event/name-20089538", "sv": "https://www.lippu.fi/event/name-20089538", "en": "https://www.lippu.fi/event/name-20089538" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 484901, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-07T12:15:21.610711Z", "last_modified_time": "2025-04-07T12:15:21.610730Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768348.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/484901/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-07T12:15:21.563518Z", "last_modified_time": "2025-09-26T10:13:25.063243Z", "date_published": null, "start_time": "2025-10-03T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Saara Aalto ja Teemu Roivainen lähtevät yhdessä Rakkaustarina -20-vuotisjuhlakiertueelle syksyllä 2025.", "sv": "Saara Aalto och Teemu Roivainen ger sig tillsammans ut på 20-årsjubileumsturnén Rakkaustarina (En kärlekshistoria) hösten 2025.", "en": "Saara Aalto and Teemu Roivainen will embark on their 20th anniversary tour, entitled Rakkaustarina (Love story), in autumn 2025." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D673A0B6472A00E55E76BE504018CC63/Saara_Aalto_Teemu_Roivainen_-_Rakkaustarina", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D673A0B6472A00E55E76BE504018CC63/Saara_Aalto_Teemu_Roivainen_-_Rakkaustarina", "en": "http://www.savoyteatteri.fi/en/events/event/D673A0B6472A00E55E76BE504018CC63/Saara_Aalto_Teemu_Roivainen_-_Rakkaustarina" }, "name": { "fi": "Saara Aalto & Teemu Roivainen - Rakkaustarina", "sv": "Saara Aalto & Teemu Roivainen - Rakkaustarina", "en": "Saara Aalto & Teemu Roivainen - Rakkaustarina" }, "description": { "fi": "<p>Saara Aalto ja Teemu Roivainen lähtevät yhdessä Rakkaustarina -20-vuotisjuhlakiertueelle syksyllä 2025.</p><p>Tavatessaan toisensa lukiossa vuonna 2002 heistä syntyi nopeasti tiivis pari, joka jakoi rakkauden musiikkiin ja alkoi esiintymään yhdessä niin lavoilla kuin levyillä. Tällä kiertueella kuulet heidän uransa hienoimpia ja tärkeimpiä kappaleita yli 20-vuotisen matkan varrelta, sekä pääset seuraamaan parin uskomatonta tarinaa tarinoiden muodossa.<br> <br>Luvassa kauneimpia duettoja, ennen kuulemattomia yllätyskappaleita, parhaita paloja vuosien varrelta, sekä pysäyttävimpiä esityksiä Teemun tangokuninkuusvuosilta ja Saaran X Factor UK-matkalta.<br> <br><i>\"En malta odottaa, että ihmiset kuulevat ennen kuulemattomia tarinoita meidän yhteisestä matkastamme ja pääsevät kuulemaan kaikki ne upeat kappaleet, jotka ovat muovanneet meidät siksi keitä nyt olemme.\"</i><br> <br>Kesto n. 2 tuntia sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>Saara Aalto och Teemu Roivainen ger sig tillsammans ut på 20-årsjubileumsturnén Rakkaustarina (En kärlekshistoria) hösten 2025.</p><p>När de träffades på gymnasiet 2002 blev de snabbt ett oskiljaktigt par, som delade kärleken till musiken och började uppträda tillsammans på scen och spela in skivor tillsammans. På den här turnén får du höra några av de finaste och viktigaste låtarna från deras över 20 år långa karriär och följa deras otroliga historia i form av berättelser.</p><p>Det utlovas vackra duetter, aldrig tidigare spelade överraskningslåtar, de bästa låtarna genom åren, liksom de mest häpnadsväckande framföranden från Teemus år som tangokung och Saras resa i X Factor UK.</p><p>\"Jag längtar efter att människor ska få höra aldrig tidigare hörda berättelser om vår resa tillsammans och alla de fantastiska låtar som har gjort oss till dem vi är i dag.\"</p><p>Längd ca 2 h inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>Saara Aalto and Teemu Roivainen will embark on their 20th anniversary tour, entitled Rakkaustarina (Love story), in autumn 2025.</p><p>After meeting in a general upper secondary school in 2002, they quickly became a close couple who shared a love of music and began performing together, both live and on records. On this tour, you will hear some of the greatest and most important songs of their career, spanning more than 20 years, and will be able to follow their incredible journey through the stories told.</p><p>The concert offers their most beautiful duets, never-before-heard surprise songs, best bits from over the years, and the most show-stopping performances from Teemu's years as a Tango Royal and Saara’s journey in the X Factor UK.</p><p>“I can't wait for people to hear the never-before-heard stories of our journey together and to listen to all the great songs that have shaped us into who we are today.”</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "location_extra_info": null, "provider": { "fi": "Sony Music Live", "sv": "Sony Music Live", "en": "Sony Music Live" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65921/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66160", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "20-44 €", "sv": "20-44 €", "en": "20-44 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3891086", "sv": "https://www.lippu.fi/eventseries/name-3891086", "en": "https://www.lippu.fi/eventseries/name-3891086" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 802485, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-19T08:12:44.086114Z", "last_modified_time": "2025-05-19T08:12:44.086126Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772406.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/802485/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-19T08:12:44.015253Z", "last_modified_time": "2025-09-26T10:13:24.474079Z", "date_published": null, "start_time": "2025-10-02T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tyylillä, taidolla ja tunteella – tästä konsertista ei puutu glamouria!", "sv": "Med stil, skicklighet och känsla – den här konserten saknar inte glamour!", "en": "Style, skill and feeling – this evening is all about music and glamour!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/996FBB90CC304E336A278C84DE72EAE8/Emma_Smith_UK_UMO_Helsinki_Jazz_Orchestra_Doing_It_My_Way_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/996FBB90CC304E336A278C84DE72EAE8/Emma_Smith_UK_UMO_Helsinki_Jazz_Orchestra_Doing_It_My_Way_", "en": "http://www.savoyteatteri.fi/en/events/event/996FBB90CC304E336A278C84DE72EAE8/Emma_Smith_UK_UMO_Helsinki_Jazz_Orchestra_Doing_It_My_Way_" }, "name": { "fi": "Emma Smith (UK) & UMO Helsinki Jazz Orchestra – Doing It My Way", "sv": "Emma Smith (UK) & UMO Helsinki Jazz Orchestra – Doing It My Way", "en": "Emma Smith (UK) & UMO Helsinki Jazz Orchestra – Doing It My Way" }, "description": { "fi": "<p>Tyylillä, taidolla ja tunteella – tästä konsertista ei puutu glamouria!</p><p>Lontoolainen jazzlaulaja <b>Emma Smith</b> saapuu <b>UMO Helsinki Jazz Orchestran</b> solistiksi lokakuussa. Konsertti on osa UMOn 50-vuotisjuhlakauden ohjelmistoa.</p><p>Emma Smith on yksi tämän hetken brittiläisten jazzlaulajien kirkkaimmista tähdistä, jonka ura on kovassa nousukiidossa. Hänet tunnetaan poikkeuksellisen upeasta ja monipuolisesta äänestään, joka taipuu perinteisestä jazzista ja scattauksesta souliin ja bluesiin. Smith on valloittava esiintyjä, joka on samaan aikaan elegantti tulkitsija ja heittäytyvä improvisoija. Hän on kantaaottava artisti, joka nostaa esille erityisesti naisten oikeuksia. Hänellä onkin omaperäinen ote moniin jazzklassikoihin erityisesti naisen näkökulmasta. Konserteissa kuullaan Smithin tulkitsemana rakastettuja kappaleita mm. Frank Sinatralta, Sarah Vaughanilta ja Thad Jonesilta. Konsertin kapellimestarina toimii <b>Teemu Takanen</b>.</p><p><i><b>Emma Smith</b> on ollut mukana huippusuositussa Postmodern Jukebox -yhtyeessä, tehnyt yhteistyötä musiikkimaailman kerman, kuten Michael Bublén, Robbie Williamsin, Quincy Jonesin ja Gregory Porterin kanssa, johtanut omaa yhtyettään sekä julkaissut debyyttialbuminsa pari vuotta sitten. Erilaisia ehdokkuuksia ja palkintoja hänelle on kertynyt vino pino aina Parliamentary Jazz Awardsista Montreux Jazz Voice -kilpailuun ja London Music Awardsin the Rising Star Awardiin. Tarkkasilmäisimmät muistavat Emma Smithin UMOn ja Helsingin kaupunginorkesterin yhteiskonsertin solistina kevään 2024 Quincy!-konsertista. www.emmasmithmusic.co.uk</p><p><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Jo 50 vuotta jazzin urotekoja ja taidonnäytteitä! 50-vuotisjuhlakauttaan kesästä 2025 kevääseen 2026 viettävä UMO Helsinki Jazz Orchestra on ollut vuosikymmenten ajan suomalaisen jazzin huipulla. Vuosien saatossa Yrjö- ja Emma-palkittu ja Grammy-ehdokkaanakin ollut UMO on levyttänyt yli 60 albumia ja esiintynyt niin kansainvälisten jazzin kärkinimien kuin kotimaisten artistien kanssa. Yksi on ja pysyy: UMOn ydin on uudessa musiikissa. Juhlakaudella muistellaan menneitä ja juhlistetaan saavutuksia, ja pidetään katse tiukasti tulevaisuudessa. Juhli yhdessä UMOn kanssa! www.umohelsinki.fi</i></p><p>Konsertin sisältöihin syventyvä Enemmän irti esityksestä -keskustelutilaisuus pidetään Savoy-teatterin aulatilojen yhteydessä olevassa Minne-ravintolassa ennen konserttia klo 18:15. Keskustelu käydään englanniksi.</p><p>Konsertin kesto n. 2 h, sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>https://open.spotify.com/artist/6Kcax12zGyJGkuEYRcidcm?si=xei6xTRcSgKBrxQnrrnbng<br>https://www.youtube.com/channel/UCnPqFeEJAJZV-NkqBzqerHg<br>https://youtu.be/_jzfhpw08i8?si=9ahb8sfEL7X_vhZ5<br>https://vimeo.com/953550898</p>", "sv": "<p>Med stil, skicklighet och känsla – den här konserten saknar inte glamour!</p><p>Den Londonbaserade jazzsångerskan Emma Smith är solist i UMO Helsinki Jazz Orchestra i oktober. Konserten är en del av programmet under UMO:s 50-årsjubileumssäsong.</p><p>Emma Smith är en av de starkast lysande stjärnorna för närvarande bland de brittiska jazzsångarna, med en karriär som pekar spikrakt uppåt. Hon är känd för sin exceptionellt fina och mångsidiga röst, som kan hantera allt från traditionell jazz och scatting till soul och blues. Smith är en fängslande artist som på samma gång är en elegant uttolkare och en skicklig improvisatör. Hon är en artist som tar ställning, i synnerhet när det gäller kvinnors rättigheter. Hon gör också originella tolkningar av många jazzklassiker, särskilt ur ett kvinnoperspektiv. På konserterna bjuder Smith på tolkningar av älskade låtar av bland annat Frank Sinatra, Sarah Vaughan och Thad Jones. Teemu Takanen är kapellmästare vid konserterna.</p><p>Emma Smith har varit medlem i det mycket hyllade bandet Postmodern Jukebox, samarbetat med musikvärldens storheter som Michael Bublé, Robbie Williams, Quincy Jones och Gregory Porter, varit frontfigur för ett eget band samt släppte sitt debutalbum för ett par år sedan. Hon har samlat på sig en rad nomineringar och priser, allt från Parliamentary Jazz Awards till tävlingen Montreux Jazz Voice och the Rising Star Award vid London Music Awards. Den uppmärksamme kommer ihåg Emma Smith som solist vid UMO:s och Helsingfors stadsorkesters gemensamma konsert under konserten Quincy! våren 2024. www.emmasmithmusic.co.uk</p><p>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975. Redan 50 år av jazzbragder och konststycken! UMO Helsinki Jazz Orchestra, som firar sitt 50-årsjubileum från sommaren 2025 till våren 2026, har i årtionden hört till de främsta inom finländsk jazz. Under årens lopp har UMO tilldelats både Yrjö- och Emma-priser, varit nominerad till en Grammy, spelat in mer än 60 album samt uppträtt med internationella jazzstorheter såväl som finländska artister. En sak är och förblir: UMO:s kärna finns i den nya musiken. Under jubileumssäsongen minns vi det som varit och firar framgångar, med blicken stadigt riktad mot framtiden. Fira tillsammans med UMO! www.umohelsinki.fi</p><p>En mer djupgående diskussion om konsertens innehåll, Enemmän irti esityksestä, hålls i restaurang Minne i anslutning till Savoy-teaterns foajé före konserten kl. 18:15. Diskussionen förs på engelska.</p><p>Konserten är ca 2 timmar lång, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>Style, skill and feeling – this evening is all about music and glamour!</p><p>London-based jazz singer <b>Emma Smith</b> joins the <b>UMO Helsinki Jazz Orchestra</b> as guest soloist in October. The concert is part of UMO’s 50th anniversary season.</p><p>Emma Smith is one of the brightest stars on today’s UK jazz scene, with a career on a sharp upward trajectory. She is known for her exceptionally magnificent and versatile voice, which spans traditional jazz and scat through to soul and blues. Smith is a captivating performer – both a refined interpreter and a fearless improviser. Smith is known as an artist who highlights feminine power and women's rights. She has an original take on many jazz classics, especially from a woman's perspective. The concerts will feature Smith's interpretation of beloved songs by, among others, Frank Sinatra, Sarah Vaughan and Thad Jones. The concert will be conducted by <b>Teemu Takanen</b>.</p><p><i><b>Emma Smith</b> has performed with the hugely popular ensemble Postmodern Jukebox and collaborated with music legends such as Michael Bublé, Robbie Williams, Quincy Jones and Gregory Porter. Smith leads her own ensemble and released her debut album a few of years ago. She has earned multiple nominations and awards, including the Parliamentary Jazz Award, the Montreux Jazz Voice Competition and the London Music Awards’ Rising Star Award. The most observant jazz fans may remember her as the soloist in Quincy!, the joint concert by UMO and the Helsinki Philharmonic Orchestra in spring 2024. www.emmasmithmusic.co.uk</p><p><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Get ready to groove as we mark 50 years of achievements and mastery in jazz! UMO Helsinki Jazz Orchestra celebrates its 50th anniversary season from summer 2025 to spring 2026. Throughout these decades, the orchestra has been at the forefront of Finnish jazz. Over the years, UMO has recorded over 60 albums, received Yrjö and Emma prizes, and even a Grammy nomination. The orchestra has shared the stage with international jazz stars as well as Finnish artists. One thing remains constant: the core of UMO is in new music. Join us for our anniversary season to look back on the past and celebrate our achievements, all while keeping our eyes firmly on the exciting future ahead. Come and celebrate together with the UMO! www.umohelsinki.fi</i></p><p>Deeper into the show discussion event about concert in Restaurant Minne at 6:15 PM. Conversation is in English.</p><p>Duration approx. 2 h, incl. intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>https://open.spotify.com/artist/6Kcax12zGyJGkuEYRcidcm?si=xei6xTRcSgKBrxQnrrnbng<br>https://www.youtube.com/channel/UCnPqFeEJAJZV-NkqBzqerHg<br>https://youtu.be/_jzfhpw08i8?si=9ahb8sfEL7X_vhZ5<br>https://vimeo.com/953550898</p>" }, "location_extra_info": null, "provider": { "fi": "UMO Helsinki Jazz Orchestra", "sv": "UMO Helsinki Jazz Orchestra", "en": "UMO Helsinki Jazz Orchestra" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66160/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66622", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "17-54 €", "sv": "17-54 €", "en": "17-54 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/3918892", "sv": "https://www.lippu.fi/eventseries/3918892", "en": "https://www.lippu.fi/eventseries/3918892" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490554, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T15:13:47.240390Z", "last_modified_time": "2025-08-27T15:13:47.240409Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775105.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490554/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-13T13:14:46.167734Z", "last_modified_time": "2025-09-26T10:13:23.883498Z", "date_published": null, "start_time": "2025-10-01T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Cellofestin vuoden 2025 avajaisgaalassa Savoy-teatterissa kuullaan maailman tunnetuimpia sellosävellyksiä Jean-Baptiste Barrièresta Philip Glassiin.", "sv": "Öppningsgalan för Cellofest 2025 på Savoy-teatern bjuder på några av världens mest kända cellokompositioner, från Jean-Baptiste Barrière till Philip Glass.", "en": "The opening gala of Cellofest 2025 at the Savoy Theatre will feature some of the world's best-known cello compositions, with works from Jean-Baptiste Barrière to Philip Glass." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/35A4EC129E725F467C927CACC4A7E3C8/Savoy_Cellofest_Bachianas_Brasileiras", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/35A4EC129E725F467C927CACC4A7E3C8/Savoy_Cellofest_Bachianas_Brasileiras", "en": "http://www.savoyteatteri.fi/en/events/event/35A4EC129E725F467C927CACC4A7E3C8/Savoy_Cellofest_Bachianas_Brasileiras" }, "name": { "fi": "Savoy & Cellofest: Bachianas Brasileiras", "sv": "Savoy & Cellofest: Bachianas Brasileiras", "en": "Savoy & Cellofest: Bachianas Brasileiras" }, "description": { "fi": "<p>Cellofestin vuoden 2025 avajaisgaalassa Savoy-teatterissa kuullaan maailman tunnetuimpia sellosävellyksiä Jean-Baptiste Barrièresta Philip Glassiin.</p><p>Illan tähtihetkenä kuullaan nousevan virolaisen säveltäjän <b>Alisson Kruusmaan</b> uuden teoksen Cadenza for Solo Cello kantaesitys huippusellisti <b>Jens Peter Maintzin</b> soittamana.</p><p>Sopraano <b>Piia Komsi</b> yhdistää voimansa Cellofestin Cello Ensemblen kanssa, esittäen <b>Aija Puurtisen</b> upean <i>Noaiddi (Noita)</i> ja <i>Beaivi Ahcazan (Aurinko, isäni)</i> teoksen, joka yhdistää saamelaisen kulttuuriperimän nykymusiikkiin.</p><p>Konsertti huipentuu rakastettuun <b>Heitor Villa-Lobosin</b> <i>Bachianas Brasileiras</i> – teokseen joka yhdistää brasilialaiset rytmit Bachin sävellyksiin.</p><p>Konsertissa esiintyy <b>Leonardo Chiodo, Eliso Babuadze, Ziyang Zhao</b>, Jens Peter Maintz, <b>Yana Sa</b>, Sibelius-Akatemian sellovirtuoosit (johtaa <b>Martti Rousi</b>), Cellomania ja Piia Komsi.</p><p>Tapahtuma on osa Cellofest-festivaalin ohjelmistoa ja se järjestetään yhteistyössä Savoy-teatterin kanssa.</p><p>Kesto n. 1 h 50 min (sisältäen väliajan 30 min)</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>Öppningsgalan för Cellofest 2025 på Savoy-teatern bjuder på några av världens mest kända cellokompositioner, från Jean-Baptiste Barrière till Philip Glass.</p><p>Sopranen Piia Komsi framför tillsammans med Cellofests Cello Ensemble Aija Puurtinens fantastiska Noaiddi (Noita) och verket Beaivi, áhcážan (Solen, min far), som kombinerar det samiska kulturarvet med modern musik.</p><p>Konserten kulminerar i det mycket omtyckta verket Bachianas Brasileiras av Heitor Villa-Lobos, ett verk som är en kombination av brasilianska rytmer och Bachs kompositioner.</p><p>Konserten gästas av Leonardo Chiodo, Eliso Babuadze, Ziyang Zhao, Jens Peter Maintz, Lanjing Bian, cellovirtuoser från Sibelius-Akademin (dirigerade av Martti Rousi), Cellomania och Piia Komsi.</p><p>Konserten är ca 2 timmar lång, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>The opening gala of Cellofest 2025 at the Savoy Theatre will feature some of the world's best-known cello compositions, with works from Jean-Baptiste Barrière to Philip Glass.</p><p>Soprano Piia Komsi will join forces with the Cellofest’s Cello Ensemble to perform Aija Puurtinen's stunning work Noaiddi (Witch) and Beaivi Ahcazan (Sun, My Father), which combines Sámi cultural heritage with contemporary music.</p><p>The concert will culminate in the much-loved Bachianas Brasileiras by Heitor Villa-Lobos – a work that combines Brazilian rhythms with Bach compositions.</p><p>The concert will feature Leonardo Chiodo, Eliso Babuadze, Ziyang Zhao, Jens Peter Maintz, Lanjing Bian, the cello virtuosos of Sibelius Academy (conducted by Martti Rousi), Cellomania, and Piia Komsi.</p><p>Concert duration approx. 2 h, including intermission</p><p>The floor: R18 drink service area. The gallery: No age limit applies, no drink service.</p>" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri & Cellofest", "sv": "Savoy-teatern & Cellofest", "en": "Savoy Theatre & Cellofest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66622/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyldwgtq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490923, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T09:55:13.553180Z", "last_modified_time": "2025-09-26T09:55:13.553196Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/16bdbd1e-c7f0-46c2-ad7c-d06eeaf90cbf.jpg", "cropping": "350,0,1250,900", "photographer_name": "", "alt_text": "jäätelötikuista, langasta ja pahvista askarreltuja hevosia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490923/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-26T10:09:18.326925Z", "last_modified_time": "2025-09-26T10:09:18.326946Z", "date_published": null, "start_time": "2025-11-01T09:00:00Z", "end_time": "2025-11-01T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tule mukaan luovaan työpajaan, jossa tehdään hauskoja liikkuvia eläinhahmoja värikkäistä tikuista, napeista ja huovasta. ", "sv": "Kom med på en kreativ verkstad där vi gör roliga rörliga djurfigurer av färgglada pinnar, knappar och filt.", "en": "Join a creative workshop where we make fun moving animal characters out of colorful sticks, buttons, and felt." }, "info_url": null, "name": { "fi": "Liikkuvat eläinhahmot työpaja", "sv": "Arbetsverkstad med rörliga djurfigurer", "en": "Workshop with moving animal characters" }, "description": { "fi": "<p>Haaraniittien avulla hahmot saavat liikkuvat osat; suu voi aueta, häntä heilua tai siivet liikkua. Työpaja sopii kaikenikäisille ja tarjoaa onnistumisia sekä mahdollisuuden käyttää mielikuvitusta. Lopputuloksena persoonallinen oma eläin tai mielikuvitushahmo. Työpaja on maksuton.</p>", "sv": "<p>Med hjälp av jungfruben får figurerna rörliga delar; munnen kan öppnas, svansen vifta eller vingarna röra sig. Verkstaden passar för alla åldrar och bjuder på både lyckade resultat och möjlighet att använda fantasin. Som slutresultat får du ett personligt eget djur eller fantasifigur. Verkstaden är gratis.</p><p><br></p>", "en": "<p>With the help of paper fasteners, the characters get moving parts; the mouth can open, the tail can wag, or the wings can move. The workshop is suitable for all ages and offers both a sense of achievement and the chance to use your imagination. The end result is a unique personal animal or fantasy character. The workshop is free of charge.</p>" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Käsityö- ja muotoilukoulu Taito", "sv": "Käsityö- ja muotoilukoulu Taito", "en": "Käsityö- ja muotoilukoulu Taito" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyldwgtq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66959", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-anna-minun-rakastaa-enemmaen-malmitalo-20681438/", "sv": "https://www.lippu.fi/event/kino-helios-anna-minun-rakastaa-enemmaen-malmitalo-20681438/", "en": "https://www.lippu.fi/event/kino-helios-anna-minun-rakastaa-enemmaen-malmitalo-20681438/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490919, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T09:13:37.218209Z", "last_modified_time": "2025-09-26T09:13:37.218226Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777082.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490919/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-26T09:13:37.112255Z", "last_modified_time": "2025-09-26T09:13:37.334507Z", "date_published": null, "start_time": "2025-11-27T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Cinema Orionissa alkanut HopeaCine laajentuu tänä syksynä Vuotalolle ja Malmitalolle!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3CA24F64150E92635F02A87F064B1730/HopeaCine_Anna_minun_rakastaa_enemman_tekijavieraina_ohjaaja_Oskari_Sipola_ja_kirjailija_Juha_Itkonen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3CA24F64150E92635F02A87F064B1730/HopeaCine_Anna_minun_rakastaa_enemman_tekijavieraina_ohjaaja_Oskari_Sipola_ja_kirjailija_Juha_Itkonen", "en": "http://www.malmitalo.fi/en/events/event/3CA24F64150E92635F02A87F064B1730/HopeaCine_Anna_minun_rakastaa_enemman_tekijavieraina_ohjaaja_Oskari_Sipola_ja_kirjailija_Juha_Itkonen" }, "name": { "fi": "HopeaCine: Anna minun rakastaa enemmän + tekijävieraina ohjaaja Oskari Sipola ja kirjailija Juha Itkonen", "sv": "HopeaCine: Anna minun rakastaa enemmän + tekijävieraina ohjaaja Oskari Sipola ja kirjailija Juha Itkonen", "en": "HopeaCine: Anna minun rakastaa enemmän + tekijävieraina ohjaaja Oskari Sipola ja kirjailija Juha Itkonen" }, "description": { "fi": "<p>Cinema Orionissa alkanut HopeaCine laajentuu tänä syksynä Vuotalolle ja Malmitalolle!</p><p>Anna minun rakastaa enemmän on vahva tarina rakkaudesta, musiikista ja itsensä löytämisen monimutkaisista poluista. Elokuvan keskiössä ovat pikkukaupungin kasvatit, muusikonalku Antti ja kirjallisuudenopiskelija Suvi, jotka tapaavat kotibileissä ja rakastuvat ensisilmäyksellä. Heidän rakkautensa kumpuaa intohimosta musiikkiin. Antti on aina unelmoinut rocktähteydestä ja pyytää Suvin laulajaksi bändiinsä. Hetken kaikki on täydellistä ja yhdessä jaettua. Kun menestyksen portit aukeavat vain Suville, Antti jää miettimään toteutumattomia unelmiaan. Olivatko he toisilleen oikeita, mutta hetki vain väärä?</p><p>Tekijävieraina elokuvan jälkeen keskustelemassa elokuvan ohjaaja Oskari Sipola ja alkuperäisen romaanin, johon elokuva perustuu, kirjailija Juha Itkonen.</p><p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään 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. Suomeksi puhutut HopeaCine-näytökset on selkotekstitetty suomeksi.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66959/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66990", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-elaemae-on-juhla-malmitalo-20681437/", "sv": "https://www.lippu.fi/event/kino-helios-elaemae-on-juhla-malmitalo-20681437/", "en": "https://www.lippu.fi/event/kino-helios-elaemae-on-juhla-malmitalo-20681437/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490911, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T08:13:45.623045Z", "last_modified_time": "2025-09-26T08:13:45.623056Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775249.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490911/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-26T08:13:45.543019Z", "last_modified_time": "2025-09-26T09:13:28.479259Z", "date_published": null, "start_time": "2025-10-23T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset saapuvat tänä syksynä Malmitaloon ja Vuotaloon!", "sv": "HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!", "en": "HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/95F5791B790DC972B35E295C2147606C/Elama_on_juhla_tekijavieras_Ulla_Heikkila", "sv": "http://www.malmitalo.fi/sv/evenemang/event/95F5791B790DC972B35E295C2147606C/Elama_on_juhla_filmskapargast_Ulla_Heikkila", "en": "http://www.malmitalo.fi/en/events/event/95F5791B790DC972B35E295C2147606C/And_the_Party_Goes_On_Guest_Ulla_Heikkila" }, "name": { "fi": "Elämä on juhla+tekijävieras Ulla Heikkilä – HopeaCine", "sv": "Elämä on juhla + filmskapargäst Ulla Heikkilä – HopeaCine", "en": "And the Party Goes On + Guest Ulla Heikkilä – HopeaCine" }, "description": { "fi": "<p>Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset saapuvat tänä syksynä Malmitaloon ja Vuotaloon!</p><p>Elämä on juhla on juhannuselokuva Eerolan perheen keskikesän juhlasta Nauvossa. Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Saaristojuhannuksen jälkeen ei kenenkään elämä ole entisensä.</p><p>Elokuvan pääosissa nähdään Pirjo Lonka ja Aamu Milonoff, jotka näyttelevät äitiä ja tytärtä. Kyseessä on parhaan naissivuosan Jussi-ehdokkaana elokuvista Tuntematon mestari (2020) ja Häiriötekijä (2016) olleen Pirjo Longan ensimmäinen elokuvapäärooli. Aamu Milonoff muistetaan muun muassa Jussi-ehdokkuuden tuoneesta pääroolistaan elokuvassa Tytöt, tytöt, tytöt (2022).</p><p>Elämä on juhla -elokuvan ohjaaja ja käsikirjoittaja on Ulla Heikkilä. Sukupolvensa nouseviin ohjaaja-käsikirjoittajiin lukeutuvan Heikkilän ensimmäinen pitkä elokuva Eden (2020) sai tunnustusta kansainvälisillä elokuvajuhlilla, usean hänen ohjaamansa lyhytelokuvan tapaan. Lisäksi taiteen maisteriksi Aalto-yliopistosta valmistunut Heikkiä on ohjannut muun muassa sarjat Eroja ja sovintoja (Elisa, 2023) sekä Luuserit (2. tuotantokausi, YLE, 2022).</p><p>Elokuvan tuottaja on Marja Pihlaja. Niin ikään Aalto-yliopistosta taiteen maisteriksi valmistunut Pihlaja on tuottanut useita kansainvälisesti menestyneitä lyhytelokuvia sekä esimerkiksi linjatuottanut elokuvat Huonot naiset (2022) ja Eden (2020). Elämä on juhla on pitkän elokuvan tuottajana Pihlajan esikoistuotanto.</p><p>Tekijävieraana elokuvan ohjaaja Ulla Heikkilä. Haastattelijana elokuvakasvattaja Kaisa Kukkola.</p><p>Kesto 1 tunti 40 min + keskustelu n. 30 min</p>", "sv": "<p>HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!</p><p>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden. Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som berättar om processen för att göra filmen efter föreställningen och erbjuder nytt att tänka på för att fördjupa filmvisningen.</p><p>Elämä on juhla (Livet är en fest) är en midsommarfilm om familjen Eerolas midsommarfest i Nagu. I det humoristiska relationsdramat blir man förälskad, besviken och firar den nattlösa natten. Efter midsommaren i skärgården är ingens liv som förr.</p><p>I huvudrollerna ser vi Pirjo Lonka och Aamu Milonoff, som spelar mor och dotter. Detta är den första huvudrollen för Pirjo Lonka, som nominerades för bästa kvinnliga biroll i filmerna Okänd mästare (2020) och Häiriötekijä (2016). Vi kommer ihåg Aamu Milonoff bland annat för sin huvudroll i den Jussi-nominerade filmen Flickor flickor flickor (2022).</p><p>Ulla Heikkilä är regissör och manusförfattare till filmen Elämä on juhla. Heikkilä hör till de lovande regissörerna och manusförfattarna i sin generation, och hennes första långfilm Eden (2020) fick erkännande vid internationella filmfestivaler, precis som flera av hennes kortfilmer. Heikkiä, som har magisterexamen i konst från Aalto-universitetet, har också regisserat bland annat serierna Eroja ja sovintoja (Elisa, 2023) och Luuserit (2:a säsongen, YLE, 2022).</p><p>Filmen är producerad av Marja Pihlaja. Pihlaja, som också har magisterexamen i konst från Aalto-universitetet, har producerat flera internationellt framgångsrika kortfilmer och är bland annat linjeproducent av Huonot naiset (2022) och Eden (2020). Elämä on juhla är Pihlajas debut som producent av långfilm.</p><p>Gästfilmskapare är Ulla Heikkilä, filmens regissör.<br>Längd 1 timme 40 minuter + diskussion ca 30 minuter</p>", "en": "<p>HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!</p><p>Designed for seniors, HopeaCine's programme features new Finnish films once a month. 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>And the Party Goes On is a film about the Eerola family's midsummer celebration in Nagu. A humour-tinged relationship drama about falling in love, experiencing disappointment and celebrating the midnight sun. After a midsummer in the archipelago, no one's life is the same as before.</p><p>The film stars Pirjo Lonka and Aamu Milonoff as mother and daughter. This is Pirjo Lonka's first lead role in a movie. She was previously nominated for a Jussi Award for Best Supporting Actress for the films One Last Deal (2020) and Distraction (2016). Aamu Milonoff is remembered, among other things, for her leading role in the film Girl Picture (2022), which earned her a Jussi Award nomination.</p><p>And the Party Goes On was written and directed by Ulla Heikkilä. One of the rising director-screenwriters of her generation, Heikkilä received recognition for her first feature film Eden (2020) at international film festivals, as well as for several short films she has directed. Additionally, Heikkilä, who holds a master of arts degree from Aalto University, has directed series such as Eroja ja sovintoja (Elisa, 2023) and Luuserit (Season 2, YLE, 2022).</p><p>The film was produced by Marja Pihlaja. Also a master of arts graduate from Aalto University, Pihlaja has produced several internationally successful short films and, for example, served as line producer for the films Bad Women (2022) and Eden (2020). And the Party Goes On is Pihlaja's debut production as a feature film producer.</p><p>Guest Ulla Heikkilä, the film's director.<br>Duration 1 hour 40 min + about 30 min of discussion</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66990/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66170", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:752/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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": 1169714, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-03T06:13:53.190737Z", "last_modified_time": "2025-07-03T06:13:53.190753Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772416.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1169714/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-03T06:13:53.071281Z", "last_modified_time": "2025-09-26T09:13:27.410362Z", "date_published": null, "start_time": "2025-10-18T08:00:00Z", "end_time": "2025-10-18T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9817273C1DB6A9EB2771F705D8728858/Annantalon_taidelauantai_Yokukkujat", "sv": "http://www.annantalo.fi/sv/evenemang/event/9817273C1DB6A9EB2771F705D8728858/Annegardens_konstlordag_Nattugglor", "en": "http://www.annantalo.fi/en/events/event/9817273C1DB6A9EB2771F705D8728858/Annantalo_Art_Saturday_Yokukkujat_Night_Owls" }, "name": { "fi": "Annantalon taidelauantai: Yökukkujat", "sv": "Annegårdens konstlördag: Nattugglor", "en": "Annantalo Art Saturday: Yökukkujat – Night Owls" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Yökukkujat</b></p><p>Mitä öisessä metsässä lymyää? Tuntuuko sinusta joskus pimeässä siltä, että jokin kurkistaa kannon takaa tai piilottelee puussa? Voisiko se olla eläin tai mielikuvitusolento? Tässä Annantalon taidelauantain (t)yöpajassa tehdään paperista ja kartongista yllättävästi esiin ponnahtava otus. Kukkuu!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Nattugglor</b></p><p>Vad döljer sig i den nattliga skogen? Känns det ibland som att någon kikar fram bakom en stubbe eller gömmer sig i ett träd i mörkret? Kan det vara ett djur eller en fantasifigur? I den här workshoppen under Annegårdens konstlördag får du göra en varelse av papper och kartong som överraskande hoppar fram. Tittut!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. <br>Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Yökukkujat – Night Owls</b></p><p>What is hiding in a forest at night? Do you sometimes feel like someone is peeking behind a tree stump in the dark, or hiding up in a tree? Could it be an animal or some imaginary creature? In this Annantalo Art Saturday workshop, you will get to create a fun pop-up creature from paper and cardstock. Peekaboo!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66170/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67040", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490917, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T09:13:26.403937Z", "last_modified_time": "2025-09-26T09:13:26.403951Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773600.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490917/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-09-26T09:13:26.296011Z", "last_modified_time": "2025-09-26T09:13:26.560616Z", "date_published": null, "start_time": "2025-10-17T08:00:00Z", "end_time": "2025-10-17T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.", "sv": "Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång. Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!", "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9A6D5AE0EC8779D0254D40153FDF0CE7/Kanneltalon_maksuton_taidekerho_lapsille", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9A6D5AE0EC8779D0254D40153FDF0CE7/Kostnadsfri_konstklubb_for_barn_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/9A6D5AE0EC8779D0254D40153FDF0CE7/Kanneltalo_s_free_art_club_for_children" }, "name": { "fi": "Kanneltalon maksuton taidekerho lapsille", "sv": "Kostnadsfri konstklubb för barn på Gamlasgården", "en": "Kanneltalo's free art club for children" }, "description": { "fi": "<p>Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.</p><p>Olet tervetullut Kanneltalon taidekerhoon piipahtamaan tai viihtymään pidemmäksikin aikaa. Opettaja esittelee teemat ja tekniikat ja auttaa sinua tarvittaessa. Mukaasi saat oman ainutlaatuisen teoksesi ja myös uudet taidot ja ideat, jotka toivottavasti inspiroivat itsenäiseen työskentelyyn työpajan jälkeenkin.<br> <br>Syksyn ohjelmassa on esimerkiksi pienikokoinen kirja, pressprint-grafiikkaa, huovutettu heijastin, monotypia, värioppia, naamio, tussimaalausta, huovutettu joulukoriste ja paljon muuta kivaa!</p><p>Taidekerhon non-stop-toiminta on suunniteltu alakouluikäisille, nuoremmat lapset ovat tervetulleita osallistumaan yhdessä aikuisen kanssa.<br> <br>Ohjaajana kuvataiteilija Chloé Mahy-Hulkko <br>Opetuskielet suomi, englanti, ranska <br>Paikka: Kirjaston monitoimitila Tempo</p><p>Vapaa pääsy</p>", "sv": "<p>Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång. Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!</p><p>Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!</p><p>Konstklubbens non-stop-verksamhet är utformad med tanke på barn i grundskolan, men yngre barn är välkomna i sällskap av en vuxen.</p><p>Handledare är bildkonstnären Chloé Mahy-Hulkko</p><p>Undervisningsspråk finska, engelska, franska</p><p>Fritt inträde<br>Plats: Bibliotekets allaktivitetslokal Tempo</p>", "en": "<p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday.</p><p>The teacher introduced the used techniques and helps with working whenever needed. You get to keep all the art you create in the non-stop club, and hopefully the new skills and ideas inspire on independent working after the club too.</p><p>The autumn's program includes for example making a small book, press print graphic, felted reflector, monotypia, color theory, mask, marker painting, felted Christmas decoration and many other fun things!</p><p>The non-stop activities of the art club are designed for primary school children. Younger children are welcome together with an adult.</p><p>Directed by visual artist Chloé Mahy-Hulkko<br>Languages of instruction: Finnish, English, French<br>Location: The library's Tempo multifunctional space</p><p>Free entry</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67040/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66878", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p2625/?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" }, { "@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": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/breloque-theatre-group/", "sv": "https://www.lippu.fi/artist/breloque-theatre-group/", "en": "https://www.lippu.fi/artist/breloque-theatre-group/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490515, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-25T14:14:04.440095Z", "last_modified_time": "2025-08-25T14:14:04.440111Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769690.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490515/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-25T14:14:04.324663Z", "last_modified_time": "2025-09-26T09:13:25.113186Z", "date_published": null, "start_time": "2025-10-14T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille.", "sv": "En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år.", "en": "A colorful performance full of music, painting and theatre art for everyone over 3 years old." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/90EB4409D61C25FD3A0B95B87A5522B9/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa", "sv": "http://www.annantalo.fi/sv/evenemang/event/90EB4409D61C25FD3A0B95B87A5522B9/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa", "en": "http://www.annantalo.fi/en/events/event/90EB4409D61C25FD3A0B95B87A5522B9/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa" }, "name": { "fi": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group", "sv": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group", "en": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group" }, "description": { "fi": "<p>Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille.</p><p>Taidemaalari Daniela Kasperer, näyttelijä Andreas Simma ja muusikko Yorgos Pervolarakis tulkitsevat tarinan ihmiselämästä käänteisessä järjestyksessä: esitys alkaa vanhuudesta ja sen aikajana kelautuu hitaasti takaisin taaperoikään ja vauva-aikaan. Kuvat, äänet, leikki ja ihmissuhteet muodostavat narratiivin siitä, mitä on tapahtunut ja mitä on kuviteltu. Esitys tarjoaa inhimillisyyttä ja ihmisyyttä paljaimmillaan, niin hauskuutta ja väriä kuin syvällistä ja kepeääkin, ja tähtää nautinnon ja ilon tuottamiseen.</p><p>Päällekkäiset tekstin ja kuvan tasot muuttuvat taas näkyviksi kun niiden pintaa raaputtaa. BRIGHT SPOTS & EYE CATCHERS avaa uusia näkökulmia elämään, jossa olisi voinut käydä aivan toisinkin. Se on täynnä toisiinsa liittyviä kuvia ja muuttuvia musiikin ja oikukkaan leikin tasoja, jotka on suunnattu niin vanhoille kuin nuorillekin. <br> <br>Ja vielä yksi kysymys: Oletko koskaan yrittänyt maalata elämää?</p><p>Tuotannon kehitys: luova ryhmä<br>Ohjaaja, outside eye: Myrto Dimitriadou<br>Lavastus, outside eye: Ragna Heiny<br>Musiikki (sävellys ja tulkinta): Yorgos Pervolarakis <br>Esiintyjä: Andreas Simma <br>Maalaus: Daniela Kasperer</p><p>Sanaton<br>Kesto 35 min<br>Ikäsuositus 3–90-vuotiaille</p><p><b>Huomaa myös:</b><br>Annantalon syyslomakurssi 13.-15.10.2025 <br>Voin matkustaa ajassa – I can travel in time<br>Breloque-ryhmän taiteilijat järjestävät alakoululaisille kolmen kurssin kokonaisuuden: fyysistä ilmaisua, äänimaisemaa ja maalausta, joka kootaan pieneksi yhteisesitykseksi kurssin päätteeksi. <br><u><a href=\"https://www.annantalo.fi/fi/taidekurssit/course/3B6A7F7977A049C0D9EBB4CF5A499737/Voin_matkustaa_ajassa_-_esittamisen_ja_klovnerian_syyslomatyopaja\">Lue lisää ja ilmoittaudu</a></u></p>", "sv": "<p>En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år.</p><p>Konstnären Daniela Kasperer, skådespelaren Andreas Simma och musikern Yorgos Pervolarakis tolkar historien om ett människoliv berättat i omvänd ordning: med början i ålderdomen och långsamt rullande tillbaka till småbarn och baby. Bilder och ljud, lek och relationer blir till en berättelse om vad som har hänt och vad som har fantiserats. Föreställningen bjuder på det mänskliga och det alltför mänskliga, det roliga och det färgstarka, det djupsinniga och det tokiga, och har inget mindre syfte än att skapa glädje och nöje.</p><p>Lager av text och bild som har lagts omlott görs synliga igen genom skrapning. BRIGHT SPOTS & EYE-CATCHERS öppnar upp nya perspektiv på ett liv som kunde ha blivit helt annorlunda. Föreställningen är full av associerade bilder, skiftande musiklager och nyckfull lek, riktad till både unga och gamla. <br> <br>Och en sak till: Har du någonsin försökt måla ett liv?</p><p>Produktionsutveckling: det konstnärliga teamet<br>Regissör, det externa ögat: Myrto Dimitriadou<br>Scenografi, det externa ögat: Ragna Heiny<br>Musik (komposition och tolkning): Yorgos Pervolarakis <br>Skådespelare: Andreas Simma <br>Konstnär: Daniela Kasperer</p>", "en": "<p>A colorful performance full of music, painting and theatre art for everyone over 3 years old.</p><p>The painter Daniela Kasperer, the actor Andreas Simma and the musician Yorgos Pervolarakis interpret the story of a human life, told in reverse order: starting at old age and slowly scrolling back to toddler and baby. Images and sounds, play and relationships become a narrative of what has happened and what has been imagined. The performance offers the human and the all-too-human, the funny and the colorfully, the profound and the silly, and has no less the intention than to create joy and pleasure.</p><p>Layers of text and image that have been superimposed are made visible again by scraping. “BRIGHT SPOTS & EYE-CATCHERS” opens up new perspectives on a life that could have turned out quite differently. It is full of associated images, changing layers of music and wayward play, aimed at young and old. <br> <br>And one more thing: Have you ever tried to paint a life?</p><p>Production development: the artistic team<br>Director, outside eye: Myrto Dimitriadou<br>Set design, outside eye: Ragna Heiny<br>Music (composition & interpretation): Yorgos Pervolarakis <br>Acting: Andreas Simma <br>Painting: Daniela Kasperer</p><p><b>Also note:</b><br>Annantalo autumn holiday course 13.-15.10.2025<br>I can travel in time<br>The artists of the Breloque group will organize a three-course course for elementary school students: physical expression, soundscape and painting, which will be put together into a small joint performance at the end of the course. <u><a href=\"https://www.annantalo.fi/en/art-courses/course/3B6A7F7977A049C0D9EBB4CF5A499737/I_can_travel_in_time_-_performance_and_clownery_workshop\">Read more and register for the course</a></u></p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66878/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66917", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p2625/?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" }, { "@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": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/breloque-theatre-group/", "sv": "https://www.lippu.fi/artist/breloque-theatre-group/", "en": "https://www.lippu.fi/artist/breloque-theatre-group/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490514, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-25T14:14:03.745027Z", "last_modified_time": "2025-08-25T14:14:03.745046Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776408.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490514/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-25T14:14:03.629908Z", "last_modified_time": "2025-09-26T09:13:24.517211Z", "date_published": null, "start_time": "2025-10-13T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille.", "sv": "En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år.", "en": "A colorful performance full of music, painting and theatre art for everyone over 3 years old." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E08548682FDF7121EA1BE285DF77CD43/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa", "sv": "http://www.annantalo.fi/sv/evenemang/event/E08548682FDF7121EA1BE285DF77CD43/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa", "en": "http://www.annantalo.fi/en/events/event/E08548682FDF7121EA1BE285DF77CD43/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa" }, "name": { "fi": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group", "sv": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group", "en": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group" }, "description": { "fi": "<p>Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille.</p><p>Taidemaalari Daniela Kasperer, näyttelijä Andreas Simma ja muusikko Yorgos Pervolarakis tulkitsevat tarinan ihmiselämästä käänteisessä järjestyksessä: esitys alkaa vanhuudesta ja sen aikajana kelautuu hitaasti takaisin taaperoikään ja vauva-aikaan. Kuvat, äänet, leikki ja ihmissuhteet muodostavat narratiivin siitä, mitä on tapahtunut ja mitä on kuviteltu. Esitys tarjoaa inhimillisyyttä ja ihmisyyttä paljaimmillaan, niin hauskuutta ja väriä kuin syvällistä ja kepeääkin, ja tähtää nautinnon ja ilon tuottamiseen.</p><p>Päällekkäiset tekstin ja kuvan tasot muuttuvat taas näkyviksi kun niiden pintaa raaputtaa. BRIGHT SPOTS & EYE CATCHERS avaa uusia näkökulmia elämään, jossa olisi voinut käydä aivan toisinkin. Se on täynnä toisiinsa liittyviä kuvia ja muuttuvia musiikin ja oikukkaan leikin tasoja, jotka on suunnattu niin vanhoille kuin nuorillekin. <br> <br>Ja vielä yksi kysymys: Oletko koskaan yrittänyt maalata elämää?</p><p>Tuotannon kehitys: luova ryhmä<br>Ohjaaja, outside eye: Myrto Dimitriadou<br>Lavastus, outside eye: Ragna Heiny<br>Musiikki (sävellys ja tulkinta): Yorgos Pervolarakis <br>Esiintyjä: Andreas Simma <br>Maalaus: Daniela Kasperer</p><p>Sanaton<br>Kesto 35 min<br>Ikäsuositus 3–90-vuotiaille</p><p><b>Huomaa myös:</b><br>Annantalon syyslomakurssi 13.-15.10.2025 <br>Voin matkustaa ajassa – I can travel in time<br>Breloque-ryhmän taiteilijat järjestävät alakoululaisille kolmen kurssin kokonaisuuden: fyysistä ilmaisua, äänimaisemaa ja maalausta, joka kootaan pieneksi yhteisesitykseksi kurssin päätteeksi. <br><u><a href=\"https://www.annantalo.fi/fi/taidekurssit/course/3B6A7F7977A049C0D9EBB4CF5A499737/Voin_matkustaa_ajassa_-_esittamisen_ja_klovnerian_syyslomatyopaja\">Lue lisää ja ilmoittaudu</a></u></p>", "sv": "<p>En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år.</p><p>Konstnären Daniela Kasperer, skådespelaren Andreas Simma och musikern Yorgos Pervolarakis tolkar historien om ett människoliv berättat i omvänd ordning: med början i ålderdomen och långsamt rullande tillbaka till småbarn och baby. Bilder och ljud, lek och relationer blir till en berättelse om vad som har hänt och vad som har fantiserats. Föreställningen bjuder på det mänskliga och det alltför mänskliga, det roliga och det färgstarka, det djupsinniga och det tokiga, och har inget mindre syfte än att skapa glädje och nöje.</p><p>Lager av text och bild som har lagts omlott görs synliga igen genom skrapning. BRIGHT SPOTS & EYE-CATCHERS öppnar upp nya perspektiv på ett liv som kunde ha blivit helt annorlunda. Föreställningen är full av associerade bilder, skiftande musiklager och nyckfull lek, riktad till både unga och gamla. <br> <br>Och en sak till: Har du någonsin försökt måla ett liv?</p><p>Produktionsutveckling: det konstnärliga teamet<br>Regissör, det externa ögat: Myrto Dimitriadou<br>Scenografi, det externa ögat: Ragna Heiny<br>Musik (komposition och tolkning): Yorgos Pervolarakis <br>Skådespelare: Andreas Simma <br>Konstnär: Daniela Kasperer</p>", "en": "<p>A colorful performance full of music, painting and theatre art for everyone over 3 years old.</p><p>The painter Daniela Kasperer, the actor Andreas Simma and the musician Yorgos Pervolarakis interpret the story of a human life, told in reverse order: starting at old age and slowly scrolling back to toddler and baby. Images and sounds, play and relationships become a narrative of what has happened and what has been imagined. The performance offers the human and the all-too-human, the funny and the colorfully, the profound and the silly, and has no less the intention than to create joy and pleasure.</p><p>Layers of text and image that have been superimposed are made visible again by scraping. “BRIGHT SPOTS & EYE-CATCHERS” opens up new perspectives on a life that could have turned out quite differently. It is full of associated images, changing layers of music and wayward play, aimed at young and old. <br> <br>And one more thing: Have you ever tried to paint a life?</p><p>Production development: the artistic team<br>Director, outside eye: Myrto Dimitriadou<br>Set design, outside eye: Ragna Heiny<br>Music (composition & interpretation): Yorgos Pervolarakis <br>Acting: Andreas Simma <br>Painting: Daniela Kasperer</p><p><b>Also note:</b><br>Annantalo autumn holiday course 13.-15.10.2025<br>I can travel in time<br>The artists of the Breloque group will organize a three-course course for elementary school students: physical expression, soundscape and painting, which will be put together into a small joint performance at the end of the course. <u><a href=\"https://www.annantalo.fi/en/art-courses/course/3B6A7F7977A049C0D9EBB4CF5A499737/I_can_travel_in_time_-_performance_and_clownery_workshop\">Read more and register for the course</a></u></p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66917/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66349", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 1178361, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-04T08:12:37.500005Z", "last_modified_time": "2025-07-04T08:12:37.500018Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773474.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178361/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-04T08:12:37.445641Z", "last_modified_time": "2025-09-26T09:13:24.223601Z", "date_published": null, "start_time": "2025-10-13T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Yleisön pyynnöstä Kanneltalon saliin saapuu huippusuosittu kirjailija Satu Rämö!", "sv": "Superpopulära författaren Satu Rämö anländer till Gamlasgårdens sal på begäran av allmänheten!", "en": "By popular demand, the hugely popular author Satu Rämö is coming to Kanneltalo's hall!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BA22C86C9FCA490C7435935142041382/Kirjailijavieraana_Satu_Ramo", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BA22C86C9FCA490C7435935142041382/Forfattarbesok_Satu_Ramo", "en": "http://www.kanneltalo.fi/en/events/event/BA22C86C9FCA490C7435935142041382/Visiting_Author_Satu_Ramo" }, "name": { "fi": "Kirjailijavieraana Satu Rämö – Kulttuurikorttelitoive", "sv": "Författarbesök: Satu Rämö – Kulturkortsönskemål", "en": "Visiting Author Satu Rämö – Culture Quarter request" }, "description": { "fi": "<p>Yleisön pyynnöstä Kanneltalon saliin saapuu huippusuosittu kirjailija Satu Rämö!</p><p>Tilaisuudessa keskustellaan Rämön menestyksekkäästä Hildur-sarjasta, etenkin viimeisimmästä Rakel-teoksesta (WSOY 2024).</p><p>Rikosetsivä Hildur Rúnarsdóttirin arki on pitkästä aikaa seesteistä, hän on käynyt surffauslomalla Havaijilla ja Länsivuonoilla on ollut rauhallista. Myös Jakob Johanson on tyytyväinen, vaikka Jakobin pojan kotiutuminen Islantiin ei ole sujunut ongelmitta. Hildur käy säännöllisesti vanhainkodissa tapaamassa perhetuttavaansa Helgaa. Vanhoja muistellessa alkaa paljastua uusia, yllättäviä asioita Rakel-äidistä.</p><p>Hildurin lapsuuden kotitalon remontti etenee, kunnes pahin mahdollinen salaisuus paljastuu. Samaan aikaan kesäiseen Ísafjörðuriin saapuva, suuria turistimassoja kuljettava risteilyalus tuo mukanaan ongelmia, jotka koettelevat Hildurin oikeustajua.</p><p>Satu Rämö (s. 1980) on Islannissa asuva kirjailija ja ekonomi. Hildur-sarja on ollut poikkeuksellisen suuri menestys joka mittarilla. Hildurin maailma on laajentunut televisioon ja teatterilavoille, ja sarjan käännösoikeuksia on myyty yli pariin kymmeneen maahan, muun muassa Saksaan, Isoon-Britanniaan, Ranskaan ja kaikkiin Pohjoismaihin.</p><p>Satu Rämöä haastattelee kirjailija, toimittaja Esa Mäkijärvi</p><p><b>Kulttuurikorttelitoive</b><br>Kanneltalon kulttuurikorttelitoiveet ovat syntyneet alueen asukkaiden ja kävijöiden toiveista. Olemme keränneet ideoitanne tapahtumissa ja verkkokyselyissä – ja kuunnelleet tarkasti. Kun tapahtuman yhteydessä näkyy Kulttuurikorttelitoive-merkintä, se kertoo, että ohjelma on toteutettu juuri teidän ehdotustenne pohjalta.</p><p>Kiitos, että rakennatte kanssamme Kanneltalon kulttuuritarjontaa!</p><p>Yhteistyössä Helsingin työväenopiston ja Kannelmäen kirjaston kanssa.</p><p>Vapaa pääsy</p>", "sv": "<p>Superpopulära författaren Satu Rämö anländer till Gamlasgårdens sal på begäran av allmänheten!</p><p>Vi diskuterar Rämös framgångsrika Hildur-serie, i synnerhet den senaste boken Rakel (WSOY 2024).</p><p>Kriminalinspektör Hildur Rúnarsdóttir har för första gången sedan länge en lugn vardag, hon har varit på surfsemester i Hawaii och det har varit lugnt i hemtrakterna. Även Jakob Johanson är nöjd, även om Jakobs son inte helt problemfritt blivit hemmastadd på Island. Hildur besöker regelbundet ålderdomshemmet för att träffa sin vän Helga. Gamla minnen börjar avslöja nya överraskande saker om mamman Rakel.</p><p>Renoveringen av Hildurs barndomshem framskrider tills den värsta möjliga hemligheten avslöjas. Ett kryssningsfartyg som samtidigt anländer till Ísafjörður med stora turistmassor inför sommaren medför problem som påverkar Hildurs rättskänsla.</p><p>Satu Rämö (f. 1980) är en författare och ekonom bosatt på Island. Hildur-serien har varit en exceptionellt stor framgång med varje mätare mätt. Hildur-världen har utvidgats till tv och teaterscener, och seriens översättningsrättigheter har sålts till över tjugo länder, bland annat Tyskland, Storbritannien, Frankrike och alla nordiska länder.</p><p>Satu Rämö intervjuas av författare, redaktör Esa Mäkijärvi</p><p>I samarbete med Helsingfors finska arbetarinstitut och Gamlas bibliotek.</p><p><b>Kulturkortsönskemål</b><br>Gamlasgårdens kulturkortsönskemål har uppstått i önskemål från boende och besökare i området. Vi har samlat in era idéer genom evenemang och online-enkäter – och lyssnat noga.</p><p>När märket Kulturkortsönskemål visas vid evenemanget betyder det att programmet har skapats med dina förslag i åtanke.</p><p>Tack för att du bygger Gamlasgårdens kulturutbud tillsammans med oss!</p>", "en": "<p>By popular demand, the hugely popular author Satu Rämö is coming to Kanneltalo's hall!</p><p>The event will feature a discussion about Rämö's successful Hildur series, especially the latest instalment Rakel (WSOY, 2024).</p><p>Detective Hildur Rúnarsdóttir's life has finally settled into a peaceful routine. She has returned from a surfing holiday in Hawaii, and the Westfjords have been calm. Jakob Johanson is also happy, although his son's adjustment to life in Iceland has not been without challenges. Hildur makes regular visits to a retirement home to see her family friend Helga. As they revisit old memories, new and surprising revelations about Rakel, Hildur's mother, begin to surface.</p><p>The renovation of Hildur's childhood home progresses, until the worst possible secret comes to light. Meanwhile, a cruise ship carrying massive crowds of tourists arrives in summery Ísafjörður, bringing problems that put Hildur's sense of justice to the test.</p><p>Satu Rämö (b. 1980) is an Iceland-based author and economist. The Hildur series has been an extraordinary success on every scale. The world of Hildur has expanded to television and theatre stages, and the series' translation rights have been sold to over twenty countries, including Germany, the UK, France and all the Nordic countries.</p><p>Satu Rämö will be interviewed by author and journalist Esa Mäkijärvi.</p><p>In cooperation with Helsinki Adult Education Centre and Kannelmäki Library.</p><p><b>Culture Quarter request</b><br>Kanneltalo Culture Quarter requests have been born out of the wishes of residents and visitors to the area.</p><p>We have collected your ideas through events and online surveys, and listened to them carefully. When you see the Kulttuurikorttelitoive label (‘Culture Quarter Request’) in connection to an event, this means that the programme has been created based on your suggestions.</p><p>Thank you for helping us create Kanneltalo's cultural offering!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66349/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22cnja", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22c2da/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T07:13:14.295104Z", "last_modified_time": "2025-09-26T09:08:45.274000Z", "date_published": null, "start_time": "2025-12-04T12:30:00Z", "end_time": "2025-12-04T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "name": { "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa", "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket", "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p><p><br></p><p>Mukana on myös Hello Espoo-info joka tarjoaa apua ja tukea vieraskielisille espoolaisille! Tervetuloa!</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn.</p><p><br></p><p>Hello Espoo-info, som erbjuder hjälp och stöd till Esbobor som talar främmande språk kommer också att vara med! Välkommen!</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services.</p><p><br></p><p>Hello Espoo Info, that helps and guides non-finnish speaking customers will also be present. Welcome!</p>" }, "location_extra_info": null, "provider": { "fi": "Konsernihallinto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22cnja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ctc4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22c2da/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T07:13:12.927486Z", "last_modified_time": "2025-09-26T09:05:47.940227Z", "date_published": null, "start_time": "2025-10-09T11:30:00Z", "end_time": "2025-10-09T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "name": { "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa", "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket", "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p><p><br></p><p>Mukana on myös Hello Espoo -info joka tarjoaa apua ja tukea vieraskielisille espoolaisille! Tervetuloa!</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn.</p><p><br></p><p>Hello Espoo-info, som erbjuder hjälp och stöd till Esbobor som talar främmande språk kommer också att vara med! Välkommen!</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services.</p><p><br></p><p>Hello Espoo Info, that helps and guides non-finnish speaking customers will also be present. Welcome!</p>" }, "location_extra_info": null, "provider": { "fi": "Konsernihallinto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ctc4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22cqhq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22c2da/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T07:13:13.631780Z", "last_modified_time": "2025-09-26T09:04:27.364437Z", "date_published": null, "start_time": "2025-11-06T12:30:00Z", "end_time": "2025-11-06T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "name": { "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa", "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket", "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p><p><br></p><p>Mukana on myös Hello Espoo-info joka tarjoaa apua ja tukea vieraskielisille espoolaisille! Tervetuloa!</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn.</p><p><br></p><p>Hello Espoo-info, som erbjuder hjälp och stöd till Esbobor som talar främmande språk kommer också att vara med! Välkommen!</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services.</p><p><br></p><p>Hello Espoo Info, that helps and guides non-finnish speaking customers will also be present. Welcome!</p>" }, "location_extra_info": null, "provider": { "fi": "Konsernihallinto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22cqhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmykv7hry", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490920, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T08:04:44.278227Z", "last_modified_time": "2025-09-26T08:04:44.278244Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/274214f6-03d5-47d2-bef5-b65cbc481a08.png", "cropping": "102,0,670,569", "photographer_name": "", "alt_text": "Tummanpuhuva kuva jossa 8 bändin jäsentä seisovat nuolimuodostelmassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490920/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-09-26T08:16:58.092296Z", "last_modified_time": "2025-09-26T08:16:58.092316Z", "date_published": null, "start_time": "2025-10-20T15:00:00Z", "end_time": "2025-10-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Technoa torvella? Tule bilettämään suomenruotsalaisen opiskelijayhtyeen Die Technogruppenin tahtiin", "sv": "Techno på tuba? Kom och festa loss med studerandekollektivet Die Technogruppe", "en": "Brass band techno? Come party to the beats of the studentcollective Die Technogruppe" }, "info_url": null, "name": { "fi": "Die Technogruppe Ison Omenan kirjastossa", "sv": "Die Technogruppe på Iso Omenas bibliotek", "en": "Die Technogruppe at the Iso Omena Library" }, "description": { "fi": "<p>Die Technogruppe näyttää että technoa voi soittaa torvella. Tästä hulluudesta ette halua jäädä paitsi, tulkaapa siis tanssimaan ja aloittakaa viikko eins zwei drei tuuban tahtiin.</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p><p><br></p>", "sv": "<p> Die Technogruppe visar att det går att spela techno på blåsinstrument. Det här är ungefär det underligaste du kan uppleva på ett bibliotek, så ta tillfället i akt och inled din vecka med att fira måndag kväll i takt till eins zwei drei, på horn.</p><p>Die Technogruppe auf Düffeldorff sind die weltbesten cybernetische partybängerspielen trommel-und-blechblasbände aus Düffeldorff, Otnäs. Wir sprechen manchmal Deutch, und haben über ganzen Otnäs und Helßinki Bereich ansteigen machen.</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p><p><br></p>", "en": "<p>Die Technogruppe will show you that techno can be played with brass instruments. You don’t want to miss this madness – so come dance and start your week eins zwei drei to the rhythm of the tuba!</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p><p><br></p>" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykv7hry/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27961, "next": "