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=33®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=34®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=32®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "espoo_le:agmyl7jj3q", "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: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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhe4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jibe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jiki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jium/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7ji5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjhe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjrq/?format=api" } ], "images": [ { "id": 1490924, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-26T11:11:16.794123Z", "last_modified_time": "2025-09-26T11:11:16.794137Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png", "cropping": "52,0,418,365", "photographer_name": "AI", "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-09-26T11:49:30.469615Z", "last_modified_time": "2025-09-26T11:49:30.469633Z", "date_published": null, "start_time": "2025-10-21T07:00:00Z", "end_time": "2025-12-09T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.", "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.", "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather" }, "info_url": null, "name": { "fi": "Kauppakeskuskävely ", "sv": "Shoppingcentrumpromenad ", "en": "Shopping mall walk" }, "description": { "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>", "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>", "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66873", "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": "35/39 €", "sv": "35/39 €", "en": "35/39 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/andrea-vanzo/", "sv": "https://www.lippu.fi/artist/andrea-vanzo/", "en": "https://www.lippu.fi/artist/andrea-vanzo/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T12:15:05.608831Z", "last_modified_time": "2025-08-19T12:15:05.608850Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776268.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-19T12:15:05.435242Z", "last_modified_time": "2025-09-26T11:13:55.542236Z", "date_published": null, "start_time": "2026-01-23", "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": "Neoklassisen musiikin suurnimi Andrea Vanzo ensimmäistä kertaa suomeen", "sv": "Den neoklassiska musikens storhet Andrea Vanzo för första gången i Finland", "en": "Andrea Vanzo, one of the greats of neoclassical music, to visit Finland for the first time" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/593E65BA49882A42BBCFD8E3B0B50791/Andrea_Vanzo_Intimacy_Part_2_IT_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/593E65BA49882A42BBCFD8E3B0B50791/Andrea_Vanzo_Intimacy_Part_2_IT_", "en": "http://www.savoyteatteri.fi/en/events/event/593E65BA49882A42BBCFD8E3B0B50791/Andrea_Vanzo_Intimacy_Part_2_IT_" }, "name": { "fi": "Andrea Vanzo – Intimacy Part 2 (IT)", "sv": "Andrea Vanzo – Intimacy Part 2 (IT)", "en": "Andrea Vanzo – Intimacy Part 2 (IT)" }, "description": { "fi": "<p>Neoklassisen musiikin suurnimi Andrea Vanzo ensimmäistä kertaa suomeen</p><p>Palkittu italialainen säveltäjä sekä valtavan somesuosion saavuttanut Andrea Vanzo saapuu ensi kertaa Suomeen omalla konserttikiertueellaan. Andrea Vanzo – Intimacy Part 2 -konsertti kuullaan Helsingissä Savoy-teatterissa perjantaina 23. tammikuuta 2026.</p><p>Vanzo tunnetaan postminimalistisesta tyylistään, jossa yhdistyvät moderni klassinen musiikki ja popin äänimaisema. Hänen sävellyksensä rakentavat tunnelmallisia ja jopa elokuvallisia maailmoja, jotka kumpuavat henkilökohtaisista paikoista ja kokemuksista. Musiikin keskiössä ovat ihmisen ja luonnon suhde, rakkaus, tunteet ja ilmaisunvapaus.</p><p>Vuonna 2022 julkaistu Intimacy Vol. 1-pianoalbumi sai laajaa huomiota ja keräsi miljoonia kuuntelukertoja eri alustoilla. Vanzo esiintyi ensimmäistä kertaa Euroopan kiertueella alkuvuodesta 2024, ja kaikki kahdeksan konserttia suurkaupungeissa kuten Lontoossa, Pariisissa ja Berliinissä myytiin loppuun.</p><p>Andrea Vanzon musiikki on löytänyt yleisönsä myös sosiaalisessa mediassa, ja hän on noussut yhdeksi neoklassisen musiikin vaikuttajista yli miljoonan Instagram-seuraajan voimin. Syksyllä 2025 julkaistaan hänen uusi albuminsa Intimacy Vol. 2, jonka musiikkia tullaan kuulemaan myös Helsingissä.</p><p>Ovet klo 18:00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>Den neoklassiska musikens storhet Andrea Vanzo för första gången i Finland</p><p>Den prisbelönta italienska kompositören Andrea Vanzo, som har nått enorma framgångar i sociala medier, kommer till Finland för första gången för en egen konsertturné. Konserten Andrea Vanzo – Intimacy Part 2 spelas på Savoy-teatern i Helsingfors fredagen den 23 januari 2026.</p><p>Vanzo är känd för sin postminimalistiska stil, som kombinerar modern klassisk musik med popmusikens ljudlandskap. Hans kompositioner bygger stämningsfulla och till och med filmiska världar som springer ur personliga platser och upplevelser. Musiken handlar om förhållandet mellan människa och natur, kärlek, känslor samt yttrandefrihet.</p><p>Pianoalbumet Intimacy Vol. 1 som släpptes 2022 fick stor uppmärksamhet och spelades miljontals gånger på olika plattformar. Vanzo uppträdde för första gången på en Europaturné i början av 2024, och samtliga åtta konserter i storstäder som London, Paris och Berlin var utsålda.</p><p>Andrea Vanzos musik har hittat sin publik också på sociala medier, och han har blivit en av de mest inflytelserika personerna inom neoklassisk musik med över en miljon följare på Instagram. Hösten 2025 släpptes hans nya album Intimacy Vol. 2, och musik från det kommer att framföras också i Helsingfors.</p><p>Dörrarna öppnas kl. 18:00. Showtime bekräftas senare.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>Andrea Vanzo, one of the greats of neoclassical music, to visit Finland for the first time</p><p>The award-winning Italian composer Andrea Vanzo, who has achieved huge popularity in social media, will arrive in Finland for the first time on his own concert tour. Andrea Vanzo – Intimacy Part 2 will be performed at the Savoy Theatre in Helsinki on Friday, 23 January 2026.</p><p>Vanzo is known for his post-minimalist style, which combines modern classical music with a pop soundscape. His compositions build atmospheric and even cinematic worlds that spring from personal places and experiences. His music focuses on the relationship between man and nature, love, emotions and freedom of expression.</p><p>Released in 2022, the piano album Intimacy Vol. 1 received widespread attention and garnered millions of plays across different platforms. Vanzo performed for the first time on a European tour in early 2024, and all his eight concerts in major cities such as London, Paris and Berlin were sold out.</p><p>Andrea Vanzo's music has also found an audience on social media, and he has become one of the most influential figures in neoclassical music with over a million Instagram followers. His new album, Intimacy Vol. 2, will be released in autumn 2025, and works from the new album will also be heard in Helsinki.</p><p>Doors at 18:00. Showtime will be confirmed later.</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": "Fullsteam Agency", "sv": "Fullsteam Agency", "en": "Fullsteam Agency" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66873/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66911", "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": "46,80/48,80 €", "sv": "46,80/48,80 €", "en": "46,80/48,80 €" }, "info_url": { "fi": "https://www.lippu.fi/event/erja-lyytinen-friends-blue-christmas-2025-savoy-teatteri-20527966/", "sv": "https://www.lippu.fi/event/erja-lyytinen-friends-blue-christmas-2025-savoy-teatteri-20527966/", "en": "https://www.lippu.fi/event/erja-lyytinen-friends-blue-christmas-2025-savoy-teatteri-20527966/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490505, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-25T11:14:07.770184Z", "last_modified_time": "2025-08-25T11:14:07.770202Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776887.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490505/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-25T11:14:07.579679Z", "last_modified_time": "2025-09-26T11:13:54.951571Z", "date_published": null, "start_time": "2025-12-20T17: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": "Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka", "sv": "Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka", "en": "Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C96530CB4A374C1EC27F5A56BA5C5467/_Erja_Lyytinen_Friends_Blue_Christmas_2025", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C96530CB4A374C1EC27F5A56BA5C5467/_Erja_Lyytinen_Friends_Blue_Christmas_2025", "en": "http://www.savoyteatteri.fi/en/events/event/C96530CB4A374C1EC27F5A56BA5C5467/_Erja_Lyytinen_Friends_Blue_Christmas_2025" }, "name": { "fi": "Erja Lyytinen & Friends: Blue Christmas 2025", "sv": "Erja Lyytinen & Friends: Blue Christmas 2025", "en": "Erja Lyytinen & Friends: Blue Christmas 2025" }, "description": { "fi": "<p>Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka</p><p>Kitaravirtuoosi <b>Erja Lyytinen</b> on ilahduttanut konserttiyleisöjä jouluisella Blue Christmas – kiertueellaan jo vuodesta 2017 lähtien! Lyytinen on yksi johtavista kansainvälisillä markkinoilla operoivista blues-rock kitaristeista ja hänet onkin palkittu useasti eri kategorioissa vuosien varrella. Vuonna 2022 Lyytinen teki historiaa olemalla ehdolla ensimmäisenä suomalaisena artistina Kanadan Maple Blues Awardseissa. Marraskuussa 2024 Lyytiselle myönnettiin Brittiläisen HRH–festivaalin toimesta Angel of Rock -palkinto. Palkinto myönnetään merkittävästä panoksesta rockin, metallin tai blues-musiikin saralla. Uransa aikana Lyytinen on esiintynyt maailman kärkikaartiin kuuluvien kitaristien, kuten Carlos Santanan, Sonny Landrethin, Jennifer Battenin ja Joe Bonamassan rinnalla. Lyytisen viimeisin albumi ”Smell the Roses” julkaistiin keväällä 2025. Albumi on saanut kiitettäviä arvioita kansainvälisissä julkaisuissa ja sijoittui kuudenneksi UK:n IBBA:n huhtikuun 2025 radiolistalla. Laulajantaitojaan Lyytinen pääsi esittelemään Masked Singer -ohjelmassa Luurankona. Tänäkin vuonna Blue Christmas -konsertissa kuullaan kattaus Lyytisen tuotannosta, tunnelmallisia sinisiä säveliä ja jouluisia rokkaavia kappaleita upeiden artistivieraiden kera!</p><p><b>Hanna Pakarinen</b> tunnetaan kautta aikain ensimmäisenä ja ehdottomasti legendaarisimpana Suomen Idolsin voittajana. Hänen kruunajaisiaan seurasi TV:n välityksellä peräti 1,6 miljoonaa katsojaa. Entistä isompien miljoonayleisöjen eteen Pakarinen nousi vuonna 2007, jolloin upeaääninen artisti edusti Suomea Euroviisuissa, harvinaisesti vieläpä kotikentällä Helsingin Hartwall Arenalla. Sooloalbumeillaan kulta- ja platinarajoja rikkoneesta Hanna Pakarisesta on huokunut läpi hänen uransa ajan jättiläismäinen palo musiikkia kohtaan. Hän on suunnannäyttäjä, jonka esimerkillä on ollut iso vaikutus monen uuden aallon tähtinimen polkuun. Sukupolvien yli ulottuva arvostus on vain kasvanut sen jälkeen, kun Pakarinen päätti kahdeksan vuoden julkaisutaukonsa syksyllä 2021. Esiintyminen on Pakariselle artistina olemisessa tärkeintä, ja hän onkin kertonut lavalla olemisen yhdeksi parhaista paikoista maailmassa. Pakarinen ilahdutti Blue Christmas kuulijoita jo vuoden 2024 kiertueella Rovaniemen konsertissa valaisten positiivisella olemuksellaan jouluisen konserttiyleisön.</p><p><b>Kärtsy Hatakka</b> tunnetaan parhaiten 80-luvun puolivälistä asti toimineen Waltari-yhtyeen laulajana ja primusmoottorina. Metallia, taidemusiikkia, kansanmusiikkia ja funkia yhdistelevä Waltari on pohjustanut suomalaisten metalliyhtyeiden menestystä Euroopassa, ja on esiintynyt megafestivaaleilla mm. Roskildessä ja Wackenissa. Viime vuosina Kärtsy on tullut suurelle yleisölle tutuksi myös vaikuttavana sooloesiintyjänä, joka loikkii genrerajojen yli vakuuttavan vaivattomasti. Soolotuotannossaan Kärtsy on soljunut popista rockiin leimaten omiin nimiinsä signature soundillaan kaikki esittämänsä cover-biisit. Keväällä 2025 Tähdet, Tähdet -kisassa Kärtsy ällistytti suomalaisen TV-yleisön taituruudellaan ja autenttisella rokkitähden olemuksellaan. Tänä vuonna Kärtsy tempaa mukaansa Blue Christmas konsertin kuulijat ainutlaatuisella lavakarismallaan ja persoonallisella äänellään!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>", "sv": "<p>Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka</p><p>Gitarrvirtuosen Erja Lyytinen har glatt konsertpubliken med sin turné Blue Christmas sedan 2017! Lyytinen är en av de ledande bluesrockgitarristerna på den internationella marknaden och har genom åren belönats flera gånger i olika kategorier. År 2022 skrev Lyytinen historia genom att bli den första finska artisten som var nominerad vid Maple Blues Awards i Kanada. I november 2024 tilldelades Lyytinen priset Angel of Rock vid den brittiska HRH-festivalen. Priset delas ut för en betydande insats inom rock-, metal- eller bluesmusikens område. Under sin karriär har Lyytinen uppträtt tillsammans med några av världens främsta gitarrister, bland andra Carlos Santana, Sonny Landreth, Jennifer Batten och Joe Bonamassa. Lyytinens senaste album Smell the Roses gavs ut våren 2025. Albumet har hyllats i internationella publikationer och rankades som nummer sex på brittiska IBBA:s radiolista i april 2025. I programmet Masked Singer fick Lyytinen visa upp sina sångfärdigheter som Skelettet. Årets Blue Christmas-konsert kommer återigen att innehålla ett urval ur Lyytinens produktion, stämningsfulla blå melodier och rockiga julsånger med fantastiska gästartister!</p><p>Hanna Pakarinen är känd som den genom tiderna första och överlägset mest legendariska vinnaren av finska Idol. När hon utsågs till vinnare följde inte mindre än 1,6 miljoner tittare med på tv. Pakarinen ställde sig framför en ännu större miljonpublik 2007, när hon med sin fantastiska röst representerade Finland i Eurovisionen, för ovanlighetens skull på hemmaplan i Hartwall Arena i Helsingfors. Hanna Pakarinen, som slagit guld- och platinarekord med sina soloalbum, har under hela sin karriär utstrålat en enorm passion för musiken. Hon är en föregångare vars exempel har haft stor betydelse för många av den nya vågens stjärnor. Den generationsöverskridande uppskattningen har bara ökat sedan Pakarinen avslutade sin åtta år långa paus från utgivning hösten 2021. Att uppträda är den viktigaste delen av att vara artist för Pakarinen, och hon har sagt att scenen är en av de bästa platserna i världen att vara på. Pakarinen gladde Blue Christmas-publiken redan under turnén 2024 då hon på konserten i Rovaniemi lyste upp konsertpubliken med sin positiva personlighet.</p><p>Kärtsy Hatakka är mest känd som sångare och drivande kraft i bandet Waltari, som varit aktivt sedan mitten av 80-talet. Waltari, som kombinerar metal, konstmusik, folkmusik och funk, har banat väg för de finska metalbandens framgångar i Europa och har uppträtt på megafestivaler som Roskilde och Wacken. På senare år har Kärtsy också blivit känd för den stora allmänheten som en imponerande soloartist, som med övertygande lätthet korsar genregränser. Kärtsys soloproduktion har gått från pop till rock, och med sitt signature sound sätter han sin egen prägel på alla coverlåtar han framför. Våren 2025 förbluffade Kärtsy den finska tv-publiken med sin skicklighet och autentiska rockstjärnepersonlighet i tävlingen Tähdet, tähdet. I år fängslar Kärtsy publiken på konserten Blue Christmas med sin unika scennärvaro och personliga röst!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h 15 min., inklusive paus.</p>", "en": "<p>Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka</p><p>Guitar virtuoso Erja Lyytinen has been delighting concert audiences with her Blue Christmas tour since 2017! Lyytinen is one of the leading blues-rock guitarists operating in the international market and has received several awards in different categories over the years. In 2022, Lyytinen made history by becoming the first Finnish artist to be nominated at the Canadian Maple Blues Awards. In November 2024, Lyytinen was awarded the Angel of Rock Award by the HRH Festival in the UK. This award is given for outstanding contributions to rock, metal or blues music. During her career, Lyytinen has performed alongside some of the world's top guitarists, including Carlos Santana, Sonny Landreth, Jennifer Batten and Joe Bonamassa. Lyytinen's latest album \"Smell the Roses\" was released in spring 2025. The album has received praise from international publications and was ranked sixth on the UK IBBA April 2025 radio list. Lyytinen was able to showcase her singing skills in the Masked Singer programme as Luuranko, a skeleton character. This year's Blue Christmas concert will again feature a selection of Lyytinen's work, intimate blue tunes and rocking Christmas songs performed with great guest artists!</p><p>Hanna Pakarinen is known as the first and by far the most legendary winner of the Finnish Idol. No less than 1.6 million viewers watched her win the title through their TV screens. Pakarinen stood in front of even bigger audiences of millions of people in 2007, when the artist and her gorgeous voice represented Finland in the Eurovision Song Contest at Hartwall Arena in Helsinki in a rare occurrence where Finland got to host the contest. Hanna Pakarinen, whose solo albums have sold gold and platinum, has always radiated deep passion for music throughout her career. She is a trailblazer whose example has had a major impact on the path of many rising stars of the new wave. The cross-generational appreciation has only grown since Pakarinen ended her eight-year hiatus from releasing new material in autumn 2021. Performing is the most important part of being an artist for Pakarinen, and she has described the stage as one of the best places in the world. Pakarinen brought joy to the Blue Christmas concert audience already during the 2024 tour in Rovaniemi, lighting up the Christmas concert audience with her positive personality.</p><p>Kärtsy Hatakka is best known as the singer and primus motor of the Waltari band, active since the mid-1980s. Combining metal, art music, folk music and funk, Waltari has paved the way for the success of Finnish metal bands in Europe, and has performed at mega festivals such as Roskilde and Wacken. In recent years, Kärtsy has also become known to the general public as an impressive solo performer who crosses genre boundaries with convincing ease. Kärtsy's solo production has moved from pop to rock, and his signature sound has put his own mark on all the cover songs he has performed. In the spring of 2025, Kärtsy stunned the Finnish TV audience with his skills and authentic rock star persona in the Tähdet, Tähdet programme. This year, Kärtsy will captivate the audience of Blue Christmas with his unique stage charisma and signature sound!</p><p>Age rating: G</p><p>Duration approx. 2 h 15 min, intermission included</p>" }, "location_extra_info": null, "provider": { "fi": "Bluesland Productions", "sv": "Bluesland Productions", "en": "Bluesland Productions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66911/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66062", "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": "33,90-39,90 €", "sv": "33,90-39,90 €", "en": "33,90-39,90 €" }, "info_url": { "fi": "https://www.lippu.fi/event/name-20161416", "sv": "https://www.lippu.fi/event/name-20161416", "en": "https://www.lippu.fi/event/name-20161416" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 588863, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-22T06:13:32.398379Z", "last_modified_time": "2025-04-22T06:13:32.398396Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771189.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/588863/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-22T06:13:32.310585Z", "last_modified_time": "2025-09-26T11:13:54.474031Z", "date_published": null, "start_time": "2025-12-19T17: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": "Alati suosiotaan kasvattava lauluntekijä Samuli Putro lähtee yhtyeensä kanssa pitkälle kiertueelle lokakuussa 2025.", "sv": "Den ständigt populäre låtskrivaren Samuli Putro ger sig ut på en lång turné med sitt band i oktober 2025.", "en": "Ever-popular songwriter Samuli Putro will embark on a long tour with his band in October 2025." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella", "en": "http://www.savoyteatteri.fi/en/events/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella" }, "name": { "fi": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä", "sv": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä", "en": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä" }, "description": { "fi": "<p>Alati suosiotaan kasvattava lauluntekijä Samuli Putro lähtee yhtyeensä kanssa pitkälle kiertueelle lokakuussa 2025.</p><p>Kaksikymmentäviisi keikkaa käsittävä rundi vie Putron konserttisaleihin, teattereihin ja klubeile.</p><p><i>”En minä nyt oikein tiedä miten tässä näin kävi. Mutta koska tekemisen paloa ja kysyntää tuntuu riittävän, niin sama kai se on pistellä menemään”</i>, toteaa viisikymmentäviisi vuotta elokuussa täyttävä Putro.</p><p>Kukoistuskausi näkyy myös julkaisurintamalla. Putron yhdeksäs sooloalbumi julkaistaan lokakuussa. Sen ensimmäinen single ”Kuvat meistä kaikista” on soinut radioissa jo taajaan. Myös kiertueen nimi on siitä napattu.</p><p><i>”Kai minä sitten olen aina ollut moderni maankiertäjä. Kaikki muu on tullut siihen rinnalle kuin takaapäin kiitävä auto ohituskaistalla”</i>, muotoilee alkuvuodesta myös esikoiskirjansa julkaissut Putro.</p><p>Samuli Putron levynjulkaisukiertueella nähdään \"Suomen coolein trio\", eli:</p><p>Samuli Putro - laulu, kitara<br>Tuukka Tuunanen - koskettimet<br>Miikka Heikkinen – rummut</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Den ständigt populäre låtskrivaren Samuli Putro ger sig ut på en lång turné med sitt band i oktober 2025.</p><p>Turnén med tjugofem spelningar tar Putro till konsertsalar, teatrar och klubbar.</p><p>”Jag vet inte riktigt hur det här gick till. Men eftersom det verkar finnas tillräckligt med entusiasm för att arbeta och också efterfrågan, så är det väl lika bra att köra på”, säger Putro, som fyllde 55 år i augusti.</p><p>Glansperioden syns också på utgivningsfronten. Putros nionde soloalbum släpps i oktober. Albumets första singel Kuvat meistä kaikista har redan spelats flitigt på radio. Även det finska namnet på turnén, Vaikkei olla perillä on ajatukset siellä (Även om vi inte är framme är tankarna där), är hämtat från den.</p><p>”Jag antar att jag alltid har varit en modern vagabond. Allt annat har kommit vid sidan om, som en bil som kommer i hög fart bakifrån i en omkörningsfil”, säger Putro, som också gav ut sin debutbok i början av året.</p><p>På Samuli Putros skivsläppsturné medverkar \"Finlands coolaste trio\", det vill säga:</p><p>Samuli Putro – sång, gitarr<br>Tuukka Tuunanen – klaviatur<br>Miikka Heikkinen – trummor</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>Ever-popular songwriter Samuli Putro will embark on a long tour with his band in October 2025.</p><p>The twenty-five-show tour will take Putro to concert halls, theatres and clubs.</p><p>\"I don't really even know how this happened. But seems like there’s still fire to continue this work and there’s demand for it, so why stop?” says Putro, who turned fifty-five in August.</p><p>This era of creativity is also reflected in his released works. Putro's ninth solo album will be released in October. Its first single \"Kuvat meistä kaikista\" has already been extensively played in the radio, and it has also given the tour its name, loosely translated as ‘We’re not there yet, but our thoughts have arrived’.</p><p>\"I guess I've always been kind of a modern traveller. Everything else has just appeared by my side, like a fast car passing by on the fast lane,” muses Putro, who also published his debut book earlier this year.</p><p>Samuli Putro's album release tour will feature the ‘coolest trio in Finland’:</p><p>Samuli Putro – vocals, guitar<br>Tuukka Tuunanen – keyboards<br>Miikka Heikkinen – drums</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": "Central Line Entertainment Oy", "sv": "Central Line Entertainment Oy", "en": "Central Line Entertainment Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66062/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66537", "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": "48,90 €", "sv": "48,90 €", "en": "48,90 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3915091", "sv": "https://www.lippu.fi/eventseries/name-3915091", "en": "https://www.lippu.fi/eventseries/name-3915091" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490464, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:25.841579Z", "last_modified_time": "2025-08-19T10:14:25.841599Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765404.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490464/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T08:13:55.052081Z", "last_modified_time": "2025-09-26T11:13:53.812177Z", "date_published": null, "start_time": "2025-12-16T17: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": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.", "sv": "I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.", "en": "Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7BE2439C0FF0C86B2DDF2C2193CEA50C/Club_for_Five_-_JOULUNA_2025", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7BE2439C0FF0C86B2DDF2C2193CEA50C/Club_for_Five_JUL_2025", "en": "http://www.savoyteatteri.fi/en/events/event/7BE2439C0FF0C86B2DDF2C2193CEA50C/Club_for_Five_-_JOULUNA_2025" }, "name": { "fi": "Club for Five - JOULUNA 2025", "sv": "Club for Five – JUL 2025", "en": "Club for Five - JOULUNA 2025" }, "description": { "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>", "sv": "<p>I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.</p><p>Kom och upplev den älskade konserten JUL och kom i äkta julstämning!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h, inklusive paus.</p>", "en": "<p>Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation.</p><p>Come and experience the beloved JOULUNA concert and find the real spirit of Christmas!</p><p>Age rating: G</p><p>Duration approx. 2 h, including intermission</p>" }, "location_extra_info": null, "provider": { "fi": "Helmi Promotion Oy", "sv": "Helmi Promotion Oy", "en": "Helmi Promotion Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66537/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66536", "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": "48,90 €", "sv": "48,90 €", "en": "48,90 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3915091", "sv": "https://www.lippu.fi/eventseries/name-3915091", "en": "https://www.lippu.fi/eventseries/name-3915091" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490463, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:25.667427Z", "last_modified_time": "2025-08-19T10:14:25.667446Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765403.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490463/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T08:13:54.724386Z", "last_modified_time": "2025-09-26T11:13:53.438717Z", "date_published": null, "start_time": "2025-12-15T17: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": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.", "sv": "I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.", "en": "Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9574E24D2C391A5AE4977BA2B9F3D012/Club_for_Five_-_JOULUNA_2025", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9574E24D2C391A5AE4977BA2B9F3D012/Club_for_Five_JUL_2025", "en": "http://www.savoyteatteri.fi/en/events/event/9574E24D2C391A5AE4977BA2B9F3D012/Club_for_Five_-_JOULUNA_2025" }, "name": { "fi": "Club for Five - JOULUNA 2025", "sv": "Club for Five – JUL 2025", "en": "Club for Five - JOULUNA 2025" }, "description": { "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>", "sv": "<p>I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.</p><p>Kom och upplev den älskade konserten JUL och kom i äkta julstämning!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h, inklusive paus.</p>", "en": "<p>Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation.</p><p>Come and experience the beloved JOULUNA concert and find the real spirit of Christmas!</p><p>Age rating: G</p><p>Duration approx. 2 h, including intermission</p>" }, "location_extra_info": null, "provider": { "fi": "Helmi Promotion Oy", "sv": "Helmi Promotion Oy", "en": "Helmi Promotion Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66536/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66535", "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": "48,90 €", "sv": "48,90 €", "en": "48,90 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3915091", "sv": "https://www.lippu.fi/eventseries/name-3915091", "en": "https://www.lippu.fi/eventseries/name-3915091" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490462, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:25.439145Z", "last_modified_time": "2025-08-19T10:14:25.439161Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765402.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490462/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T08:13:54.398686Z", "last_modified_time": "2025-09-26T11:13:53.109896Z", "date_published": null, "start_time": "2025-12-14T17: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": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.", "sv": "I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.", "en": "Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F7E8516469054CE5FBFF7CF7C470E02B/Club_for_Five_-_JOULUNA_2025", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F7E8516469054CE5FBFF7CF7C470E02B/Club_for_Five_JUL_2025", "en": "http://www.savoyteatteri.fi/en/events/event/F7E8516469054CE5FBFF7CF7C470E02B/Club_for_Five_-_JOULUNA_2025" }, "name": { "fi": "Club for Five - JOULUNA 2025", "sv": "Club for Five – JUL 2025", "en": "Club for Five - JOULUNA 2025" }, "description": { "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>", "sv": "<p>I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.</p><p>Kom och upplev den älskade konserten JUL och kom i äkta julstämning!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h, inklusive paus.</p>", "en": "<p>Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation.</p><p>Come and experience the beloved JOULUNA concert and find the real spirit of Christmas!</p><p>Age rating: G</p><p>Duration approx. 2 h, including intermission</p>" }, "location_extra_info": null, "provider": { "fi": "Helmi Promotion Oy", "sv": "Helmi Promotion Oy", "en": "Helmi Promotion Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66535/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66514", "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": "48,90 €", "sv": "48,90 €", "en": "48,90 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3915091", "sv": "https://www.lippu.fi/eventseries/name-3915091", "en": "https://www.lippu.fi/eventseries/name-3915091" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490461, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:25.189399Z", "last_modified_time": "2025-08-19T10:14:25.189414Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765401.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490461/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T08:13:54.033878Z", "last_modified_time": "2025-09-26T11:13:52.717015Z", "date_published": null, "start_time": "2025-12-14T13: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": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.", "sv": "I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.", "en": "Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9B82184615E168430A46FE1926066B27/Club_for_Five_-_JOULUNA_2025", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9B82184615E168430A46FE1926066B27/Club_for_Five_JUL_2025", "en": "http://www.savoyteatteri.fi/en/events/event/9B82184615E168430A46FE1926066B27/Club_for_Five_-_JOULUNA_2025" }, "name": { "fi": "Club for Five - JOULUNA 2025", "sv": "Club for Five – JUL 2025", "en": "Club for Five - JOULUNA 2025" }, "description": { "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>", "sv": "<p>I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.</p><p>Kom och upplev den älskade konserten JUL och kom i äkta julstämning!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h, inklusive paus.</p>", "en": "<p>Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation.</p><p>Come and experience the beloved JOULUNA concert and find the real spirit of Christmas!</p><p>Age rating: G</p><p>Duration approx. 2 h, including intermission</p>" }, "location_extra_info": null, "provider": { "fi": "Helmi Promotion Oy", "sv": "Helmi Promotion Oy", "en": "Helmi Promotion Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66514/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66888", "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": "38,90 € / S&D 100,60 €", "sv": "38,90 € / S&D 100,60 €", "en": "38,90 € / S&D 100,60 €" }, "info_url": { "fi": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/", "sv": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/", "en": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490497, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-21T15:14:23.262790Z", "last_modified_time": "2025-08-21T15:14:23.262806Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776509.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490497/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T15:14:23.139549Z", "last_modified_time": "2025-09-26T11:13:52.296778Z", "date_published": null, "start_time": "2025-12-13T17: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": "Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.", "sv": "I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.", "en": "Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A97408785726628A844435B194961916/Suurlahettilaat", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A97408785726628A844435B194961916/Suurlahettilaat", "en": "http://www.savoyteatteri.fi/en/events/event/A97408785726628A844435B194961916/Suurlahettilaat" }, "name": { "fi": "Suurlähettiläät", "sv": "Suurlähettiläät", "en": "Suurlähettiläät" }, "description": { "fi": "<p>Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.</p><p>Yhtye nousi suomalaisen bändipopin kaanoniin heti vuonna 1991 debyyttialbumillaan Omituisten otusten kerho, josta ikivihreiksi nousi kappaleet Elokuun 11. ja Pitääxunaina?. Nopeassa tahdissa klassikkokimara jatkui mm. biiseillä Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot ja Mitä miehen tulee olla?<br> <br>Savoy Teatterissa 13.12. on luvassa yhtyeen juhlakiertueen 2025 viimeinen keikka ja runsas kattaus biisejä bändin uran varrelta. Suomisoulia, joka on tehnyt Suurlähettiläistä sukupolvien ajan rakastetun.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p><p><b>Konsertin Show&Dinner-lippupaketit ovat loppuunmyyty, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat<br> <br>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</b></p><p>Show & Dinner -lippu sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b><br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>TAI</p><p><b>Menu Green</b><br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>Menun hinta ei sisällä juomia.<br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>", "sv": "<p>I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.</p><p>Bandet skrev in sig i den finska bandpopens historia genast 1991 med sitt debutalbum Omituisten otusten kerho, från vilket låtarna Elokuun 11. och Pitääxunaina? blev evergreens. Den tempofyllda klassiska cocktailen fortsatte med låtar som Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot och Mitä miehen tulee olla?.</p><p>Den 13 december är Savoy-teatern värd för den sista konserten på bandets jubileumsturné 2025, och en hel uppsättning låtar från bandets karriär utlovas. Den finska soulen som gjort Suurlähettiläät älskat i generationer.</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><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Biljettpaketen Show & Dinner till konserten är slutsålda, men det går bra att beställa middag direkt i Savoy-teaterns restaurang Minnes webbutik: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Observera att det finns ett begränsat antal platser kvar till Minnes middagsdukning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>", "en": "<p>Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades.</p><p>The band shot to fame in the Finnish band pop scene right at the start, in 1991, with their debut album Omituisten otusten kerho. The album’s songs Elokuun 11. and Pitääxunaina? became evergreen hits. The band continued to churn out classics at a fast pace, with songs such as Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot and Mitä miehen tulee olla?</p><p>On 13 December, the Savoy Theatre will host the last show of the band's 2025 anniversary tour, offering a wide range of songs from the band's career: The Finnish soul that has made Suurlähettiläät a beloved band across generations.</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><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>The concert’s Show & Dinner ticket packages are sold out, but it is possible to order dinner directly from the Savoy Theatre's Restaurant Minne's online shop (website in Finnish): https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Please note that there are a limited number of seats left for the dinner service at Restaurant Minne.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>" }, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66888/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66889", "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-64 €", "sv": "17-64 €", "en": "17-64 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3948658", "sv": "https://www.lippu.fi/eventseries/name-3948658", "en": "https://www.lippu.fi/eventseries/name-3948658" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490585, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-02T07:15:24.834135Z", "last_modified_time": "2025-09-02T07:15:24.834157Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776515.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490585/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-25T12:14:18.906453Z", "last_modified_time": "2025-09-26T11:13:51.803127Z", "date_published": null, "start_time": "2025-12-12T17: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": "Legendaarinen laulaja-lauluntekijä Alejandro Escovedo saapuu vihdoin Suomeen! Yli neljä vuosikymmentä musiikkia tehnyt Escovedo yhdistää ainutlaatuisella tavalla meksikolaisiin juuriinsa rock-musiikkia, americanaa ja kantria – ja nyt legendaarista tarinankertojaa voi kuulla livenä osana Savoy & Sound Tracker Presents! -konserttisarjaa.", "sv": "Den legendariske sångaren och låtskrivare Alejandro Escovedo kommer äntligen till Finland! Escovedo, som gjort musik i över fyra årtionden, kombinerar på ett unikt sätt rockmusik, americana och country med sina mexikanska rötter – och nu kan du höra den legendariske historieberättaren live som en del av konsertserien Savoy & Sound Tracker Presents!", "en": "Legendary singer-songwriter Alejandro Escovedo will finally visit Finland! Escovedo, who has been making music for over four decades, uniquely combines rock music, Americana and country music with his Mexican roots – and now you can hear the legendary storyteller live as part of the concert series Savoy & Sound Tracker Presents!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F88F3501D4E896B0279E5D911A9A4E6C/Savoy_Sound_Tracker_Presents_Alejandro_Escovedo_USA_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F88F3501D4E896B0279E5D911A9A4E6C/Savoy_Sound_Tracker_Presents_Alejandro_Escovedo_USA_", "en": "http://www.savoyteatteri.fi/en/events/event/F88F3501D4E896B0279E5D911A9A4E6C/Savoy_Sound_Tracker_Presents_Alejandro_Escovedo_USA_" }, "name": { "fi": "Savoy & Sound Tracker Presents: Alejandro Escovedo (USA)", "sv": "Savoy & Sound Tracker Presents: Alejandro Escovedo (USA)", "en": "Savoy & Sound Tracker Presents: Alejandro Escovedo (USA)" }, "description": { "fi": "<p>Legendaarinen laulaja-lauluntekijä Alejandro Escovedo saapuu vihdoin Suomeen! Yli neljä vuosikymmentä musiikkia tehnyt Escovedo yhdistää ainutlaatuisella tavalla meksikolaisiin juuriinsa rock-musiikkia, americanaa ja kantria – ja nyt legendaarista tarinankertojaa voi kuulla livenä osana Savoy & Sound Tracker Presents! -konserttisarjaa.</p><p>1970-luvun punkskenessä uransa aloittanut Escovedo on yksi harvoista artisteista, joka pystyy luontevasti yhdistämään intiimit folk-balladit, säröiset rock-kappaleet ja kulttuurillisesti latautuneet tarinat yhdeksi, tunnistettavaksi tyyliksi. Hän on tehnyt yhteistyötä mm. Bruce Springsteenin, R.E.M-yhtyeen Peter Buckin ja roots-legenda Lucinda Williamsin kanssa.</p><p>Savoy-teatterin konsertissa Escovedo esiintyy sekä soolona että Sami Yaffan kotimaisista kärkimuusikoista kokoaman yhtyeen kanssa.</p><p>Keväällä 2025 alkanut konserttisarja jatkuu syksyllä Alejandro Escovedon konsertilla. Konserttisarjan sisällön kuratoi muusikko Sami Yaffa. ”Konserttisarjan ydin on tavallaan sama kuin tv:n Sound Tracker -ohjelmissa. Toivon mukaan konsertti yllättää kuuntelijan, avaa musiikillisen oven suoraan nirvanaan ja antaa kuuntelijalle ikimuistoisen elämyksen”, Yaffa kuvailee.</p><p>Konsertin kesto n. 2,5 h, sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>Den legendariske sångaren och låtskrivare Alejandro Escovedo kommer äntligen till Finland! Escovedo, som gjort musik i över fyra årtionden, kombinerar på ett unikt sätt rockmusik, americana och country med sina mexikanska rötter – och nu kan du höra den legendariske historieberättaren live som en del av konsertserien Savoy & Sound Tracker Presents!</p><p>Escovedo inledde sin karriär på 1970-talets punkscen och är en av få artister som på ett naturligt sätt kan kombinera intima folkballader, riviga rocklåtar och kulturellt laddade berättelser till en enda, igenkännbar stil. Han har samarbetat med bland annat Bruce Springsteen, Peter Buck från R.E.M och rootslegenden Lucinda Williams.</p><p>I konserten på Savoy uppträder Escovedo både solo och tillsammans med ett band bestående av finska toppmusiker som Sami Yaffa samlat ihop.</p><p>Konsertserien, som startade våren 2025, fortsätter i höst med Alejandro Escovedos konsert. Innehållet i konsertserien kurateras av musikern Sami Yaffa. ”Kärnan i konsertserien är på sätt och vis densamma som i Sound Tracker-programmen på tv. Jag hoppas att konserten ska överraska lyssnaren, öppna en musikalisk dörr direkt till nirvana och ge lyssnaren en minnesvärd upplevelse”, säger Yaffa.</p><p>Konserten är ca 2,5 timmar lång, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>Legendary singer-songwriter Alejandro Escovedo will finally visit Finland! Escovedo, who has been making music for over four decades, uniquely combines rock music, Americana and country music with his Mexican roots – and now you can hear the legendary storyteller live as part of the concert series Savoy & Sound Tracker Presents!</p><p>Escovedo began his career in the punk scene of the 1970s and is one of the few artists who can naturally combine intimate folk ballads, jagged rock songs and culturally charged stories into a single, recognisable style. He has collaborated with names such as Bruce Springsteen, R.E.M.'s Peter Buck and the roots legend Lucinda Williams.</p><p>In his concert at the Savoy Theatre, Escovedo will perform both solo and with Sami Yaffa's ensemble of top Finnish musicians.</p><p>The concert series that started in spring 2025 will continue this autumn with a concert by Alejandro Escovedo. The content of the concert series is curated by musician Sami Yaffa. “The essence of the concert series is kind of the same as in the Sound Tracker programmes on TV. I hope that the concert will surprise the listener, open a musical door directly to nirvana and give the listener an unforgettable experience,\" Yaffa says.</p><p>Concert duration approx. 2.5 hours, 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", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66889/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66729", "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": "35 €", "sv": "35 €", "en": "35 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/the-69-eyes/goth-by-xmas-the-69-eyes-3929665/", "sv": "https://www.lippu.fi/artist/the-69-eyes/goth-by-xmas-the-69-eyes-3929665/", "en": "https://www.lippu.fi/artist/the-69-eyes/goth-by-xmas-the-69-eyes-3929665/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1219504, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T14:14:28.396745Z", "last_modified_time": "2025-07-09T14:14:28.396763Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775803.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1219504/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-09T13:16:42.986598Z", "last_modified_time": "2025-09-26T11:13:51.259447Z", "date_published": null, "start_time": "2025-12-10T17: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/8DC70B1AB81066EBA419A91752420512/Goth_By_Xmas_The_69_Eyes", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/8DC70B1AB81066EBA419A91752420512/Goth_By_Xmas_The_69_Eyes", "en": "http://www.savoyteatteri.fi/en/events/event/8DC70B1AB81066EBA419A91752420512/Goth_By_Xmas_The_69_Eyes" }, "name": { "fi": "Goth By Xmas: The 69 Eyes", "sv": "Goth By Xmas: The 69 Eyes", "en": "Goth By Xmas: The 69 Eyes" }, "description": { "fi": "<p>Legendaarinen The 69 Eyes nousee Savoy-teatterin lavalle keskiviikkona 10.12.25. Goth By Xmas-konsertti on yhtyeen ainoa esiintyminen Helsingissä loppuvuoden aikana.</p><p>Kesto n. 1h 30min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>Legendariska The 69 Eyes intar Savoy-teaterns scen onsdagen den 10 december 2025. Konserten Goth By Xmas är bandets enda framträdande i Helsingfors under resten av året.</p><p>Längd ca 1 h 30 min., ingen paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>The legendary The 69 Eyes will take to the Savoy Theatre stage on Wednesday 10 December 2025. The Goth By Xmas concert will be the band's only performance in Helsinki during the rest of the year.</p><p>Duration approx. 1 h 30 min, no 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": "Sunborn Events", "sv": "Sunborn Events", "en": "Sunborn Events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66729/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66511", "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": "28,90-43,90 €", "sv": "28,90-43,90 €", "en": "28,90-43,90 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/antti-sarpila-swing-band/", "sv": "https://www.lippu.fi/artist/antti-sarpila-swing-band/", "en": "https://www.lippu.fi/artist/antti-sarpila-swing-band/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T12:14:50.834759Z", "last_modified_time": "2025-08-18T12:14:50.834778Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772804.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-18T12:14:50.722958Z", "last_modified_time": "2025-09-26T11:13:50.778921Z", "date_published": null, "start_time": "2025-12-09T17: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/56E17C39B8F803C26370F8EA3567EB2E/Swinging_Christmas_2025_-_Antti_Sarpila_Swing_Band_featuring_Anna_Inginmaa", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/56E17C39B8F803C26370F8EA3567EB2E/Swinging_Christmas_2025_-_Antti_Sarpila_Swing_Band_featuring_Anna_Inginmaa", "en": "http://www.savoyteatteri.fi/en/events/event/56E17C39B8F803C26370F8EA3567EB2E/Swinging_Christmas_2025_-_Antti_Sarpila_Swing_Band_featuring_Anna_Inginmaa" }, "name": { "fi": "Swinging Christmas 2025 - Antti Sarpila Swing Band featuring Anna Inginmaa", "sv": "Swinging Christmas 2025 - Antti Sarpila Swing Band featuring Anna Inginmaa", "en": "Swinging Christmas 2025 - Antti Sarpila Swing Band featuring Anna Inginmaa" }, "description": { "fi": "<p><b>Antti Sarpila Swing Bandin</b> perinteinen svengaava joulukonsertti, jossa vieraana on upea laulaja <b>Anna Inginmaa</b> – luvassa on jälleen sekä vauhdikasta että herkkää joulutunnelmaa</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>", "sv": "<p>Antti Sarpila Swing Bands traditionella svängiga julkonsert med den fantastiska sångerskan Anna Inginmaa som gäst – återigen utlovas både livlig och känslofylld julstämning</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h 30 min., inklusive paus.</p>", "en": "<p>Antti Sarpila Swing Band's traditional Christmas concert with talented visiting soloist Anna Inginmaa again promises both swinging Christmas tunes and more peaceful melodies.</p><p>Age rating: G</p><p>Duration approx. 2 h 30 min, including intermission</p>" }, "location_extra_info": null, "provider": { "fi": "Antti Sarpila Oy", "sv": "Antti Sarpila Oy", "en": "Antti Sarpila Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66511/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66955", "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": "10-30 €", "sv": "10-30 €", "en": "10-30 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-3951690/", "sv": "https://www.lippu.fi/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-3951690/", "en": "https://www.lippu.fi/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-3951690/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490567, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T12:14:36.987794Z", "last_modified_time": "2025-08-29T12:14:36.987812Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777063.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490567/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T12:14:36.877671Z", "last_modified_time": "2025-09-26T11:13:50.272451Z", "date_published": null, "start_time": "2025-12-06T11: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/25390F6944DD0778E8FE171583D04C15/Itsenaisyyspaivan_rauhanmatinea_-_Aiti_maa_-_isanmaa", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/25390F6944DD0778E8FE171583D04C15/Fredsmatin_pa_sjalvstandighetsdagen_Aiti_maa_isanmaa", "en": "http://www.savoyteatteri.fi/en/events/event/25390F6944DD0778E8FE171583D04C15/Independence_Day_Peace_Matinee_Mother_Earth_-_Fatherland" }, "name": { "fi": "Itsenäisyyspäivän rauhanmatinea - Äiti maa - isänmaa", "sv": "Fredsmatiné på självständighetsdagen: Äiti maa – isänmaa", "en": "Independence Day Peace Matinee – Mother Earth - Fatherland" }, "description": { "fi": "<p>Suomen Rauhanliiton ja Sadankomitean perinteisessä itsenäisyyspäivä matineassa, 6.12 klo 13-15.30 on mukana kertomassa suhteestaan äitimaa – isänmaahan sekä rauhaan useita yhteiskunnan vaikuttajia tieteen, taiteen ja yhteiskunnan muilta aloilta sekä musiikkia ja tanssia kaikkien ikäluokkien makuun.</p><p>Esiintyjinä mm. Kjell Westö, Meri Valkama, CMI - Martti Ahtisaari Peace Foundation, Pekka Haavisto sekä Paleface, Harri Saksala, Tarja Rasmussen tanssiopisto ja paljon lisää tulossa. Tilaisuuden juontaa Jukka Puotila.</p><p>Tilaisuus on hyvä aloitus Itsenäisyyspäivän viettoon.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>", "sv": "<p>I den traditionella självständighetsdagsmatinén, som ordnas av Finlands Fredsförbund och De hundras kommitté i Finland på självständighetsdagen den 6 december kl. 13–15:30, talar ett antal samhällspåverkare inom vetenskap, konst och andra samhällsområden samt musik och dans om sitt förhållande till moderland och fädernesland samt fred på ett sätt som passar alla åldrar.</p><p>Talare är bland annat Kjell Westö, Meri Valkama, CMI – Martti Ahtisaari Peace Foundation, Pekka Haavisto samt Paleface, Harri Saksala, Tamara Rasmussen Opisto och många fler. Jukka Puotila är värd för evenemanget.</p><p>Evenemanget är en bra start på självständighetsdagsfirandet.</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h 30 min., inklusive paus.</p>", "en": "<p>The traditional Independence Day matinee of the Peace Union of Finland and the Finnish Committee of 100 on 6 December at 13:00–15:30 will feature a number of social leaders from science, art and other fields of society speaking about their relationship with Mother Earth, the fatherland and peace. The event will also offer music and dance performances for all ages.</p><p>The performers include names such as Kjell Westö, Meri Valkama, CMI - Martti Ahtisaari Peace Foundation, Pekka Haavisto and Paleface, Harri Saksala, Tarja Rasmussen tanssiopisto Dance School and many more to come. The event will be hosted by Jukka Puotila.</p><p>The event is a good way to start the Independence Day celebrations.</p><p>Age rating: G</p><p>Duration approx. 2 h 30 min, including intermission</p>" }, "location_extra_info": null, "provider": { "fi": "Suomen Rauhanliitto - Finlands Fredsförbund ry", "sv": "Suomen Rauhanliitto - Finlands Fredsförbund ry", "en": "Suomen Rauhanliitto - Finlands Fredsförbund ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66955/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66237", "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:33/?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" }, { "@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": "33,90 €", "sv": "33,90 €", "en": "33,90 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/the-cabaret-of-new-ro-k-18-3894178/", "sv": "https://www.lippu.fi/artist/savoy-teatteri/the-cabaret-of-new-ro-k-18-3894178/", "en": "https://www.lippu.fi/artist/savoy-teatteri/the-cabaret-of-new-ro-k-18-3894178/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 753651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-13T09:14:12.530231Z", "last_modified_time": "2025-05-13T09:14:12.530247Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772845.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/753651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-13T09:14:12.406640Z", "last_modified_time": "2025-09-26T11:13:49.998491Z", "date_published": null, "start_time": "2025-12-05T17: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": "New Ron rajoja rikkovan kabareen ensiesitys nähdään Savoyssa joulukuussa!", "sv": "New Ro’s gränsöverskridande kabaré har premiär på Savoy i december!", "en": "New Ro's boundary-breaking cabaret will premiere at Savoy in December!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D8C07CAE1C828CE5ADB1D502CD17DEB1/The_Cabaret_of_New_Ro_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D8C07CAE1C828CE5ADB1D502CD17DEB1/The_Cabaret_of_New_Ro_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/D8C07CAE1C828CE5ADB1D502CD17DEB1/The_Cabaret_of_New_Ro_R-18" }, "name": { "fi": "The Cabaret of New Ro K-18", "sv": "The Cabaret of New Ro K-18", "en": "The Cabaret of New Ro R-18" }, "description": { "fi": "<p>New Ron rajoja rikkovan kabareen ensiesitys nähdään Savoyssa joulukuussa!</p><p>Jättimäistä somesuosiota nauttivan monilahjakkuuden <b>New Ron (Ronja Stanley)</b> rajoja rikkova <i>The Cabaret of New Ro</i> saa ensiesityksensä Savoy-teatterissa itsenäisyyspäivän aattona. Ainutlaatuinen show yhdistelee livemusiikkia, komediaa ja teatteria kabareekulttuurin hengessä – tavalla, jota Suomessa harvoin nähdään.</p><p>Miljoonien ihmisten viikoittain seuraamaksi someilmiöksi noussut hyvän mielen lähettiläs tunnetaan parhaiten värikkään New Ro -artistinimen takaa, mutta myös jo lähes vuosikymmen sitten vaihtoehtoisen popin kärkinimiin kuuluneen Ronya-projektin kautta. Pitkän uran tehnyt brittiläis-suomenruotsalainen laulaja ja esiintyjä on kerännyt laajaa arvostusta ilmeikkäästä lauluäänestään sekä voimakkaasta lavaenergiastaan. Visuaalisesti tunnistettava pinkin ja liilan sävyinen ilmaisu on olennainen osa Stanleyn taiteellista identiteettiä.</p><p>Stanleyn huumori on suoraa, rohkeaa ja samalla lämminhenkistä; hän hallitsee lavan tavalla, joka saa yleisön nauramaan, liikuttumaan ja hurraamaan. Savoyssa koettava esitys yhdistelee Stanleyn uutta, vielä julkaisematonta tuotantoa sekä aiempaa diskografiaa uran varrelta.</p><p>Esityksen innoittajina toimivat muun muassa New Yorkin kabareekulttuuri ja sen tähdet, kuten Bridget Everett ja Liza Minnelli. Mukana on myös brittiläistä vaikutetta – älykästä, absurdiin nojaavaa huumoria Monty Pythonin hengessä.</p><p>Vaikka kyseessä on näyttävä spektaakkeli, illassa sykkii sama sydän kuin Stanleyn sosiaalisen median sisällöissä: tuki, rohkaisu ja vahva läsnäolo. Viraalihiteiksi nousseet ystävälliset muistutukset, ei-jumalalliset siunaukset ja muut tutut sketsit kääntyvät lavalle musikaalinomaisessa muodossa. Tämä ei ole mikä tahansa keikka – esitys voimaannuttaa ja valaisee, antaa energiaa ja jättää huulille pitkän hymyn.</p><p>Oletko valmis liittymään kulttiin?</p><p>Kesto n. 2 h, sisältää väliajan.</p><p>Ikäraja: K-18<br> <br>Permanto K18 anniskelualue. Parveke, ei anniskelua</p>", "sv": "<p>New Ro’s gränsöverskridande kabaré har premiär på Savoy i december!</p><p>Multitalangen New Ro (Ronja Stanley) är enormt populär på sociala medier, och nu har hens gränsöverskridande kabaré The Cabaret of New Ro premiär på Savoy-teatern kvällen före självständighetsdagen. Den unika showen kombinerar livemusik, komedi och teater i kabarékulturens anda – på ett sätt som sällan skådats i Finland.</p><p>Artisten är en må bra-ambassadör som blivit ett fenomen på sociala medier och som följs av miljontals människor varje vecka. Hen är mest känd som personen bakom det färgstarka artistnamnet New Ro, men också för sitt projekt Ronya, som var ett av toppnamnen inom alternativ pop för snart tio år sedan. Under sin långa karriär har den brittisk-finlandssvenska sångaren och artisten rönt stor uppskattning för sin uttrycksfulla sångröst och kraftfulla energi på scenen. Det visuellt igenkännbara uttrycket i rosa och lila toner är en viktig del av Stanleys konstnärliga identitet.</p><p>Stanleys humor är direkt, djärv och varm på samma gång; hen behärskar scenen på ett sätt som får publiken att skratta, röra på sig och jubla. Föreställningen på Savoy kombinerar delar av Stanleys nya, ännu outgivna produktion med tidigare diskografi från hens karriär.</p><p>Föreställningen är inspirerad av bland annat kabarékulturen i New York och dess stjärnor, till exempel Bridget Everett och Liza Minnelli. Det finns också brittiska influenser – intelligent, på gränsen till absurd humor i Monty Pythons anda.</p><p>Även om det är fråga om ett imponerande spektakel, slår samma hjärta under kvällen som i Stanleys innehåll på sociala medier: stöd, uppmuntran och en stark närvaro. De vänliga påminnelserna, icke-gudomliga välsignelserna och andra bekanta sketcher som blivit virala hittar omvandlas till musikalisk form på scenen. Det här är inte vilken spelning som helst – föreställningen ger dig kraft, upplysning och energi samt ett stort leende på läpparna.</p><p>Är du redo att gå med i en kult?</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. Balkong, ingen servering.</p>", "en": "<p>New Ro's boundary-breaking cabaret will premiere at Savoy in December!</p><p>The Cabaret of New Ro of the multi-talented New Ro (Ronja Stanley) of massive social media fame is a boundary-breaking performance that will premiere at the Savoy Theatre on the eve of Independence Day. The unique show combines live music, comedy and theatre in the spirit of cabaret culture in a way that is rarely seen in Finland.</p><p>A goodwill ambassador who has become a social media phenomenon followed by millions of people at a weekly basis, she is best known under her colourful artist name New Ro. However, she rose to fame already about a decade ago through her Ronya project, as one of the top names of the alternative pop music scene. During her long career, the British-Finnish singer and performer has garnered widespread acclaim for her expressive vocals and powerful stage energy. The visually distinctive combination of pink and lilac is an integral part of Stanley's artistic identity and expression.</p><p>Stanley's humour is direct, bold and warm at the same time; she commands the stage in a way that makes the audience laugh, feel and cheer. The performance at Savoy will combine Stanley's new, as yet unreleased production with her earlier discography from her career.</p><p>The show is inspired by New York cabaret culture and its stars, including Bridget Everett and Liza Minnelli. The show also has some British influence, such as clever, absurdist humour in the spirit of Monty Python.</p><p>The evening is an impressive spectacle, but it beats with the same heart as Stanley's social media content, offering support, encouragement and a strong presence. Her friendly reminders, non-divine blessings and other familiar skits that have become viral hits are translated into musical form on stage. This is not just any gig – the performance empowers and enlightens, energises and leaves you with a big smile on your face.</p><p>Are you ready to join a cult?</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": "All Day Entertainment Oy", "sv": "All Day Entertainment Oy", "en": "All Day Entertainment Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66237/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66506", "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": "35 €", "sv": "35 €", "en": "35 €" }, "info_url": { "fi": "https://www.lippu.fi/event/dalindeo-kallio-and-beyond-savoy-teatteri-20322778/", "sv": "https://www.lippu.fi/event/dalindeo-kallio-and-beyond-savoy-teatteri-20322778/", "en": "https://www.lippu.fi/event/dalindeo-kallio-and-beyond-savoy-teatteri-20322778/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 953076, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-06T13:13:51.879621Z", "last_modified_time": "2025-06-06T13:13:51.879637Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765442.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/953076/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-06T13:13:51.717104Z", "last_modified_time": "2025-09-26T11:13:49.373544Z", "date_published": null, "start_time": "2025-12-03T17: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": "Yli 20 vuotta toiminut kulttibändi Dalindèo on yksi merkittävimmistä kotimaisista jazz-yhtyeistä. Säveltäjä-kitaristi Valtteri Laurell Pöyhösen johtama yhtye on esiintynyt lähes kaikkien kotimaisten festivaalien ja konserttisalien lisäksi yli 12 Euroopan maassa ja Marokossa.", "sv": "Kultbandet Dalindèo har varit verksamt i över 20 år och är ett av de mest betydande finska jazzbanden. Under ledning av kompositören och gitarristen Valtteri Laurell Pöyhönen har bandet uppträtt på nästan alla inhemska festivaler och konsertsalar samt i mer än tolv europeiska länder och i Marocko", "en": "The cult band Dalindèo has been around for more than twenty years and has established itself as one of the most important Finnish jazz bands. Led by composer-guitarist Valtteri Laurell Pöyhönen, the ensemble has performed at almost all Finnish festivals and concert halls, as well as in more than 12 European countries and Morocco." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/AD6662F6C0E577B884D2A568A8E6FB8A/Dalind_o_-_Kallio_and_beyond", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/AD6662F6C0E577B884D2A568A8E6FB8A/Dalind_o_-_Kallio_and_beyond", "en": "http://www.savoyteatteri.fi/en/events/event/AD6662F6C0E577B884D2A568A8E6FB8A/Dalind_o_-_Kallio_and_beyond" }, "name": { "fi": "Dalindèo - Kallio and beyond", "sv": "Dalindèo - Kallio and beyond", "en": "Dalindèo - Kallio and beyond" }, "description": { "fi": "<p>Yli 20 vuotta toiminut kulttibändi Dalindèo on yksi merkittävimmistä kotimaisista jazz-yhtyeistä. Säveltäjä-kitaristi Valtteri Laurell Pöyhösen johtama yhtye on esiintynyt lähes kaikkien kotimaisten festivaalien ja konserttisalien lisäksi yli 12 Euroopan maassa ja Marokossa.</p><p>Yhtyeen ensimmäisestä julkaisusta \"Poseidon/Solifer-Lento” tulee vuonna 2025 kuluneeksi 20 vuotta. Yhtyeen ensimmäiset julkaisut tulivat helsinkiläisellä Ricky-Tick Records levymerkillä ja vuodesta 2013 eteenpäin heidän musiikkiansa on julkaissut Suomen Musiikki ja lontoolainen BBE Records.</p><p>Vuonna 2013 julkaistu ”Kallio”-albumi teki Dalindèosta harvinaisen suositun ympäri maata ja yhtye esiintyi laajasti jazz-kentän ulkopuolella. Levy voitti vuoden Jazz-Emma palkinnon ja Pöyhösen sävellykset olivat ehdolla Teosto-palkinnon saajaksi. Levyä pidetään suomalaisen jazzin klassikkona.</p><p>Dalindèo Kallio and beyond -juhlakiertueella yhtye esittää läpileikkauksen 6 albumin biisimateriaalistaan, lähtöisin vuoden 2007 Open Scenes levyltä viimeisimpään 2024 julkaistuun Tropicalia Nordica -levyyn, unohtamatta tietenkin Kallio-levyn suosikkibiisejä.</p><p>Dalindèon kokoonpano on pysynyt samana vuodesta 2004 lähtien ja heidän yhteissoitossansa on ainutlaatuista taikaa, joka voi syntyä vain satojen keikkojen ja tuhansien kilometrien saatossa.</p><p>Valtteri Laurell Pöyhönen - sähkökitara, sävellykset, bändiliideri<br>Jose Mäenpää - koskettimet<br>Pope Puolitaival - saksofoni<br>Pekka Lehti - kontrabasso<br>Rasmus Pailos - lyömäsoittimet<br>Jaska Lukkarinen - rummut</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>Kultbandet Dalindèo har varit verksamt i över 20 år och är ett av de mest betydande finska jazzbanden. Under ledning av kompositören och gitarristen Valtteri Laurell Pöyhönen har bandet uppträtt på nästan alla inhemska festivaler och konsertsalar samt i mer än tolv europeiska länder och i Marocko</p><p>År 2025 är det 20 år sedan bandet släppte sin första skiva Poseidon/Solifer-Lento. Bandet gav ut sina första skivor på det Helsingforsbaserade skivbolaget Ricky-Tick Records, och sedan 2013 har deras musik getts ut av Suomen Musiikki och Londonbaserade BBE Records.</p><p>Albumet Kallio, som släpptes 2013, gjorde Dalindèo exceptionellt populärt runt om i landet, och bandet uppträdde flitigt utanför jazzscenen. Albumet vann utmärkelsen Årets Jazz-Emma, och Pöyhönens kompositioner var nominerade till Teosto-priset. Albumet betraktas som en klassiker inom finsk jazz.</p><p>På Dalindèos jubileumsturné Kallio and beyond framför bandet ett tvärsnitt av låtmaterialet på sina sex album, från 2007 års Open Scenes till det senaste albumet Tropicalia Nordica, som släpptes 2024, naturligtvis inte att förglömma favoritlåtarna från Kallio-albumet.</p><p>Dalindèos sammansättning har varit densamma sedan 2004, och deras samspel utstrålar en unik magi, som bara kan uppstå efter hundratals spelningar och tusentals kilometer.</p><p>Valtteri Laurell Pöyhönen – elgitarr, tonsättning, bandledare<br>Jose Mäenpää – klaviatur<br>Pope Puolitaival – saxofon<br>Pekka Lehti – kontrabas<br>Rasmus Pailos – slagverk<br>Jaska Lukkarinen – trummor</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>The cult band Dalindèo has been around for more than twenty years and has established itself as one of the most important Finnish jazz bands. Led by composer-guitarist Valtteri Laurell Pöyhönen, the ensemble has performed at almost all Finnish festivals and concert halls, as well as in more than 12 European countries and Morocco.</p><p>The band's first release, Poseidon/Solifer-Lento, will celebrate its 20th anniversary in 2025. The band's first records were released under the Helsinki-based Ricky-Tick Records label, and since 2013 their music has been released by Suomen Musiikki and London-based BBE Records.</p><p>The ‘Kallio’ album, released in 2013, made Dalindèo extraordinarily popular around the country and the band performed widely also outside the jazz scene. The album won the Jazz Emma of the Year award and Pöyhönen's compositions were nominated for the Teosto prize. The album is considered a classic of Finnish jazz.</p><p>On Dalindèo’s Kallio and beyond anniversary tour, the band will perform a cross-section of songs from their six albums, ranging from their Open Scenes album of 2007 to their latest album Tropicalia Nordica, released in 2024, naturally without forgetting the favourite songs from the Kallio album.</p><p>Dalindèo's line-up has remained the same since 2004 and their shared performances have a unique magic that is only born from hundreds of shared gigs and thousands of kilometres.</p><p>Valtteri Laurell Pöyhönen - electric guitar, compositions, band leader<br>Jose Mäenpää - keyboards<br>Pope Puolitaival - saxophone<br>Pekka Lehti - double bass<br>Rasmus Pailos - percussions<br>Jaska Lukkarinen - drums</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": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66506/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66466", "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": "42,50-45,80 €", "sv": "42,50-45,80 €", "en": "42,50-45,80 €" }, "info_url": { "fi": "https://www.lippu.fi/event/name-20292802", "sv": "https://www.lippu.fi/event/name-20292802", "en": "https://www.lippu.fi/event/name-20292802" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 835666, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-23T10:15:13.997324Z", "last_modified_time": "2025-05-23T10:15:13.997343Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774383.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/835666/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-23T10:15:13.875138Z", "last_modified_time": "2025-09-26T11:13:48.811532Z", "date_published": null, "start_time": "2025-12-02T17: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": "Suureen suosioon noussut Mikko ”Tökä” Töyssyn ja Mikael ”Micke” Konttisen yhteisprojekti Let´s Vits Again lähtee joulukiertueelle!", "sv": "Mikko \"Tökä\" Töyssys och Mikael \"Micke\" Konttinens gemensamma och mycket populära projekt Let’s Vits Again åker på julturné!", "en": "Let´s Vits Again, the highly popular collaborative project of Mikko \"Tökä\" Töyssy and Mikael \"Micke\" Konttinen, is going on a Christmas tour!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8F263CEF3407D544CA12F33200D9F7C4/Toyssy_Konttinen_Let_s_Vits_Again_Hyvaa_joulua_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/8F263CEF3407D544CA12F33200D9F7C4/Toyssy_Konttinen_Let_s_Vits_Again_God_jul_", "en": "http://www.savoyteatteri.fi/en/events/event/8F263CEF3407D544CA12F33200D9F7C4/Toyssy_Konttinen_Let_s_Vits_Again_Hyvaa_joulua_" }, "name": { "fi": "Töyssy & Konttinen: Let´s Vits Again – Hyvää joulua!", "sv": "Töyssy & Konttinen: Let’s Vits Again – God jul!", "en": "Töyssy & Konttinen: Let´s Vits Again – Hyvää joulua!" }, "description": { "fi": "<p>Suureen suosioon noussut Mikko ”Tökä” Töyssyn ja Mikael ”Micke” Konttisen yhteisprojekti Let´s Vits Again lähtee joulukiertueelle!</p><p>Let´s Vits Again - Hyvää joulua! on musiikin ja komedian täyttämä esitys, jossa kuullaan hauskojen juttujen lisäksi upeita tulkintoja hienoista joululauluista. Joulukonsertin ohjelmassa ovat mm. Oi jouluyö, Valkea joulu, Sydämeeni joulun teen, Joulupukki matkaan jo käy sekä tietenkin Kulkuset.</p><p>Poikien repertuaariin kuuluvatkin niin herkimmät jouluklassikot kuin kansainväliset ja viihteelliset joulukappaleet. Spontaaneilta yllätyksiltäkään ei voida välttyä, sillä nämä joulua rakastavat pojat elävät estradilla hetkessä. Pojat antavat tällekin esitykselleen naurutakuun: he varmasti tulevat repeilemään lavalla omille vitseilleen. Pojilla on estradilla mukanaan Xmas-bändi jossa Suomen eturivin muusikot antavat tahtia ja tunnetta tähän viihteelliseen joulukonserttiin.</p><p>Let´s Vits Again – Hyvää joulua! - esityksen käsikirjoitus on Tökän, Micken ja Janne Sarjan käsialaa. Janne on käsikirjoittanut monia suosittuja tv-ohjelmia kuten Pitääkö olla huolissaan ja Tämä on tämä. Laita joulukiireet rosolleineen hetkeksi tauolle ja tule viihtymään sekä virittymään iloiseen joulutunnelmaan näiden varsinkin joulun aikaan lahjakkaiden poikien seurassa!</p><p>Kesto on n. 2 h, sisältäen väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Mikko \"Tökä\" Töyssys och Mikael \"Micke\" Konttinens gemensamma och mycket populära projekt Let’s Vits Again åker på julturné!</p><p>Let’s Vits Again – God jul! är en föreställning fylld av musik och komik, och som inte bara innehåller roliga historier, utan också fina tolkningar av vackra julsånger. På programmet står bland annat Oi jouluyö (O Helga Natt), Valkea joulu (Jag drömmer om en jul hemma), Sydämeeni joulun teen (Så gör jag jul i hjärtat mitt), Joulupukki matkaan jo käy (Tomten kommer snart) och naturligtvis Kulkuset (Bjällerklang).</p><p>Artisternas repertoar omfattar de finaste julklassikerna såväl som internationella och underhållande julsånger. Vi kan garantera också spontana överraskningar, eftersom dessa julälskande killar lever i stunden när de står på scenen. Artisterna garanterar också många skratt under föreställningen: de kommer säkert att skratta åt sina egna skämt på scenen. Artisterna får sällskap på scenen av bandet Xmas, som består av några av Finlands främsta musiker och som ger fart och känsla åt denna underhållande julkonsert.</p><p>Manuset till Let’s Vits Again – God jul är skrivet av Tökä, Micke och Janne Sarja. Janne har skrivit manus till många populära tv-program såsom Pitääkö olla huolissaan och Tämä on tämä. Pausa julstressen och sillsalladen ett tag, bara njut och kom i en festlig julstämning tillsammans med dessa särskilt i juletid begåvade killar!</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>Let´s Vits Again, the highly popular collaborative project of Mikko \"Tökä\" Töyssy and Mikael \"Micke\" Konttinen, is going on a Christmas tour!</p><p>Let´s Vits Again – Hyvää joulua! is a music and comedy-filled show that features not only funny stories but also wonderful versions of the greatest Christmas songs. The Christmas Concert programme features Christmas hits such as Oi jouluyö (O Holy Night), Valkea joulu (White Christmas), Sydämeeni joulun teen, Joulupukki matkaan jo käy (Santa Claus Is Coming to Town) and, of course, Kulkuset – Jingle bells.</p><p>The boys' repertoire includes the most beautiful Christmas classics as well as popular international Christmas songs. Spontaneous surprises cannot be avoided either, as these Christmas-loving boys live in the moment on stage. The boys will also guarantee a good laugh again: they will certainly be cracking up at their own jokes on stage. The boys will be joined on stage by the band Xmas, featuring some of Finland's top musicians to give tempo and added flair to this entertaining Christmas concert.</p><p>The Let´s Vits Again – Hyvää joulua! show has been written by Tökkä, Micke and Janne Sarja. Janne has scripted many popular TV shows such as ‘Pitääkö olla huolissaan’ and ‘Tämä on tämä’. Take a break from all the Christmas hustle and bustle, come and enjoy yourself and get into the festive Christmas spirit with these boys with many gifts – especially around Christmas time!</p><p>The duration is about 2 h, including an 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": "Let´s Vits Again Oy", "sv": "Let´s Vits Again Oy", "en": "Let´s Vits Again Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66466/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66509", "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:105/?format=api" }, { "@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" }, { "@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": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / Perhelippu 60 €", "sv": "17 € / Perhelippu 60 €", "en": "17 € / Perhelippu 60 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/3912720", "sv": "https://www.lippu.fi/eventseries/3912720", "en": "https://www.lippu.fi/eventseries/3912720" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 951667, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-06T09:13:59.265519Z", "last_modified_time": "2025-06-06T09:13:59.265535Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774755.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/951667/?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-06-06T09:13:59.109276Z", "last_modified_time": "2025-09-26T11:13:48.066165Z", "date_published": null, "start_time": "2025-11-30T13: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": "Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!", "sv": "Skivsläppskonsert för Mutaveijarits helt nya julskiva!", "en": "The Mutaveijarit band’s brand-new Christmas album release concert!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus", "en": "http://www.savoyteatteri.fi/en/events/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus" }, "name": { "fi": "Mutaveijarit: Joulutouhotus", "sv": "Mutaveijarit: Joulutouhotus", "en": "Mutaveijarit: Joulutouhotus" }, "description": { "fi": "<p>Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis! Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet aivan uusia joulu- ja talvilauluja mutameininkiä unohtamatta.</p><p>Valloittavista esiintymisistä ja mukaansatempaavista, monisävyisistä lauluista tunnettu Mutaveijarit on viimeisen kymmenen vuoden aikana vakiinnuttanut asemansa yhtenä Suomen suosituimmista lastenmusiikkiyhtyeistä. Mielikuvitukselliset ja oivaltavat laulut sekä innostavat ja pedagogisesti monipuoliset laululeikit vievät kuulijansa uudenlaiselle musiikkiretkelle, jonka hauskat ja jännittävät käänteet takaavat viihdyttävän konserttielämyksen koko perheelle.</p><p>Mutaveijareiden kaksi levyä Ympäri ämpäri! (2016) ja Nyt mennään! (2019) ovat saaneet lukuisia tunnustuksia mm. Vamo ry:ltä ja molemmat levyt ovat olleet lastenmusiikin Emma-ehdokkaina. Vuonna 2023 julkaistiin Mutaveijareiden lauluista Ämpärillinen nuotteja -nuottikirja, josta on otettu jo uusintapainos.</p><p>Kesto n. 45 min, ei väliaikaa</p><p>Konsertti on ikärajaton</p><p>Liput 17 €, perhelippu (4 hlöä) 60 €</p><p>Alle 3-vuotias lapsi sylissä ilmaiseksi, jokainen omalla paikallaan istuva tarvitsee oman lipun.</p>", "sv": "<p>Skivsläppskonsert för Mutaveijarits helt nya julskiva!</p><p>Det är vinter hos Mutaveijarit och julen närmar sig redan. Men mitt i allt vinterskoj är Mutaveijarit fortfarande mitt uppe i alla julförberedelser! Receptet på risgrynsgröt är försvunnet, julklapparna ogjorda och de är inte alls klara med julstädningen. Julstöket är igång! Lyckligtvis går julförberedelserna som en dans när man leker tillsammans. Kom till en vintrig konsert för att förbereda dig inför julen genom att sjunga och leka tillsammans med Mutaveijarit. På konserten får du höra helt nya jul- och vintersånger i vanlig Mutaveijarit-stil.</p><p>Mutaveijarit, som är kända för sina charmerande och medryckande framträdanden samt mångtoniga sånger, har under de senaste tio åren etablerat sig som en av Finlands populäraste barnmusikgrupper. De fantasifulla och insiktsfulla sångerna samt inspirerande och pedagogiskt mångsidiga sånglekarna tar lyssnarna med på en ny musikalisk resa, med roliga och spännande vändningar som garanterar en underhållande konsertupplevelse för hela familjen.</p><p>Mutaveijarits två skivor Ympäri ämpäri! (2016) och Nyt mennään! (2019) har fått många utmärkelser av bland annat Småbarns musiklärare rf, och båda skivorna har nominerats till en Emma i kategorin barnmusik. År 2023 publicerades Mutaveijarits sånger i notboken Ämpärillinen nuotteja, som det redan har kommit en ny upplaga av.</p><p>Längd ca 45 min., ingen paus.</p><p>Konserten har ingen åldersgräns.</p><p>Biljetter 17 €, familjebiljett (4 pers.) 60 €</p><p>Barn under 3 år sitter gratis i knät, varje person som sitter på en egen plats behöver en biljett.</p>", "en": "<p>The Mutaveijarit band’s brand-new Christmas album release concert!</p><p>It's winter in Mutaveijarila and Christmas is already approaching. But in the midst of all the winter fun, Mutaveijarit have still not finished any of their Christmas preparations! The rice porridge recipe is missing, the Christmas presents have not been wrapped and the Christmas cleaning is not even halfway done. It’s going to be a real Christmas hassle! Luckily, finishing these Christmas tasks is easy when working together. Come listen to this wintery concert to get ready for Christmas by singing and playing with the Mutaveijarit. In the concert you will hear brand-new Christmas and winter songs, without forgetting the usual muddy fun of Mutaveijarit.</p><p>Over the past ten years, Mutaveijarit, known for their highly entertaining performances and captivating, multi-tonal songs, have established themselves as one of Finland's most popular children's music groups. The imaginative and insightful songs and inspiring and pedagogically diverse singing games take their audience on a new kind of musical journey, with fun and exciting twists and turns that guarantee an entertaining concert experience for the whole family.</p><p>The two albums by Mutaveijarit – Ympäri ämpäri! (2016) and Nyt mennään! (2019) – have received numerous accolades from e.g. the Vamo association of early childhood music teachers, and both albums have been nominated for the Emma award for children's music. In 2023, a selection of Mutaveijarit songs was published in a notebook called Ämpärillinen Nuotteja, and a second edition has already been printed.</p><p>Duration approx. 45 min, no intermission</p><p>The concert is not age-restricted</p><p>Tickets €17, family ticket (4 people) €60</p><p>Children under the age of 3 can share a seat with an adult, each person sitting in their own seat needs their own ticket.</p>" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66509/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66869", "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": "35 € / S&D 98 €", "sv": "35 € / S&D 98 €", "en": "35 € / S&D 98 €" }, "info_url": { "fi": "https://www.lippu.fi/event/tommi-laentinen-savoy-teatteri-20409360/", "sv": "https://www.lippu.fi/event/tommi-laentinen-savoy-teatteri-20409360/", "en": "https://www.lippu.fi/event/tommi-laentinen-savoy-teatteri-20409360/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490456, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T08:14:48.260269Z", "last_modified_time": "2025-08-19T08:14:48.260287Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776257.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490456/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-19T08:14:48.149193Z", "last_modified_time": "2025-09-26T11:13:47.646651Z", "date_published": null, "start_time": "2025-11-29T17: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/6F158E7478C5620BAB88AA1C32F852DE/Tommi_Lantinen", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/6F158E7478C5620BAB88AA1C32F852DE/Tommi_Lantinen", "en": "http://www.savoyteatteri.fi/en/events/event/6F158E7478C5620BAB88AA1C32F852DE/Tommi_Lantinen" }, "name": { "fi": "Tommi Läntinen", "sv": "Tommi Läntinen", "en": "Tommi Läntinen" }, "description": { "fi": "<p><b>Tommi Läntinen</b> on suomalaisen poprockin ikoni, jonka ura on kestänyt yli 40 vuotta.<br>Boycott -rock-yhtyeen räjähdysmäisen suosion jälkeen hän vaihtoi laulukielen suomeen ja siirtyi soolouralle, joka kiiti jättihittien kuten Via Dolorosa, Kevät ja minä, Villi ja vapaa, Syvälle sydämeen sattuu, Rööperin kuu ja Elämä kantaa mua sekä hurmoksellisten livekeikkojen myötä maan ykköskaartiin.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: yritysmyynti@sunborn.fi.</p><p>Show & Dinner -lippu sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b><br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G<br>Reilunkaupan luomukahvi/ tee</p><p>TAI</p><p><b>Menu Green</b><br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>Menun hinta ei sisällä juomia.</p><p>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua.</p><p>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>", "sv": "<p>Tommi Läntinen är en finsk poprockikon med en över 40 år lång karriär bakom sig.<br>Efter rockbandet Boycotts explosionsartade popularitet bytte han sångspråk till finska och inledde en solokarriär, som resulterade i megahittar som Via Dolorosa, Kevät ja minä, Villi ja vapaa, Syvälle sydämeen sattuu, Rööperin kuu och Elämä kantaa mua samt extatiska liveframträdanden som gjorde honom till en av de främsta i landet.</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><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till yritysmyynti@sunborn.fi för bokning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G<br>Rättvisemärkt ekologiskt kaffe/te</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.</p><p>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.</p><p>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>", "en": "<p>Tommi Läntinen is a Finnish pop rock icon whose career has spanned over 40 years.<br>After the rock band Boycott’s rapid rise to fame, he switched his singing language to Finnish and embarked on a solo career, which took him to the top of the national charts through his ecstatic live performances and his massive hits such as Via Dolorosa, Kevät ja minä, Villi ja vapaa, Syvälle sydämeen sattuu, Rööperin kuu and Elämä kantaa mua.</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><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: yritysmyynti@sunborn.fi.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G<br>Fair trade organic coffee/tea</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.</p><p>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.</p><p>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>" }, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66869/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66886", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "44 € / S&D 107,60 €", "sv": "44 € / S&D 107,60 €", "en": "44 € / S&D 107,60 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3932794", "sv": "https://www.lippu.fi/eventseries/name-3932794", "en": "https://www.lippu.fi/eventseries/name-3932794" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490555, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T15:13:58.323821Z", "last_modified_time": "2025-08-27T15:13:58.323837Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776490.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490555/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T14:14:10.831269Z", "last_modified_time": "2025-09-26T11:13:46.856632Z", "date_published": null, "start_time": "2025-11-28T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tänä jouluna tarjolla ei ole vain glögiä ja pipareita – vaan kolmen huippuviihdyttäjän ilotulitusta, joka saa koko juhlaväen nauramaan, hämmästymään ja taputtamaan seisaaltaan!", "sv": "Den här julen serveras det inte bara glögg och pepparkakor, utan ett fyrverkeri av tre toppunderhållare, som får hela festpubliken att skratta, häpna och ge stående ovationer!", "en": "It's not just mulled wine and gingerbread cookies on offer this Christmas – you can also enjoy a thrilling evening with three top entertainers who will have the whole party gasp in laughter and amazement and clap their hands!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A343E2F46B4E71672E701FCD482C2F97/JouluSpektaakkeli_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A343E2F46B4E71672E701FCD482C2F97/JulSpektakel_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/A343E2F46B4E71672E701FCD482C2F97/JouluSpektaakkeli_Christmas_Spectacle_R-18" }, "name": { "fi": "JouluSpektaakkeli K-18", "sv": "JulSpektakel K-18", "en": "JouluSpektaakkeli Christmas Spectacle R-18" }, "description": { "fi": "<p>Tänä jouluna tarjolla ei ole vain glögiä ja pipareita – vaan kolmen huippuviihdyttäjän ilotulitusta, joka saa koko juhlaväen nauramaan, hämmästymään ja taputtamaan seisaaltaan!</p><p>Astu sisään säihkyvään jouluyöhön, jossa mikään ei ole tavallista ja kaikki on mahdollista.</p><p><b>Janne Grönroos</b> – Illan isäntä stand up koomikko, joka purkaa juhlastressin paremmalla tavalla kuin yksikään mindfulness-harjoitus. Nauruhermoja kutkuttava huumori tarjoillaan lämpimänä –kuten toimarin tarjoama glögi!</p><p><b>Pete Poskiparta</b> – mentalismin mestari, jonka katseessa on enemmän salaisuuksia kuin joulupukin lahjapussissa. Luvassa komiikkaa, taikuutta ja täydellistä mystiikkaa.</p><p><b>Divet Show</b> – ilmiö, legenda, spektaakkeli itse! Yksi mies ja kymmeniä hahmoja ja satoja paljetteja. Drag-viihdettä huipputasolla: tähtiloistoa, joka kirkastaa pimeimmänkin jouluyön.</p><p><b>JouluSpektaakkeli</b> on enemmän kuin esitys – se on elämys. Tule mukaan juhlaan, jossa yhdistyvät huumori, hämmästys ja häikäisevä show – täydellinen tapa ottaa varaslähtö joulun taikaan!</p><p>Ikäraja: K-18<br>Permanto K18 anniskelualue. Parvekkeella ei anniskelua.</p><p>Kesto n. 2 h 20 min, sisältää väliajan</p><p><b>Minnen Show & Dinner-pikkujoulumenu:</b><br>Punajuuri & Comté L,G<br>-Kurpitsavinaigretella marinoitua punajuuricarpaccio:ta, Comté-juustoa ja pikkelöityjä sieniä</p><p>Siika & puikula L,G<br>-Timjamivoissa paistettua siikaa, puikulaperunapyrettä ja tilli-herakastiketta</p><p>Puolukka & pistaasi L,G<br>-Puolukka-pistaasileivos, paahdettua valkosuklaata ja suolattuja puolukoita</p><p><i>Menun hinta ei sisällä ruokajuomia.<br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin esitysiltana kello 17:30 alkaen.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 4 vrk ennen esitystä)<br>Juomatilaukset & erikoisruokavaliotiedustelut: myynti@minnehelsinki.fi</i></p>", "sv": "<p>Den här julen serveras det inte bara glögg och pepparkakor, utan ett fyrverkeri av tre toppunderhållare, som får hela festpubliken att skratta, häpna och ge stående ovationer!</p><p>Kliv in i en gnistrande julnatt, där ingenting är vanligt och allt är möjligt.</p><p>Ståuppkomikern Janne Grönroos är kvällens värd och får julstressen att försvinna bättre än någon mindfulnessövning. Den skrattframkallande humorn serveras varm – som glöggen som vd:n serverar!</p><p>Pete Poskiparta, en mästare på mentalism, med en blick som är mer hemlighetsfull än det som gömmer sig i julgubbens säck. Det utlovas komik, magi och total mystik.</p><p>Divet Show – ett fenomen, en legend, ett riktigt spektakel! En man, tiotals karaktärer och hundratals paljetter. Dragunderhållning när den är som bäst: stjärnglans som lyser upp den mörkaste julnatten.</p><p>JulSpektaklet är mer än en föreställning – det är en upplevelse. Följ med på en fest som förenar både humor, häpnad och en bländande show – det perfekta sättet att tjuvstarta på julmagin!</p><p>Åldersgräns: K-18.<br>Parkett K-18-område med serveringstillstånd. Ingen servering på balkongen.</p><p>Längd ca 2 h 20 min., inklusive paus.</p><p>Minnes Show & Dinner-julfestmeny:<br>Rödbeta & Comté L, G<br>- Rödbetscarpaccio marinerad i pumpavinägrett, Comté-ost och picklad svamp</p><p>Sik & mandelpotatis L, G<br>- Sik stekt i timjansmör, mandelpotatispuré och dill-vasslesås</p><p>Lingon & pistasch L, G<br>- Bakelse med lingon och pistaschmandel, rostad vitchoklad och saltade lingon</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden från kl. 17:30 samma kväll som föreställningen.<br>Specialdieter beaktas vid förhandsbokning (senast fyra dagar före föreställningen).<br>Beställning av drycker och frågor om specialdieter: myynti@minnehelsinki.fi</p>", "en": "<p>It's not just mulled wine and gingerbread cookies on offer this Christmas – you can also enjoy a thrilling evening with three top entertainers who will have the whole party gasp in laughter and amazement and clap their hands!</p><p>Step into a sparkling Christmas night where nothing is ordinary and anything is possible.</p><p>Janne Grönroos – The host of the evening, a stand-up comedian who will de-stress the festive season better than any mindfulness exercise. The tickling humour is served warm – like the mulled wine served by the CEO!</p><p>Pete Poskiparta – a master of mentalism with more secrets in his eyes than there are gifts in Santa's bag. The show promises comedy, magic and mysticism.</p><p>Divet Show – a phenomenon, a legend, the spectacle himself! One man, dozens of characters and hundreds of sequins. Drag entertainment at its best: a skyful of shiny stars that will brighten up even the darkest Christmas night.</p><p>JouluSpektaakkeli is more than a show – it's an experience. Join us for a celebration that combines humour, amazement and a dazzling show – the perfect way to kickstart the Christmas magic!</p><p>Age rating: 18 and up<br>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Duration approx. 2 h 20 min, including intermission</p><p>Minne’s Show & Dinner Pre-Christmas party menu:<br>Beetroot & Comté L,G<br>-Beetroot carpaccio marinated in pumpkin vinaigrette, Comté cheese and pickled mushrooms</p><p>Whitefish & almond potatoes L,G<br>-Whitefish fried in thyme butter, almond potato puree and dill and whey dressing</p><p>Lingonberry & pistachio L,G<br>-Lingonberry-pistachio pastry, toasted white chocolate and salted lingonberries</p><p>The price of the menu does not include drinks or beverages.<br>The dinner will be served at the Savoy Theatre's restaurant Minne Garden from 17:30 onwards on the night of the performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 4 days before the performance)<br>Beverage orders & special dietary enquiries: myynti@minnehelsinki.fi</p>" }, "location_extra_info": null, "provider": { "fi": "Wickström & Thibblin Comedy Ab", "sv": "Wickström & Thibblin Comedy Ab", "en": "Wickström & Thibblin Comedy Ab" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66886/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67001", "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": "19,95 / 39,90 €", "sv": "19,95 / 39,90 €", "en": "19,95 / 39,90 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3973566", "sv": "https://www.lippu.fi/eventseries/name-3973566", "en": "https://www.lippu.fi/eventseries/name-3973566" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490747, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-11T10:14:31.555334Z", "last_modified_time": "2025-09-11T10:14:31.555350Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777434.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490747/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-11T10:14:31.416710Z", "last_modified_time": "2025-09-26T11:13:46.445517Z", "date_published": null, "start_time": "2025-11-27T17: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": "Kunnioitettavan 50 vuoden iän saavuttanut Piirpauke juhlistaa uuden albuminsa julkaisua marraskuussa Savoy-teatterissa.", "sv": "Piirpauke, som har uppnått den respektabla åldern av 50 år, firar utgivningen av sitt nya album i november på Savoy-teatern.", "en": "Piirpauke has reached the respectable age of 50 and will now celebrate the release of their new album at the Savoy Theatre in November." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/76449A097C896DD1AB67F80A31D72997/Piirpauke_Lumo-albumin_levynjulkaisukonsertti", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/76449A097C896DD1AB67F80A31D72997/PPiirpauke_skivslappskonsert_for_albumet_Lumoiirpauke", "en": "http://www.savoyteatteri.fi/en/events/event/76449A097C896DD1AB67F80A31D72997/Piirpauke_Lumo_album_release_concert" }, "name": { "fi": "Piirpauke – Lumo-albumin levynjulkaisukonsertti", "sv": "PPiirpauke – skivsläppskonsert för albumet Lumoiirpauke", "en": "Piirpauke – Lumo album release concert" }, "description": { "fi": "<p>Kunnioitettavan 50 vuoden iän saavuttanut Piirpauke juhlistaa uuden albuminsa julkaisua marraskuussa Savoy-teatterissa.</p><p>Yhtye on valmistellut uudella kokoonpanollaan kaikessa rauhassa juhlavuoden kunniaksi julkaistavaa albumia Lumo. Albumilla kuullaan Piirpauken tulkintoja muun muassa Jean Sibeliuksen, Oskari Merikannon, Toivo Kuulan, Selim Palmgrenin ja Yrjö Kilpisen sävellyksistä. Ensimmäinen single, Yrjö Kilpisen Kantelettaren teksteihin säveltämä Silloin laulan, saa uuden ulottuvuuden Palefacen väkevällä tulkinnalla.<br> <br>Sakari Kukon luotsaama Piirpauke on kiistatta yksi kautta aikain suosituimmista kotimaisista instrumentaaliyhtyeistä. Yhtyeen debyyttialbumia on myyty enemmän kuin mitään muuta Suomessa julkaistua pelkästään soitinmusiikkia sisältävää pitkäsoittoa. Yhtyeen tunnetuin kappale Konevitsan kirkonkellot nauttii yhä klassikon asemasta ja on siivittänyt Piirpauken myös kansainväliseen maineeseen.<br> <br>Kokoonpano:<br>Sakari Kukko – piano, saksofonit, huilut<br>Matti Salo – kitarat<br>Ari Hossi – basso<br>Ilmari Heikinheimo – rummut, perkussiot<br> <br>Kesto n. 2 h 30 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Piirpauke, som har uppnått den respektabla åldern av 50 år, firar utgivningen av sitt nya album i november på Savoy-teatern.</p><p>Med sin nya sammansättning har bandet i lugn och ro förberett albumet Lumo (Förtrollning), som släpps till jubileets ära. På albumet får vi höra Piirpaukes tolkningar av kompositioner av bland andra Jean Sibelius, Oskari Merikanto, Toivo Kuula, Selim Palmgren och Yrjö Kilpinen. Den första singeln, Silloin laulan, komponerad av Yrjö Kilpinen till texter i Kanteletar, får en ny dimension genom Palefaces kraftfulla tolkning.</p><p>Piirpauke leds av Sakari Kukko och är utan tvekan ett av de mest populära finska instrumentalbanden genom tiderna. Bandets debutalbum har sålts i fler exemplar än någon annan lp-skiva med enbart instrumentalmusik som getts ut i Finland. Bandets mest kända låt Konevitsan kirkonkellot har fortfarande klassikerstatus och har gett Piirpauke också internationell berömmelse.</p><p>Sammansättning:<br>Sakari Kukko – piano, saxofoner, flöjter<br>Matti Salo – gitarrer<br>Ari Hossi – bas<br>Ilmari Heikinheimo – trummor, slagverk</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>Piirpauke has reached the respectable age of 50 and will now celebrate the release of their new album at the Savoy Theatre in November.</p><p>With their new line-up, the band has been quietly preparing the album Lumo, which will be released in honour of the anniversary year. The album features Piirpauke's interpretations of compositions by Jean Sibelius, Oskari Merikanto, Toivo Kuula, Selim Palmgren and Yrjö Kilpinen, among others. The first single, Silloin laulan, composed by Yrjö Kilpinen to lyrics by Kanteletar, takes on a new dimension with Paleface's powerful interpretation.</p><p>Led by Sakari Kukko, Piirpauke is undoubtedly one of the most popular Finnish instrumental bands of all time. The band's debut album has sold more copies than any other long play album released in Finland featuring only instrumental music. The band's best-known song, Konevitsan kirkonkellot, is still considered a classic and has even propelled Piirpauke to international fame.</p><p>Line-up:<br>Sakari Kukko – piano, saxophones, flutes<br>Matti Salo – guitars<br>Ari Hossi – bass<br>Ilmari Heikinheimo – drums, percussions</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": "Fullsteam Agency", "sv": "Fullsteam Agency", "en": "Fullsteam Agency" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67001/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27912, "next": "