Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=173&weekday=6%2C7
{ "meta": { "count": 6722, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=174&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=172&weekday=6%2C7" }, "data": [ { "id": "kulke:64895", "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": [], "price": { "fi": "10-47,30 €", "sv": "10-47,30 €", "en": "10-47,30 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3765502", "sv": "https://www.lippu.fi/eventseries/name-3765502", "en": "https://www.lippu.fi/eventseries/name-3765502" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-15T11:14:53.620434Z", "last_modified_time": "2024-11-15T11:14:53.620451Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751279.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153030/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-15T11:14:53.573908Z", "last_modified_time": "2025-02-13T15:15:31.548193Z", "date_published": null, "start_time": "2025-03-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ooppera-aarioita ja klassista musiikkia" }, "provider": { "fi": "Suomen Beniamino Gigli -seura ry", "sv": "Suomen Beniamino Gigli -seura ry", "en": "Suomen Beniamino Gigli -seura ry" }, "description": { "fi": "<p>Ooppera-aarioita ja klassista musiikkia</p><p>Esiintyjät: Roberto De Biasio, Marco Miglietta, Valeria Girardello, Jasper Leppänen, Iirisilona Segerstam, Gabriel Kivivuori Sereno, Jari Hiekkapelto, piano sekä juontaja Laura Pyrrö</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: S</p>", "sv": "<p>Operaarior och klassisk musik</p><p>På scenen: Roberto De Biasio, Marco Miglietta, Valeria Girardello, Jasper Leppänen, Iirisilona Segerstam, Gabriel Kivivuori Sereno, Jari Hiekkapelto, piano och programledare Laura Pyrrö</p><p>Längd ca 2 h, inklusive paus</p><p>Åldersgräns: T</p>", "en": "<p>Opera arias and classical music</p><p>Performers: Roberto De Biasio, Marco Miglietta, Valeria Girardello, Jasper Leppänen, Iirisilona Segerstam, Gabriel Kivivuori Sereno, Jari Hiekkapelto, piano and host Laura Pyrrö</p><p>Duration: approx. 2 h, including an intermission</p><p>Age limit: All ages</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C2EE3170CE98846702D349F3CFCE8EBE/Gigli-2025_40-vuotisgaalakonsertti", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C2EE3170CE98846702D349F3CFCE8EBE/Gigli-2025_40-vuotisgaalakonsertti", "en": "http://www.savoyteatteri.fi/en/events/event/C2EE3170CE98846702D349F3CFCE8EBE/Gigli-2025_40th_anniversary_gala_concert" }, "provider_contact_info": null, "name": { "fi": "Gigli-2025 40-vuotisgaalakonsertti", "sv": "Gigli-2025 40-vuotisgaalakonsertti", "en": "Gigli-2025 40th anniversary gala concert" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64895/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65247", "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": [], "price": { "fi": "38,80-43,80 €", "sv": "38,80-43,80 €", "en": "38,80-43,80 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3795977", "sv": "https://www.lippu.fi/eventseries/name-3795977", "en": "https://www.lippu.fi/eventseries/name-3795977" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T07:14:22.179743Z", "last_modified_time": "2024-12-13T07:14:22.179760Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764261.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T07:14:22.131486Z", "last_modified_time": "2025-02-13T15:15:30.839336Z", "date_published": null, "start_time": "2025-03-21T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Sami Sykön ja Jorma Uotisen supersuositun Sami & Jorma -podcastin isännät tuovat ensi kertaa liveyleisön eteen show'nsa Sami & Jorma:", "sv": "Värdarna för Sami Sykös och Jorma Uotinens enormt populära podcast Sami & Jorma tar förs första gången sin show inför en livepublik – Sami & Jorma: Keikarit Savoyssa.", "en": "Sami Sykkö and Jorma Uotinen, hosts of the super popular Sami & Jorma podcast, for the first time bring their show Sami & Jorma: Keikarit Savoyssa to live audience for the first time." }, "provider": { "fi": "All Day Entertainment Oy", "sv": "All Day Entertainment Oy", "en": "All Day Entertainment Oy" }, "description": { "fi": "<p>Sami Sykön ja Jorma Uotisen supersuositun Sami & Jorma -podcastin isännät tuovat ensi kertaa liveyleisön eteen show'nsa Sami & Jorma:</p><p>Keikarikaksikko tuo Savoy-teatteriin iloiset iltamat, jossa tartutaan kevään kuumimpiin kohinoihin, puidaan tyyliasiat, kulttuuri, ihmiset, ja sutsurellat.</p><p>Herrat eivät kiertele, kaartele vaan puhuvat suoraan näkemykset, kokemukset, jutut ja juorut toisilleen – ja kultaisille katsojilleen.</p><p>Lisäksi päästään nauttimaan Jorma Uotisen valloittavista laulunumeroista - ja onhan tiedossa tanssiakin!</p><p>Sami Sykkö on toimittaja, LUT-yliopiston työelämäprofessori, ekonomi, tyyliniekka ja matkailija.</p><p>Jorma Uotinen on professori, koreografi, laulaja, Tanssii Tähtien Kanssa -ohjelman tuomari ja suurmies.<br> <br>Kesto n. 1 h 30 min, ei väliaikaa.<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>Värdarna för Sami Sykös och Jorma Uotinens enormt populära podcast Sami & Jorma tar förs första gången sin show inför en livepublik – Sami & Jorma: Keikarit Savoyssa.</p><p>Duon kommer till Savoy-teatern för en glad kväll där vi tar i vårens hetaste ämnen, diskuterar stil, kultur, människor och “sutsurellor”.</p><p>Herrarna är inte rädda för att gå rakt på sak, de är direkta med åsikter, erfarenheter, historier och skvaller – med varandra och med sin kära publik.</p><p>Dessutom får vi njuta av Jorma Uotinens fängslande sångnummer – och visst får vi dans också!</p><p>Sami Sykkö är journalist, arbetslivsprofessor vid LUT-universitetet, ekonom, stilkännare och resenär.</p><p>Jorma Uotinen är professor, koreograf, sångare, domare i programmet Tanssii tähtien kanssa och en storman.</p><p>Längd ca 1 h 30 min., ingen paus.</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p>", "en": "<p>Sami Sykkö and Jorma Uotinen, hosts of the super popular Sami & Jorma podcast, for the first time bring their show Sami & Jorma: Keikarit Savoyssa to live audience for the first time.</p><p>The duo will bring a merry evening to the Savoy Theatre, grasping the hottest topics of the spring, talking about style issues, culture, people and all hustle and bustle.</p><p>The gentlemen don’t twist and turn, but speak directly to each other – and to their golden audience – about their opinions, experiences, stories and gossips.</p><p>In addition, you can enjoy the captivating song numbers of Jorma Uotinen - and you can also dance!</p><p>Sami Sykkö is a journalist, professor of working life at LUT University, economist, stylist and traveller.</p><p>Jorma Uotinen is a professor, choreographer, singer, grand man and judge of Dancing with the Stars programme.</p><p>Duration: around 1 h 30 min, no intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6C0D2FEA329ADB8D00B88FF7515AB85A/Sami_Jorma_-_Keikarit_Savoyssa_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/6C0D2FEA329ADB8D00B88FF7515AB85A/Sami_Jorma_-_Keikarit_Savoyssa_", "en": "http://www.savoyteatteri.fi/en/events/event/6C0D2FEA329ADB8D00B88FF7515AB85A/Sami_Jorma_-_Keikarit_Savoyssa_" }, "provider_contact_info": null, "name": { "fi": "Sami & Jorma - Keikarit Savoyssa! – Loppuunmyyty! / Sold out!", "sv": "Sami & Jorma - Keikarit Savoyssa! – Slutsåld!", "en": "Sami & Jorma - Keikarit Savoyssa! – Sold out!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65247/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64820", "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": [], "price": { "fi": "36 € / 38,50 €", "sv": "36 € / 38,50 €", "en": "36 € / 38,50 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3780929", "sv": "https://www.lippu.fi/eventseries/name-3780929", "en": "https://www.lippu.fi/eventseries/name-3780929" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153055, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-19T16:14:27.383887Z", "last_modified_time": "2024-11-19T16:14:27.383904Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760315.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153055/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-13T11:14:35.873186Z", "last_modified_time": "2025-02-13T15:15:28.203981Z", "date_published": null, "start_time": "2025-03-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, "short_description": { "fi": "Suomirokin kruununjalokivi esiintyy Savoy-teatterissa sunnuntaina 16. maaliskuuta.", "sv": "Suomirockens kronjuvel framträder på Savoy-teatern söndagen den 16 mars.", "en": "The crown jewel of Finnish Rock will perform at the Savoy Theatre on Sunday, 16 March." }, "provider": { "fi": "Nem Agency Oy", "sv": "Nem Agency Oy", "en": "Nem Agency Oy" }, "description": { "fi": "<p>Suomirokin kruununjalokivi esiintyy Savoy-teatterissa sunnuntaina 16. maaliskuuta.</p><p>Miljoonasade julkaisi ensimmäisen hittinsä Lapsuuden sankarille elokuussa 1986. Siitä lähtien yhtye on kiertänyt Suomea pitkin ja poikin niin ahkeraan, että eipä taida löytyä suomalaista, joka ei bändiä tuntisi.</p><p>Hitit ja kiertueet ovat seuranneet toistaan. Lapsuuden sankarille, Marraskuu, 506 ikkunaa ja Olkinainen kuuluvat kansalliseen laulukartastoon niin vahvasti, että kriitikon luonnehdinta Miljoonasateesta ”Suomirokin kruununjalokivenä” lienee oikea.</p><p>Konsertteja bändi on soittanut veden alla ja kuumailmapallossa – ja ihan joka ikisessä klubissa Suomen maassa.</p><p>Huolimatta 39 vuoden urastaan Miljoonasade on vielä tänä päivänä tuottelias yhtye, joka keikkailee ja julkaisee uutta musiikkia säännöllisesti. Viimeisin albumi Ohita intro (2023) sai innostuneen vastaanoton. Yhtye esiintyy tavallisesti sähköisesti, mutta konsertoi myös akustisesti.</p><p>Konsertti rakennetaan yhdistämällä akustiset ja sähköiset setit. Intiimi ensimmäinen osuus saa jatkokseen toisen puoliajan energisen ja näyttävän sähköisen spektaakkelin.<br>Savoyn konsertin musiikki on läpileikkaus yhtyeen pitkästä tuotannosta – varhaiset pophitit ja voimabiisit saavat seuraa yhtyeen runsaasta 2000-luvun tuotannosta.</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Ikäraja: K-18<br>Permanto K-18 anniskelualue. Parvella ei anniskelua.</p>", "sv": "<p>Suomirockens kronjuvel framträder på Savoy-teatern söndagen den 16 mars.</p><p>Miljoonasade släppte sin första hit Lapsuuden sankarille i augusti 1986. Sedan dess har bandet turnerat så vitt och brett i Finland, att det knappast finns en enda finländare som inte känner till dem.</p><p>Hittarna och turnéerna har följt på varandra. Lapsuuden sankarille, Marraskuu, 506 ikkunaa och Olkinainen är så etablerade på den nationella sångkartan att en kritikers beskrivning av Miljoonasade som “Suomirockens kronjuvel” förmodligen är korrekt.</p><p>Bandet har gett konserter både under vatten och i en varmluftsballong – och på varenda klubb i hela Finland.</p><p>Trots den 39 år långa karriären är Miljoonasade fortfarande ett produktivt band som ger spelningar och släpper ny musik regelbundet. Det senaste albumet Ohita intro (2023) fick ett entusiastiskt mottagande. Bandet uppträder oftast elektroniskt, men ger även akustiska konserter.</p><p>Konserten byggs upp genom att kombinera akustiska och elektroniska set. Den intima första delen följs av ett energiskt och imponerande elektroniskt spektakel under andra delen.<br>Musiken på Savoys konsert är ett tvärsnitt av bandets långa produktion – tidiga pophittar och kraftlåtar får sällskap av bandets rika produktion från 2000-talet.</p><p>Längd ca 2 h, inklusive paus</p><p>Åldersgräns: F-18<br>Parkett F-18, servering av alkoholdrycker. Balkong, ingen servering av alkoholdrycker</p>", "en": "<p>The crown jewel of Finnish Rock will perform at the Savoy Theatre on Sunday, 16 March.</p><p>Miljoonasade released their first hit for Lapsuuden sankarille in August 1986. Since then, the band has toured Finland so diligently that it seems that there is no Finn who does not know the band.</p><p>Hits and tours have been following each other. Lapsuuden sankarille, Marraskuu, 506 ikkunaa and Olkinainen belong to the national song collection so strongly that a critic’s characterisation of Miljoonasade as “the crown jewel of Finnish rock” may well be correct.</p><p>The band has played concerts underwater and in a hot air balloon – and in every single club in Finland.</p><p>Despite their 39-year career, Milljoonasade is still today a prolific band that plays on gigs and releases new music on a regular basis. The latest album Ohita intro (2023) was enthusiastically received. The band usually performs electronically, but also plays concerts acoustically.</p><p>The concert is built by combining acoustic and electric sets. The intimate first half is followed by the energetic and spectacular electric spectacle of the second half.<br>The music in Savoy’s concert will be a cross-section of the band’s long production – the early pop hits and power songs are accompanied by the band’s abundant 21st century production.</p><p>Duration: approx. 2 h, including an intermission</p><p>Age limit: 18+<br>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0B6E4A97DA2680353284D049EBF5A39A/Miljoonasade", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0B6E4A97DA2680353284D049EBF5A39A/Miljoonasade", "en": "http://www.savoyteatteri.fi/en/events/event/0B6E4A97DA2680353284D049EBF5A39A/Miljoonasade" }, "provider_contact_info": null, "name": { "fi": "Miljoonasade", "sv": "Miljoonasade", "en": "Miljoonasade" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64820/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65143", "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": [], "price": { "fi": "46,50 €", "sv": "46,50 €", "en": "46,50 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/19519919", "sv": "https://www.lippu.fi/event/19519919", "en": "https://www.lippu.fi/event/19519919" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153122, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-29T11:14:39.352611Z", "last_modified_time": "2024-11-29T11:14:39.352629Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764107.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-29T11:14:39.312958Z", "last_modified_time": "2025-02-13T15:15:27.861870Z", "date_published": null, "start_time": "2025-03-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, "short_description": { "fi": "Helsinkiläisten sydämet valloittanut Divet Show pistää korkkareilla koreasti jälleen keväällä 2025 Savoyssa.", "sv": "Divet Show har fångat helsingforsarnas hjärtan och återkommer nu till Savoy våren 2025.", "en": "Divet Show, which has conquered the hearts of Helsinki residents, will put up a celebration again in Savoy in spring 2025." }, "provider": { "fi": "Divet Entertainment ja W&T Comedy", "sv": "Divet Entertainment ja W&T Comedy", "en": "Divet Entertainment ja W&T Comedy" }, "description": { "fi": "<p>Helsinkiläisten sydämet valloittanut Divet Show pistää korkkareilla koreasti jälleen keväällä 2025 Savoyssa.</p><p>Uusi Timanttiset Tähdet -kiertue tuo henkeäsalpaavat kotimaiset timantit, kansainvälisiä tähtiä unhoittamatta, jopa 70 hahmon ilotulituksella luoksesi! Illan show´sta vastaavat mm. Sam Smith, Adele, Celine Dion, Auri Kananen, Hanna Sumari ja Erika Vikman vieden sinut hittien, klassikoiden ja tietysti kevään Euroviisujen kiimaan! <br> <br>Tähän karkeloon tarvitset jälleen astetta jykevämmät sukkapöksyt, sillä naurun määrä on taattua Divettiä! Ei muuta kuin nitrot naamaan ja lippuja varaamaan vuoden sykähdyttävimpiin bileisiin!<br> <br>Kesto n. 2-2,5h väliaikoineen<br> <br>Ikäraja: K-18<br> <br>Permanto K-18 anniskelualue. Parveke ei anniskelua</p>", "sv": "<p>Divet Show har fångat helsingforsarnas hjärtan och återkommer nu till Savoy våren 2025.</p><p>Den nya turnén Timanttiset Tähdet bjuder på hisnande inhemska diamanter och internationella stjärnor i ett fyrverkeri med upp till 70 gestalter! För kvällens show står bland annat Sam Smith, Adele, Celine Dion, Auri Kananen, Hanna Sumari och Erika Vikman, som sveper dig med i hittarnas och klassikernas rus och naturligtvis vårens Eurovisionsstämning!</p><p>För denna förlustelse behövs åter lite stadigare strumpbyxor, för skrattet är garanterat à la Divet! Plocka i dig ett par nitro och boka biljetter till årets tjusigaste fest!</p><p>Längd ca 2–2,5 h med paus</p><p>Åldersgräns: F-18</p><p>Parkett F-18, servering av alkoholdrycker. Balkong, ingen servering av alkoholdrycker</p>", "en": "<p>Divet Show, which has conquered the hearts of Helsinki residents, will put up a celebration again in Savoy in spring 2025.</p><p>The new Timanttiset Tähdet tour will bring breathtaking Finnish diamonds to you, without forgetting international stars, including up to 70 characters! The evening show will be given by Sam Smith, Adele, Celine Dion, Auri Kananen, Hanna Sumari and Erika Vikman, among others, taking you into the heat of the hits, classics and, of course, the enthusiasm of the spring Eurovision Song Contest!</p><p>For this show, you need a degree firmer socks, because the amount of laughter is guaranteed! Just take you medicines and book tickets to the most thrilling party of the year!</p><p>Duration approx. 2-2.5 h with intermission</p><p>Age limit: 18+</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0E75EBFAECE3C468155DABC0AC07B29E/Divet_Show_-Timanttiset_Tahdet_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0E75EBFAECE3C468155DABC0AC07B29E/Divet_Show_-Timanttiset_Tahdet_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/0E75EBFAECE3C468155DABC0AC07B29E/Divet_Show_-Timanttiset_Tahdet_K-18" }, "provider_contact_info": null, "name": { "fi": "Divet Show -Timanttiset Tähdet K-18", "sv": "Divet Show -Timanttiset Tähdet K-18", "en": "Divet Show -Timanttiset Tähdet K-18" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65143/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65307", "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": [], "price": { "fi": "39,50-42 €", "sv": "39,50-42 €", "en": "39,50-42 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3802138", "sv": "https://www.lippu.fi/eventseries/name-3802138", "en": "https://www.lippu.fi/eventseries/name-3802138" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153525, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-19T12:14:16.683126Z", "last_modified_time": "2024-12-19T12:14:16.683154Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764232.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153525/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T12:14:16.654307Z", "last_modified_time": "2025-02-13T15:15:27.231422Z", "date_published": null, "start_time": "2025-03-14T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Karismaattinen rocktenori Jarkko Ahola lähtee helmikuussa akustiselle kiertueelle ympäri Suomen! Mukana säestämässä ovat Janne Huttunen sekä Mikko Mäkinen.", "sv": "I februari ger sig den karismatiske rocktenoren Jarkko Ahola ut på en akustisk turné i Finland! För ackompanjemanget står Janne Huttunen och Mikko Mäkinen.", "en": "Charismatic rock tenor Jarkko Ahola will embark on an acoustic tour around Finland in February! Accompanying him are Janne Huttunen and Mikko Mäkinen." }, "provider": { "fi": "Lada Productions Oy", "sv": "Lada Productions Oy", "en": "Lada Productions Oy" }, "description": { "fi": "<p>Karismaattinen rocktenori Jarkko Ahola lähtee helmikuussa akustiselle kiertueelle ympäri Suomen! Mukana säestämässä ovat Janne Huttunen sekä Mikko Mäkinen.</p><p><i>Primavera-kiertue jatkaa Yksi oikea -kiertueen hengessä mainioiden Janne Huttusen ja Mikko Mäkisen kanssa. Tiedossa on hienoja kappaleita. Suuria kappaleita. Pieniä kappaleita. Koskettavia ja ylevöittäviä kappaleita. Jotain uutta ja jotain tuttua. Tästä on hyvä mennä kohti kevättä - Primavera!,</i> Jarkko Ahola fiilistelee.</p><p>Ikäraja: S</p><p>Kesto n. 75 min, ei väliaikaa</p>", "sv": "<p>I februari ger sig den karismatiske rocktenoren Jarkko Ahola ut på en akustisk turné i Finland! För ackompanjemanget står Janne Huttunen och Mikko Mäkinen.</p><p>Primavera-turnén fortsätter i samma anda som turnén Yksi oikea med förträffliga Janne Huttunen och Mikko Mäkinen. Fantastiska låtar utlovas. Stora låtar. Små låtar. Rörande och upplyftande låtar. Något nytt och något bekant. Det här är ett bra sätt att börja våren – Primavera!, myser Jarkko Ahola.</p><p>Åldersgräns: T</p><p>Längd ca 75 min, utan paus</p>", "en": "<p>Charismatic rock tenor Jarkko Ahola will embark on an acoustic tour around Finland in February! Accompanying him are Janne Huttunen and Mikko Mäkinen.</p><p>The Primavera tour will continue in the spirit of the Yksi oikea tour with the excellent Janne Huttunen and Mikko Mäkinen. Some great songs will be coming up. Big songs. Small songs. Touching and uplifting songs. Something new and something familiar. This is a good way to go towards spring - Primavera!, says Jarkko Ahola.</p><p>Age limit: All ages</p><p>Duration: around 75 min, no intermission</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CE0E43B3310E68CF85939259B2927C89/Jarkko_Ahola_Primavera", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/CE0E43B3310E68CF85939259B2927C89/Jarkko_Ahola_Primavera", "en": "http://www.savoyteatteri.fi/en/events/event/CE0E43B3310E68CF85939259B2927C89/Jarkko_Ahola_Primavera" }, "provider_contact_info": null, "name": { "fi": "Jarkko Ahola – Primavera", "sv": "Jarkko Ahola – Primavera", "en": "Jarkko Ahola – Primavera" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65307/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65299", "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": [], "price": { "fi": "39,90 €", "sv": "39,90 €", "en": "39,90 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3797013", "sv": "https://www.lippu.fi/eventseries/name-3797013", "en": "https://www.lippu.fi/eventseries/name-3797013" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153482, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T08:13:35.875771Z", "last_modified_time": "2024-12-18T08:13:35.875790Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764356.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-18T08:13:35.846080Z", "last_modified_time": "2025-02-13T15:15:23.524122Z", "date_published": null, "start_time": "2025-03-01T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ilta esiintyy Helsingin Savoy-teatterissa maaliskuussa – kyseessä kevään ainoa konsertti", "sv": "Ilta uppträder på Savoy-teatern i Helsingfors i mars – det är fråga om vårens enda konsert", "en": "Ilta will be performed at the Savoy Theatre in Helsinki in March – the only concert of the spring" }, "provider": { "fi": "Warner Music Live", "sv": "Warner Music Live", "en": "Warner Music Live" }, "description": { "fi": "<p>Ilta esiintyy Helsingin Savoy-teatterissa maaliskuussa – kyseessä kevään ainoa konsertti</p><p>Syksyllä suositussa <i>Vain Elämää</i> -ohjelmassa hurmannut Ilta konsertoi lauantaina 1. maaliskuuta Helsingin Savoy-teatterissa. Kyseessä on artistin kevään ainoa konsertti. <i>Ilta Savoyssa</i> -konsertissa on mukana säestämässä artistin oman bändin lisäksi jousitrio. Konsertin liput ovat nyt myynnissä Lippu.fissä.</p><p><i>-Teen keväällä vain yhden keikan, ja haluan tehdä illasta erityislaatuisen yleisölle, soittajille ja mulle itselleni. Valitisin keikkapaikaksi mun yhden lempipaikoista laulaa: konserttisalin! Väliajallisen keikan aikana kuulette mun tähänastisen uran aikana julkaisemiani lauluja. Luvassa on lauluja elämän erilaisista hetkistä - niin voimaantumisen, ilon ja rakkauden kuin myös surun, ikävän ja kivun. Mukaan mahtuu myös kappaleita, joita en oo aiemmin esittänyt keikoilla livenä sekä ehkäpä jokunen yllätysvieras. Tuu mukaan mun kanssa viettämään iltaa, jonka tulen muistamaan aina,</i> Ilta fiilistelee.</p><p>Saksalais-suomalaisen Iltan <i>Kelle mä soitan</i> -jättihitti nosti Suomen taitavimpiin tulkitsijoihin lukeutuvan Iltan kertaheitolla maan eturivin artistien joukkoon. Vahvasta ja taipuvaisesta äänestään tunnetun Iltan syksyn Vain elämää -vedot myös niittivät menestystä: <i>Tässä talossa</i> oli kauden katsotuin, <i>Kuuma kesä</i> ja <i>Nemo</i> puolestaan nousivat kolmannelle ja viidennelle sijalle. Vain elämää -menestys siivitti Iltan useat kappaleet myös Spotify Top50 -listoille.</p><p>Kesto n. 2 h, sis. väliajan</p><p>Ikäraja: S</p>", "sv": "<p>Ilta uppträder på Savoy-teatern i Helsingfors i mars – det är fråga om vårens enda konsert</p><p>Ilta, som under hösten gjorde succé i det populära programmet Vain Elämää, ger en konsert lördagen den 1 mars på Savoy-teatern i Helsingfors. Detta blir vårens enda konsert för artisten. På konserten Ilta Savoyssa ackompanjeras artisten av sitt eget band och även en stråktrio. Biljetter till konserten finns nu till försäljning på Lippu.f.</p><p>– Vi ger bara en spelning i vår, och jag vill göra kvällen speciell för publiken, musikerna och mig själv. Jag valde en av mina favoritplatser att sjunga i: konsertsalen! Under spelningen, som även inkluderar en paus, får ni höra låtar som jag har släppt hittills under min karriär. Det blir sånger om olika stunder i livet – från kraft, glädje och kärlek till sorg, saknad och smärta. Med ryms även låtar som jag aldrig har spelat live förut och kanske några överraskningsgäster. Följ med mig på en kväll som jag alltid kommer att minnas, myser Ilta.</p><p>Den tysk-finländska Iltas jättehit Kelle mä soitan lyfte omedelbart denna artist, som räknas bland Finlands mest begåvade tolkare, till en av landets främsta artister. Ilta är känd för sin starka och böjliga röst, och även hennes framträdanden under höstens Vain elämää blev en framgång: Tässä talossa var säsongens mest sedda, medan Kuuma kesä och Nemo kom in på en tredje och femte plats. Vain elämää-framgångarna lyfte också flera av Iltas låtar till Spotifys Top 50-listor.</p><p>Längd: ca 2 h (inklusive paus)</p><p>Åldersgräns: T</p>", "en": "<p>Ilta will be performed at the Savoy Theatre in Helsinki in March – the only concert of the spring</p><p>Ilta, who enchanted the audience in the Vain Elämää TV programme in autumn, will give a concert on at the Savoy Theatre in Helsinki on Saturday 1 March. It is the artist’s only spring concert. The Ilta in Savoy concert is accompanied by the artist’s own band, as well as a string trio. Concert tickets are now on sale at Lippu.fi.</p><p>“I only do one gig in the spring and want to make the evening special for the audience, the musicians and myself. For the gig, I chose one of my favourite places to sing: a concert hall! During the gig, which also includes an intermission, you will hear songs I have published during my career so far. There will be songs about different moments in life - empowerment, joy and love, as well as sadness, missing someone and pain. There are also songs that I have not performed live at gigs before, as well as maybe a few surprise guests. Come and spend the evening with me, which I will always remember, “ Ilta says.</p><p>German-Finnish Ilta is one of Finland’s most skilled song interpreters, and her hit “Kelle mä soitan” brought her among the country’s leading artists. Ilta is known for her strong and flexible voice, and her performances in Vain Elämää in autumn also reaped success: “Tässä talossa” was the most watched of the season, while Kuuma kesä and Nemo rose to third and fifth place. The success in Vain elämää also took many of Ilta’s songs to the Spotify Top50 lists.</p><p>Duration: approx. 2 h, including intermission</p><p>Age limit: All ages</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/63B269A8C024DD9412C47453A1510790/Ilta_Savoyssa", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/63B269A8C024DD9412C47453A1510790/Ilta_pa_Savoy", "en": "http://www.savoyteatteri.fi/en/events/event/63B269A8C024DD9412C47453A1510790/Ilta_in_Savoy" }, "provider_contact_info": null, "name": { "fi": "Ilta Savoyssa – Loppuunmyyty! / Sold out!", "sv": "Ilta på Savoy – Slutsåld!", "en": "Ilta in Savoy – Sold out!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65299/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65306", "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": [], "price": { "fi": "39,90 €", "sv": "39,90 €", "en": "39,90 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3797013", "sv": "https://www.lippu.fi/eventseries/name-3797013", "en": "https://www.lippu.fi/eventseries/name-3797013" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-19T11:14:01.117539Z", "last_modified_time": "2024-12-19T11:14:01.117554Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764484.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T11:14:01.064967Z", "last_modified_time": "2025-02-13T15:15:23.130936Z", "date_published": null, "start_time": "2025-03-01T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ilta esiintyy Helsingin Savoy-teatterissa maaliskuussa – kyseessä kevään ainoa konsertti", "sv": "Ilta uppträder på Savoy-teatern i Helsingfors i mars – det är fråga om vårens enda konsert", "en": "Ilta will be performed at the Savoy Theatre in Helsinki in March – the only concert of the spring" }, "provider": { "fi": "Warner Music Live", "sv": "Warner Music Live", "en": "Warner Music Live" }, "description": { "fi": "<p>Ilta esiintyy Helsingin Savoy-teatterissa maaliskuussa – kyseessä kevään ainoa konsertti</p><p>Syksyllä suositussa <i>Vain Elämää</i> -ohjelmassa hurmannut Ilta konsertoi lauantaina 1. maaliskuuta Helsingin Savoy-teatterissa. Kyseessä on artistin kevään ainoa konsertti. <i>Ilta Savoyssa</i> -konsertissa on mukana säestämässä artistin oman bändin lisäksi jousitrio. Konsertin liput ovat nyt myynnissä Lippu.fissä.</p><p><i>-Teen keväällä vain yhden keikan, ja haluan tehdä illasta erityislaatuisen yleisölle, soittajille ja mulle itselleni. Valitisin keikkapaikaksi mun yhden lempipaikoista laulaa: konserttisalin! Väliajallisen keikan aikana kuulette mun tähänastisen uran aikana julkaisemiani lauluja. Luvassa on lauluja elämän erilaisista hetkistä - niin voimaantumisen, ilon ja rakkauden kuin myös surun, ikävän ja kivun. Mukaan mahtuu myös kappaleita, joita en oo aiemmin esittänyt keikoilla livenä sekä ehkäpä jokunen yllätysvieras. Tuu mukaan mun kanssa viettämään iltaa, jonka tulen muistamaan aina,</i> Ilta fiilistelee.</p><p>Saksalais-suomalaisen Iltan <i>Kelle mä soitan</i> -jättihitti nosti Suomen taitavimpiin tulkitsijoihin lukeutuvan Iltan kertaheitolla maan eturivin artistien joukkoon. Vahvasta ja taipuvaisesta äänestään tunnetun Iltan syksyn Vain elämää -vedot myös niittivät menestystä: <i>Tässä talossa</i> oli kauden katsotuin, <i>Kuuma kesä</i> ja <i>Nemo</i> puolestaan nousivat kolmannelle ja viidennelle sijalle. Vain elämää -menestys siivitti Iltan useat kappaleet myös Spotify Top50 -listoille.</p><p>Kesto n. 2 h, sis. väliajan</p><p>Ikäraja: S</p>", "sv": "<p>Ilta uppträder på Savoy-teatern i Helsingfors i mars – det är fråga om vårens enda konsert</p><p>Ilta, som under hösten gjorde succé i det populära programmet Vain Elämää, ger en konsert lördagen den 1 mars på Savoy-teatern i Helsingfors. Detta blir vårens enda konsert för artisten. På konserten Ilta Savoyssa ackompanjeras artisten av sitt eget band och även en stråktrio. Biljetter till konserten finns nu till försäljning på Lippu.f.</p><p>– Vi ger bara en spelning i vår, och jag vill göra kvällen speciell för publiken, musikerna och mig själv. Jag valde en av mina favoritplatser att sjunga i: konsertsalen! Under spelningen, som även inkluderar en paus, får ni höra låtar som jag har släppt hittills under min karriär. Det blir sånger om olika stunder i livet – från kraft, glädje och kärlek till sorg, saknad och smärta. Med ryms även låtar som jag aldrig har spelat live förut och kanske några överraskningsgäster. Följ med mig på en kväll som jag alltid kommer att minnas, myser Ilta.</p><p>Den tysk-finländska Iltas jättehit Kelle mä soitan lyfte omedelbart denna artist, som räknas bland Finlands mest begåvade tolkare, till en av landets främsta artister. Ilta är känd för sin starka och böjliga röst, och även hennes framträdanden under höstens Vain elämää blev en framgång: Tässä talossa var säsongens mest sedda, medan Kuuma kesä och Nemo kom in på en tredje och femte plats. Vain elämää-framgångarna lyfte också flera av Iltas låtar till Spotifys Top 50-listor.</p><p>Längd: ca 2 h (inklusive paus)</p><p>Åldersgräns: T</p>", "en": "<p>Ilta will be performed at the Savoy Theatre in Helsinki in March – the only concert of the spring</p><p>Ilta, who enchanted the audience in the Vain Elämää TV programme in autumn, will give a concert on at the Savoy Theatre in Helsinki on Saturday 1 March. It is the artist’s only spring concert. The Ilta in Savoy concert is accompanied by the artist’s own band, as well as a string trio. Concert tickets are now on sale at Lippu.fi.</p><p>“I only do one gig in the spring and want to make the evening special for the audience, the musicians and myself. For the gig, I chose one of my favourite places to sing: a concert hall! During the gig, which also includes an intermission, you will hear songs I have published during my career so far. There will be songs about different moments in life - empowerment, joy and love, as well as sadness, missing someone and pain. There are also songs that I have not performed live at gigs before, as well as maybe a few surprise guests. Come and spend the evening with me, which I will always remember, “ Ilta says.</p><p>German-Finnish Ilta is one of Finland’s most skilled song interpreters, and her hit “Kelle mä soitan” brought her among the country’s leading artists. Ilta is known for her strong and flexible voice, and her performances in Vain Elämää in autumn also reaped success: “Tässä talossa” was the most watched of the season, while Kuuma kesä and Nemo rose to third and fifth place. The success in Vain elämää also took many of Ilta’s songs to the Spotify Top50 lists.</p><p>Duration: approx. 2 h, including intermission</p><p>Age limit: All ages</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DB9F8DF242B9EA13AA37948980DE88F5/Ilta_Savoyssa", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DB9F8DF242B9EA13AA37948980DE88F5/Ilta_pa_Savoy", "en": "http://www.savoyteatteri.fi/en/events/event/DB9F8DF242B9EA13AA37948980DE88F5/Ilta_in_Savoy" }, "provider_contact_info": null, "name": { "fi": "Ilta Savoyssa – Loppuunmyyty! / Sold out!", "sv": "Ilta på Savoy – Slutsåld!", "en": "Ilta in Savoy – Sold out!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65306/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65572", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kesaekirja-3827182/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kesaekirja-3827182/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kesaekirja-3827182/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189496, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T11:13:52.553860Z", "last_modified_time": "2025-02-03T11:13:52.553881Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759005.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189496/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T11:13:52.538827Z", "last_modified_time": "2025-02-13T15:15:22.357830Z", "date_published": null, "start_time": "2025-02-28T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa." }, "provider": null, "description": { "fi": "<p>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa.</p><p>Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br> <br>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.</p><p>Elokuvan pääosissa nähdään kahdeksankertainen Oscar®-ehdokas Glenn Close sekä suomalainen, nyt 10-vuotias, elokuvanäyttelijänä debytoiva Emily Matthews. Merkittävässä sivuroolissa näyttelee myös Anders Danielsen Lie. Lisäksi elokuvassa nähdään Pekka Strang, Sophia Heikkilä ja Ingvar Sigurdsson.</p><p>Charlie McDowellin ohjaama ja Robert Jonesin valkokankaalle sovittama Kesäkirja kuvattiin Suomessa kesällä 2023 muun muassa Itäisen Suomenlahden rannikolla, esimerkiksi Kotkan ja Porvoon saaristoissa.</p><p>Kansainvälisen yhteistuotannon suomalainen tuotantoyhtiö on Helsinki-filmi, tuottajinaan Aleksi Bardy ja Helen Vinogradov.</p><p>Ikäraja: S<br>Kesto: 95 min.<br>Ensi-ilta: 31.1.2025<br>Tekstitys: suomi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3EDF20DA7EB94BE2BAC62416E6B6C986/Kesakirja_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3EDF20DA7EB94BE2BAC62416E6B6C986/Kesakirja_S_", "en": "http://www.malmitalo.fi/en/events/event/3EDF20DA7EB94BE2BAC62416E6B6C986/Kesakirja_S_" }, "provider_contact_info": null, "name": { "fi": "Kesäkirja (S) – Kino Helios", "sv": "Kesäkirja (S) – Kino Helios", "en": "Kesäkirja (S) – Kino Helios" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65572/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65569", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kesaekirja-3827182/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kesaekirja-3827182/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kesaekirja-3827182/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T11:13:49.629320Z", "last_modified_time": "2025-02-03T11:13:49.629336Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758986.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189490/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T11:13:49.588697Z", "last_modified_time": "2025-02-13T15:15:16.269668Z", "date_published": null, "start_time": "2025-02-14T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa." }, "provider": null, "description": { "fi": "<p>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa.</p><p>Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br> <br>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.</p><p>Elokuvan pääosissa nähdään kahdeksankertainen Oscar®-ehdokas Glenn Close sekä suomalainen, nyt 10-vuotias, elokuvanäyttelijänä debytoiva Emily Matthews. Merkittävässä sivuroolissa näyttelee myös Anders Danielsen Lie. Lisäksi elokuvassa nähdään Pekka Strang, Sophia Heikkilä ja Ingvar Sigurdsson.</p><p>Charlie McDowellin ohjaama ja Robert Jonesin valkokankaalle sovittama Kesäkirja kuvattiin Suomessa kesällä 2023 muun muassa Itäisen Suomenlahden rannikolla, esimerkiksi Kotkan ja Porvoon saaristoissa.</p><p>Kansainvälisen yhteistuotannon suomalainen tuotantoyhtiö on Helsinki-filmi, tuottajinaan Aleksi Bardy ja Helen Vinogradov.</p><p>Ikäraja: S<br>Kesto: 95 min.<br>Ensi-ilta: 31.1.2025<br>Tekstitys: suomi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/83615120A4F4D8F4DC1F89D2BB3BE066/Kesakirja_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/83615120A4F4D8F4DC1F89D2BB3BE066/Kesakirja_S_", "en": "http://www.malmitalo.fi/en/events/event/83615120A4F4D8F4DC1F89D2BB3BE066/Kesakirja_S_" }, "provider_contact_info": null, "name": { "fi": "Kesäkirja (S) – Kino Helios", "sv": "Kesäkirja (S) – Kino Helios", "en": "Kesäkirja (S) – Kino Helios" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65569/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65148", "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": [], "price": { "fi": "17-64 €", "sv": "17-64 €", "en": "17-64 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/savoyjazzfest/", "sv": "https://www.lippu.fi/artist/savoyjazzfest/", "en": "https://www.lippu.fi/artist/savoyjazzfest/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153130, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-29T17:14:20.330860Z", "last_modified_time": "2024-11-29T17:14:20.330876Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763852.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153130/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-29T17:14:20.284123Z", "last_modified_time": "2025-02-13T14:13:53.071223Z", "date_published": null, "start_time": "2025-03-08T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Aikamme arvostetuimpiin jazzkitaristeihin lukeutuva Bill Frisell festivaalin päätöskonsertissa", "sv": "En av vår tids mest hyllade jazzgitarrister Bill Frisell hörs på festivalens avslutande konsert", "en": "Bill Frisell, one of the most respected jazz guitarists of our time, at the closing concert of the festival" }, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "description": { "fi": "<p>Aikamme arvostetuimpiin jazzkitaristeihin lukeutuva Bill Frisell festivaalin päätöskonsertissa</p><p>Lauantai-illan päättää amerikkalaisen Bill Frisellin trio. Frisellin, basisti <b>Thomas Morganin</b> ja rumpali <b>Rudy Roystonin</b> muodostama kokoonpano esittää yhtyeen tuoreimman <i>Valentine</i>-levyn kappaleiden lisäksi Frisellin vanhempia sävellyksiä sekä tulkintoja jazzklassikoista. Vuosien yhteissoitto on luonut triolle harvinaislaatuisen syvän musiikillisen yhteyden.</p><p>Grammy-voittaja Bill Frisell on tullut tunnetuksi erityisesti jazzin, rockin, folkin ja kokeellisen musiikin yhdistämisestä. Hänen soittonsa on tunnistettavissa omaleimaisesta soundistaan ja tekniikastaan, jolla hän luo avaria äänimaisemia. Pitkän uransa varrella Frisell on tehnyt yhteistyötä monen legendaarisen artistin, kuten Joe Lovanon, Elvis Costellon ja Bonnie Raittin kanssa. Friselliä pidetään tärkeänä hahmona modernin jazzin kehityksessä, ja hänen soittotyylinsä on inspiroinut niin nuoria muusikoita kuin kokeneempia säveltäjiä.</p><p>Esityksen kesto n. 75 min, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>***<br>Myynnissä rajattu erä edullisia lauantain kahden konsertin lippuja hintaan 75 €. Lippu sisältää Bill Frisell Trion konsertin lisäksi <b>Kaisa’s Machine feat. Mark Turner (Suomi/USA)</b> -konsertin klo 17.30.</p><p>***<br>Kuuntele trion viime vuonna tehty konserttitaltiointi Youtubesta</p>", "sv": "<p>En av vår tids mest hyllade jazzgitarrister Bill Frisell hörs på festivalens avslutande konsert</p><p>Lördagskvällen avslutas av amerikanska Bill Frisell Trio. Utöver låtar från bandets färskaste Valentine-album framför ensemblen, som består av Frisell, basisten Thomas Morgan och trummisen Rudy Royston, även äldre kompositioner och tolkningar av jazzklassiker. Många års samspel har gett trion en unikt djup musikalisk kontakt.</p><p>Grammyvinnaren Bill Frisell är mest känd för att kombinera jazz, rock, folk och experimentell musik. Hans spel kännetecknas av ett särpräglat sound och en teknik som skapar öppna ljudlandskap. Under sin långa karriär har Frisell samarbetat med många legendariska artister, såsom Joe Lovano, Elvis Costello och Bonnie Raitt. Frisell anses vara en viktig gestalt i den moderna jazzens utveckling, och hans spelstil har inspirerat både unga musiker och mer erfarna kompositörer.</p><p>Föreställningens längd ca 75 min, ingen paus.</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p><p>***<br>Ett begränsat parti förmånliga biljetter till lördagens två konserter finns till försäljning för 75 euro. I biljetten ingår förutom konserten med Bill Frisell Trio även konserten Kaisa's Machine feat. Mark Turner kl. 17.30.</p><p>***<br>Lyssna på en konsertinspelning med trion från ifjol på YouTube</p>", "en": "<p>Bill Frisell, one of the most respected jazz guitarists of our time, at the closing concert of the festival</p><p>Saturday night ends with the trio of American Bill Frisell. The line-up, consisting of Frisell, bassist Thomas Morgan and drummer Rudy Royston, performs not only songs from the band’s latest Valentine album, but also Frisell’s older compositions and interpretations of jazz classics. Years of playing together have created a rare deep musical connection for the trio.</p><p>Grammy winner Bill Frisell has become known especially for combining jazz, rock, folk and experimental music. His playing is recognisable by his distinctive sound and the technique with which he creates wide soundscapes. Over the course of his long career, Frisell has collaborated with many legendary artists, including Joe Lovano, Elvis Costello and Bonnie Raitt. Frisell is considered an important figure in the development of modern jazz, and his style of playing has inspired both young musicians and more experienced composers.</p><p>Duration: approx. 75 min, no intermission.</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area</p><p>***<br>Limited number of the Saturday’s two concerts are on sale for €75. In addition to the concert by Bill Frisell Trio, the ticket includes a Kaisa’s Machine feat. Mark Turner (Finland/USA) concert at 5.30 pm.</p><p>***<br>Listen to the trio’s concert footage from YouTube last year</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B94723AB1C3DDA1959507209273EFCB9/Savoy_JAZZFest_Bill_Frisell_Trio_feat_Thomas_Morgan_and_Rudy_Royston_USA_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B94723AB1C3DDA1959507209273EFCB9/Savoy_JAZZFest_Bill_Frisell_Trio_feat_Thomas_Morgan_and_Rudy_Royston_USA_", "en": "http://www.savoyteatteri.fi/en/events/event/B94723AB1C3DDA1959507209273EFCB9/Savoy_JAZZFest_Bill_Frisell_Trio_feat_Thomas_Morgan_and_Rudy_Royston_USA_" }, "provider_contact_info": null, "name": { "fi": "Savoy JAZZFest: Bill Frisell Trio feat. Thomas Morgan and Rudy Royston (USA)", "sv": "Savoy JAZZFest: Bill Frisell Trio feat. Thomas Morgan and Rudy Royston (USA)", "en": "Savoy JAZZFest: Bill Frisell Trio feat. Thomas Morgan and Rudy Royston (USA)" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65148/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65147", "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": [], "price": { "fi": "17-54 €", "sv": "17-54 €", "en": "17-54 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/savoyjazzfest/", "sv": "https://www.lippu.fi/artist/savoyjazzfest/", "en": "https://www.lippu.fi/artist/savoyjazzfest/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153127, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-29T14:14:09.256445Z", "last_modified_time": "2024-11-29T14:14:09.256462Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763851.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153127/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-29T14:14:09.193714Z", "last_modified_time": "2025-02-13T14:13:52.843637Z", "date_published": null, "start_time": "2025-03-08T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kontrabasisti Kaisa Mäensivun palkittu yhtye saa tähtivieraakseen saksofonisti Mark Turnerin", "sv": "Kontrabasisten Kaisa Mäensivus prisbelönta band får saxofonisten Mark Turner som gästande stjärna", "en": "The award-winning band of double bassist Kaisa Mäensivu welcomes saxophonist Mark Turner as their star guest." }, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "description": { "fi": "<p>Kontrabasisti Kaisa Mäensivun palkittu yhtye saa tähtivieraakseen saksofonisti Mark Turnerin</p><p>Kaisa's Machine on palkitun kontrabasisti ja Savoy JAZZFestin taiteellisen johtajan <b>Kaisa Mäensivun</b> lähes kymmenenvuotias yhtye, joka on vakiinnuttanut paikkansa kansainvälisellä jazz-kentällä. Mäensivun ensimmäinen <i>Taking Shape</i> -albumi saa jatkoa New Yorkissa äänitetyllä levyllä, joka julkaistaan keväällä 2025. Uusi albumi esitetään ensimmäistä kertaa livenä osana Savoy JAZZFestin ohjelmaa.</p><p>Mäensivu on kutsunut Savoy JAZZFestin levynjulkaisukeikalle yhden nykyjazzin tärkeimmistä vaikuttajista, tenorisaksofonisti <b>Mark Turnerin</b>. Monikymmenvuotisella urallaan Turner on noussut jazzin instituutioksi, ja New York Times onkin nimennyt hänet ”parhaaksi jazzmuusikoksi, jonka olet koskaan kuullut”. Savoy JAZZFestin konsertissa Turner ja Mäensivu jakavat lavan ensimmäistä kertaa. Illan aikana vierailee myös nouseva jazzlaulaja <b>Maja Mannila</b>. Yhtyeessä soittavat myös pianisti <b>Eden Ladin</b>, kitaristi <b>Max Light</b> ja rumpali <b>Joe Peri</b>.</p><p>Kuuntele kappale Eat Dessert First yhtyeen esikoisalbumilta Taking Shape Youtubessa: https://youtu.be/5A_TOln_wFE?feature=shared</p><p>Esityksen kesto n. 75 min, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>***<br>Myynnissä rajattu erä edullisia lauantain kahden konsertin lippuja hintaan 75 €. Lippu sisältää Kaisa’s Machine feat. Mark Turner -konsertin lisäksi <b>Bill Frisell Trio feat. Thomas Morgan and Rudy Royston (USA) -konsertin klo 20</b>.</p><p>***<br>Kuuntele Youtubesta Mark Turneria HR Big Bandin solistina</p>", "sv": "<p>Kontrabasisten Kaisa Mäensivus prisbelönta band får saxofonisten Mark Turner som gästande stjärna</p><p>Kaisa's Machine är den prisbelönta kontrabasisten och Savoy JAZZFests konstnärliga ledare Kaisa Mäenpääs nästan tio år gamla band, som har etablerat sig på den internationella jazzscenen. Mäensivus första album Taking Shape kommer att följas av ett album inspelat i New York som släpps våren 2025. Det nya albumet framförs live för första gången som en del av programmet för Savoy JAZZFest.</p><p>Till skivsläppkonserten på Savoy JAZZFest har Mäensivu bjudit in en av de viktigaste influenserna inom modern jazz, tenorsaxofonisten Mark Turner. Under sin karriär som spänner över flera decennier har Turner blivit en institution inom jazz, och New York Times har kallat honom “den bästa jazzmusiker du någonsin hört”. På Savoy JAZZFests konsert delar Turner och Mäensivu scen för första gången. Kvällen gästas också av en stigande stjärna, jazzsångerskan Maja Mannila. I bandet ingår också pianisten Eden Ladin, gitarristen Max Light och trummisen Joe Peri.</p><p>Lyssna på låten Eat Dessert First från bandets debutalbum Taking Shape på YouTube: https://youtu.be/5A_TOln_wFE?feature=shared</p><p>Föreställningens längd ca 75 min, ingen paus.</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p><p>***<br>Ett begränsat parti förmånliga biljetter till lördagens två konserter finns till försäljning för 75 euro. I biljetten ingår förutom konserten Kaisa's Machine feat. Mark Turner även konserten Bill Frisell Trio feat. Thomas Morgan och Rudy Royston (USA) kl. 20.</p><p>***<br>Lyssna på Mark Turner som solist i HR Big Band på YouTube</p>", "en": "<p>The award-winning band of double bassist Kaisa Mäensivu welcomes saxophonist Mark Turner as their star guest.</p><p>Kaisa’s Machine is a nearly ten-year old band by Kaisa Mäensivu, an award-winning double bassist and the artistic director of Savoy JAZZFest, who has established her position in the international jazz field. Mäensivu’s first Taking Shape album will be followed by an album recorded in New York, to be released in spring 2025. The new album will be performed live for the first time as part of the Savoy JAZZFest programme.</p><p>Mäensivu has invited tenor saxophonist Mark Turner, one of the biggest players in modern jazz, to Savoy JAZZFest’s album release gig. In his decade-long career, Turner has emerged as a jazz institution, and the New York Times has named him “the best jazz musician you’ve ever heard.” At the Savoy JAZZFest concert, Turner and Mäensivu share the stage for the first time. Rising jazz singer Maja Mannila will also visit the evening. The band also features pianist Eden Ladin, guitarist Max Light and drummer Joe Peri.</p><p>Listen to the song from Eat Dessert First from the debut album Taking Shape on YouTube: https://youtu.be/5A_TOln_wFE?feature=shared</p><p>Duration: approx. 75 min, no intermission.</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area</p><p>***<br>Limited number of the Saturday’s two concerts are on sale for €75. The ticket includes Kaisa’s Machine feat. In addition to the Mark Turner concert, the Bill Frisell Trio feat. Thomas Morgan and Rudy Royston (USA) concert at 8 pm.</p><p>***<br>Listen to Mark Turner on YouTube as a soloist for HR Big Band</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7D80FCED8E9EEF34BABC23BD2CFC1173/Savoy_JAZZFest_Kaisa_s_Machine_feat_Mark_Turner_Suomi_USA_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7D80FCED8E9EEF34BABC23BD2CFC1173/Savoy_JAZZFest_Kaisa_s_Machine_feat_Mark_Turner_Finland_USA_", "en": "http://www.savoyteatteri.fi/en/events/event/7D80FCED8E9EEF34BABC23BD2CFC1173/Savoy_JAZZFest_Kaisa_s_Machine_feat_Mark_Turner_Finland_USA_" }, "provider_contact_info": null, "name": { "fi": "Savoy JAZZFest: Kaisa’s Machine feat. Mark Turner (Suomi/USA)", "sv": "Savoy JAZZFest: Kaisa’s Machine feat. Mark Turner (Finland/USA)", "en": "Savoy JAZZFest: Kaisa’s Machine feat. Mark Turner (Finland/USA)" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65147/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65618", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 221365, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-13T14:13:50.141958Z", "last_modified_time": "2025-02-13T14:13:50.141973Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765636.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221365/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-13T14:13:50.113402Z", "last_modified_time": "2025-02-13T14:13:50.236072Z", "date_published": null, "start_time": "2025-03-01T09:00:00Z", "end_time": "2025-03-01T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "provider": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Korvameduusojen tanssi</b></p><p>Missä voi nähdä letkulevää tai merihapsikkaa? Miltä näyttää äimäruoho? Entä oletko koskaan tutustunut korvameduusaan?Tervetuloa maalaamaan merenalaisia maisemia Itämeren ihmeellisen lajiston innoittamana. Työpajassa pääset kokeilemaan spiruliinasta, punajuuresta ja siniherneen kukasta tehtyjä luonnonvärejä. Työpajan päätteeksi oman maalauksen saa viedä kotiin.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Öronmaneternas dans</b> <br>Var kan man se slangtång eller havsborstgräs? Hur ser borstgräs ut? Har du någonsin bekantat dig med öronmaneter? Välkommen att måla undervattenslandskap inspirerade av Östersjöns fantastiska arter. På verkstaden får du prova naturliga färger gjorda av spirulina, rödbeta och blåärtsblomma. I slutet av verkstaden får du ta med din egen målning hem.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>The Dance of the Ear Jellyfish</b><br>Where can you see tubeweed or sea hair? What does hairgrass look like? Have you ever encountered an ear jellyfish? Welcome to paint underwater landscapes inspired by the wonderful species of the Baltic Sea. In the workshop, you will get to try natural colors made from spirulina, beetroot, and butterfly pea flower. At the end of the workshop, you can take your own painting home.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/19BA94E4E185E1F7014C7076BD69DE1C/Annantalon_taidelauantai_Korvameduusojen_tanssi", "sv": "http://www.annantalo.fi/sv/evenemang/event/19BA94E4E185E1F7014C7076BD69DE1C/Annegardens_konstlordag_Oronmaneternas_dans", "en": "http://www.annantalo.fi/en/events/event/19BA94E4E185E1F7014C7076BD69DE1C/Annantalo_Art_Saturday_The_Dance_of_the_Ear_Jellyfish" }, "provider_contact_info": null, "name": { "fi": "Annantalon taidelauantai: Korvameduusojen tanssi", "sv": "Annegårdens konstlördag: Öronmaneternas dans", "en": "Annantalo Art Saturday: The Dance of the Ear Jellyfish" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65618/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65611", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20-28 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/name-19841469" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 220779, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-13T10:15:26.976028Z", "last_modified_time": "2025-02-13T10:15:26.976058Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765586.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/220779/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-13T10:15:26.912075Z", "last_modified_time": "2025-02-13T10:15:27.073793Z", "date_published": null, "start_time": "2025-05-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Gospel Power lähtee Enemmän kuin nostalgiaa -kiertueelle – Luvassa myös uutta tuotantoa" }, "provider": { "fi": "Ohjelmatoimisto Kristalli Oy" }, "description": { "fi": "<p>Gospel Power lähtee Enemmän kuin nostalgiaa -kiertueelle – Luvassa myös uutta tuotantoa</p><p>Suomalaisen gospelmusiikin legenda Gospel Power nähdään jälleen konsertoimassa, kun yhtye suuntaa <i>Enemmän kuin nostalgiaa</i> -kiertueelle. Keväällä alkavalla kiertueella kuullaan vaikuttava yhdistelmä vanhoja suosikkeja ja täysin uusia kappaleita. Kiertue käsittää yhteensä 13 konserttia eri puolilla Suomea.</p><p><i>“Meillä on lukuisten kuultujen tarinoiden perusteella vahvistunut tunne: meidän musiikkia tarvitaan. Nuorentunut bändi on tiukassa vedossa ja edelleen treenataan. Olen tehnyt uusia biisejä vanhojen rinnalle. Meillä on asiaa. Uskotaan, että luvassa on voimaannuttavia konserttielämyksiä”</i>, yhtyeen perustaja <b>Lasse Heikkilä</b> kertoo.</p><p>Entistäkin energisempi Gospel Power nähdään nyt kuusihenkisenä kokoonpanona, johon kuuluvat <b>Lasse Heikkilä</b> (keyboard, laulu), <b>Kimmo Virtanen</b> (laulu), <b>Petri Laarko</b> (kitara), <b>Emeliina Virtanen</b> (laulu, keyboard), <b>Joonas Vainio</b> (basso) ja <b>Marko Varis</b> (rummut).</p><p>Kangasalla ja Helsingissä kuullaan ennen Gospel Poweria lämmittelijänä <b>Funky Sunday</b>. Vaasassa lämmittelijänä on <b>Onni Pyhälahti & band</b>.</p><p>Vuonna 2019 Gospel Power teki odotetun comebackin, minkä huipennus nähtiin Nokia Arenalla Glow Festivalilla 2024. Nokia Arenan lavalta yhtye ponkaisi uuteen voimaan ja päätti lähteä kiertueelle, joka tarjoaa nostalgiaa sekä uutta voimaannuttavaa musiikkia. Enemmän kuin nostalgiaa -kiertue tuo lavalle Gospel Powerin ainutlaatuisen tunnelman, vahvat sanomat ja energisen soiton.</p><p>Kesto n. 2 h, sisältää väliajan</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/914B3508DFB4088291E74CC7B5E22547/Gospel_Power_-_Enemman_kuin_nostalgiaa" }, "provider_contact_info": null, "name": { "fi": "Gospel Power - Enemmän kuin nostalgiaa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65611/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dv2u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23du7a/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-02-13T08:46:53.717411Z", "last_modified_time": "2025-02-13T08:46:53.717429Z", "date_published": null, "start_time": "2025-02-24T11:15:00Z", "end_time": "2025-05-26T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule kurkkaamaan, mitä elämysauto Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "provider": null, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle!</p><p>Viitenä maanantaina klo 13:15 - 14:30</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.15 - 14.30</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:15 - 14:30.</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>" }, "info_url": null, "provider_contact_info": null, "name": { "fi": "Elämysauto Välkky Hiirisuon asukaspuistossa", "sv": "Allaktivitetsbussen Välkky på rutten", "en": "Activity Bus Välkky on the route" }, "location_extra_info": { "fi": "Elämysauto Välkky", "sv": "Allaktivitetsbussen Välkky", "en": "Activity Bus Välkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dv2u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64509", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "59,60-109,60 €" }, "description": null, "info_url": { "fi": "https://web.lippu.fi/palautus/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152292, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-04T16:14:06.345189Z", "last_modified_time": "2024-09-04T16:14:06.345204Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757768.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152292/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-04T16:14:06.325010Z", "last_modified_time": "2025-02-12T13:13:06.108214Z", "date_published": null, "start_time": "2025-02-28T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "provider": { "fi": "General Bass" }, "description": { "fi": "<p>Pe 28.2.2025 Mario Biondi & the Band -konsertti peruuntuu huonon ennakkolipunmyyniin takia.</p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta keskiviikkoon 5.3.2025 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.<br>Jo maksetut liput voi myös vaihtaa Savoy-teatterin lahjakorttiin. Lahjakortti on voimassa kaksi (2) vuotta myöntöhetkestä, ja sillä voi ostaa lippuja Savoy-teatterin tapahtumiin Savoy-teatterin lipunmyynnistä ja Lippupisteen täyden palvelun lippukaupoista. Lahjakortti toimitetaan postitse asiakkaan ilmoittamaan osoitteeseen.</p><p>OHJE LIPPUJEN VAIHTAMISEKSI LAHJAKORTTIIN:</p><p>Ilmoita lipun viivakoodinumero, rivi- ja paikkanumero sekä osoite johon lahjakortti postitetaan osoitteeseen raisa.ailio@hel.fi<br> <br>OHJE LIPPUJEN PALAUTUKSIIN:<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä General Bass sekä Savoy-teatteri ja Lippupiste pahoittelevat muutoksesta aiheutuvaa vaivaa!</p><p>***</p><p>Italialainen laulaja Mario Biondi esiintyy ensimmäistä kertaa Suomessa.</p><p>Mario Biondin erehtymättömän syvä ääni on lämmin ja sensuelli, mutta silti selkeä ja itsevarma.</p><p>Soulmusiikin ystävänä hän aloitti vuonna 1988 tukemaan kansainvälisesti arvostettuja artisteja, mukaan lukien legendaarisen Ray Charlesin kaliiperia. Mutta käännekohta tuli hänen singlensä ”This Is What You Are” julkaisun myötä, josta tuli maailmanlaajuinen klubi- ja radio hitti.</p><p>Mario Biondi julkaisi debyyttialbuminsa Handful of Soul (2006), joka äänitettiin High Five -kvintetin kanssa. Alle kolmessa kuukaudessa se nousi platinaksi. Marraskuussa 2007 Mario julkaisi Duke Orchestran kanssa kaksoisalbumin nimeltä I Love You More, joka nauhoitettiin kokonaan Smeraldo-teatterissa Milanossa.<br>Vuonna 2008 Mario Biondi teki yhteistyötä taiteilijoiden, kuten Burt Bacharachin, Chaka Khanin, Michael Boltonin, Incogniton ja The Crusadersin kanssa. Vuonna 2009 Mario Biondi julkaisi Ifin. Johtavan singlen ”Be Lonely”. Menestyksen johdosta albumi nousi listalle ja nousi kolminkertaiseksi platinaksi.</p><p>Mario Biondi jatkaa aktiivista kiertuettaan ympäri maailmaa ja levyttää uusia biisiä.</p><p>Kesto n. 1 h 40 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p><p>Ikäsuositus: 12+</p><p>Katso video Youtubesta: <br>https://www.youtube.com/watch?v=RcOzgGmBRrY</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/644DF215B1358DEE7D7568D70601DFDE/Mario_Biondi_the_Band" }, "provider_contact_info": null, "name": { "fi": "Mario Biondi & the Band – KONSERTTI ON PERUTTU!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64509/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64460", "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: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/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/piaf-the-show-3715050/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152228, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-27T13:13:32.504366Z", "last_modified_time": "2024-08-27T13:13:32.504379Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744740.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152228/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-27T13:13:32.492820Z", "last_modified_time": "2025-02-12T12:15:42.845111Z", "date_published": null, "start_time": "2025-02-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, "short_description": { "fi": "Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta" }, "provider": { "fi": "Sunborn Events Oy" }, "description": { "fi": "<p>Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta</p><p>Viime vuonna Musiikkitalon loppuunmyynyt ranskalainen Piaf! The Show palaa Helsinkiin jälleen helmikuussa 2025. Gil Marsallan ohjaama musiikkispektaakkeli on kunnianosoitus Ranskan kaikkien aikojen arvostetuimmalle laulajalle Edith Piafille, jonka kappaleet koskettavat ihmisiä yhä.</p><p>Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta. Tragedioiden ja intohimoisten rakkaussuhteiden sävyttämä elämä vei Edith Piafin slummeista parrasvaloihin, ja uran varrella syntyivät ikoniset kappaleet kuten La vie en rose, Non, je ne regrette rien, Hymne à l’amour, La foule sekä Padam padam.</p><p>Esityksessä Piafin lauluja tulkitsee maailmanlaajuisesti ylistetty, upeaääninen ranskalaislaulaja <b>Nathalie Lermitte</b>, jota pidetään ansaitusti kaikkien aikojen parhaana Piaf-tribuuttitaiteilijana.</p><p>Ohjaaja <b>Gil Marsallan</b> suunnitteleman ja luotsaaman Piaf! The Show on kiertänyt maailmalla vuodesta 2015 asti ja sen on nähnyt jo yli miljoona ihmistä yli 50 maassa. Esitys on muun muassa myynyt loppuun legendaarisen Carnegie Hall:in New Yorkissa ja Olympia-teatterin Pariisissa. Kyseessä on tämän vuosikymmenen menestynein ranskalaisshow.</p><p>Liput alk. 63,40 €<br>Piaf! The Show & Dinner 150 €<br>Piaf! The Show & Brunssi 140 € (15.2.25 klo 12)</p><p>Esitykset Savoy-teatterissa:<br>•\ttorstai 13.2.2025 klo 19<br>•\tperjantai 14.2.2025 klo 19<br>•\tlauantai 15.2.2025 klo 14 ja klo 19</p><p>Esityksen kesto on noin 1 h 50 min, sisältäen väliajan.<br>Esityskieli: Ranska</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9D892B61B1302F19FFF774506C903744/PIAF_-_The_Show_" }, "provider_contact_info": null, "name": { "fi": "PIAF! - The Show – Loppuunmyyty! / Sold out!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64460/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64458", "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: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/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/piaf-the-show-3715050/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152226, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-27T13:13:32.357755Z", "last_modified_time": "2024-08-27T13:13:32.357767Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744739.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152226/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-27T13:13:32.346375Z", "last_modified_time": "2025-02-12T12:15:42.075620Z", "date_published": null, "start_time": "2025-02-14T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta" }, "provider": { "fi": "Sunborn Events Oy" }, "description": { "fi": "<p>Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta</p><p>Viime vuonna Musiikkitalon loppuunmyynyt ranskalainen Piaf! The Show palaa Helsinkiin jälleen helmikuussa 2025. Gil Marsallan ohjaama musiikkispektaakkeli on kunnianosoitus Ranskan kaikkien aikojen arvostetuimmalle laulajalle Edith Piafille, jonka kappaleet koskettavat ihmisiä yhä.</p><p>Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta. Tragedioiden ja intohimoisten rakkaussuhteiden sävyttämä elämä vei Edith Piafin slummeista parrasvaloihin, ja uran varrella syntyivät ikoniset kappaleet kuten La vie en rose, Non, je ne regrette rien, Hymne à l’amour, La foule sekä Padam padam.</p><p>Esityksessä Piafin lauluja tulkitsee maailmanlaajuisesti ylistetty, upeaääninen ranskalaislaulaja <b>Nathalie Lermitte</b>, jota pidetään ansaitusti kaikkien aikojen parhaana Piaf-tribuuttitaiteilijana.</p><p>Ohjaaja <b>Gil Marsallan</b> suunnitteleman ja luotsaaman Piaf! The Show on kiertänyt maailmalla vuodesta 2015 asti ja sen on nähnyt jo yli miljoona ihmistä yli 50 maassa. Esitys on muun muassa myynyt loppuun legendaarisen Carnegie Hall:in New Yorkissa ja Olympia-teatterin Pariisissa. Kyseessä on tämän vuosikymmenen menestynein ranskalaisshow.</p><p>Liput alk. 63,40 €<br>Piaf! The Show & Dinner 150 €<br>Piaf! The Show & Brunssi 140 € (15.2.25 klo 12)</p><p>Esitykset Savoy-teatterissa:<br>•\ttorstai 13.2.2025 klo 19<br>•\tperjantai 14.2.2025 klo 19<br>•\tlauantai 15.2.2025 klo 14 ja klo 19</p><p>Esityksen kesto on noin 1 h 50 min, sisältäen väliajan.<br>Esityskieli: Ranska</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/618E558D98353EEE49152B0637501562/PIAF_-_The_Show_" }, "provider_contact_info": null, "name": { "fi": "PIAF! - The Show – Loppuunmyyty! / Sold out!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64458/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64864", "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: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": [], "price": { "fi": "53,60/60,60 €", "en": "53,60/60,60 €" }, "description": null, "info_url": { "fi": "https://web.lippu.fi/palautus/", "en": "https://web.lippu.fi/palautus/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-16T11:14:47.015726Z", "last_modified_time": "2025-02-11T14:15:32.833798Z", "date_published": null, "start_time": "2025-05-31T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "provider": { "fi": "Buzzard Ents", "en": "Buzzard Ents" }, "description": { "fi": "<p>La 31.5.2025 Money For Nothing: Dire Straits Tribute -konsertti peruuntuu huonon ennakkolipunmyyniin takia.</p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta keskiviikkoon 4.6.2025 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.<br>Jo maksetut liput voi myös vaihtaa Savoy-teatterin lahjakorttiin. Lahjakortti on voimassa kaksi (2) vuotta myöntöhetkestä, ja sillä voi ostaa lippuja Savoy-teatterin tapahtumiin Savoy-teatterin lipunmyynnistä ja Lippupisteen täyden palvelun lippukaupoista. Lahjakortti toimitetaan postitse asiakkaan ilmoittamaan osoitteeseen.</p><p>OHJE LIPPUJEN VAIHTAMISEKSI LAHJAKORTTIIN:</p><p>Ilmoita lipun viivakoodinumero, rivi- ja paikkanumero sekä osoite johon lahjakortti postitetaan osoitteeseen raisa.ailio@hel.fi<br> <br>OHJE LIPPUJEN PALAUTUKSIIN:<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Buzzard Ents sekä Savoy-teatteri ja Lippupiste pahoittelevat muutoksesta aiheutuvaa vaivaa!</p><p>****</p><p>Europe's number one Dire Straits Tribute Show</p><p>Featuring all the hits from their first ever single ‘Sultans of Swing’ to ‘Brothers in Arms‘, ‘Walk of Life’ and their last single released in 1992 ‘The Bug', the abundant energy and the excellence and musicality of their performance makes Money For Nothing a “must see” for any rock enthusiast or Dire Straits fan.</p><p>Duration about 2,5 h, including intermission.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>https://money-for-nothing.co.uk/</p>", "en": "<p>The concert is cancelled.</p><p>Tickets that have already been paid for can be returned until 4th of June 2025 and reimbursed for their full value excluding Lippupiste’s service charge.</p><p>Tickets can be reimbursed on the following webpage: <br>https://web.lippu.fi/palautus/</p><p>Purchased tickets will be reimbursed for the price of the ticket.</p><p>***</p><p>Europe's number one Dire Straits Tribute Show</p><p>Featuring all the hits from their first ever single ‘Sultans of Swing’ to ‘Brothers in Arms‘, ‘Walk of Life’ and their last single released in 1992 ‘The Bug', the abundant energy and the excellence and musicality of their performance makes Money For Nothing a “must see” for any rock enthusiast or Dire Straits fan.</p><p>Duration about 2,5 h, including intermission.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>https://money-for-nothing.co.uk/</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/742882371967CEEDD003FCCFC1EA9B0B/Money_For_Nothing_Dire_Straits_Tribute", "en": "http://www.savoyteatteri.fi/en/events/event/742882371967CEEDD003FCCFC1EA9B0B/Money_For_Nothing_Dire_Straits_Tribute" }, "provider_contact_info": null, "name": { "fi": "Money For Nothing: Dire Straits Tribute – KONSERTTI ON PERUTTU!", "en": "Money For Nothing: Dire Straits Tribute – CONCERT CANCELLED!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64864/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65369", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuosaaren-musiikkiopiston-20-vuotta-juhlakavalkadi-3793213/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuosaaren-musiikkiopiston-20-vuotta-juhlakavalkadi-3793213/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuosaaren-musiikkiopiston-20-vuotta-juhlakavalkadi-3793213/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-02T10:14:26.564845Z", "last_modified_time": "2025-01-02T10:14:26.564861Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761791.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-02T10:14:26.540097Z", "last_modified_time": "2025-02-11T14:15:29.968910Z", "date_published": null, "start_time": "2025-05-09T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lämpimästi tervetuloa juhlimaan kanssamme Vuosaaren musiikkiopiston 20-vuotista taivalta! Luvassa iloista musisointia, laulua ja soittoa.", "sv": "Varmt välkomna att fira Vuosaaren musiikkiopistos 20-åriga resa med oss! På programmet står glad musik och sång.", "en": "We warmly welcome you to join us in celebrating the 20th anniversary of Vuosaari Music Institute! We guarantee delightful music, singing and playing." }, "provider": null, "description": { "fi": "<p>Lämpimästi tervetuloa juhlimaan kanssamme Vuosaaren musiikkiopiston 20-vuotista taivalta! Luvassa iloista musisointia, laulua ja soittoa.</p><p>Esiintymässä on Vuomun oppilaita, opettajia sekä sekä vieraita, jotka ovat olleet mukana matkassamme näiden vuosien aikana. Kutsumme kaikki entiset ja nykyiset Vuomulaiset perheineen juhlimaan kanssamme Vuotaloon. Tervetuloa kaikki vuosaarelaiset juhlimaan kanssamme!</p><p>Kesto: n. 2 t sis. väliajan</p>", "sv": "<p>Varmt välkomna att fira Vuosaaren musiikkiopistos 20-åriga resa med oss! På programmet står glad musik och sång.</p><p>I föreställningen medverkar Vuomus elever, lärare samt gäster som har varit med på resan genom dessa år. Vi bjuder in alla tidigare och nuvarande Vuomus elever och deras familjer för att fira med oss i Nordhuset. Välkommen alla Nordsjöbor att fira med oss!</p><p>Längd cirka 2 h, inklusive paus.</p>", "en": "<p>We warmly welcome you to join us in celebrating the 20th anniversary of Vuosaari Music Institute! We guarantee delightful music, singing and playing.</p><p>Performers include Vuomu’s students and teachers as well as guests who have been part of our journey during the years. We invite all past and present Vuomu students and their families to celebrate with us at Vuotalo. We welcome all Vuosaari residents to celebrate with us!</p><p>Duration: approx. 2 h, including an intermission</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C134F0CDA05AC50D37B122257A0A8D2D/Vuosaaren_musiikkiopiston_20_vuotta_-juhlakavalkadi", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C134F0CDA05AC50D37B122257A0A8D2D/Festkavalkaden_Vuosaaren_musiikkiopisto_20_ar", "en": "http://www.vuotalo.fi/en/events/event/C134F0CDA05AC50D37B122257A0A8D2D/Vuosaari_Music_Institute_20_Years_celebratory_cavalcade" }, "provider_contact_info": null, "name": { "fi": "Vuosaaren musiikkiopiston 20 vuotta -juhlakavalkadi", "sv": "Festkavalkaden Vuosaaren musiikkiopisto 20 år", "en": "Vuosaari Music Institute 20 Years celebratory cavalcade" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65369/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65588", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 214516, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T13:13:58.239232Z", "last_modified_time": "2025-02-11T13:13:58.239246Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761445.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/214516/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-11T13:13:58.185526Z", "last_modified_time": "2025-02-11T13:13:58.332869Z", "date_published": null, "start_time": "2025-04-12T09:00:00Z", "end_time": "2025-04-12T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule mukaan teatterin pyörteisiin Vuotalolle, aiheena on keväinen luonto!", "sv": "Kom med i teaterns fenomenala virvlar i Nordhuset, temat är en vårnatur!", "en": "Join a theatrical vortex at Vuotalo, the theme is spring nature!" }, "provider": null, "description": { "fi": "<p>Tule mukaan teatterin pyörteisiin Vuotalolle, aiheena on keväinen luonto!</p><p>Tapahtumassa on luvassa teatteria ja teatterileikkejä, joihin voit osallistua haluamallasi tavalla. Voit katsella, kuunnella, improvisoida, askarella, maskeerata ja puvustaa! Luvassa on myös Teatterikoulu ILMI Ö:n oppilaiden ja Teatteri ILMI Ö:n senioreiden TaideLiikutus-yhteisöteatteriryhmän esityksiä.</p><p>Tule mukaan luomaan hauskaa pääsiäistarinaa, kertomaan vitsejä ja osallistumaan pääsiäisrunon tekoon. Vai haluaisitko askarrella metsä- tai meriaiheisen pääsiäismunan pupulle ja oravalle? Kokeile myös ilmiömäisiä tuolileikkejä! Entä kuka ehtisi opastaa pinkkiin pukeutunutta retkeilijää kierrättämisen saloihin?</p><p>Tapahtumassa on myös maskeeraus- ja puvustuspiste sekä kuvausseinä, jonka ääressä voit ottaa ihania keväisiä kuvia.</p><p>Lämpimästi tervetuloa kaikille!</p><p>Yhteistyössä:<br>Teatterikoulu ILMI Ö., Teatteri ILMI Ö., Vuotalo</p><p>Vapaa pääsy</p>", "sv": "<p>Kom med i teaterns fenomenala virvlar i Nordhuset, temat är en vårnatur!</p><p>På evenemangets program står teater och teaterlekar som du kan delta i på det sätt som du vill. Du kan titta, lyssna, improvisera, pyssla, maskera och ta hand om kostymer! Det utlovas även föreställningar med Teaterskolan ILMI Ö:s elever och Teatern ILMI Ö:s gemenskapsteatergrupp för seniorer TaideLiikutus.</p><p>Kom med och skapa en rolig påskberättelse, berätta vitsar och skriv en påskdikt. Eller vill du pyssla ett påskägg med skogs- eller havstema för en kanin och ekorre? Prova också fenomenala stollekar! Och vem har tid att handleda en rosaklädd vandrare i återvinning?</p><p>På evenemanget finns även en maskerings- och kostymstation samt en fotovägg där du kan ta härliga vårfoton.</p><p>Varmt välkommen!</p><p>I samarbete med:<br>Teaterskolan ILMI Ö., Teatern ILMI Ö., Nordhuset</p><p>Fritt inträde</p>", "en": "<p>Join a theatrical vortex at Vuotalo, the theme is spring nature!</p><p>The event will feature theatre and theatrical play that you can participate in any way you want. You can watch, listen, improvise, craft, do makeup and provide costumes! Theatre school ILMI Ö.’s students and Theatre ILMI Ö.’s seniors’ Taideliikutus community theatre group will also perform.</p><p>Join us in creating a fun Easter story, telling jokes and contributing to an Easter poem. Or would you like to craft a forest- or sea-themed Easter egg for a bunny and a squirrel? Why not try some phenomenal chair games? And who could instruct a hiker dressed in pink with the secrets of recycling?</p><p>The event will also feature a makeup and costume stand and a photo wall where you can take lovely spring photos.</p><p>A warm welcome to all!</p><p>In cooperation with:<br>Theatre school ILMI Ö., Theatre ILMI Ö., Vuotalo</p><p>Free admission</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CBAC9C0865D4C9DE98717AA2CC2A5975/Ilmiomainen_teatteripaasiainen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CBAC9C0865D4C9DE98717AA2CC2A5975/Fenomenal_teaterpask", "en": "http://www.vuotalo.fi/en/events/event/CBAC9C0865D4C9DE98717AA2CC2A5975/Phenomenal_theatre_Easter" }, "provider_contact_info": null, "name": { "fi": "Ilmiömäinen teatteripääsiäinen", "sv": "Fenomenal teaterpåsk", "en": "Phenomenal theatre Easter" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65588/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }