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&max_duration=3d&page=35
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=36", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=34" }, "data": [ { "id": "kulke:66913", "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3962502", "sv": "https://www.lippu.fi/eventseries/name-3962502", "en": "https://www.lippu.fi/eventseries/name-3962502" }, "price": { "fi": "69-119 € / S&D 171 €", "sv": "69-119 € / S&D 171 €", "en": "69-119 € / S&D 171 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490517, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T07:14:22.022147Z", "last_modified_time": "2025-08-26T07:14:22.022163Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776888.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490517/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T07:14:21.893158Z", "last_modified_time": "2025-09-26T12:13:51.045395Z", "date_published": null, "start_time": "2026-02-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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1C30735435E3E135D1F342369EE8E1A0/Paris_The_Show_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/1C30735435E3E135D1F342369EE8E1A0/Paris_The_Show_", "en": "http://www.savoyteatteri.fi/en/events/event/1C30735435E3E135D1F342369EE8E1A0/Paris_The_Show_" }, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "location_extra_info": null, "name": { "fi": "Paris! The Show", "sv": "Paris! The Show", "en": "Paris! The Show" }, "description": { "fi": "<p>Paris! The Show – ranskalaista musiikkia ylistävä katsojamenestys huipputekijöiltä</p><p>Ohjaaja Gil Marsallan luoma kansainvälinen suursuosikki <b>Paris! The Show</b> on kunnianosoitus 1900-luvun ikonisille ranskalaisille kappaleille ja kabareekulttuurille. Suomessa ensimmäistä kertaa nähtävä esitys vie katsojat Pariisin taianomaisille Montmartren kujille ja legendaarisille kabareelavoille tarjoten samalla aimo annoksen sodanjälkeisen ajan rakastetuimpia ranskalaiskappaleita.</p><p>Maailmalla vuodesta 2014 alkaen kiertänyt Paris! The Show kertoo nuoresta amerikkalaisesta Emilystä, joka haaveilee boheemista taiteilijaelämästä Pariisissa. Montmartressa hän ystävystyy tarjoilijattarena työskentelevän <b>Édith Piafin</b> ja tämän ystävän <b>Charles Aznavourin</b> kanssa.</p><p>Esitys nostaa valokeilaan Ranskan kaikkien aikojen tunnetuimmat laulajat. Piafin ja Aznavourin lisäksi esityksessä kuullaan musiikkia myös muilta rakastetuilta ranskalaistähdiltä, kuten <b>Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer</b> sekä <b>Gilbert Bécaud</b>.</p><p>Karismaattinen esiintyjäkaarti, huikea livebändi ja tunnelmallinen lavastus luovat tunteita herättävän musiikkielämyksen, joka puhuttelee kaikenikäisiä.</p><p>Esityksen kesto väliaikoineen on noin 2 tuntia.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Show & Dinner ja Brunssi -lippu</b> sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun<br>Savoy-teatterin yhteydessä toimivassa Minne Garden-ravintolassa.</p><p><b>Ranskalainen illallinen saatavilla pe 13.2 ja la 14.2. klo 19 alkavissa esityksissä. Illallinen tarjoillaan klo 17 alkaen.</p><p>Ranskalainen illallinen – menu classic</b> <br>Minnen maalaissalaatti, karamellisoitua sipulia, chevremoussea ja viikunaa L<br>Paahdettua siikaa, sahramilla maustettua bouillabaisekastiketta ja aligot-perunaa L,G<br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G</p><p>TAI</p><p><b>Ranskalainen illallinen – menu green</b> <br>Minnen maalaissalaatti, karamellisoitua sipulia, chevremoussea ja viikunaa L<br>Latva-artisokkacassoulet, aligot-perunaa ja grillattua kuningasosterisientä L,G<br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G<br> <br><i>Illallismenun hinta ei sisällä juomia. <br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p>Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.<br> <br><b>Minnen ranskalainen ystävänpäiväbrunssi saatavilla la 14.2. klo 14 alkavassa esityksessä. Tarjoillaan klo 12 alkaen.</p><p>Alkuruokia ja pieniä suupaloja buffetpöydästä</b> <br>Sipuli-vuohenjuustotartaletteja VL<br>Mini- etanavannikkeita ja Comté-juustoa L<br>Minnen Charcuterie; herkkujuustoja, leikkeleitä, marinoituja vihanneksia ja hilloketta L,G<br>Raikkaita salaatinlehtiä, vihannescrudites ja sampanjavinaigrettea V,G<br>Kylmäsavustettua taimenta ja piparjuurikermaa L,G<br>Grillattua kananpoikaa, pikkukurkkuja ja dijon-majoneesia M,G<br>Vege-Nizzan salaattia V,G<br>Artesaanileipää, voisarvia ja vaahdotettua voita L</p><p><b>Pääruoka ja jälkiruoka pöytiintarjoiltuna:</b> (pääruoka valitaan paikan päällä)<br>Uppomuna L<br>-ilmakuivattua kinkkua, paistettua briossia ja bearnaisekastiketta<br>Tai<br>Uppomuna Florentine L<br>-paistettua pinaattia ja sipulia, briossia ja bearnaisekastiketta<br> <br><b>Jälkiruoka</b><br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G<br> <br>Reilunkaupan tummapaahtoinen luomukahvi tai haudutettu tee <br> <br><i>Brunssimenun hinta ei sisällä juomia. <br>Brunssi tarjoillaan Savoy-teatterin ravintola Minne Gardenissa kaksi tuntia ennen esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p>Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p>", "sv": "<p>Paris! The Show – en publiksuccé som hyllar fransk musik skapad av toppförmågor</p><p>Den internationella storfavoriten Paris! The Show, skapad av regissören Gil Marsalla, är en hyllning till ikoniska franska sånger och kabarékulturen under 1900-talet. Föreställningen visas för första gången i Finland och tar publiken med till de magiska gränderna och legendariska kabaréscenerna i Montmartre i Paris, samtidigt som den bjuder på en rejäl dos av de mest älskade franska sångerna från efterkrigstiden.</p><p>Paris! The Show har turnerat världen över sedan 2014 och handlar om den unga amerikanskan Emily, som drömmer om ett bohemiskt liv som konstnär i Paris. I Montmartre blir hon vän med servitrisen Édith Piaf och hennes vän Charles Aznavour.</p><p>Föreställningen sätter fokus på de mest kända franska sångarna genom tiderna. Förutom Piaf och Aznavour innehåller showen också musik av andra älskade franska stjärnor såsom Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer och Gilbert Bécaud.</p><p>En karismatisk ensemble av artister, ett fantastiskt liveband och en stämningsfull scenografi skapar en känsloladdad musikupplevelse som tilltalar alla åldrar.</p><p>Föreställningens längd inklusive pauser är ca 2 timmar.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Biljetten Show & Dinner och Brunch inkluderar en entrébiljett samt en meny med kött eller vegetarisk mat som serveras till borden<br>på restaurang Minne Garden intill Savoy-teatern.</p><p>Fransk middag serveras fredagen den 13 februari och lördagen den 14 februari före föreställningarna som börjar kl. 19. Middagen serveras från kl. 17.</p><p>Fransk middag – Menu Classic<br>Minnes lantsallad, karamelliserad lök, chèvremousse och fikon L<br>Halstrad sik, bouillabaissesås med saffran och pommes aligot L, G<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>ELLER</p><p>Fransk middag – Menu Green<br>Minnes lantsallad, karamelliserad lök, chèvremousse och fikon L<br>Cassoulet med kronärtskocka, pommes aligot och grillad kungsmussling L, G<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>Priset för middagsmenyn inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar innan föreställningen börjar.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p><p>Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Minnes franska Alla hjärtans dag-brunch serveras lördagen den 14 februari inför föreställningen som börjar kl. 14. Serveras från kl. 12.</p><p>Förrätter och småplock från buffébordet<br>Tarteletter med lök och getost LL<br>Minisnigelkrustader och Comté-ost L<br>Minnes Charcuterie; gourmetostar, kallskuret, inlagda grönsaker och kompott L, G<br>Färska salladsblad, grönsakscrudité och champagnevinägrett V, G<br>Kallrökt öring och pepparrotskräm L, G<br>Grillad kyckling, minigurkor och dijonmajonnäs M, G<br>Vegetarisk sallad niçoise V, G<br>Hantverksbröd, croissant och vispat smör L</p><p>Huvudrätt och dessert serveras till bordet: (huvudrätten väljs på plats)<br>Pocherat ägg L<br>- lufttorkad skinka, rostad brioche och bearnaisesås<br>eller<br>Ägg Florentine L<br>- stekt spenat och lök, brioche och bearnaisesås</p><p>Dessert<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>Rättvisemärkt mörkrostat ekologiskt kaffe eller bryggt te</p><p>Priset för brunchmenyn inkluderar inte drycker.<br>Brunchen serveras i Savoy-teaterns restaurang Minne Garden två timmar innan föreställningen börjar.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p><p>Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p>", "en": "<p>Paris! The Show – a crowd-pleasing tribute to French music by top artists</p><p>Created by director Gil Marsalla, the international hit Paris! The Show is a tribute to iconic French songs and cabaret culture of the 20th century. The show, which will now be seen for the first time in Finland, will take the audience to the magical alleys of Montmartre and the legendary cabaret stages of Paris, while offering a wide selection of the most beloved French songs of the post-war era.</p><p>Touring the world since 2014, Paris! The Show is about a young American, Emily, who dreams of a bohemian life as an artist in Paris. In Montmartre, she befriends Édith Piaf, who is working as a waitress, and her friend Charles Aznavour.</p><p>The show will highlight the most famous French singers of all time. In addition to Piaf and Aznavour, the show will also feature music from other beloved French stars such as Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer and Gilbert Bécaud.</p><p>The charismatic cast of performers, a stunning live band and atmospheric staging create an evocative musical experience that appeals to all ages.</p><p>The duration of the performance, including intermissions, is approximately 2 hours.</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>The Show & Dinner and Brunch ticket includes an entrance ticket and a meat or vegetarian menu served to tables<br>at the Minne Garden restaurant in the Savoy Theatre.</p><p>The French dinner will be available on Fri 13 February and Sat 14 February for performances starting at 19:00. Dinner will be served from 17:00 onwards.</p><p>French dinner – menu classic<br>Minne’s country salad, caramelised onions, chevre mousse and figs L<br>Roasted whitefish, bouillabaisse sauce seasoned with saffron and pommes aligot L,G<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>OR</p><p>French dinner – menu green<br>Minne’s country salad, caramelised onions, chevre mousse and figs L<br>Artichoke cassoulet with pommes aligot and grilled king trumpet mushrooms L,G<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>The price of the dinner 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 performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p><p>Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>Minne's French Valentine's Day brunch is available on Sat 14 Feb for the performance starting at 14:00. Served from 12 noon onwards.</p><p>Starters and tasty small bites from a buffet table<br>Onion and goat cheese tartelettes LL<br>Miniature escargot tarts and Comté cheese L<br>Minne Charcuterie: gourmet cheeses, cold cuts, pickled vegetables and compote L,G<br>Fresh lettuce leaves, vegetable crudites and champagne vinaigrette V,G<br>Cold smoked trout and horseradish cream L,G<br>Grilled chicken, miniature pickles and Dijon mayonnaise M,G<br>Vegan Nizza salad V,G<br>Artisan bread, croissants and whipped butter L</p><p>Main course and dessert served at the table: (main course to be chosen on site)<br>Poached egg L<br>- air-dried ham, fried brioche and bearnaise sauce<br>Or<br>Poached egg Florentine L<br>- fried spinach and onion, brioche and bearnaise sauce</p><p>Dessert<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>Fair trade organic dark roast coffee or brewed tea</p><p>The price of the brunch menu does not include drinks.<br>The brunch will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p><p>Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Paris! The Show – ranskalaista musiikkia ylistävä katsojamenestys huipputekijöiltä", "sv": "Paris! The Show – en publiksuccé som hyllar fransk musik skapad av toppförmågor", "en": "Paris! The Show – a crowd-pleasing tribute to French music by top artists" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66913/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66933", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3964957", "sv": "https://www.lippu.fi/eventseries/name-3964957", "en": "https://www.lippu.fi/eventseries/name-3964957" }, "price": { "fi": "42,90-52,60 €", "sv": "42,90-52,60 €", "en": "42,90-52,60 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490583, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-02T06:14:07.689557Z", "last_modified_time": "2025-09-02T06:14:07.689575Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776920.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490583/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-02T06:14:07.442374Z", "last_modified_time": "2025-09-26T12:13:50.499700Z", "date_published": null, "start_time": "2026-02-07T17: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0ED97DDDA24CCC7E7EC45C798D82F10B/Desplante_-_Eduardo_Guerrero", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0ED97DDDA24CCC7E7EC45C798D82F10B/Desplante_-_Eduardo_Guerrero", "en": "http://www.savoyteatteri.fi/en/events/event/0ED97DDDA24CCC7E7EC45C798D82F10B/Desplante_-_Eduardo_Guerrero" }, "provider": { "fi": "Helsingin flamencoyhdistys ry", "sv": "Helsingin flamencoyhdistys ry", "en": "Helsingin flamencoyhdistys ry" }, "location_extra_info": null, "name": { "fi": "Desplante - Eduardo Guerrero – Helsingin XXV flamencofestivaali - XXV Festival Flamenco de Helsinki", "sv": "Desplante - Eduardo Guerrero – XXV Festival Flamenco de Helsinki", "en": "Desplante - Eduardo Guerrero – XXV Festival Flamenco de Helsinki" }, "description": { "fi": "<p>Helsingin flamencofestivaalin pääesiintyjänä nähdään yksi flamencotanssin tämän hetken suurista nimistä, uskalias uudistaja Eduardo Guerrero. Hänen Desplante-teoksensa on kunnianosoitus Etelä-Espanjan kaivosalueiden flamencoperinteelle.</p><p><b>Eduardo Guerrero</b>, 42, syntyi Cádizissa ja alkoi tanssia jo lapsena. Nuorena häntä opettivat eturivin maestrot kuten Mario Maya ja Antonio Canales. Hän liittyi jo 19-vuotiaana maineikkaisiin flamencoryhmiin ja esiintyi muiden muassa Eva Yerbabuenan, Rocio Molinan ja Ballet Nacional de Españan kanssa.<br>Guerrero lähti soolo- ja koreografiuralle 2011 ja on luonut toistakymmentä kiitettyä ja kohauttanutta teosta. Hänen mukaansa tanssilla on oltava myös yhteiskunnallinen ja yhteisöllinen ulottuvuus eikä sen pidä kertoa pinnallisista tyhjänpäiväisyyksistä.<br>Kaivosalueen Cante de Las Minas -festivaaleilla 2013 taranto- ja alegrías-soolot toivat hänelle tanssin Desplante-palkinnon. (Desplante-sanan voi suomentaa vaikkapa rohkeudeksi tai uhmakkaaksi uudeksi askeleeksi.)</p><p>Helsinkiin nyt tuotava Guerreron oma Desplante-niminen teos pohjautuu noihin vuoden 2013 palkittuihin esityksiin, ja sen ensi-ilta oli Meksikossa 2015. <i>\"Mutkaton, intiimi, vahva ja dramaattinen\"</i>, sitä kuvailee taiteilijan oma sivusto.<br>Flamencon perinteiset laulutyylit, palot, ovat teoksen tukipilareita. Guerreroa säestävät upeat laulaja <b>Alicia Morales</b> ja kitaristi <b>Pino Losada</b>.</p><p>Guerreroa on luonnehdittu riskinottajaksi ja perinteitä kunnioittavaksi rajojen rikkojaksi. Hän osaa tanssia rajusti ja raastavasti mutta myös sulokkaasti.<br>Pitkäraajaisen miehen kehonkäyttöä on hämmästelty ylivertaiseksi. Guerreron teosten puvustus on aina tarkkaan mietittyä ja yllättävää.</p><p><i>\"Ei tarvitse kuin katsoa häntä kun jo aistii duenden\"</i>, kirjoittaa ExpoFlamenco-julkaisu. <i>\"Hän tanssii jokaisella huokosellaan, flamencotanssin kaikkein suurimpien vertaisella taidolla.\"</i><br>Guerreron tunnukseksi sopii eräässä hänen esityksessään laulettu säe: <i>\"Flamenco on hehkuva ahjo, joka ei koskaan sammu.\"</i></p><p>Kesto n. 80 min, ei väliaikaa</p><p>Ikärajasuositus: yli 7-vuotiaille</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Huvudnumret på flamencofestivalen i Helsingfors är ett av de för närvarande största namnen inom flamencodansen, den vågade innovatören Eduardo Guerrero. Hans verk Desplante är en hyllning till flamencotraditionen i gruvdistrikten i södra Spanien.</p><p>Eduardo Guerrero, 42, är född i Cádiz och började dansa redan som barn. Som ung undervisades han av ledande maestros som Mario Maya och Antonio Canales. Redan som 19-åring gick han med i kända flamencogrupper och uppträdde med bland andra Eva Yerbabuena, Rocio Molina och Ballet Nacional de España.<br>Guerrero inledde en solo- och koreografkarriär 2011 och har skapat mer än tio uppmärksammade och hyllade verk. Han anser att dans också måste ha en samhällelig och social dimension, och att den inte ska handla om ytliga trivialiteter.<br>Vid festivalen Cante de Las Minas 2013 i gruvdistriktet vann han med sina solon i taranto och alegrías priset Desplante för sin dans. (Desplante kan översättas med till exempel mod eller ett nytt djärvt steg.)</p><p>Guerreros eget verk med namnet Desplante som nu kommer till Helsingfors är baserat på de prisbelönta föreställningarna från 2013 och hade premiär i Mexiko 2015. ”Okomplicerat, intimt, starkt och dramatiskt” – så beskrivs verket på konstnärens egen webbplats.<br>Flamencons traditionella sångstilar, palos, är grundpelarna i verket. Guerrero ackompanjeras av den fantastiska sångerskan Alicia Morales och gitarristen Pino Losada.</p><p>Guerrero har beskrivits som en risktagare och en gränsöverskridare som respekterar traditioner. Han kan dansa på ett våldsamt och hjärtslitande sätt, men också graciöst.<br>Den långbente mannens användning av sin kropp har beskrivits som häpnadsväckande och enastående. Kostymerna i Guerreros verk är alltid noga genomtänkta och överraskande.</p><p>”Man behöver bara titta på honom för att känna duende”, skriver ExpoFlamenco. ”Han dansar med varje por, med samma skicklighet som de allra största inom flamencodansen.”<br>Som kännetecken för Guerrero passar en vers som sjungs i ett av hans framträdanden: ”Flamenco är en glödande härd som aldrig slocknar.”</p><p>Längd ca 80 min., ingen paus.</p><p>Åldersgränsrekommendation: över 7 år.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>The headliner of the Helsinki Flamenco Bienal will be one of the biggest names in flamenco dance today, the daring innovator Eduardo Guerrero. His work Desplante is a tribute to the flamenco traditions of the mining areas of southern Spain.</p><p>Eduardo Guerrero, 42, was born in Cádiz and started dancing as a child. In his adolescence, he was taught by leading maestros such as Mario Maya and Antonio Canales. At the age of only 19, he joined renowned flamenco groups and performed with names such as Eva Yerbabuena, Rocio Molina and Ballet Nacional de España.<br>Guerrero embarked on a solo and choreographic career in 2011 and has created dozens of works garnering acclaim and interest. He believes that dance must also have a social and community dimension and it should not be about superficial trivialities.<br>At the mining region’s Cante de Las Minas festival in 2013, his taranto and alegrías solos won him the Desplante award for dance. (Desplante translates to e.g. ‘courage’ or a ‘defiant new step’.)</p><p>Guerrero's own Desplante work, now coming to Helsinki, is based on those award-winning performances of 2013, and premiered in Mexico in 2015. “Uncomplicated, intimate, strong and dramatic\", is how the artist's own website describes it.<br>Flamenco's traditional song styles, the palos, are the mainstays of the work. Guerrero will be accompanied by the great singer Alicia Morales and guitarist Pino Losada.</p><p>Guerrero has been described as a risk-taker and a boundary-breaker who still respects tradition. He can dance with fierceness and ferocity, but also with grace.<br>The long-limbed man’s ability to use his body has been hailed as supreme. The costumes in Guerrero's works are always carefully considered and surprising.</p><p>“You only have to look at him to sense the duende,” writes the ExpoFlamenco publication. “He dances with every pore of his skin, with skill that equals the greatest of the greats of flamenco dancing.”<br>Guerrero’s motto could be a verse sung in one of his performances: “Flamenco is a glowing furnace that never goes out.”</p><p>Duration approx. 80 min, no intermission</p><p>Age rating: 7+</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>" }, "provider_contact_info": null, "short_description": { "fi": "Helsingin flamencofestivaalin pääesiintyjänä nähdään yksi flamencotanssin tämän hetken suurista nimistä, uskalias uudistaja Eduardo Guerrero. Hänen Desplante-teoksensa on kunnianosoitus Etelä-Espanjan kaivosalueiden flamencoperinteelle.", "sv": "Huvudnumret på flamencofestivalen i Helsingfors är ett av de för närvarande största namnen inom flamencodansen, den vågade innovatören Eduardo Guerrero. Hans verk Desplante är en hyllning till flamencotraditionen i gruvdistrikten i södra Spanien.", "en": "The headliner of the Helsinki Flamenco Bienal will be one of the biggest names in flamenco dance today, the daring innovator Eduardo Guerrero. His work Desplante is a tribute to the flamenco traditions of the mining areas of southern Spain." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66933/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66994", "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3954795", "sv": "https://www.lippu.fi/eventseries/name-3954795", "en": "https://www.lippu.fi/eventseries/name-3954795" }, "price": { "fi": "44,90-48,90 €", "sv": "44,90-48,90 €", "en": "44,90-48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490664, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T06:14:24.558085Z", "last_modified_time": "2025-09-09T06:14:24.558104Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777059.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490664/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T06:14:24.439878Z", "last_modified_time": "2025-09-26T12:13:50.090293Z", "date_published": null, "start_time": "2026-01-31T17: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6C945586C2E216B24EE09F0E92F3D3C3/Maagikot_5_-_Variety_of_Wonders", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/6C945586C2E216B24EE09F0E92F3D3C3/Maagikot_5_-_Variety_of_Wonders", "en": "http://www.savoyteatteri.fi/en/events/event/6C945586C2E216B24EE09F0E92F3D3C3/Maagikot_5_-_Variety_of_Wonders" }, "provider": { "fi": "Nelonen Media Live yhteistyössä Radio Aito Iskelmä", "sv": "Nelonen Media Live", "en": "Nelonen Media Live" }, "location_extra_info": null, "name": { "fi": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom", "sv": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom", "en": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom" }, "description": { "fi": "<p>Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.</p><p><b>Mitä kaikkea lavalla nähdään?</b></p><p>Varietee on taiteen juhlaa – se yhdistää taikuuden, mentalismin, akrobatian, jongleerauksen ja komedian yhdeksi häikäiseväksi kokonaisuudeksi. Maagikot 5 – Variety of Wonders tuo lavalle huippuammattilaiset, joiden esitykset saavat yleisön haukkomaan henkeään ja hymyilemään sydämensä kyllyydestä. Luvassa on mieltä taivuttavaa mentalismia, maailmanennätysjongleerausta, akrobatiaa, joka uhmaa painovoimaa, sekä taikuutta, joka rikkoo todellisuuden rajoja.</p><p><b>Esiintyjät:</p><p>Pete Poskiparta</b> – Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Joni Pakanen</b> – Vuoden esiintyjä, taikuuden, komedian ja teatterin mestari<br><b>Herra Koskinen</b> – Moninkertainen maailmanennätysjonglööri<br><b>Christian Engblom</b> – Kahdesti Penn & Telleriä huijannut mestaritaikuri<br><b>Gigi</b> – Ympäri maailmaa esiintynyt akrobaatti, joka tuo lavalle liikettä ja lumoa</p><p><b>Maagikot-ilmiö jatkuu</b></p><p>Jo viidettä kertaa järjestettävä Maagikot on vakiinnuttanut paikkansa Suomen suosituimpana magian ja illuusion kiertueena. Keväällä 2025 kiertue rikkoi yleisöennätyksiä – yli <b>12 000 katsojaa</b> täytti konserttisalit ympäri maan.<br>Kiertueen suosio perustuu maailmanluokan esiintyjiin, joiden taidokkaat ja hämmästyttävät esitykset puhuttelevat kaikenikäisiä. Tämä show ei ole vain temppuja – se on kokemus, joka jää mieleen pitkäksi aikaa.</p><p><b>Katsojien palautteita viime kiertueelta:</b></p><p><i>\"Ensimmäinen kerta Maagikoissa. Ylitti odotukseni!”<br>\"Kiitos hienosta showsta! Tämä oli upea yhteinen kokemus minulle ja teini-ikäiselle lapselleni.”<br>“Isot kiitokset esityksestä, oli todella upea kokemus. Koko meidän perhe nautti suunnattomasti!”</i></p><p>Parhaat paikat myydään nopeimmille – varmista paikkasi ajoissa!</p><p>Suositusikäraja: 10+</p><p>Show’n kesto noin 2 tuntia, sisältäen väliajan</p>", "sv": "<p>Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.</p><p>Vad allt kommer vi att få se på scenen?</p><p>En varieté är en hyllning till konsten – en kombination av magi, mentalism, akrobatik, jonglering och komedi i en imponerande helhet. Maagikot 5 – Variety of Wonders visar de främsta proffsen på scenen vars föreställningar får åskådarna att kippa efter andan och le från djupet av sina hjärtan. Det blir mentalism som utmanar sinnet, världsrekord i jonglering, akrobatik som trotsar tyngdkraften och magi som spränger verklighetens gränser.</p><p>På scenen:</p><p>Pete Poskiparta – Finlands enda internationellt prisbelönta mentalist<br>Joni Pakanen – Årets artist, mästare på magi, komedi och teater<br>Herra Koskinen – jonglör med flera världsrekord<br>Christian Engblom – mästertrollkarl som lurat Penn & Teller två gånger<br>Gigi – akrobat som har uppträtt över hela världen och för med sig rörelse och magi på scenen</p><p>Fenomenet Maagikot fortsätter</p><p>Maagikot ordnas nu för femte gången och har etablerat sig som den mest populära magi- och illusionsturnén i Finland. Under våren 2025 slog turnén publikrekord – mer än 12 000 personer fyllde konsertsalarna runt om i landet.<br>Turnéns popularitet bygger på artister i världsklass som med sina skickliga och häpnadsväckande framträdanden tilltalar åskådare i alla åldrar. Den här showen handlar inte bara om trick – den är en upplevelse som du kommer ihåg länge.</p><p>Respons från åskådarna på den senaste turnén:</p><p>”Första gången jag sett Maagikot. Överträffade mina förväntningar!”<br>”Tack för en fin show! Det var en fantastisk upplevelse för mig och mitt tonårsbarn.”<br>”Tack så mycket för föreställningen, det var en riktigt fin upplevelse. Hela vår familj tyckte väldigt mycket om den!”</p><p>De bästa platserna säljs till de snabbaste – se till att få en plats!</p><p>Åldersrekommendation: 10+</p><p>Föreställningens längd ca 2 timmar, inklusive paus.</p>", "en": "<p>Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family.</p><p>What will you see on stage?</p><p>Varietee is a celebration of art, combining magic, mentalism, acrobatics, juggling and comedy into one dazzling whole. Maagikot 5 – Variety of Wonders fills the stage with top professionals whose performances will leave the audience gasping for breath and smiling wide with their hearts full. There will be mind-blowing mentalism, world record juggling, acrobatics that defy gravity and magic that breaks the boundaries of reality.</p><p>Performers:</p><p>Pete Poskiparta - Finland's only internationally awarded mentalist<br>Joni Pakanen - Performer of the Year, master of magic, comedy and theatre<br>Herra Koskinen - A juggler with multiple world records<br>Christian Engblom - The master magician who twice tricked Penn & Teller<br>Gigi - An acrobat who has performed all over the world, bringing movement and magic to the stage</p><p>The Maagikot phenomenon continues</p><p>Now in its fifth year, the Maagikot show has established itself as the most popular magic and illusion tour in Finland. In spring 2025, the tour broke audience records – more than 12,000 people filled concert halls across the country.<br>The tour's popularity is built on the world-class performers whose skilful and astonishing performances appeal to all ages. This show is not just about tricks – it's an experience that will stay with you for a long time.</p><p>Audience feedback from the last tour:</p><p>“First time with Maagikot. Exceeded my expectations!”<br>“Thank you for a great show! It was a great shared experience for me and my teenage child.”<br>“Thank you very much for the performance, it was an amazing experience. Our whole family enjoyed it immensely!”</p><p>The best seats are sold to the fastest – make sure to book your ticket on time!</p><p>Age recommendation: 10+</p><p>Duration of the show about 2 h, including intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.", "sv": "Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.", "en": "Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66994/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66993", "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3954795", "sv": "https://www.lippu.fi/eventseries/name-3954795", "en": "https://www.lippu.fi/eventseries/name-3954795" }, "price": { "fi": "44,90-48,90 €", "sv": "44,90-48,90 €", "en": "44,90-48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490663, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T06:14:24.169716Z", "last_modified_time": "2025-09-09T06:14:24.169735Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777058.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490663/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T06:14:24.040466Z", "last_modified_time": "2025-09-26T12:13:49.757925Z", "date_published": null, "start_time": "2026-01-31T13: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0A78364B862CFC8B7EB7F31277E5A1CE/Maagikot_5_-_Variety_of_Wonders", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0A78364B862CFC8B7EB7F31277E5A1CE/Maagikot_5_-_Variety_of_Wonders", "en": "http://www.savoyteatteri.fi/en/events/event/0A78364B862CFC8B7EB7F31277E5A1CE/Maagikot_5_-_Variety_of_Wonders" }, "provider": { "fi": "Nelonen Media Live yhteistyössä Radio Aito Iskelmä", "sv": "Nelonen Media Live", "en": "Nelonen Media Live" }, "location_extra_info": null, "name": { "fi": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom", "sv": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom", "en": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom" }, "description": { "fi": "<p>Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.</p><p><b>Mitä kaikkea lavalla nähdään?</b></p><p>Varietee on taiteen juhlaa – se yhdistää taikuuden, mentalismin, akrobatian, jongleerauksen ja komedian yhdeksi häikäiseväksi kokonaisuudeksi. Maagikot 5 – Variety of Wonders tuo lavalle huippuammattilaiset, joiden esitykset saavat yleisön haukkomaan henkeään ja hymyilemään sydämensä kyllyydestä. Luvassa on mieltä taivuttavaa mentalismia, maailmanennätysjongleerausta, akrobatiaa, joka uhmaa painovoimaa, sekä taikuutta, joka rikkoo todellisuuden rajoja.</p><p><b>Esiintyjät:</p><p>Pete Poskiparta</b> – Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Joni Pakanen</b> – Vuoden esiintyjä, taikuuden, komedian ja teatterin mestari<br><b>Herra Koskinen</b> – Moninkertainen maailmanennätysjonglööri<br><b>Christian Engblom</b> – Kahdesti Penn & Telleriä huijannut mestaritaikuri<br><b>Gigi</b> – Ympäri maailmaa esiintynyt akrobaatti, joka tuo lavalle liikettä ja lumoa</p><p><b>Maagikot-ilmiö jatkuu</b></p><p>Jo viidettä kertaa järjestettävä Maagikot on vakiinnuttanut paikkansa Suomen suosituimpana magian ja illuusion kiertueena. Keväällä 2025 kiertue rikkoi yleisöennätyksiä – yli <b>12 000 katsojaa</b> täytti konserttisalit ympäri maan.<br>Kiertueen suosio perustuu maailmanluokan esiintyjiin, joiden taidokkaat ja hämmästyttävät esitykset puhuttelevat kaikenikäisiä. Tämä show ei ole vain temppuja – se on kokemus, joka jää mieleen pitkäksi aikaa.</p><p><b>Katsojien palautteita viime kiertueelta:</b></p><p><i>\"Ensimmäinen kerta Maagikoissa. Ylitti odotukseni!”<br>\"Kiitos hienosta showsta! Tämä oli upea yhteinen kokemus minulle ja teini-ikäiselle lapselleni.”<br>“Isot kiitokset esityksestä, oli todella upea kokemus. Koko meidän perhe nautti suunnattomasti!”</i></p><p>Parhaat paikat myydään nopeimmille – varmista paikkasi ajoissa!</p><p>Suositusikäraja: 10+</p><p>Show’n kesto noin 2 tuntia, sisältäen väliajan</p>", "sv": "<p>Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.</p><p>Vad allt kommer vi att få se på scenen?</p><p>En varieté är en hyllning till konsten – en kombination av magi, mentalism, akrobatik, jonglering och komedi i en imponerande helhet. Maagikot 5 – Variety of Wonders visar de främsta proffsen på scenen vars föreställningar får åskådarna att kippa efter andan och le från djupet av sina hjärtan. Det blir mentalism som utmanar sinnet, världsrekord i jonglering, akrobatik som trotsar tyngdkraften och magi som spränger verklighetens gränser.</p><p>På scenen:</p><p>Pete Poskiparta – Finlands enda internationellt prisbelönta mentalist<br>Joni Pakanen – Årets artist, mästare på magi, komedi och teater<br>Herra Koskinen – jonglör med flera världsrekord<br>Christian Engblom – mästertrollkarl som lurat Penn & Teller två gånger<br>Gigi – akrobat som har uppträtt över hela världen och för med sig rörelse och magi på scenen</p><p>Fenomenet Maagikot fortsätter</p><p>Maagikot ordnas nu för femte gången och har etablerat sig som den mest populära magi- och illusionsturnén i Finland. Under våren 2025 slog turnén publikrekord – mer än 12 000 personer fyllde konsertsalarna runt om i landet.<br>Turnéns popularitet bygger på artister i världsklass som med sina skickliga och häpnadsväckande framträdanden tilltalar åskådare i alla åldrar. Den här showen handlar inte bara om trick – den är en upplevelse som du kommer ihåg länge.</p><p>Respons från åskådarna på den senaste turnén:</p><p>”Första gången jag sett Maagikot. Överträffade mina förväntningar!”<br>”Tack för en fin show! Det var en fantastisk upplevelse för mig och mitt tonårsbarn.”<br>”Tack så mycket för föreställningen, det var en riktigt fin upplevelse. Hela vår familj tyckte väldigt mycket om den!”</p><p>De bästa platserna säljs till de snabbaste – se till att få en plats!</p><p>Åldersrekommendation: 10+</p><p>Föreställningens längd ca 2 timmar, inklusive paus.</p>", "en": "<p>Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family.</p><p>What will you see on stage?</p><p>Varietee is a celebration of art, combining magic, mentalism, acrobatics, juggling and comedy into one dazzling whole. Maagikot 5 – Variety of Wonders fills the stage with top professionals whose performances will leave the audience gasping for breath and smiling wide with their hearts full. There will be mind-blowing mentalism, world record juggling, acrobatics that defy gravity and magic that breaks the boundaries of reality.</p><p>Performers:</p><p>Pete Poskiparta - Finland's only internationally awarded mentalist<br>Joni Pakanen - Performer of the Year, master of magic, comedy and theatre<br>Herra Koskinen - A juggler with multiple world records<br>Christian Engblom - The master magician who twice tricked Penn & Teller<br>Gigi - An acrobat who has performed all over the world, bringing movement and magic to the stage</p><p>The Maagikot phenomenon continues</p><p>Now in its fifth year, the Maagikot show has established itself as the most popular magic and illusion tour in Finland. In spring 2025, the tour broke audience records – more than 12,000 people filled concert halls across the country.<br>The tour's popularity is built on the world-class performers whose skilful and astonishing performances appeal to all ages. This show is not just about tricks – it's an experience that will stay with you for a long time.</p><p>Audience feedback from the last tour:</p><p>“First time with Maagikot. Exceeded my expectations!”<br>“Thank you for a great show! It was a great shared experience for me and my teenage child.”<br>“Thank you very much for the performance, it was an amazing experience. Our whole family enjoyed it immensely!”</p><p>The best seats are sold to the fastest – make sure to book your ticket on time!</p><p>Age recommendation: 10+</p><p>Duration of the show about 2 h, including intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.", "sv": "Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.", "en": "Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66993/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66992", "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3954795", "sv": "https://www.lippu.fi/eventseries/name-3954795", "en": "https://www.lippu.fi/eventseries/name-3954795" }, "price": { "fi": "44,90-48,90 €", "sv": "44,90-48,90 €", "en": "44,90-48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490662, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T06:14:23.761364Z", "last_modified_time": "2025-09-09T06:14:23.761380Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777057.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490662/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T06:14:23.644222Z", "last_modified_time": "2025-09-26T12:13:49.405258Z", "date_published": null, "start_time": "2026-01-30T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C41FDC8F7F93AA135D67E415C63EE2E9/Maagikot_5_-_Variety_of_Wonders", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C41FDC8F7F93AA135D67E415C63EE2E9/Maagikot_5_-_Variety_of_Wonders", "en": "http://www.savoyteatteri.fi/en/events/event/C41FDC8F7F93AA135D67E415C63EE2E9/Maagikot_5_-_Variety_of_Wonders" }, "provider": { "fi": "Nelonen Media Live yhteistyössä Radio Aito Iskelmä", "sv": "Nelonen Media Live", "en": "Nelonen Media Live" }, "location_extra_info": null, "name": { "fi": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom", "sv": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom", "en": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom" }, "description": { "fi": "<p>Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.</p><p><b>Mitä kaikkea lavalla nähdään?</b></p><p>Varietee on taiteen juhlaa – se yhdistää taikuuden, mentalismin, akrobatian, jongleerauksen ja komedian yhdeksi häikäiseväksi kokonaisuudeksi. Maagikot 5 – Variety of Wonders tuo lavalle huippuammattilaiset, joiden esitykset saavat yleisön haukkomaan henkeään ja hymyilemään sydämensä kyllyydestä. Luvassa on mieltä taivuttavaa mentalismia, maailmanennätysjongleerausta, akrobatiaa, joka uhmaa painovoimaa, sekä taikuutta, joka rikkoo todellisuuden rajoja.</p><p><b>Esiintyjät:</p><p>Pete Poskiparta</b> – Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Joni Pakanen</b> – Vuoden esiintyjä, taikuuden, komedian ja teatterin mestari<br><b>Herra Koskinen</b> – Moninkertainen maailmanennätysjonglööri<br><b>Christian Engblom</b> – Kahdesti Penn & Telleriä huijannut mestaritaikuri<br><b>Gigi</b> – Ympäri maailmaa esiintynyt akrobaatti, joka tuo lavalle liikettä ja lumoa</p><p><b>Maagikot-ilmiö jatkuu</b></p><p>Jo viidettä kertaa järjestettävä Maagikot on vakiinnuttanut paikkansa Suomen suosituimpana magian ja illuusion kiertueena. Keväällä 2025 kiertue rikkoi yleisöennätyksiä – yli <b>12 000 katsojaa</b> täytti konserttisalit ympäri maan.<br>Kiertueen suosio perustuu maailmanluokan esiintyjiin, joiden taidokkaat ja hämmästyttävät esitykset puhuttelevat kaikenikäisiä. Tämä show ei ole vain temppuja – se on kokemus, joka jää mieleen pitkäksi aikaa.</p><p><b>Katsojien palautteita viime kiertueelta:</b></p><p><i>\"Ensimmäinen kerta Maagikoissa. Ylitti odotukseni!”<br>\"Kiitos hienosta showsta! Tämä oli upea yhteinen kokemus minulle ja teini-ikäiselle lapselleni.”<br>“Isot kiitokset esityksestä, oli todella upea kokemus. Koko meidän perhe nautti suunnattomasti!”</i></p><p>Parhaat paikat myydään nopeimmille – varmista paikkasi ajoissa!</p><p>Suositusikäraja: 10+</p><p>Show’n kesto noin 2 tuntia, sisältäen väliajan</p>", "sv": "<p>Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.</p><p>Vad allt kommer vi att få se på scenen?</p><p>En varieté är en hyllning till konsten – en kombination av magi, mentalism, akrobatik, jonglering och komedi i en imponerande helhet. Maagikot 5 – Variety of Wonders visar de främsta proffsen på scenen vars föreställningar får åskådarna att kippa efter andan och le från djupet av sina hjärtan. Det blir mentalism som utmanar sinnet, världsrekord i jonglering, akrobatik som trotsar tyngdkraften och magi som spränger verklighetens gränser.</p><p>På scenen:</p><p>Pete Poskiparta – Finlands enda internationellt prisbelönta mentalist<br>Joni Pakanen – Årets artist, mästare på magi, komedi och teater<br>Herra Koskinen – jonglör med flera världsrekord<br>Christian Engblom – mästertrollkarl som lurat Penn & Teller två gånger<br>Gigi – akrobat som har uppträtt över hela världen och för med sig rörelse och magi på scenen</p><p>Fenomenet Maagikot fortsätter</p><p>Maagikot ordnas nu för femte gången och har etablerat sig som den mest populära magi- och illusionsturnén i Finland. Under våren 2025 slog turnén publikrekord – mer än 12 000 personer fyllde konsertsalarna runt om i landet.<br>Turnéns popularitet bygger på artister i världsklass som med sina skickliga och häpnadsväckande framträdanden tilltalar åskådare i alla åldrar. Den här showen handlar inte bara om trick – den är en upplevelse som du kommer ihåg länge.</p><p>Respons från åskådarna på den senaste turnén:</p><p>”Första gången jag sett Maagikot. Överträffade mina förväntningar!”<br>”Tack för en fin show! Det var en fantastisk upplevelse för mig och mitt tonårsbarn.”<br>”Tack så mycket för föreställningen, det var en riktigt fin upplevelse. Hela vår familj tyckte väldigt mycket om den!”</p><p>De bästa platserna säljs till de snabbaste – se till att få en plats!</p><p>Åldersrekommendation: 10+</p><p>Föreställningens längd ca 2 timmar, inklusive paus.</p>", "en": "<p>Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family.</p><p>What will you see on stage?</p><p>Varietee is a celebration of art, combining magic, mentalism, acrobatics, juggling and comedy into one dazzling whole. Maagikot 5 – Variety of Wonders fills the stage with top professionals whose performances will leave the audience gasping for breath and smiling wide with their hearts full. There will be mind-blowing mentalism, world record juggling, acrobatics that defy gravity and magic that breaks the boundaries of reality.</p><p>Performers:</p><p>Pete Poskiparta - Finland's only internationally awarded mentalist<br>Joni Pakanen - Performer of the Year, master of magic, comedy and theatre<br>Herra Koskinen - A juggler with multiple world records<br>Christian Engblom - The master magician who twice tricked Penn & Teller<br>Gigi - An acrobat who has performed all over the world, bringing movement and magic to the stage</p><p>The Maagikot phenomenon continues</p><p>Now in its fifth year, the Maagikot show has established itself as the most popular magic and illusion tour in Finland. In spring 2025, the tour broke audience records – more than 12,000 people filled concert halls across the country.<br>The tour's popularity is built on the world-class performers whose skilful and astonishing performances appeal to all ages. This show is not just about tricks – it's an experience that will stay with you for a long time.</p><p>Audience feedback from the last tour:</p><p>“First time with Maagikot. Exceeded my expectations!”<br>“Thank you for a great show! It was a great shared experience for me and my teenage child.”<br>“Thank you very much for the performance, it was an amazing experience. Our whole family enjoyed it immensely!”</p><p>The best seats are sold to the fastest – make sure to book your ticket on time!</p><p>Age recommendation: 10+</p><p>Duration of the show about 2 h, including intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.", "sv": "Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.", "en": "Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66992/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66983", "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3954795", "sv": "https://www.lippu.fi/eventseries/name-3954795", "en": "https://www.lippu.fi/eventseries/name-3954795" }, "price": { "fi": "44,90-48,90 €", "sv": "44,90-48,90 €", "en": "44,90-48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490661, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T06:14:23.352742Z", "last_modified_time": "2025-09-09T06:14:23.352759Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777055.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490661/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T06:14:23.226375Z", "last_modified_time": "2025-09-26T12:13:49.071053Z", "date_published": null, "start_time": "2026-01-29T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/ABFF581B3895AC6790B8EA010C60E2E5/Maagikot_5_-_Variety_of_Wonders", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/ABFF581B3895AC6790B8EA010C60E2E5/Maagikot_5_-_Variety_of_Wonders", "en": "http://www.savoyteatteri.fi/en/events/event/ABFF581B3895AC6790B8EA010C60E2E5/Maagikot_5_-_Variety_of_Wonders" }, "provider": { "fi": "Nelonen Media Live yhteistyössä Radio Aito Iskelmä", "sv": "Nelonen Media Live", "en": "Nelonen Media Live" }, "location_extra_info": null, "name": { "fi": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom", "sv": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom", "en": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom" }, "description": { "fi": "<p>Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.</p><p><b>Mitä kaikkea lavalla nähdään?</b></p><p>Varietee on taiteen juhlaa – se yhdistää taikuuden, mentalismin, akrobatian, jongleerauksen ja komedian yhdeksi häikäiseväksi kokonaisuudeksi. Maagikot 5 – Variety of Wonders tuo lavalle huippuammattilaiset, joiden esitykset saavat yleisön haukkomaan henkeään ja hymyilemään sydämensä kyllyydestä. Luvassa on mieltä taivuttavaa mentalismia, maailmanennätysjongleerausta, akrobatiaa, joka uhmaa painovoimaa, sekä taikuutta, joka rikkoo todellisuuden rajoja.</p><p><b>Esiintyjät:</p><p>Pete Poskiparta</b> – Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Joni Pakanen</b> – Vuoden esiintyjä, taikuuden, komedian ja teatterin mestari<br><b>Herra Koskinen</b> – Moninkertainen maailmanennätysjonglööri<br><b>Christian Engblom</b> – Kahdesti Penn & Telleriä huijannut mestaritaikuri<br><b>Gigi</b> – Ympäri maailmaa esiintynyt akrobaatti, joka tuo lavalle liikettä ja lumoa</p><p><b>Maagikot-ilmiö jatkuu</b></p><p>Jo viidettä kertaa järjestettävä Maagikot on vakiinnuttanut paikkansa Suomen suosituimpana magian ja illuusion kiertueena. Keväällä 2025 kiertue rikkoi yleisöennätyksiä – yli <b>12 000 katsojaa</b> täytti konserttisalit ympäri maan.<br>Kiertueen suosio perustuu maailmanluokan esiintyjiin, joiden taidokkaat ja hämmästyttävät esitykset puhuttelevat kaikenikäisiä. Tämä show ei ole vain temppuja – se on kokemus, joka jää mieleen pitkäksi aikaa.</p><p><b>Katsojien palautteita viime kiertueelta:</b></p><p><i>\"Ensimmäinen kerta Maagikoissa. Ylitti odotukseni!”<br>\"Kiitos hienosta showsta! Tämä oli upea yhteinen kokemus minulle ja teini-ikäiselle lapselleni.”<br>“Isot kiitokset esityksestä, oli todella upea kokemus. Koko meidän perhe nautti suunnattomasti!”</i></p><p>Parhaat paikat myydään nopeimmille – varmista paikkasi ajoissa!</p><p>Suositusikäraja: 10+</p><p>Show’n kesto noin 2 tuntia, sisältäen väliajan</p>", "sv": "<p>Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.</p><p>Vad allt kommer vi att få se på scenen?</p><p>En varieté är en hyllning till konsten – en kombination av magi, mentalism, akrobatik, jonglering och komedi i en imponerande helhet. Maagikot 5 – Variety of Wonders visar de främsta proffsen på scenen vars föreställningar får åskådarna att kippa efter andan och le från djupet av sina hjärtan. Det blir mentalism som utmanar sinnet, världsrekord i jonglering, akrobatik som trotsar tyngdkraften och magi som spränger verklighetens gränser.</p><p>På scenen:</p><p>Pete Poskiparta – Finlands enda internationellt prisbelönta mentalist<br>Joni Pakanen – Årets artist, mästare på magi, komedi och teater<br>Herra Koskinen – jonglör med flera världsrekord<br>Christian Engblom – mästertrollkarl som lurat Penn & Teller två gånger<br>Gigi – akrobat som har uppträtt över hela världen och för med sig rörelse och magi på scenen</p><p>Fenomenet Maagikot fortsätter</p><p>Maagikot ordnas nu för femte gången och har etablerat sig som den mest populära magi- och illusionsturnén i Finland. Under våren 2025 slog turnén publikrekord – mer än 12 000 personer fyllde konsertsalarna runt om i landet.<br>Turnéns popularitet bygger på artister i världsklass som med sina skickliga och häpnadsväckande framträdanden tilltalar åskådare i alla åldrar. Den här showen handlar inte bara om trick – den är en upplevelse som du kommer ihåg länge.</p><p>Respons från åskådarna på den senaste turnén:</p><p>”Första gången jag sett Maagikot. Överträffade mina förväntningar!”<br>”Tack för en fin show! Det var en fantastisk upplevelse för mig och mitt tonårsbarn.”<br>”Tack så mycket för föreställningen, det var en riktigt fin upplevelse. Hela vår familj tyckte väldigt mycket om den!”</p><p>De bästa platserna säljs till de snabbaste – se till att få en plats!</p><p>Åldersrekommendation: 10+</p><p>Föreställningens längd ca 2 timmar, inklusive paus.</p>", "en": "<p>Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family.</p><p>What will you see on stage?</p><p>Varietee is a celebration of art, combining magic, mentalism, acrobatics, juggling and comedy into one dazzling whole. Maagikot 5 – Variety of Wonders fills the stage with top professionals whose performances will leave the audience gasping for breath and smiling wide with their hearts full. There will be mind-blowing mentalism, world record juggling, acrobatics that defy gravity and magic that breaks the boundaries of reality.</p><p>Performers:</p><p>Pete Poskiparta - Finland's only internationally awarded mentalist<br>Joni Pakanen - Performer of the Year, master of magic, comedy and theatre<br>Herra Koskinen - A juggler with multiple world records<br>Christian Engblom - The master magician who twice tricked Penn & Teller<br>Gigi - An acrobat who has performed all over the world, bringing movement and magic to the stage</p><p>The Maagikot phenomenon continues</p><p>Now in its fifth year, the Maagikot show has established itself as the most popular magic and illusion tour in Finland. In spring 2025, the tour broke audience records – more than 12,000 people filled concert halls across the country.<br>The tour's popularity is built on the world-class performers whose skilful and astonishing performances appeal to all ages. This show is not just about tricks – it's an experience that will stay with you for a long time.</p><p>Audience feedback from the last tour:</p><p>“First time with Maagikot. Exceeded my expectations!”<br>“Thank you for a great show! It was a great shared experience for me and my teenage child.”<br>“Thank you very much for the performance, it was an amazing experience. Our whole family enjoyed it immensely!”</p><p>The best seats are sold to the fastest – make sure to book your ticket on time!</p><p>Age recommendation: 10+</p><p>Duration of the show about 2 h, including intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.", "sv": "Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.", "en": "Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66983/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66957", "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:32/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/", "sv": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/", "en": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/" }, "price": { "fi": "34 / 38 €", "sv": "34 / 38 €", "en": "34 / 38 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490660, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T06:14:22.910081Z", "last_modified_time": "2025-09-09T06:14:22.910098Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777069.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490660/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T06:14:22.757846Z", "last_modified_time": "2025-09-26T12:13:48.704488Z", "date_published": null, "start_time": "2026-01-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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_R-18" }, "provider": { "fi": "JL-Komediapaja Oy", "sv": "JL-Komediapaja Oy", "en": "JL-Komediapaja Oy" }, "location_extra_info": null, "name": { "fi": "Köpi Kallio: Huono suoritus K-18 – Myynti alkaa ma 6.10. klo 9, Lippu.fi", "sv": "Köpi Kallio: Huono suoritus K-18", "en": "Köpi Kallio: Huono suoritus R-18" }, "description": { "fi": "<p>Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.</p><p><i>Huono suoritus</i> on särmikäs summaus kolmekymppisen radio- ja tv-tähden tähänastisesta elämästä ja parhaista stand up -jutuista.</p><p>Tässä esityksessä mustaa huumoria huokuvat ja paikoin kohtuuttomuuksiin yltyvät vitsit saavat lisäpotkua Köpille itselleen tapahtuneesta pysäyttävästä tarinasta.</p><p>Mitä tarvitaan, että ihminen pysähtyy, lopettaa oman elämänsä suorittamisen ja keskittyy nauttimaan hetkestä? Siihen tarvitaan <i>Huono suoritus</i>.</p><p>Jokaisen shown alussa <i>Huonon suorituksen</i> “virallisena valvojana” ja erikoisvieraana esiintyy <b><i>Kovan viikon ilta</b></i> -ohjelmasta tuttu stand up -koomikko <b>Jukka Lindström</b>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: K-18</p><p>Permanto K18 anniskelualue. Parvella ei anniskelua.</p>", "sv": "<p>Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).</p><p>Huono suoritus är en kantig sammanfattning av den trettioåriga radio- och tv-stjärnans liv hittills och hans bästa ståupphistorier.</p><p>I föreställningen får skämten, som är fulla av svart humor och ibland orimligheter, en skjuts av Köpis fängslande berättelse om sig själv.</p><p>Vad krävs för att en person ska stanna upp, sluta se sitt liv som en prestation och börja njuta av ögonblicket? För det behövs showen Huono suoritus.</p><p>Varje show inleds av ståuppkomikern Jukka Lindström, känd från programmet Kovan viikon ilta, som \"officiell övervakare\" för föreställningen och som gästande artist.</p><p>Längd ca 2 h, inklusive paus.</p><p>Åldersgräns: K-18.</p><p>Parkett K-18-område med serveringstillstånd. Ingen servering på balkongen.</p>", "en": "<p>Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance.</p><p>Huono suoritus is an edgy summation of the thirtysomething radio and TV star's life so far and his best stand-up stories.</p><p>The jokes in the show – full of black humour and sometimes even over the top – become even more poignant after hearing Köpi’s own extraordinary experience.</p><p>What does it take for a person to stop, put a pause on performing their life and focus on enjoying the moment? It takes a poor performance.</p><p>Stand-up comedian Jukka Lindström, a familiar face from the TV show Kovan viikon ilta, will launch each Huono suoritus show with his own performance, filling the shoes of both the show’s ‘official supervisor’ and special guest.</p><p>Duration approx. 2 h, including intermission</p><p>Age rating: 18 and up</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.", "sv": "Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).", "en": "Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66957/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyl7jhe4", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:32.599773Z", "last_modified_time": "2025-09-26T11:49:32.599792Z", "date_published": null, "start_time": "2025-12-09T08: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": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "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>" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhe4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyl7jhxe", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:32.451697Z", "last_modified_time": "2025-09-26T11:49:32.451716Z", "date_published": null, "start_time": "2025-12-02T08:00:00Z", "end_time": "2025-12-02T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "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>" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhxe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyl7jibe", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:32.303285Z", "last_modified_time": "2025-09-26T11:49:32.303305Z", "date_published": null, "start_time": "2025-11-25T08:00:00Z", "end_time": "2025-11-25T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "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>" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jibe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyl7jiki", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:32.163824Z", "last_modified_time": "2025-09-26T11:49:32.163845Z", "date_published": null, "start_time": "2025-11-18T08:00:00Z", "end_time": "2025-11-18T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "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>" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jiki/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyl7jium", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:32.016273Z", "last_modified_time": "2025-09-26T11:49:32.016292Z", "date_published": null, "start_time": "2025-11-11T08:00:00Z", "end_time": "2025-11-11T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "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>" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jium/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyl7ji5u", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:31.865851Z", "last_modified_time": "2025-09-26T11:49:31.865870Z", "date_published": null, "start_time": "2025-11-04T08:00:00Z", "end_time": "2025-11-04T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "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>" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7ji5u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyl7jjhe", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:31.718743Z", "last_modified_time": "2025-09-26T11:49:31.718761Z", "date_published": null, "start_time": "2025-10-28T08:00:00Z", "end_time": "2025-10-28T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "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>" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjhe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyl7jjrq", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:31.574090Z", "last_modified_time": "2025-09-26T11:49:31.574109Z", "date_published": null, "start_time": "2025-10-21T07:00:00Z", "end_time": "2025-10-21T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "location_extra_info": { "fi": "Stage ja Soittohuone", "sv": "Stage ja Soittohuone", "en": "Stage ja Soittohuone" }, "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>" }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjrq/?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": [], "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/" }, "price": { "fi": "35/39 €", "sv": "35/39 €", "en": "35/39 €" }, "description": null } ], "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, "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_" }, "provider": { "fi": "Fullsteam Agency", "sv": "Fullsteam Agency", "en": "Fullsteam Agency" }, "location_extra_info": null, "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>" }, "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" }, "@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": [], "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/" }, "price": { "fi": "46,80/48,80 €", "sv": "46,80/48,80 €", "en": "46,80/48,80 €" }, "description": null } ], "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, "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" }, "provider": { "fi": "Bluesland Productions", "sv": "Bluesland Productions", "en": "Bluesland Productions" }, "location_extra_info": null, "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>" }, "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" }, "@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": [], "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" }, "price": { "fi": "33,90-39,90 €", "sv": "33,90-39,90 €", "en": "33,90-39,90 €" }, "description": null } ], "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, "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" }, "provider": { "fi": "Central Line Entertainment Oy", "sv": "Central Line Entertainment Oy", "en": "Central Line Entertainment Oy" }, "location_extra_info": null, "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>" }, "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." }, "@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": [], "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" }, "price": { "fi": "48,90 €", "sv": "48,90 €", "en": "48,90 €" }, "description": null } ], "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, "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" }, "provider": { "fi": "Helmi Promotion Oy", "sv": "Helmi Promotion Oy", "en": "Helmi Promotion Oy" }, "location_extra_info": null, "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>" }, "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." }, "@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": [], "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" }, "price": { "fi": "48,90 €", "sv": "48,90 €", "en": "48,90 €" }, "description": null } ], "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, "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" }, "provider": { "fi": "Helmi Promotion Oy", "sv": "Helmi Promotion Oy", "en": "Helmi Promotion Oy" }, "location_extra_info": null, "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>" }, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66536/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26456, "next": "