Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. 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=266
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=267", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=265" }, "data": [ { "id": "kulke:65555", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 10 € / 6 €", "sv": "15 € / 10 € / 6 €", "en": "15 € / 10 € / 6 €" }, "info_url": { "fi": "https://www.lippu.fi/event/stoa-katso-minua-silmiin-stoa-19763768/", "sv": "https://www.lippu.fi/event/stoa-katso-minua-silmiin-stoa-19763768/", "en": "https://www.lippu.fi/event/stoa-katso-minua-silmiin-stoa-19763768/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 220922, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-13T11:15:54.174309Z", "last_modified_time": "2025-02-13T11:15:54.174336Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758031.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/220922/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-13T11:15:54.125221Z", "last_modified_time": "2025-02-13T11:15:54.271323Z", "date_published": null, "start_time": "2025-05-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, "name": { "fi": "Katso minua silmiin – ENSI-ILTA", "sv": "Se mig i ögonen – PREMIÄR", "en": "Katso minua silmiin (Look me in the eyes) – PREMIERE" }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/97362FF787039FA54E7E99EE6E56DBA1/Katso_minua_silmiin", "sv": "http://www.stoa.fi/sv/evenemang/event/97362FF787039FA54E7E99EE6E56DBA1/Se_mig_i_ogonen", "en": "http://www.stoa.fi/en/events/event/97362FF787039FA54E7E99EE6E56DBA1/Katso_minua_silmiin_Look_me_in_the_eyes_" }, "description": { "fi": "<p>Katso minua silmiin on Janina Rajakankaan Kitka kollektiiville ja 65+ naisille koreografioima yhteisöllinen teos.</p><p>Teoksen keskiössä on kohtaamisten mahdollistaminen ja kohtaamisen, suoraan silmiin katsomisen, hoivan ja runouden ääreen pysähtymisen parantava ja ihmisiä yhdistävä voima.<br> <br>Katso minua silmiiin -teosta seurataan istuen ympyrässä esiintyjien ympärillä. Konfliktien ja kasvavan pelon ajassa naisten muodostama yhteinen keho kommunikoi rauhasta ja luottamuksesta. Esiintyvät naiset ovat kuin mäki, joka nousee yleisön keskellä. He pitävät yleisöä kädestä, kuljettavat yleisön huomiota tanssista toiseen ja puhuvat auki tekemiään tanssimeditaatioita. <br> <br>Teos perustuu koreografi Janina Rajakankaan ja tanssija Vera Nevanlinnan työlle Helsingin palvelutaloissa.</p><p>Palvelutalotyöskentelyä ovat rahoittaneet ja tukeneet Helsingin kaupunki, Zodiak Uuden tanssin keskus ja Todellisuuden tutkimuskeskus. Tanssikaveri-nimellä kiertänyt projekti mahdollisti tanssitaiteilijoiden, vapaaehtoisten ja ikäihmisten kohtaamisia kahden vuoden ajan. https://www.tanssikaverit.fi/<br> <br><b>Työryhmä</b> <br>Koreografi: Janina Rajakangas <br>Esiintyjät: Katriina Kantola, Iiris Raipala Elina Valtonen, Vera Nevanlinna ja joukko yli 65-vuotiaita naisia.<br>Äänisuunnittelu: Miki Brunou<br>Tilasuunnittelu: Lotta Esko<br>Tuotanto: Kaikki liikkuu ry, Kitka Kollektiivi ja STOA<br> <br>Kesto: noin 45 minuuttia</p><p>Ikäsuositus: Ylisukupolvinen katsojakunta. Päiväesityksiin ovat tervetulleita erityisesti palvelutalojen asukkaat ja palvelukeskusten kerhotoimintaan osallistuvat ihmiset.</p>", "sv": "<p>Se mig i ögonen är ett verk som skapats gemensamt av Kitka Kollektiivi och kvinnor över 65 år, koreograferat av Janina Rajakangas.</p><p>Kärnan i verket är den helande och förenande kraften i möten, att se någon rakt i ögonen, att vårda och att stanna upp för poesi.<br> <br>Efter ”Se mig i ögonen” sätter sig åskådarna i en cirkel runt artisterna. I en tid av konflikt och växande rädsla förmedlar kvinnornas kollektiva kropp fred och tillit. Kvinnorna som uppträder är som en kulle som reser sig mitt i publiken. De håller publiken i handen, flyttar publikens uppmärksamhet från en dans till en annan och öppnar upp om sin dansmeditation. <br> <br>Verket är baserat på koreografen Janina Rajakangas och dansaren Vera Nevanlinnas arbete på servicehusen i Helsingfors. Arbetet på servicehusen har finansierats och understötts av Helsingfors stad, Zodiak – Centret för ny dans och Todellisuuden tutkimuskeskus. Projektet, som gick under namnet Tanssikaverit (”Danskompisar”), förde samman danskonstnärer, frivilliga och äldre personer under två år. https://www.tanssikaverit.fi/<br> <br><b>Arbetsgrupp</b> <br>Koreografi: Janina Rajakangas <br>Framträdande: Katriina Kantola, Iiris Raipala Elina Valtonen, Vera Nevanlinna och en grupp kvinnor över 65 år.<br>Ljuddesign: Miki Brunou<br>Lokaldesign: Lotta Esko<br>Produktion: Kaikki liikkuu ry, Kitka Kollektiivi och Stoa<br> <br>Längd: ca 45 minuter.<br>Åldersrekommendation: Generationsöverskridande publik. Föreställningarna på dagtid är särskilt för boende på servicehus och personer som deltar i klubbverksamhet på servicecentren.</p>", "en": "<p>Katso minua silmiin is a community work choreographed by Janina Rajakangas for Kitka Kollektiivi and 65+ women.</p><p>At the heart of the work is the enabling of encounters and the healing and unifying power of encountering, looking directly into the eyes, caring and stopping to enjoy poetry.<br> <br>The audience sits in a circle around the performers. In times of conflict and increasing fear, the shared body of the women communicates peace and trust. The performing women are like a hill rising in the middle of the audience. They hold the audience’s hand, carry the audience’s attention from dance to dance and explain their dance meditations. <br> <br>The work is based on the work of Choreographer Janina Rajakangas and Dancer Vera Nevanlinna at Helsinki’s service homes. The service home work has been funded and supported by the City of Helsinki, Zodiak – Centre for New Dance, and Reality Research Center. The project, which toured under the name Tanssikaveri, enabled encounters between dance artists, volunteers and seniors for two years. https://www.tanssikaverit.fi/ <br> <br><b>Working group</b> <br>Choreographer: Janina Rajakangas <br>Performers: Katriina Kantola, Iiris Raipala, Elina Valtonen, Vera Nevanlinna and a group of women over 65 years of age.<br>Sound design: Miki Brunou<br>Space design: Lotta Esko<br>Production: Entirely Moved, Kitka Kollektiivi and STOA<br> <br>Duration: approx. 45 min</p><p>Age recommendation: A cross-generational audience. In particular, residents of service homes and people participating in the club activities at service centres are welcome to attend the daily performances.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Katso minua silmiin on Janina Rajakankaan Kitka kollektiiville ja 65+ naisille koreografioima yhteisöllinen teos.", "sv": "Se mig i ögonen är ett verk som skapats gemensamt av Kitka Kollektiivi och kvinnor över 65 år, koreograferat av Janina Rajakangas.", "en": "Katso minua silmiin is a community work choreographed by Janina Rajakangas for Kitka Kollektiivi and 65+ women." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65555/?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 €" }, "info_url": { "fi": "https://www.lippu.fi/event/name-19841469" }, "description": null } ], "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", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765586.jpg", "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, "name": { "fi": "Gospel Power - Enemmän kuin nostalgiaa" }, "provider": { "fi": "Ohjelmatoimisto Kristalli Oy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/914B3508DFB4088291E74CC7B5E22547/Gospel_Power_-_Enemman_kuin_nostalgiaa" }, "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>" }, "provider_contact_info": null, "short_description": { "fi": "Gospel Power lähtee Enemmän kuin nostalgiaa -kiertueelle – Luvassa myös uutta tuotantoa" }, "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:agmk23du7a", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dv2u/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "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:55.174646Z", "last_modified_time": "2025-02-13T08:46:55.174663Z", "date_published": null, "start_time": "2025-05-26T10: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": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Elämysauto Välkky Hiirisuon asukaspuistossa", "sv": "Allaktivitetsbussen Välkky på rutten", "en": "Activity Bus Välkky on the route" }, "provider": null, "info_url": 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>" }, "provider_contact_info": 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!" }, "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:agmk23du7a/?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, "info_url": null, "description": 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, "name": { "fi": "Elämysauto Välkky Hiirisuon asukaspuistossa", "sv": "Allaktivitetsbussen Välkky på rutten", "en": "Activity Bus Välkky on the route" }, "provider": null, "info_url": 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>" }, "provider_contact_info": 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!" }, "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:64943", "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": "20-44 €", "en": "20-44 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/3767946", "en": "https://www.lippu.fi/eventseries/3767946" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153050, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-19T11:14:36.495189Z", "last_modified_time": "2024-11-19T11:14:36.495206Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761733.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153050/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-19T11:14:36.467045Z", "last_modified_time": "2025-02-12T13:13:14.542188Z", "date_published": null, "start_time": "2025-05-08T16: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, "name": { "fi": "UMO Helsinki Jazz Orchestra feat. Thomas Gansch (A) – Kapellimestarina Ed Partyka", "en": "UMO Helsinki Jazz Orchestra feat. Thomas Gansch (A)" }, "provider": { "fi": "UMO Helsinki Jazz Orchestra", "en": "UMO Helsinki Jazz Orchestra" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/92AF1AC5772A4FC78D6092821769D93C/UMO_Helsinki_Jazz_Orchestra_feat_Thomas_Gansch_A_", "en": "http://www.savoyteatteri.fi/en/events/event/92AF1AC5772A4FC78D6092821769D93C/UMO_Helsinki_Jazz_Orchestra_feat_Thomas_Gansch_A_" }, "description": { "fi": "<p>Ed Partykan vuonna 2019 alkanut kausi UMO Helsinki Jazz Orchestran taiteellisena johtajana ja pääkapellimestarina päättyy tähän konserttiin. Tule heittämään hyvästit pidetylle ja arvostetulle kapellimestarillemme Savoy-teatteriin!</p><p>Partyka tuo UMOn vieraaksi pitkäaikaisen ystävänsä, itävaltalaisen trumpetistin <b>Thomas Ganschin</b>. Miesten ystävyys on alkanut ”puoli ikuisuutta” sitten yhteisissä projekteissa Vienna Art Orchestrassa ja Thomas Ganschin kulttimainetta nauttivassa Gansch & Roses -yhtyeessä. Gansch on ollut vakituinen vieras Partykan johtamissa orkestereissa, kuten SWR Big Bandissa, Ed Partyka Jazz Orchestrassa sekä Zurich Jazz Orchestrassa, jonka kanssa mies on levyttänyt yhteisen, keväällä 2025 julkaistavan albumin.</p><p>Sekä soolourastaan että menestyksekkään <b>Mnozil Brassin </b> riveistä tutun trumpettitaiturin kanssa soitetaan ohjelmisto, jossa Ganschin alkuperäiset sävellykset kuullaan Partykan sovittamina big band -versioina. Jazz törmää tässä konsertissa eurooppalaisen klassisen musiikin sävyihin, ja onpa mukana kaikuja jopa alppimusiikista.</p><p>– Thomas Gansch on poikkeuksellinen muusikko. Hänen syvällinen tietämyksensä musiikista mahdollistaa saumattoman liikkumisen genrestä ja tyylistä toiseen. Yleisöt ympäri maailmaa rakastavat hänen huumoriaan ja persoonaansa. Odotan innolla Thomasin ja hänen musiikkinsa esittelyä UMOn yleisölle, Partyka hehkuttaa.</p><p>Varmaa on se, että tästä tulee unohtumaton ilta niin sen tekijöille kuin kokijoillekin!</p><p>Konsertin sisältöihin syventyvä Enemmän irti esityksestä -keskustelutilaisuus Savoy-teatterin aulatilojen yhteydessä olevassa Minne-ravintolassa ennen konserttia klo 18:15.</p><p>Konsertin kesto 2 h sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>https://ganschathome.com<br>https://www.youtube.com/watch?v=C_GjFhY1fMI<br>https://open.spotify.com/artist/6uELuOUycPhUky02osfsl2?si=ob_qKHQVTpK11udv2qNh1g</p><p><i><b>UMO Helsinki Jazz Orchestra</b> on jazzin ja rytmimusiikin saralla ammattimaisesti toimiva orkesteri, joka esiintyy vuosittain noin sadassa konsertissa ja tapahtumassa. Vuodesta 1975 alkaen UMO Helsinki on julkaissut yli 60 albumia ja esiintynyt kotimaisten huippunimien lisäksi kansainvälisten jazztähtien kanssa. Orkesterin ohjelmisto ulottuu aina jazzista souliin ja klassiseen musiikkiin, yhdistäen yllätyksellisesti uutta ja vanhaa. www.umohelsinki.fi</i></p>", "en": "<p>Ed Partyka’s period as the artistic director and chief conductor of the UMO Helsinki Jazz Orchestra started in 2019 and ends with this concert. Come to the Savoy Theatre and say goodbye to our well-liked and much appreciated conductor!</p><p>Partyka brings with him his old friend, the Austrian trumpet player <b>Thomas Gansch</b>, to perform with the UMO. Their friendship began “half an eternity” ago in projects with the Vienna Art Orchestra and Thomas Gansch’s legendary cult band Gansch & Roses. Gansch has been a regular guest in orchestras conducted by Partyka, like the SWR Big Band, the Ed Partyka Jazz Orchestra as well as the Zurich Jazz Orchestra, with which he has recorded an album to be released in the spring of 2025.</p><p>The virtuoso trumpeter is known for his solo career as well as for a member of the successful ensemble Mnozil Brass. This concert features Gansch’s original compositions in big band arrangements by Partyka, creating a mash-up of jazz, European classical music and even reminiscences of the music of the Alps.</p><p>– Thomas Gansch s is an extraordinary musician, with a depth of knowledge which allows him to move seamlessly between genres and styles as well as a wicked sense of humour that gives his music a unique personality that is loved by audiences around the world. I very much look forward to introducing Thomas and his music to UMO’s audience, says Partyka.</p><p>You can count on this being an unforgettable evening both for the performers and the audience!</p><p>Duration about 2 h, including intermission.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>https://ganschathome.com<br>https://www.youtube.com/watch?v=C_GjFhY1fMI<br>https://open.spotify.com/artist/6uELuOUycPhUky02osfsl2?si=ob_qKHQVTpK11udv2qNh1g</p><p><i><b>UMO Helsinki Jazz Orchestra</b> is the only professional orchestra in Finland specialised in jazz and new rhythm-oriented music. The big band of 16 musicians plays about 100 concerts every year in Finland and abroad. The orchestra plays a diverse range of modern music that is on the pulse of the times. The programme varies from jazz to soul and classical music, mixing old and new in surprising way, from children to senior citizens. www.umohelsinki.fi</i></p>" }, "provider_contact_info": null, "short_description": { "fi": "Ed Partykan vuonna 2019 alkanut kausi UMO Helsinki Jazz Orchestran taiteellisena johtajana ja pääkapellimestarina päättyy tähän konserttiin. Tule heittämään hyvästit pidetylle ja arvostetulle kapellimestarillemme Savoy-teatteriin!", "en": "Ed Partyka’s period as the artistic director and chief conductor of the UMO Helsinki Jazz Orchestra started in 2019 and ends with this concert. Come to the Savoy Theatre and say goodbye to our well-liked and much appreciated conductor!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64943/?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 €" }, "info_url": { "fi": "https://web.lippu.fi/palautus/" }, "description": null } ], "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", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757768.jpg", "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, "name": { "fi": "Mario Biondi & the Band – KONSERTTI ON PERUTTU!" }, "provider": { "fi": "General Bass" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/644DF215B1358DEE7D7568D70601DFDE/Mario_Biondi_the_Band" }, "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>" }, "provider_contact_info": null, "short_description": null, "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, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/piaf-the-show-3715050/" }, "description": null } ], "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", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744740.jpg", "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, "name": { "fi": "PIAF! - The Show – Loppuunmyyty! / Sold out!" }, "provider": { "fi": "Sunborn Events Oy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9D892B61B1302F19FFF774506C903744/PIAF_-_The_Show_" }, "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>" }, "provider_contact_info": null, "short_description": { "fi": "Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta" }, "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, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/piaf-the-show-3715050/" }, "description": null } ], "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", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744739.jpg", "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, "name": { "fi": "PIAF! - The Show – Loppuunmyyty! / Sold out!" }, "provider": { "fi": "Sunborn Events Oy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/618E558D98353EEE49152B0637501562/PIAF_-_The_Show_" }, "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>" }, "provider_contact_info": null, "short_description": { "fi": "Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta" }, "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:64457", "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, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/piaf-the-show-3715050/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152225, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-27T13:13:32.264637Z", "last_modified_time": "2024-08-27T13:13:32.264651Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744738.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152225/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-27T13:13:32.237600Z", "last_modified_time": "2025-02-12T12:15:41.487558Z", "date_published": null, "start_time": "2025-02-13T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PIAF! - The Show – Loppuunmyyty! / Sold out!" }, "provider": { "fi": "Sunborn Events Oy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/71F8FD33E53E0937763F889FB28B3531/PIAF_-_The_Show_" }, "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>" }, "provider_contact_info": null, "short_description": { "fi": "Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64457/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65598", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 217299, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-12T09:13:52.235585Z", "last_modified_time": "2025-02-12T09:13:52.235598Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765489.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/217299/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-12T09:13:52.192722Z", "last_modified_time": "2025-02-12T09:13:52.313082Z", "date_published": null, "start_time": "2025-02-26T15:00:00Z", "end_time": "2025-02-26T17: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, "name": { "fi": "Kantsun kahvit", "sv": "Kantsun kahvit", "en": "Kantsun kahvit" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C7BD823FBA70D1162E2D8B6E9026212B/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C7BD823FBA70D1162E2D8B6E9026212B/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/C7BD823FBA70D1162E2D8B6E9026212B/Kantsun_kahvit" }, "description": { "fi": "<p>Nyt voit vaikuttaa siihen, mitä tapahtuu kesällä Kannelmäessä!</p><p>Tule suunnittelemaan yhdessä Kanneltalon ja muiden alueen toimijoiden kanssa, millaista ohjelmaa kaupunginosassamme järjestetään kesällä.</p><p>Tarjoamme kahvia, teetä ja pientä syötävää.</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.<br>Tervetuloa – Welcome!</p><p>Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki</p>" }, "provider_contact_info": null, "short_description": { "fi": "Nyt voit vaikuttaa siihen, mitä tapahtuu kesällä Kannelmäessä!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65451", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 164695, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T08:14:17.801727Z", "last_modified_time": "2025-01-23T08:14:17.801765Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761418.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/164695/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T08:14:17.774636Z", "last_modified_time": "2025-02-11T15:13:52.248022Z", "date_published": null, "start_time": "2025-02-14T14:00:00Z", "end_time": "2025-02-14T17: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, "name": { "fi": "Malmin sydän – Ystävänpäivä Ylä-Malmin torilla", "sv": "Malms hjärta – Vändag på Övre Malms torg", "en": "Heart of Malmi – Valentine’s day at Ylä-Malmi Square" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F31C684559FD446BF38096E8D57474D7/Malmin_sydan", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F31C684559FD446BF38096E8D57474D7/Malms_hjarta", "en": "http://www.malmitalo.fi/en/events/event/F31C684559FD446BF38096E8D57474D7/Heart_of_Malmi" }, "description": { "fi": "<p>Ystävänpäivänä Malmilla osoitetaan rakkautta ja rakennetaan yhdessä säihkyvä sydämenmuotoinen jäälinna Ylä-Malmin torille!</p><p>Malmin sydän on yhteisöllinen taideteos, joka syntyy kaupunkilaisten käsistä ja sydämistä. Yhdessä rakennettava valaistu jäälinna juhlistaa rakkautta, ystävyyttä ja yhteisöä!<br> <br>Osallistuminen on helppoa. Voit tehdä oman jääpalasi jäädyttämällä litran vettä esimerkiksi maitotölkissä. Halutessasi voit koristella jääpalan värein tai luonnonmateriaalein, kuten vaikka kukin tai kävyin - kaikki luonnolle ystävälliset koristelut ovat tervetulleita!<br> <br>Tuo tekemäsi jääpala Ylä-Malmin torille ystävänpäivänä, jolloin kokoonnumme rakentamaan jäälinnaa. Rakentamista ohjaa ja koordinoi erillinen vetäjä, joka varmistaa, että rakennus sujuu turvallisesti ja mukavassa hengessä.<br> <br>Tunnelmallinen ja osallistava tapahtuma sopii kaikille. Tervetuloa mukaan luomaan Malmille yhteinen rakkauden symboli!</p><p><b>Ohjelma:</b><br>Jäänveistäjä Kari Manninen veistämässä jäätä puoliltapäivin ennen tapahtumaa noin kello 16 asti.</p><p>16–19 Seikkailutaidekoulu: jäälinnan rakentamista<br>16–19 Iltakorva - kaupungin korvat kuuntelevat kaupunkilaisia<br>16–19 Helsingin Kaupunginteatterin runokioski<br>16–19 Klovni Dattarataa jakaa ja muotoilee ilmapallohahmoja<br>16.30–17 ja 17.30–18 Laura Helander: saksofonimusiikkia<br>17–17.30 ja 18–18.30 Aura of Puppets: Varpunen<br> <br>Kaupungin korvina toimivat projektijohtaja Salla Ahokas, placemaking-projektipäällikkö Silja Lindblad, Malmin kirjaston johtaja Kalle Riiheläinen sekä Yhdyskuntatyöntekijä Soile Atacocugu. Korvien mukana kahvitarjoilu!</p>", "sv": "<p>På vändagen visar Malmborna kärlek och bygger tillsammans ett gnistrande, hjärtformat isslott på Övre Malms torg!</p><p>Malms hjärta är ett gemenskapskonstverk som stadsborna skapar med sina händer och hjärtan. Vi firar kärleken, vänskapen och gemenskapen med ett upplyst isslott som vi bygger tillsammans!<br> <br>Det är enkelt att delta. Du kan göra din egen isbit genom att frysa in en liter vatten i till exempel en mjölkkartong. Om du vill kan du dekorera isbiten med färger eller naturmaterial, såsom blommor eller kottar – alla naturvänliga dekorationer är välkomna!<br> <br>Ta med dig isbiten till Övre Malms torg på vändagen, då vi samlas för att bygga isslottet. Bygget handleds och samordnas av en separat handledare som ser till att bygget utförs på ett säkert sätt och i en trevlig atmosfär.<br> <br>Ett stämningsfullt och inkluderande evenemang för alla. Välkommen att skapa en gemensam symbol för kärleken i Malm.</p>", "en": "<p>On Valentine's Day, love will be shown at Malmi by building a shining heart-shaped ice castle together at Ylä-Malmi Square!</p><p>The heart of Malmi is a communal artwork that is born from the hands and hearts of city residents. An illuminated ice castle built together celebrates love, friendship and community!<br> <br>Participation is easy. You can make your own ice cube by freezing a litre of water in a milk carton, for example. If you wish, you can decorate the ice cube with colours or natural materials, such as flowers or cones - all nature-friendly decorations are welcome!<br> <br>Bring your ice cube to Ylä-Malmi Square on Valentine’s Day, when we gather to build an ice castle. Building will be guided and coordinated by a separate leader, who ensures that the work runs safely and in a nice spirit.<br> <br>An atmospheric and participatory event is suitable for everyone. Welcome to create a common symbol of love for Malmi.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ystävänpäivänä Malmilla osoitetaan rakkautta ja rakennetaan yhdessä säihkyvä sydämenmuotoinen jäälinna Ylä-Malmin torille!", "sv": "På vändagen visar Malmborna kärlek och bygger tillsammans ett gnistrande, hjärtformat isslott på Övre Malms torg!", "en": "On Valentine's Day, love will be shown at Malmi by building a shining heart-shaped ice castle together at Ylä-Malmi Square!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65451/?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 €" }, "info_url": { "fi": "https://web.lippu.fi/palautus/", "en": "https://web.lippu.fi/palautus/" }, "description": null } ], "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, "name": { "fi": "Money For Nothing: Dire Straits Tribute – KONSERTTI ON PERUTTU!", "en": "Money For Nothing: Dire Straits Tribute – CONCERT CANCELLED!" }, "provider": { "fi": "Buzzard Ents", "en": "Buzzard Ents" }, "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" }, "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>" }, "provider_contact_info": null, "short_description": null, "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 €" }, "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/" }, "description": null } ], "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", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761791.jpg", "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, "name": { "fi": "Vuosaaren musiikkiopiston 20 vuotta -juhlakavalkadi", "sv": "Festkavalkaden Vuosaaren musiikkiopisto 20 år", "en": "Vuosaari Music Institute 20 Years celebratory cavalcade" }, "provider": null, "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" }, "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>" }, "provider_contact_info": 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." }, "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:65368", "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:32/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "18 € / 10,30 €", "sv": "18 € / 10,30 €", "en": "18 € / 10,30 €" }, "info_url": { "fi": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566938/", "sv": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566938/", "en": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566938/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153644, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-02T10:14:26.332645Z", "last_modified_time": "2025-01-02T10:14:26.332659Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761790.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153644/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-02T10:14:26.309997Z", "last_modified_time": "2025-02-11T14:15:29.677974Z", "date_published": null, "start_time": "2025-05-08T15: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, "name": { "fi": "Vapaan Tanssikoulun kevätnäytökset 2025", "sv": "Vapaa Tanssikoulus vårföreställningar 2025", "en": "Dance school Vapaa’s spring shows 2025" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F6FB1B853858A79FD02B04C7B14B1C34/Vapaan_Tanssikoulun_kevatnaytokset_2025", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F6FB1B853858A79FD02B04C7B14B1C34/Vapaa_Tanssikoulus_varforestallningar_2025", "en": "http://www.vuotalo.fi/en/events/event/F6FB1B853858A79FD02B04C7B14B1C34/Dance_school_Vapaa_s_spring_shows_2025" }, "description": { "fi": "<p>Tervetuloa Vuotaloon katsomaan Vapaan Tanssikoulun kevätnäytöksiä!</p><p>Vapaa Tanssikoulu on tanssitaiteen perusopetusta antava tanssikoulu, joka toimii Itä-Helsingin alueella. Tanssikoulumme järjestää joka kevät oppilasnäytökset, joissa esiintyy eri ikäisiä oppilaitamme. Tule mukaan nauttimaan liikkeestä, vauhdista ja esiintymisen ilosta!</p><p>Kesto: n. 90 min</p>", "sv": "<p>Välkommen till Nordhuset för att se Vapaa Tanssikoulus vårföreställningar!</p><p>Vapaa Tanssikoulu är en dansskola som ger grundläggande dansundervisning i östra Helsingfors. Vår dansskola ordnar varje vår elevföreställningar där våra elever i olika åldrar uppträder. Kom med och njut av rörelse, fart och glädje som uppträdandet ger!</p><p>Längd: cirka 90 min.</p>", "en": "<p>Welcome to Vuotalo to see Dance school Vapaa’s spring shows!</p><p>Dance school Vapaa provides basic dance art education, operating in the Eastern Helsinki area. Every spring, our dance school organises student showcases featuring our students of various ages. Come and enjoy the movement, pace and the joy of performing!</p><p>Duration: approx. 90 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Vuotaloon katsomaan Vapaan Tanssikoulun kevätnäytöksiä!", "sv": "Välkommen till Nordhuset för att se Vapaa Tanssikoulus vårföreställningar!", "en": "Welcome to Vuotalo to see Dance school Vapaa’s spring shows!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65368/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64569", "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": "40,90-45,90 €" }, "info_url": { "fi": "https://web.lippu.fi/palautus/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152485, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T14:17:58.842191Z", "last_modified_time": "2024-09-19T14:17:58.842215Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758112.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152485/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T14:17:58.805625Z", "last_modified_time": "2025-02-11T14:15:14.467837Z", "date_published": null, "start_time": "2025-03-12T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Rautavaara, Virta & Kärki 110v. – KONSERTTI ON PERUTTU!" }, "provider": { "fi": "MagnumLive Oy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4407EB33CBA2EE94064E65185CD7A90C/Rautavaara_Virta_Karki_110v_" }, "description": { "fi": "<p>Ke 12.3.2025 Rautavaara, Virta & Kärki 110v. -konsertti peruuntuu huonon ennakkolipunmyyniin takia.</p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta perjantaihin 14.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ä MagnumLive Oy sekä Savoy-teatteri ja Lippupiste pahoittelevat muutoksesta aiheutuvaa vaivaa!</p><p>***</p><p>Tapio Rautavaara, Olavi Virta ja Toivo Kärki 110 vuotta.</p><p>Kolmen suomalaisen iskelmätaivaan legendan syntymästä tulee kuluneeksi 110 vuotta. Kaikki nämä sävelten mestarit ovat syntyneet 1915, ja juhlavuoden kunniaksi on luvassa heidän musiikkiaan kunnioittava juhlakiertue. <br>Rautavaara, Virta & Kärki 110 vuotta -juhlakiertueella heidän laulujaan esittävät <b>Maria Tyyster</b>, <b>Mikael Konttinen</b> ja <b>Marco Lundberg</b>.</p><p>Kiertue alkaa 26. helmikuuta Turusta ja päättyy 15. maaliskuuta Lappeenrantaan. Muut kiertuepaikkakunnat ovat Oulu, Ylivieska, Jyväskylä, Mikkeli, Hyvinkää, Helsinki, Kuopio ja Tampere. Kiertueen säestyksestä vastaa Jani Heleniuksen orkesteri.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 10 min, sisältää väliajan</p>" }, "provider_contact_info": null, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64569/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:7f0b89d4-6519-441c-89e9-3464bf4e2b08", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "99" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=Mktest_06022025_p3_maksullisuuden_ruksi_poistettu54850495" }, "description": { "fi": "Hinnaksi merkitty ysiysi" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 213556, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T06:13:43.640622Z", "last_modified_time": "2025-02-11T06:13:43.640639Z", "name": "testikuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/7165da71-02e2-ef11-a731-000d3ab40ef6", "cropping": "", "photographer_name": "Hillegaard von Linssi", "alt_text": "testialt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/213556/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "created_time": "2025-02-11T13:56:49.182392Z", "last_modified_time": "2025-02-11T13:56:49.182412Z", "date_published": "2025-02-11T06:11:12Z", "start_time": "2025-02-14T07:00:00Z", "end_time": "2025-02-14T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": 11, "enrolment_start_time": "2025-01-27T08:00:00+02:00", "enrolment_end_time": "2025-02-07T08:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "Mktest 11022025 (asetettu maksullisuuden ruksi)" }, "provider": { "fi": "Business Helsinki FI" }, "info_url": null, "description": { "fi": "<div><div>Pitkä kuvaus FI</div></div>" }, "provider_contact_info": null, "short_description": { "fi": "Lyhyt kuvaus FI" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:7f0b89d4-6519-441c-89e9-3464bf4e2b08/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65605", "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: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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 214517, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T13:13:59.181156Z", "last_modified_time": "2025-02-11T13:13:59.181170Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760556.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/214517/?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:59.141464Z", "last_modified_time": "2025-02-11T13:13:59.256823Z", "date_published": null, "start_time": "2025-04-16T06:15: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, "name": { "fi": "Alakoulukino: Mavka", "sv": "Lågstadiekino: Mavka", "en": "Alakoulukino: Mavka" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1AD83B38F42A60046B48EF9B17C56599/Alakoulukino_Mavka", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1AD83B38F42A60046B48EF9B17C56599/Lagstadiekino_Mavka", "en": "http://www.vuotalo.fi/en/events/event/1AD83B38F42A60046B48EF9B17C56599/Alakoulukino_Mavka" }, "description": { "fi": "<p>Vihreitä arvoja korostava koko perheen animaatio Mavka: Metsän laulu on ukrainalais-amerikkalainen menestyselokuva, joka kannustaa rakentamaan siltoja yli rajojen.</p><p>Muinaisista ajoista saakka Ukrainan metsät ovat kätkeneet sisäänsä uskomattomia salaisuuksia ja myyttisiä olentoja.</p><p>Mavka on haltia ja metsän sielu, jonka tehtävä on suojella metsän sydäntä kaikilta vaaroilta, etenkin ihmisiltä. Lucas on läheisen kylän asukas, joka haaveilee urasta muusikkona. Kun heidän maailmansa kohtaavat, tapahtuu jotain odottamatonta: he rakastuvat. Mutta ihmisten ja metsän asukkaiden joutuessa törmäyskurssille vanhan sahalaitoksen perijättären juonien seurauksena, myös Mavka ja Lucas ajautuvat vastakkain. Voittaako rakkaus epäilyksen ja pelon?</p><p>Suomen elokuvasäätiön maahantuontituki 2024</p><p>Ensi-ilta: 02.08.2024<br>Ikäraja: 7<br>Pituus: 99 min.<br>Ohjaus: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Käsikirjoitus: Yaroslav Voytseshek, Lesya Ukrainka</p><p>Genret: Animaatio, Koko perheen elokuva<br>Kieli: suomi</p><p>Ryhmille ennakkoilmoittautuminen <u><a href=\"https://kultus.fi/fi/event/kultus:agkelzc4oi?text=mavka&returnPath=%2Fsearch\">kultus.fi-palvelussa</a></u></p>", "sv": "<p>Mavka, animationen för hela familjen som betonar gröna värderingar: Skogens väktare är en framgångsrik ukrainsk-amerikansk film som uppmuntrar att bygga broar över gränser.</p><p>Sedan urminnes tider har det i skogarna i Ukraina funnits otroliga hemligheter och mytiska varelser dolda för människor. Mavka är en alv och skogens själ vars uppgift är att skydda skogens hjärta från alla faror, särskilt från människor. Lucas bor i en närliggande by och drömmer om en karriär som musiker. När deras världar möts, händer något oväntat: de blir förälskade i varandra. Men när människor och skogsinvånare hamnar på kollisionskurs till följd av den lömska arvtagerskan för det gamla sågverket, ställs Mavka och Lucas också mot varandra. Kan kärleken övervinna tvivel och rädsla?<br>Finlands filmstiftelses importstöd 2024</p><p>Premiär: 2.8.2024<br>Åldersgräns: 7<br>Längd: 99 min.<br>Regi: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Manus: Yaroslav Voytseshek, Lesya Ukrainka</p><p>Genre: Animation</p><p>Språk: finska</p><p>Förhandsanmälan för grupper på <u><a href=\"https://kultus.fi/fi/event/kultus:agkelzc4oi?text=mavka&returnPath=%2Fsearch\">på kultus.fi</a></u></p>", "en": "<p>A family animation with green values, Mavka: The Forest Song is a Ukrainian-American blockbuster that encourages us to build bridges across borders.</p><p>Since ancient times, the Ukrainian forests have hidden incredible secrets and mythical creatures. Mavka is a female spirit and the soul of the forest, whose mission is to protect the heart of the forest from all dangers, especially people. Lucas is a resident of a nearby village who dreams of a career as a musician. When their worlds meet, something unexpected happens: they fall in love. But when the lives of people and forest dwellers collide as a result of the schemes of an heiress of an old sawmill, even Mavka and Lucas end up on opposite paths. Can love overcome doubt and fear?</p><p>Finnish Film Foundation’s import subsidy 2024</p><p>Premiere: 2 August 2024<br>Age limit: 7<br>Length: 99 min<br>Director: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Screenplay: Yaroslav Voytseshek, Lesya Ukrainka</p><p>Genres: Animation<br>Language: Finnish</p><p>Pre-registration for groups <u><a href=\"https://kultus.fi/fi/event/kultus:agkelzc4oi?text=mavka&returnPath=%2Fsearch\">at kultus.fi</a></u></p>" }, "provider_contact_info": null, "short_description": { "fi": "Vihreitä arvoja korostava koko perheen animaatio Mavka: Metsän laulu on ukrainalais-amerikkalainen menestyselokuva, joka kannustaa rakentamaan siltoja yli rajojen.", "sv": "Mavka, animationen för hela familjen som betonar gröna värderingar: Skogens väktare är en framgångsrik ukrainsk-amerikansk film som uppmuntrar att bygga broar över gränser.", "en": "A family animation with green values, Mavka: The Forest Song is a Ukrainian-American blockbuster that encourages us to build bridges across borders." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65605/?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, "info_url": null, "description": 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", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761445.jpg", "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, "name": { "fi": "Ilmiömäinen teatteripääsiäinen", "sv": "Fenomenal teaterpåsk", "en": "Phenomenal theatre Easter" }, "provider": null, "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" }, "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>" }, "provider_contact_info": 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!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65588/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64944", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153426, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T15:14:24.383037Z", "last_modified_time": "2024-12-12T15:14:24.383050Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761704.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153426/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T15:14:24.352044Z", "last_modified_time": "2025-02-11T12:13:48.233453Z", "date_published": null, "start_time": "2025-02-07", "end_time": "2025-03-01", "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, "name": { "fi": "Tree God of Life – Salih Hodhayfa", "sv": "Tree God of Life – Salih Hodhayfa", "en": "Tree God of Life – Salih Hodhayfa" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9A8274ECA494CAC38C21727165B143E3/Tree_God_of_Life", "sv": "http://www.caisa.fi/sv/evenemang/event/9A8274ECA494CAC38C21727165B143E3/Tree_God_of_Life", "en": "http://www.caisa.fi/en/events/event/9A8274ECA494CAC38C21727165B143E3/Tree_God_of_Life" }, "description": { "fi": "<p>Salih Hodhayfa tuo Caisan galleriaan vaikuttavan kokoisia maalauksia, joissa pohditaan puun merkityksiä.</p><p>Näyttely tutkii puun syvällistä symboliikkaa, joka on eri kulttuureissa yhdistetty elämään, suojeluun ja henkiseen viisauteen. Nykymaailman ympäristökriisien keskellä puu muistuttaa meitä luonnon haavoittuvuudesta ja sen merkityksestä niin fyysiselle ympäristölle kuin henkiselle hyvinvoinnillemme, kehottaen toimimaan tulevien sukupolvien hyväksi.</p><p>Monissa kulttuureissa puita on pidetty suojelijajumalina, jotka ilmentävät maan ja taivaan välistä henkistä yhteyttä. Puiden uskottiin kantavan elämän ydintä, toimien välittäjinä ihmisten ja universumin mysteerien välillä. Niitä on pidetty muinaisen tiedon vartijoina, jotka tarjoavat ohjausta ja suojaa niin fyysisesti kuin metafyysisesti niille, jotka etsivät lohtua tai valaistumista niiden oksien alla.</p><p>Ihmiset ovat pitkään löytäneet puiden varjosta turvapaikan, käyttäen niitä levon, pohdiskelun ja meditaation paikkoina. Niistä on tullut pyhiä tiloja, joissa voi pysähtyä ja löytää yhteyden luontoon, rauhaa ja selkeyttä elämän kaoottisen rytmin keskellä.</p><p>Puu toimii voimakkaana muistutuksena ekosysteemiemme haavoittuvuudesta ja kaikkien elävien olentojen keskinäisestä riippuvuudesta. Metsien häviäminen huolestuttavalla vauhdilla ja maapallon luonnonvarojen kasvava uhka korostavat puun merkitystä sekä toivon että toiminnan symbolina.</p><p>Kuuntele taiteilijan haastattelu Radio Helsingin Kaupunkielämää-ohjelmassa <u><a href=\"https://www.radiohelsinki.fi/podcastit/kuvataiteilija-salih-hodhayfa-tuo-caisan-galleriaan-vaikuttavan-kokoisia-maalauksia-joissa-pohditaan-puun-merkityksia/\">klikkaamalla tätä linkkiä</a></u></p>", "sv": "<p>Salih Hodhayfa hämtar målningar av imponerande storlek som begrundar trädets betydelser till Caisas galleri.</p><p>Utställningen utforskar trädets djupa symbolik, som i olika kulturer förknippas med liv, skydd och andlig visdom. Mitt i dagens miljökriser påminner trädet oss om naturens sårbarhet och dess betydelse för både vår fysiska miljö och vårt andliga välbefinnande, och uppmanar oss att agera till förmån för kommande generationer.</p><p>I många kulturer har träd betraktats som skyddsgudar som förkroppsligar den andliga förbindelsen mellan jord och himmel. Träden ansågs bära på livets innersta väsen och fungera som mellanhänder mellan människan och universums mysterier. De har betraktats som väktare av uråldrig kunskap, som erbjuder vägledning och skydd både fysiskt och metafysiskt till dem som söker tröst eller upplysning under deras grenar.</p><p>Människor har länge sökt skydd i skuggan av träd och använt dem som platser för vila, eftertanke och meditation. De har blivit heliga rum där man kan stanna upp och hitta kontakten till naturen, lugn och klarhet mitt i livets kaotiska rytm.</p><p>Trädet är en kraftfull påminnelse om hur sårbara våra ekosystem är och hur beroende alla levande varelser är av varandra. Den oroväckande avskogningen och det växande hotet mot planetens naturresurser understryker vikten av trä som en symbol för både hopp och handling.</p>", "en": "<p>Salih Hodhayfa brings impressively large paintings to Caisa’s gallery that explore the significance of trees.</p><p>The exhibition explores the profound symbolism of trees, which in different cultures are associated with life, protection and spiritual wisdom. Amidst the environmental crises of the modern world, trees remind us of the vulnerability of nature and its importance for both our physical environment and our spiritual well-being, urging us to act for the benefit of future generations.</p><p>In many cultures, trees have been regarded as guardian deities, embodying the spiritual connection between the earth and the sky. Trees were believed to carry the essence of life, acting as intermediaries between humans and the mysteries of the universe. They have been regarded as the guardians of ancient knowledge, offering guidance and protection both physically and metaphysically to those seeking solace or enlightenment underneath their branches.</p><p>People have long found refuge in the shade of trees, using them as places of rest, reflection and meditation. They have become sacred spaces where you can pause to connect with nature and find peace and clarity amidst the chaotic pace of life.</p><p>Trees serve as powerful reminders of the vulnerability of our ecosystems and the interdependence of all living things. The alarming rate of deforestation and the growing threat to the planet’s natural resources highlight the importance of trees as symbols of both hope and action.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Salih Hodhayfa tuo Caisan galleriaan vaikuttavan kokoisia maalauksia, joissa pohditaan puun merkityksiä.", "sv": "Salih Hodhayfa hämtar målningar av imponerande storlek som begrundar trädets betydelser till Caisas galleri.", "en": "Salih Hodhayfa brings impressively large paintings to Caisa’s gallery that explore the significance of trees." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64944/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65464", "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/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": "18-24 €, kannatuslippu 33,90 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3813557" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 161528, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-21T08:14:33.804714Z", "last_modified_time": "2025-01-21T08:14:33.804730Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764863.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161528/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T14:15:24.324263Z", "last_modified_time": "2025-02-11T11:14:29.919310Z", "date_published": null, "start_time": "2025-02-22T14: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, "name": { "fi": "Humanistispeksi 2025 - Laulu Thebasta" }, "provider": { "fi": "Humanistispeksi ry" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/FC45D415329DCFCABAA23C24998D0872/Humanistispeksi_2025_-_Laulu_Thebasta" }, "description": { "fi": "<p>Vehreiden laaksojen helmassa siintää seitsenporttinen Theban kaupunki. Kiireisten katujen ja torien keskellä kohoaa kuninkaan palatsi.<br> <br>Theban kuninkaalla on kaksi tytärtä. Toinen valmistautuu ottamaan vastaan tehtävän, jota on odottanut koko elämänsä. Toinen kerää rohkeutta tavoitellakseen rakkautta. Samaan aikaan kuninkaan palatsissa pitkään pinnan alle kätketty katkeruus uhkaa läikkyä yli. Kunnianjanoinen taiteilija on valmis tekemään lähes mitä tahansa noustakseen tähtiin. Kaksi rakastavaista epäröivät ottaa lopullisen askeleen toisiaan kohti.<br> <br>Theban yllä riippuu varjo, josta kukaan ei vaikuta välittävän. Theban sisällä hautuu sekasorto, jota kukaan ei vaikuta huomaavan.<br> <br>Kun kaikki sinulle rakas on uhattuna, kenen joukoissa seisot? Minkä hinnan olet valmis maksamaan kunniasta? Kuka laulaa muistolaulusi, kun et ole enää täällä?<br> <br>Antiikin kreikkalaisen teatterin inspiroima Laulu Thebasta on ikiaikainen tarina ihmisyydestä – kunniasta, rakkaudesta, kateudesta, ylpeydestä ja vääristä valinnoista.<br> <br>Ikäsuositus: 12+<br> <br>Kesto n. 3 h, sisältää väliajan</p>" }, "provider_contact_info": null, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27052, "next": "