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&hide_recurring_children=true&page=120
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=121", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=119" }, "data": [ { "id": "kulke:65033", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153556, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T08:15:16.455150Z", "last_modified_time": "2024-12-30T08:15:16.455180Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759431.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153556/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T08:15:16.422261Z", "last_modified_time": "2024-12-30T08:15:16.574970Z", "date_published": null, "start_time": "2025-03-03T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tutkija, kääntäjä, kuvittaja ja kirjailija Virpi Hämeen-Anttila saapuu Kanneltalon kahvilan stagelle puhumaan uusimmasta teoksestaan ja yleisesti tuotannostaan.", "sv": "Forskaren, översättaren, illustratören och författaren Virpi Hämeen-Anttila kommer till kaféets stage i Gamlasgården för att berätta om sitt nyaste verk och om sin produktion i allmänhet.", "en": "Researcher, translator, illustrator and writer Virpi Hämeen-Anttila comes to the Kanneltalo café stage to discuss her latest work and her body of work in general." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3A807277970069E86850A2019343B82B/Kirjailijavieraana_Virpi_Hameen-Anttila", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3A807277970069E86850A2019343B82B/Forfattarbesok_Virpi_Hameen-Anttila", "en": "http://www.kanneltalo.fi/en/events/event/3A807277970069E86850A2019343B82B/Guest_author_Virpi_Hameen-Anttila" }, "location_extra_info": null, "name": { "fi": "Kirjailijavieraana Virpi Hämeen-Anttila – Maksuttomat maanantait", "sv": "Författarbesök: Virpi Hämeen-Anttila – Kostnadsfria måndagar", "en": "Guest author: Virpi Hämeen-Anttila – Free Mondays" }, "description": { "fi": "<p>Tutkija, kääntäjä, kuvittaja ja kirjailija Virpi Hämeen-Anttila saapuu Kanneltalon kahvilan stagelle puhumaan uusimmasta teoksestaan ja yleisesti tuotannostaan.</p><p>Virpi Hämeen-Anttila valmistui Helsingin yliopistosta filosofian maisteriksi vuonna 1996. Hän teki väitöskirjan vanhan intialaisen kertomakirjallisuuden teoriasta. Hämeen-Anttila on toiminut opettajana Helsingin yliopistossa vuodesta 1987 opetusaloinaan sanskritin kieli sekä Intian kirjallisuus, historia, filosofia ja kulttuurihistoria.</p><p>Hämeen-Anttilaa haastattelee FM Katri Sola.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.</p><p>Kesto: 60 min.</p>", "sv": "<p>Forskaren, översättaren, illustratören och författaren Virpi Hämeen-Anttila kommer till kaféets stage i Gamlasgården för att berätta om sitt nyaste verk och om sin produktion i allmänhet.</p><p>Virpi Hämeen-Anttila utexaminerades som filosofie magister från Helsingfors universitet år 1996. Hon skrev sin avhandling om den indiska berättande litteraturens teori. Hämeen-Anttila har fungerat som lärare i sanskrit och indisk litteratur, historia, filosofi och kulturhistoria vid Helsingfors universitet sedan år 1987.</p><p>Hämeen-Anttila intervjuas av fil.mag. Katri Sola.</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.</p><p>Längd: 60 min.<br>Språk: finska</p>", "en": "<p>Researcher, translator, illustrator and writer Virpi Hämeen-Anttila comes to the Kanneltalo café stage to discuss her latest work and her body of work in general.</p><p>Virpi Hämeen-Anttila graduated from the University of Helsinki with a Master’s Degree in Philosophy in 1996. She wrote her thesis on the theory of ancient Indian narrative literature. Hämeen-Anttila has been a lecturer at the University of Helsinki since 1987, teaching Sanskrit and Indian literature, history, philosophy and cultural history.</p><p>Hämeen-Anttila is interviewed by Katri Sola, MA.</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.</p><p>Duration: 60 min<br>Language: Finnish</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65033/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65020", "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: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153555, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T08:15:16.078846Z", "last_modified_time": "2024-12-30T08:15:16.078872Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763521.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153555/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T08:15:16.038772Z", "last_modified_time": "2024-12-30T08:15:16.181328Z", "date_published": null, "start_time": "2025-03-01T10:00:00Z", "end_time": "2025-03-01T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "HELsign tulee taas! Koko perheen viittomakielinen kulttuuritapahtuma Kanneltalossa.", "sv": "HELsign återvänder! Ett kulturevenemang på teckenspråk för hela familjen i Gamlasgården.", "en": "HELsign is back! A sign language cultural event for the whole family at Cultural Centre Kanneltalo." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1C43755CEFA805D665C9CEE6778C1C95/HELsign_2025_Viittomakielinen_kulttuuritapahtuma_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1C43755CEFA805D665C9CEE6778C1C95/HELsign_2025_Kulturevenemang_pa_teckensprak_", "en": "http://www.kanneltalo.fi/en/events/event/1C43755CEFA805D665C9CEE6778C1C95/HELsign_2025_A_sign_language_cultural_event" }, "location_extra_info": null, "name": { "fi": "HELsign 2025 – Viittomakielinen kulttuuritapahtuma", "sv": "HELsign 2025 – Kulturevenemang på teckenspråk", "en": "HELsign 2025 – A sign language cultural event" }, "description": { "fi": "<p>HELsign tulee taas! Koko perheen viittomakielinen kulttuuritapahtuma Kanneltalossa.</p><p>Ohjelmassa on kivoja viittomakielisiä esityksiä Kanneltalon teatterisalissa, sekä askartelua ja muuta mukavaa puuhailua talon aulassa. HELsign-tapahtumaan ovat tervetulleita kaikenikäiset lapsista vanhuksiin! <br> <br>Koko HELsign 2025-tapahtumaan on ilmainen pääsy.</p><p>Yhteistyössä Kuurojen Liitto, Humak ja Kanneltalo</p>", "sv": "<p>HELsign återvänder! Ett kulturevenemang på teckenspråk för hela familjen i Gamlasgården.</p><p>I programmet ingår skojiga föreställningar på teckenspråk i Gamlasgårdens teatersal samt pyssel och andra trevliga aktiviteter i husets lobby. Alla åldrar är välkomna till HELsign-evenemanget, från barn till åldringar! <br> <br>Inträdet är gratis till hela HELsign 2025-evenemanget.</p><p>I samarbete Finlands dövas förbund, Humak och Gamlasgården</p>", "en": "<p>HELsign is back! A sign language cultural event for the whole family at Cultural Centre Kanneltalo.</p><p>The programme will include fun sign language performances in Kanneltalo’s theatre hall, as well as crafts and other fun activities in the lobby. HELsign is open to all ages, from children to older people! <br> <br>The entire HELsign 2025 event is free of charge.</p><p>In cooperation with Kuurojen Liitto (The Finnish Association of the Deaf), University of Applied Sciences and Cultural Centre Kanneltalo</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65020/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65037", "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: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153545, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-27T15:13:50.454822Z", "last_modified_time": "2024-12-27T15:13:50.454838Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763669.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-27T15:13:50.416706Z", "last_modified_time": "2024-12-30T08:15:10.786714Z", "date_published": null, "start_time": "2025-02-03T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana.", "sv": "Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.", "en": "This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CF58C6B7294FC01252A2559982BD005F/Kino_Kuutamo_Kapy_selan_alla_12_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CF58C6B7294FC01252A2559982BD005F/Kino_Kuutamo_En_kotte_under_ryggen_12_", "en": "http://www.kanneltalo.fi/en/events/event/CF58C6B7294FC01252A2559982BD005F/Kino_Kuutamo_Skin_skin_Kapy_selan_alla_" }, "location_extra_info": null, "name": { "fi": "Kino Kuutamo: Käpy selän alla (12) – Maksuttomat maanantait", "sv": "Kino Kuutamo: En kotte under ryggen (12) – Kostnadsfria måndagar", "en": "Kino Kuutamo: Skin, skin (Käpy selän alla) – Free Mondays" }, "description": { "fi": "<p>Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana.</p><p>Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös.<br><b>Käpy selän alla</b> <br>Neljän kaupunkilaisnuoren telttaretkestä kertova Käpy selän alla nosti pintaan 1960-luvun puolivälin opiskelijanuorison asenteet ja tuntemukset ja muotoili ne tavalla, josta nuoriso saattoi tunnistaa itsensä.<br>Elokuva on yksi suomalaisen elokuvahistorian merkkipaaluista. Se valmistui studiojärjestelmän romahtamisen jälkeen suomalaisen elokuvan kriisin ollessa pahimmillaan. Se merkitsi käännekohtaa ja toi uusia tuulia ummehtuneeseen elokuvakulttuuriin ja kotimaiseen filmituotantoon.</p><p>Ikäraja: K12<br>Julkaisuvuosi: 1966<br>Kesto: 89 min.<br>Ikäraja: 12<br>Genre(t): draama<br>Kielet: suomi<br>Ohjaus: Mikko Niskanen<br>Käsikirjoitus: Marja-Leena Mikkola<br>Näyttelijät: Kristiina Halkola, Kirsti Wallasvaara, Pekka Autiovuori ja Eero Melasniemi</p><p>Vapaa pääsy</p>", "sv": "<p>Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.</p><p>Filmhistorikern fil.dr. Harri Kilpi introducerar kvällens film kl. 17–17.45. Efter föreläsningen inleds den avgiftsfria visningen av filmen kl. 18.</p><p><b>En kotte under ryggen</b> <br>En kotte under ryggen berättar om en tältutfärd för fyra unga från staden, och lyfte fram attityderna och känslorna hos unga studerande i mitten av 1960-talet samt formulerade dem på ett sätt som hjälpte de unga att känna igen sig själva.</p><p>Filmen är en av milstolparna i den finländska filmhistorien. Den blev färdig efter att studiosystemet hade kollapsat och den finländska filmen befann sig i sin värsta kris. Den blev en vändpunkt och hämtade nya vindar till den unkna filmkulturen och den inhemska filmproduktionen.</p><p>Åldersgräns: F 12<br>Publikationsår: 1966<br>Längd: 89 min.<br>Åldersgräns: 12<br>Genre(r): drama<br>Språk: finska<br>Regi: Mikko Niskanen<br>Manus: Marja-Leena Mikkola<br>I rollerna: Kristiina Halkola, Kirsti Wallasvaara, Pekka Autiovuori och Eero Melasniemi</p>", "en": "<p>This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love.</p><p>Film history expert, PhD Harri Kilpi will introduce the film of the evening from 17:00 to 17:45. After the introduction, the free screening of the film begins at 18:00.</p><p><b>Skin, skin (Käpy selän alla)</b> <br>Skin, Skin tells a story about four young people from the city who take a camping trip. The film highlighted the attitudes and feelings of the student youth of the mid-1960s, framing them in a way that young people could identify with.</p><p>The film is one of the milestones in Finnish film history. It was made after the collapse of the studio system at the height of the Finnish film crisis. It marked a turning point and brought new ideas to the stagnating film culture and domestic film production.</p><p>Age limit: 12+<br>Release year: 1966<br>Duration: 89 min<br>Age limit: 12<br>Genre(s): drama<br>Languages: Finnish<br>Director: Mikko Niskanen<br>Screenplay: Marja-Leena Mikkola<br>Cast: Kristiina Halkola, Kirsti Wallasvaara, Pekka Autiovuori ja Eero Melasniemi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65037/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64731", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/mimmit-2/mimmit-tyttoesankarit-helsinki-3787540/", "sv": "https://www.lippu.fi/artist/mimmit-2/mimmit-tyttoesankarit-helsinki-3787540/", "en": "https://www.lippu.fi/artist/mimmit-2/mimmit-tyttoesankarit-helsinki-3787540/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152939, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-04T10:14:52.276931Z", "last_modified_time": "2024-11-04T10:14:52.276948Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759391.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152939/?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": "2024-11-04T10:14:52.252701Z", "last_modified_time": "2024-12-30T08:15:08.734554Z", "date_published": null, "start_time": "2025-01-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tyttösankarit-konsertissa on tyttöenergiaa vaikka muille jakaa! Konsertissa tavataan monenlaisia tyttöjä ja kuullaan tarinoita naisista, jotka muuttivat teoillaan maailmaa.", "sv": "På konserten Tyttösankarit (Flickhjältar) finns det flickenergi så att det förslår! På konserten träffar vi många olika flickor och får höra historier om kvinnor som förändrade världen genom sina handlingar.", "en": "The Tyttösankarit (Girl Heroes) concert has girl energy to spare! The concert will introduce you to a wide range of girls and hear stories about women who changed the world through their actions." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D0BCE963FCA6C6BA01366271CCE272E6/MIMMIT_Tyttosankarit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D0BCE963FCA6C6BA01366271CCE272E6/MIMMIT_Tyttosankarit", "en": "http://www.kanneltalo.fi/en/events/event/D0BCE963FCA6C6BA01366271CCE272E6/MIMMIT_Tyttosankarit" }, "location_extra_info": null, "name": { "fi": "MIMMIT: Tyttösankarit", "sv": "MIMMIT: Tyttösankarit", "en": "MIMMIT: Tyttösankarit" }, "description": { "fi": "<p>Tyttösankarit-konsertissa on tyttöenergiaa vaikka muille jakaa! Konsertissa tavataan monenlaisia tyttöjä ja kuullaan tarinoita naisista, jotka muuttivat teoillaan maailmaa.</p><p>Moni varmaan tuntee maailman vahvimman tytön, mutta kuka oli ensimmäinen nainen, joka voitti Nobelin palkinnon? Entä kuka katosi uhkarohkealla maailmanympärilennollaan?<br> <br>Myös ihan tavalliset tytöt voivat olla sankareita. Millaista onkaan Anjun elämä Intiassa, ja mitä puuhailee korokotiilivirran Marama? Tyttösankarit-konsertissa juhlistetaan tyttöjen elämää ympäri maailmaa!<br> <br>Värikkäät tausta-animaatiot kuljettavat katsojaa ympäri maailmaa ja myös yleisö pääsee mukaan laulamaan, tanssimaan, viittomaan ja nauttimaan mukaansatempaavasta musiikista. Konsertissa on mukana myös tukiviittoja Siina, joten konsertti on viestinnällisesti esteetön. <br> <br>Mimmit on yksi Suomen tunnetuimmista lastenmusiikkiyhtyeistä. Mimmit ovat tehneet 1000 konserttia Suomessa ja ulkomailla ja julkaisseet kahdeksan levyä suomeksi ja kaksi ruotsiksi. Ystävyys-levy valittiin vuoden lastenlevyksi 2017. Yhteensä Mimmien levyt ovat saavuttaneet kolme Emma-ehdokkuutta. Mimmit-musiikkivideoita on katsottu Youtubessa yli 16 miljoonaa kertaa ja Mimmit-lauluja on striimattu yli 6 miljoonaa kertaa.</p><p>Kesto: 1 tunti<br>Kieli: suomi</p>", "sv": "<p>På konserten Tyttösankarit (Flickhjältar) finns det flickenergi så att det förslår! På konserten träffar vi många olika flickor och får höra historier om kvinnor som förändrade världen genom sina handlingar.</p><p>Många känner säkert till världens starkaste flicka, men vem var den första kvinnan som vann Nobelpriset? Och vem var det som försvann på sin våghalsiga världenruntflygning?<br> <br>Även alldeles vanliga flickor kan vara hjältar. Hurudant är Anjus liv i Indien, och vad sysslar krokodilflodens Marama med? På konserten Tyttösankarit firar vi flickors liv på olika håll i världen!<br> <br>De färggranna bakgrundsanimationerna tar tittaren med sig kring världen, och även publiken får sjunga med, dansa, stödteckna och njuta av den medryckande musiken. Stödtecknaren Siina deltar också i konserten, så den är kommunikationsmässigt tillgänglig. <br> <br>Mimmit är ett av Finlands mest kända barnmusikband. Mimmit har gett över 1 000 konserter i Finland och utomlands, och släppt åtta album på finska och två på svenska. Albumet Ystävyys valdes till årets barnalbum år 2017. Mimmits album har fått totalt tre Emma-nomineringar. Mimmits musikvideor har över 16 miljoner visningar på YourTube, och Mimmit-sångerna har streamats över 6 miljoner gånger.</p><p>Längd: 1 timme<br>Språk: finska</p>", "en": "<p>The Tyttösankarit (Girl Heroes) concert has girl energy to spare! The concert will introduce you to a wide range of girls and hear stories about women who changed the world through their actions.</p><p>Many of you probably know the strongest girl in the world, but who was the first woman to win the Nobel Prize? And who disappeared on their daredevil round-the-world flight?<br> <br>Ordinary girls can be heroes, too. What’s life like for Anju in India, and what’s Marama from the Crocodile River up to? The Tyttösankarit concerts celebrate the lives of girls around the world!<br> <br>Colourful background animations transport viewers around the world, and the audience can join in the singing, dancing, signing and enjoying the engaging music. The concert will also include Siina, a supportive interpreter, so the concert will have accessible communication. <br> <br>Mimmit is one of the most famous children’s music groups in Finland. Mimmit have performed 1000 concerts in Finland and abroad and have released eight albums in Finnish and two in Swedish. Their Ystävyys album was chosen as the children’s album of the year in 2017. In total, Mimmit’s albums have received three Emma nominations. Mimmit’s music videos have been viewed over 16 million times on YouTube, and their songs have been streamed over 6 million times.</p><p>Duration: 1 hour<br>Language: Finnish</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64731/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64741", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153366, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T13:14:07.734124Z", "last_modified_time": "2024-12-10T13:14:07.734142Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759422.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153366/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T13:14:07.708614Z", "last_modified_time": "2024-12-30T08:15:06.853616Z", "date_published": null, "start_time": "2025-01-20T11:00:00Z", "end_time": "2025-01-20T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa mukaan tutustumaan ja keskustelemaan mahdollisuuksista edistää omaa hyvinvointia ja terveyttä!", "sv": "Välkommen med att ta del av och diskutera om möjligheter att främja sitt välbefinnande och sin hälsa!", "en": "Join us to learn more and discuss ways to promote your well-being and health!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AE2736DDA19DB6651C4C198F7E2BE368/Hyvinvoinnin_ja_terveyden_edistamisen_messupaiva_senioreille", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AE2736DDA19DB6651C4C198F7E2BE368/Massdag_for_seniorer_om_framjande_av_valbefinnande_och_halsa", "en": "http://www.kanneltalo.fi/en/events/event/AE2736DDA19DB6651C4C198F7E2BE368/Exhibition_day_promoting_health_and_well-being_for_seniors" }, "location_extra_info": null, "name": { "fi": "Hyvinvoinnin ja terveyden edistämisen messupäivä senioreille", "sv": "Mässdag för seniorer om främjande av välbefinnande och hälsa", "en": "Exhibition day promoting health and well-being for seniors" }, "description": { "fi": "<p>Tervetuloa mukaan tutustumaan ja keskustelemaan mahdollisuuksista edistää omaa hyvinvointia ja terveyttä!</p><p>Tapahtuma on suunnattu yli 65-vuotiaille helsinkiläisille. Mukana on monipuolisesti eri toimijoita ja palveluntarjoajia.</p><p>Tapahtuma itsessään on maksuton, mutta näytteilleasettajilla on myynnissä heidän omia tuotteitaan ja palveluitaan. Messupäivän tarkemman ohjelman voit katsoa: https://www.kannelmaenvoimistelijat.fi/seniorit/</p><p>Vapaa pääsy</p><p>Yhteistyössä Kanneltalo ja Kannelmäen Voimistelijat ry<br>Paikat: Galleria ja kahvilan stage</p>", "sv": "<p>Välkommen med att ta del av och diskutera om möjligheter att främja sitt välbefinnande och sin hälsa!</p><p>Evenemanget är riktat till över 65-åriga helsingforsare. Ett mångsidigt utbud av aktörer och tjänsteproducenter deltar. Själva evenemanget är avgiftsfritt, men utställarna säljer sina egna produkter och tjänster.</p><p>Du hittar ett mer exakt program för mässdagen på: https://www.kannelmaenvoimistelijat.fi/seniorit/</p><p>Fritt inträde</p>", "en": "<p>Join us to learn more and discuss ways to promote your well-being and health!</p><p>The event is aimed at Helsinki residents over 65 years old. A wide range of different operators and service providers are involved. The event itself is free of charge, but exhibition vendors will have their own products and services for sale.</p><p>For a more detailed programme for the exhibition day, please see: https://www.kannelmaenvoimistelijat.fi/seniorit/</p><p>Free admission</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64741/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64947", "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: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153356, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T12:14:38.300814Z", "last_modified_time": "2024-12-10T12:14:38.300840Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761801.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153356/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T12:14:38.269676Z", "last_modified_time": "2024-12-30T08:15:05.630830Z", "date_published": null, "start_time": "2025-01-15", "end_time": "2025-01-17", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!", "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!", "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5E32130FFE86AB5D972D49E08DE4F21A/Suojelevat_symbolit_-taidepaja", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5E32130FFE86AB5D972D49E08DE4F21A/Skyddande_symboler_konstworkshop", "en": "http://www.kanneltalo.fi/en/events/event/5E32130FFE86AB5D972D49E08DE4F21A/Protective_Symbols_art_workshop" }, "location_extra_info": null, "name": { "fi": "Suojelevat symbolit -taidepaja", "sv": "Skyddande symboler – konstworkshop", "en": "Protective Symbols art workshop" }, "description": { "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.</p><p>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule siis Kanneltalon galleriaan ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa!</p><p><b>Taidepaja on avoinna keskiviikosta perjantaihin 15.–17.1. klo 15.30–16.30.</b></p><p>Vapaa pääsy.</p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi.</p>", "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Gamlasgårdens galleri och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen onsdag till fredag 15–17.1. kl. 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>", "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come visit the Kanneltalo gallery, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open from Wednesday to Friday, 15–17 January, from 15:30 to 16:30.</p><p>Free admission.</p><p>The Helsinki Biennial will take place from 8 June to 21 September 2025, and the event venues will be HAM Helsinki Art Museum, Vallisaari and the Esplanade.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64947/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65110", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/" }, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153379, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-11T08:15:34.459827Z", "last_modified_time": "2024-12-11T08:15:34.459859Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745830.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153379/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-11T08:15:34.431818Z", "last_modified_time": "2024-12-30T07:14:03.491846Z", "date_published": null, "start_time": "2024-12-21T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7D2618F6B75DF64AFA7DFBC6B68297EB/Wicked_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7D2618F6B75DF64AFA7DFBC6B68297EB/Wicked_7_", "en": "http://www.malmitalo.fi/en/events/event/7D2618F6B75DF64AFA7DFBC6B68297EB/Wicked_7_" }, "location_extra_info": null, "name": { "fi": "Wicked (7) – Kino Helios", "sv": "Wicked (7) – Kino Helios", "en": "Wicked (7) – Kino Helios" }, "description": { "fi": "<p>Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista.</p><p>Ihmemaa Ozin noitien tarinan kertovassa elokuvassa päärooleissa nähdään Emmy-, Grammy- ja Tony-palkittu valovoimainen Cynthia Erivo (Harriet, Broadwayn Häivähdys purppuraa) vihreän ihonsa vuoksi väärinymmärrettynä ja todellisia voimiaan etsivänä Elphabana sekä Grammy-voittaja ja kansainvälinen supertähti Ariana Grande Glindana, suosittuna, etuoikeutettuna ja kunnianhimoisena nuorena naisena, joka etsii vielä sydämensä todellista ääntä.</p><p>Kaksikko tapaa aloittaessaan taikuuden opinnot Shizin maagisessa yliopistossa ja heidän välilleen muodostuu odottamaton, mutta syvä ystävyys. Kun he kohtaavat Ozin Velhon, heidän ystävyytensä joutuu koetukselle ja elämänsä erkanevat eri poluille. Suosion jano saa Glindan viehättyämään vallasta, kun taas Elphaban päätöksellä pysyä rehellisenä itselleen ja muille on odottamattomia ja järkyttäviä vaikutuksia hänen kohtaloonsa. Heidät tullaan myöhemmin tuntemaan Ozin ihmemaassa Glinda Hyvänä ja Lännen ilkeänä noitana.</p><p>Oscar®-voittaja Michelle Yeoh nähdään elokuvassa Shiz-yliopiston loisteliaana rehtorina Madame Morriblena, Jonathan Bayley (Bridgerton, Fellow Travelers) Fiyerona, veitikkamaisena ja huolettomana prinssinä, Tony-ehdokas Ethan Slater (Broadwayn Paavo Pesusieni, Fosse/Verdon) Bogina, avuliaana munskottioppilaana, Marisa Bode elokuvadebyytissään Nessarosena, Elphaban suositumpana siskona, sekä popkulttuuri-ikoni Jeff Goldblum Ozin ihmeellisenä Velhona.</p><p>Elokuvassa nähdään myös Pfannee ja ShenShen, Glindan ystävät, joita näyttelevät Emmy-ehdokas Bowen Yang (Saturday Night Live) ja Bronwyn James (Harlots), sekä Tony-ehdokas Keala Settlen (The Greatest Showman) näyttelemä elokuvaan luotu uusi hahmo, Neiti Coddle.</p><p>Jon M. Chun (Crazy Rich Asians, In the Heights) ohjaama Wicked on kaksiosaisen kulttuurielämyksen ensimmäinen osa. Wicked Osa II tulee elokuvateattereihin loppuvuodesta 2025.</p><p>Ikäraja: 7<br>Kesto: 160 min.<br>Ensi-ilta: 22.11.2024<br>Elokuva on tekstitetty suomeksi ja ruotsiksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65110/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65109", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/" }, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153378, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-11T08:15:33.891943Z", "last_modified_time": "2024-12-11T08:15:33.891965Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745827.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153378/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-11T08:15:33.855335Z", "last_modified_time": "2024-12-30T07:14:03.075236Z", "date_published": null, "start_time": "2024-12-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/183FB3457C225B1C50F0386FA5D62A7A/Wicked_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/183FB3457C225B1C50F0386FA5D62A7A/Wicked_7_", "en": "http://www.malmitalo.fi/en/events/event/183FB3457C225B1C50F0386FA5D62A7A/Wicked_7_" }, "location_extra_info": null, "name": { "fi": "Wicked (7) – Kino Helios", "sv": "Wicked (7) – Kino Helios", "en": "Wicked (7) – Kino Helios" }, "description": { "fi": "<p>Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista.</p><p>Ihmemaa Ozin noitien tarinan kertovassa elokuvassa päärooleissa nähdään Emmy-, Grammy- ja Tony-palkittu valovoimainen Cynthia Erivo (Harriet, Broadwayn Häivähdys purppuraa) vihreän ihonsa vuoksi väärinymmärrettynä ja todellisia voimiaan etsivänä Elphabana sekä Grammy-voittaja ja kansainvälinen supertähti Ariana Grande Glindana, suosittuna, etuoikeutettuna ja kunnianhimoisena nuorena naisena, joka etsii vielä sydämensä todellista ääntä.</p><p>Kaksikko tapaa aloittaessaan taikuuden opinnot Shizin maagisessa yliopistossa ja heidän välilleen muodostuu odottamaton, mutta syvä ystävyys. Kun he kohtaavat Ozin Velhon, heidän ystävyytensä joutuu koetukselle ja elämänsä erkanevat eri poluille. Suosion jano saa Glindan viehättyämään vallasta, kun taas Elphaban päätöksellä pysyä rehellisenä itselleen ja muille on odottamattomia ja järkyttäviä vaikutuksia hänen kohtaloonsa. Heidät tullaan myöhemmin tuntemaan Ozin ihmemaassa Glinda Hyvänä ja Lännen ilkeänä noitana.</p><p>Oscar®-voittaja Michelle Yeoh nähdään elokuvassa Shiz-yliopiston loisteliaana rehtorina Madame Morriblena, Jonathan Bayley (Bridgerton, Fellow Travelers) Fiyerona, veitikkamaisena ja huolettomana prinssinä, Tony-ehdokas Ethan Slater (Broadwayn Paavo Pesusieni, Fosse/Verdon) Bogina, avuliaana munskottioppilaana, Marisa Bode elokuvadebyytissään Nessarosena, Elphaban suositumpana siskona, sekä popkulttuuri-ikoni Jeff Goldblum Ozin ihmeellisenä Velhona.</p><p>Elokuvassa nähdään myös Pfannee ja ShenShen, Glindan ystävät, joita näyttelevät Emmy-ehdokas Bowen Yang (Saturday Night Live) ja Bronwyn James (Harlots), sekä Tony-ehdokas Keala Settlen (The Greatest Showman) näyttelemä elokuvaan luotu uusi hahmo, Neiti Coddle.</p><p>Jon M. Chun (Crazy Rich Asians, In the Heights) ohjaama Wicked on kaksiosaisen kulttuurielämyksen ensimmäinen osa. Wicked Osa II tulee elokuvateattereihin loppuvuodesta 2025.</p><p>Ikäraja: 7<br>Kesto: 160 min.<br>Ensi-ilta: 22.11.2024<br>Elokuva on tekstitetty suomeksi ja ruotsiksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65109/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65108", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/" }, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153094, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-27T11:14:30.738550Z", "last_modified_time": "2024-11-27T11:14:30.738577Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745821.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153094/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-27T11:14:30.710520Z", "last_modified_time": "2024-12-30T07:14:01.868326Z", "date_published": null, "start_time": "2024-12-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/707A0E79295B12A0A3E44E84881C0813/Wicked_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/707A0E79295B12A0A3E44E84881C0813/Wicked_7_", "en": "http://www.malmitalo.fi/en/events/event/707A0E79295B12A0A3E44E84881C0813/Wicked_7_" }, "location_extra_info": null, "name": { "fi": "Wicked (7) – Kino Helios", "sv": "Wicked (7) – Kino Helios", "en": "Wicked (7) – Kino Helios" }, "description": { "fi": "<p>Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista.</p><p>Ihmemaa Ozin noitien tarinan kertovassa elokuvassa päärooleissa nähdään Emmy-, Grammy- ja Tony-palkittu valovoimainen Cynthia Erivo (Harriet, Broadwayn Häivähdys purppuraa) vihreän ihonsa vuoksi väärinymmärrettynä ja todellisia voimiaan etsivänä Elphabana sekä Grammy-voittaja ja kansainvälinen supertähti Ariana Grande Glindana, suosittuna, etuoikeutettuna ja kunnianhimoisena nuorena naisena, joka etsii vielä sydämensä todellista ääntä.</p><p>Kaksikko tapaa aloittaessaan taikuuden opinnot Shizin maagisessa yliopistossa ja heidän välilleen muodostuu odottamaton, mutta syvä ystävyys. Kun he kohtaavat Ozin Velhon, heidän ystävyytensä joutuu koetukselle ja elämänsä erkanevat eri poluille. Suosion jano saa Glindan viehättyämään vallasta, kun taas Elphaban päätöksellä pysyä rehellisenä itselleen ja muille on odottamattomia ja järkyttäviä vaikutuksia hänen kohtaloonsa. Heidät tullaan myöhemmin tuntemaan Ozin ihmemaassa Glinda Hyvänä ja Lännen ilkeänä noitana.</p><p>Oscar®-voittaja Michelle Yeoh nähdään elokuvassa Shiz-yliopiston loisteliaana rehtorina Madame Morriblena, Jonathan Bayley (Bridgerton, Fellow Travelers) Fiyerona, veitikkamaisena ja huolettomana prinssinä, Tony-ehdokas Ethan Slater (Broadwayn Paavo Pesusieni, Fosse/Verdon) Bogina, avuliaana munskottioppilaana, Marisa Bode elokuvadebyytissään Nessarosena, Elphaban suositumpana siskona, sekä popkulttuuri-ikoni Jeff Goldblum Ozin ihmeellisenä Velhona.</p><p>Elokuvassa nähdään myös Pfannee ja ShenShen, Glindan ystävät, joita näyttelevät Emmy-ehdokas Bowen Yang (Saturday Night Live) ja Bronwyn James (Harlots), sekä Tony-ehdokas Keala Settlen (The Greatest Showman) näyttelemä elokuvaan luotu uusi hahmo, Neiti Coddle.</p><p>Jon M. Chun (Crazy Rich Asians, In the Heights) ohjaama Wicked on kaksiosaisen kulttuurielämyksen ensimmäinen osa. Wicked Osa II tulee elokuvateattereihin loppuvuodesta 2025.</p><p>Ikäraja: 7<br>Kesto: 160 min.<br>Ensi-ilta: 22.11.2024<br>Elokuva on tekstitetty suomeksi ja ruotsiksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65108/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ey7q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23exfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23exqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ex3y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyhe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyti/?format=api" } ], "images": [ { "id": 1490234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-29T11:04:17.046656Z", "last_modified_time": "2024-12-29T11:04:17.046676Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg", "cropping": "426,0,2981,2556", "photographer_name": "", "alt_text": "Askarteluhetki, erilaisia tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-29T11:08:54.805759Z", "last_modified_time": "2024-12-29T11:08:54.805780Z", "date_published": null, "start_time": "2025-01-08T14:00:00Z", "end_time": "2025-06-18T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. " }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)" }, "location_extra_info": null, "name": { "fi": "Askartelua Sellon kirjaston Pajassa", "sv": "Hantverk i Sellobibliotekets verkstad", "en": "Crafting in Sello Library's Makerspace" }, "description": { "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p>", "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>", "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65283", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153456, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T14:14:26.193429Z", "last_modified_time": "2024-12-13T14:14:26.193446Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758948.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153456/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T14:14:26.170816Z", "last_modified_time": "2024-12-29T06:13:46.640647Z", "date_published": null, "start_time": "2025-01-15T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DD96BFE9DB888EBF9E21E690920D110E/Levoton_Tuhkimo_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/DD96BFE9DB888EBF9E21E690920D110E/Levoton_Tuhkimo_7_", "en": "http://www.malmitalo.fi/en/events/event/DD96BFE9DB888EBF9E21E690920D110E/Levoton_Tuhkimo_7_" }, "location_extra_info": null, "name": { "fi": "Levoton Tuhkimo (7) – Kino Helios", "sv": "Levoton Tuhkimo (7) – Kino Helios", "en": "Levoton Tuhkimo (7) – Kino Helios" }, "description": { "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta.</p><p>Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila, pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä, ja Ronja Keiramo. Käsikirjoitus Hanna Leivonniemi.</p><p>Levoton Tuhkimo elokuvateattereissa joulupäivänä 25.12. kautta maan.</p><p>Ikäraja: 7<br>Kesto: 88 min.</p><p>Ensi-ilta: 25.12.2024<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65283/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65282", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/", "sv": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/", "en": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/" }, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T14:14:12.527898Z", "last_modified_time": "2024-12-13T14:14:12.527921Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758909.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T14:14:12.505361Z", "last_modified_time": "2024-12-29T06:13:45.599708Z", "date_published": null, "start_time": "2025-01-04T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D5F94E5EC6C6211FE69D790D365BEEBD/Levoton_Tuhkimo_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D5F94E5EC6C6211FE69D790D365BEEBD/Levoton_Tuhkimo_7_", "en": "http://www.malmitalo.fi/en/events/event/D5F94E5EC6C6211FE69D790D365BEEBD/Levoton_Tuhkimo_7_" }, "location_extra_info": null, "name": { "fi": "Levoton Tuhkimo (7) – Kino Helios", "sv": "Levoton Tuhkimo (7) – Kino Helios", "en": "Levoton Tuhkimo (7) – Kino Helios" }, "description": { "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta. Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila, pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä, ja Ronja Keiramo. Käsikirjoitus Hanna Leivonniemi.</p><p>Levoton Tuhkimo elokuvateattereissa joulupäivänä 25.12. kautta maan.</p><p>Ikäraja: 7<br>Kesto: 88 min.</p><p>Ensi-ilta: 25.12.2024<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65282/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65281", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/", "sv": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/", "en": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/" }, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153443, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T14:14:11.939059Z", "last_modified_time": "2024-12-13T14:14:11.939080Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758903.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153443/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T14:14:11.913505Z", "last_modified_time": "2024-12-29T06:13:45.096881Z", "date_published": null, "start_time": "2024-12-28T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ABE79E23BCE05140E8DF7F8C356586BD/Levoton_Tuhkimo_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/ABE79E23BCE05140E8DF7F8C356586BD/Levoton_Tuhkimo_7_", "en": "http://www.malmitalo.fi/en/events/event/ABE79E23BCE05140E8DF7F8C356586BD/Levoton_Tuhkimo_7_" }, "location_extra_info": null, "name": { "fi": "Levoton Tuhkimo (7) – Kino Helios", "sv": "Levoton Tuhkimo (7) – Kino Helios", "en": "Levoton Tuhkimo (7) – Kino Helios" }, "description": { "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta. Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila, pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä, ja Ronja Keiramo. Käsikirjoitus Hanna Leivonniemi.</p><p>Levoton Tuhkimo elokuvateattereissa joulupäivänä 25.12. kautta maan.</p><p>Ikäraja: 7<br>Kesto: 88 min.</p><p>Ensi-ilta: 25.12.2024<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65281/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64937", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152980, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-06T16:13:59.007457Z", "last_modified_time": "2024-11-06T16:13:59.007473Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760687.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152980/?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": "2024-11-06T16:13:58.992590Z", "last_modified_time": "2024-12-29T06:13:44.946688Z", "date_published": null, "start_time": "2024-12-28T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kaikkien suosikkisupersankariperhe palaa elokuvassa Ihmeperhe 2!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2", "en": "http://www.malmitalo.fi/en/events/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2" }, "location_extra_info": null, "name": { "fi": "Joululoman ilmaisleffa: Ihmeperhe 2 (7)", "sv": "Joululoman ilmaisleffa: Ihmeperhe 2", "en": "Joululoman ilmaisleffa: Ihmeperhe 2" }, "description": { "fi": "<p>Kaikkien suosikkisupersankariperhe palaa elokuvassa Ihmeperhe 2!</p><p>Tällä kertaa pääosaan nousee Elli, joka jättää Ilun kotiin selviytymään \"normaalin\" arjen sankarina yhdessä Ilonan ja Esan kanssa. Muutos on mullistava kaikille, ja tilannetta mutkistaa vielä se, ettei perhe tiedä, millaisia supervoimia Jaska-vauvalle vielä kehittyykään. Kun uusi konna punoo nerokkaan ja petollisen juonen, perheen tulee Hyytäjän avustuksella löytää keinot puhaltaa taas yhteen hiileen—mikä on helpommin sanottu kuin tehty, vaikka he nyt Ihmeperhe sattuvatkin olemaan.</p><p>Ohjaajanaan Brad Bird (Rautajätti, Ihmeperhe) ja tuottajina John Walker (Ihmeperhe) ja Nicole Grindle (Sanjay’s Super Team -lyhytelokuva, Toy Story 3 apulaistuottaja) Ihmeperhe 2 rynnistää elokuvateattereihin kesällä 2018.</p><p>Kesto 118 min<br>Ikäraja 7 <br>Elokuva on puhuttu suomeksi<br>Vapaa pääsy!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64937/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65280", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/", "sv": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/", "en": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/" }, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153442, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T14:14:11.651475Z", "last_modified_time": "2024-12-13T14:14:11.651491Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758900.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153442/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T14:14:11.604856Z", "last_modified_time": "2024-12-29T06:13:44.842448Z", "date_published": null, "start_time": "2024-12-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BBEDEDB898319D1C20D1339CCE2B99E6/Levoton_Tuhkimo_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BBEDEDB898319D1C20D1339CCE2B99E6/Levoton_Tuhkimo_7_", "en": "http://www.malmitalo.fi/en/events/event/BBEDEDB898319D1C20D1339CCE2B99E6/Levoton_Tuhkimo_7_" }, "location_extra_info": null, "name": { "fi": "Levoton Tuhkimo (7) – Kino Helios", "sv": "Levoton Tuhkimo (7) – Kino Helios", "en": "Levoton Tuhkimo (7) – Kino Helios" }, "description": { "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta. Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila, pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä, ja Ronja Keiramo. Käsikirjoitus Hanna Leivonniemi.</p><p>Levoton Tuhkimo elokuvateattereissa joulupäivänä 25.12. kautta maan.</p><p>Ikäraja: 7<br>Kesto: 88 min.</p><p>Ensi-ilta: 25.12.2024<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65280/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64936", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152979, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-06T16:13:58.882623Z", "last_modified_time": "2024-11-06T16:13:58.882653Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760686.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152979/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-06T16:13:58.843764Z", "last_modified_time": "2024-12-29T06:13:44.671424Z", "date_published": null, "start_time": "2024-12-27T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Mei Lee on 13-vuotias itsevarma nörtti, joka tasapainoilee äitinsä velvollisuudentuntoisena tyttärenä ja murrosiän tuoman kaaoksen keskellä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_", "en": "http://www.malmitalo.fi/en/events/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_" }, "location_extra_info": null, "name": { "fi": "Joululoman ilmaisleffa: Punainen (7)", "sv": "Joululoman ilmaisleffa: Punainen (7)", "en": "Joululoman ilmaisleffa: Punainen (7)" }, "description": { "fi": "<p>Mei Lee on 13-vuotias itsevarma nörtti, joka tasapainoilee äitinsä velvollisuudentuntoisena tyttärenä ja murrosiän tuoman kaaoksen keskellä.</p><p>Hänen suojeleva ja määräilevä äitinsä Ming ei ole koskaan kaukana – mikä ei varsinaisesti ilahduta teini-ikäistä. Ja ihan kuin jatkuvat muutokset harrastuksissa, ihmissuhteissa ja kropassa eivät olisi tarpeeksi, aina kun Mei Lee innostuu liikaa (mitä tapahtuu käytännössä jatkuvasti), hän muuttuu jättimäiseksi kultapandaksi!</p><p>Ikäraja 7<br>Kesto 100 min<br>Elokuva on puhuttu suomeksi<br>Vapaa pääsy!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64936/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65017", "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: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153551, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-27T16:15:16.467699Z", "last_modified_time": "2024-12-27T16:15:16.467742Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763509.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-27T16:15:16.429302Z", "last_modified_time": "2024-12-27T16:15:16.580512Z", "date_published": null, "start_time": "2025-02-10T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjan kahvilan stagella starttaa vieraileva muusikko Ville ”Lefty” Leppänen.", "sv": "Börja veckan med fullt hålligång! Gästmusikern Ville “Lefty” Leppänen inleder vårens Juurilla-klubbserie på caféets stage.", "en": "Start your week with some catchy tunes! Visiting musician Ville “Lefty” Leppänen will be the first to start this spring’s At the Roots Club series at the café stage." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/49131E7E64DCD47C58F41C0B6A0C41BF/Juurilla_Ville_Lefty_Leppanen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/49131E7E64DCD47C58F41C0B6A0C41BF/Juurilla-klubb_Ville_Lefty_Leppanen", "en": "http://www.kanneltalo.fi/en/events/event/49131E7E64DCD47C58F41C0B6A0C41BF/At_the_Roots_Ville_Lefty_Leppanen" }, "location_extra_info": null, "name": { "fi": "Juurilla: Ville “Lefty” Leppänen – Maksuttomat maanantait", "sv": "Juurilla-klubb: Ville ”Lefty” Leppänen – Kostnadsfria måndagar", "en": "At the Roots: Ville ”Lefty” Leppänen – Free Mondays" }, "description": { "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjan kahvilan stagella starttaa vieraileva muusikko Ville ”Lefty” Leppänen.</p><p>Pitkän linjan juurimuusikko Ville “Lefty” Leppänen esittää bluesin, countryn ja muunkin juurimusiikin klassikoita ja tuntemattomampia kappaleita. Kuulemme myös Leftyn omaa tuotantoa.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Kesto: 1 tunti</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Börja veckan med fullt hålligång! Gästmusikern Ville “Lefty” Leppänen inleder vårens Juurilla-klubbserie på caféets stage.</p><p>Den erfarna rootsmusikern Ville “Lefty” Leppänen framför klassiker inom blues, country och annan rootsmusik samt okända låtar. Vi får även höra Leftys egen produktion.</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas <br>Tommi Lievemaa – gitarr <br>Olli Haavisto – pedalstål<br>Sirpa Suomalainen – saxofon <br>Kepa Kettunen – trummor</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 t</p>", "en": "<p>Start your week with some catchy tunes! Visiting musician Ville “Lefty” Leppänen will be the first to start this spring’s At the Roots Club series at the café stage.</p><p>Longtime roots musician Ville “Lefty” Leppänen performs classics and lesser-known blues, country, and other roots music. We’ll also hear Lefty’s original music.</p><p>The pulsating heart of everyone’s favourite Monday night club is made of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. As usual, the club hosts are Juki Välipakka and The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass <br>Tommi Lievemaa – guitar <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone <br>Kepa Kettunen – drums</p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65017/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64841", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/osmo-ikonen-malmitalossa-malmitalo-19495815/", "sv": "https://www.lippu.fi/event/osmo-ikonen-malmitalossa-malmitalo-19495815/", "en": "https://www.lippu.fi/event/osmo-ikonen-malmitalossa-malmitalo-19495815/" }, "price": { "fi": "34 € / 29 €, ovelta 38 €", "sv": "34 € / 29 €, ovelta 38 €", "en": "34 € / 29 €, ovelta 38 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153550, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-27T15:13:57.418851Z", "last_modified_time": "2024-12-27T15:13:57.418867Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760467.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153550/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-27T15:13:57.391745Z", "last_modified_time": "2024-12-27T15:13:57.478490Z", "date_published": null, "start_time": "2025-03-27T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Rakastettu ja arvostettu musiikin monilahjakkuus Osmo Ikonen julkaisee uuden albumin keväällä 2025.", "sv": "Den älskade och uppskattade mångbegåvningen inom musik, Osmo Ikonen, släpper ett nytt album våren 2025.", "en": "Osmo Ikonen, the much-loved and acclaimed multi-talented musician, will release a new album in the spring of 2025." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D723E64DB1A09AD6C2E4A33385892664/Osmo_Ikonen_Malmitalossa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D723E64DB1A09AD6C2E4A33385892664/Osmo_Ikonen_i_Malms_kulturhus", "en": "http://www.malmitalo.fi/en/events/event/D723E64DB1A09AD6C2E4A33385892664/Osmo_Ikonen_at_Malmitalo" }, "location_extra_info": null, "name": { "fi": "Osmo Ikonen Malmitalossa", "sv": "Osmo Ikonen i Malms kulturhus", "en": "Osmo Ikonen at Malmitalo" }, "description": { "fi": "<p>Rakastettu ja arvostettu musiikin monilahjakkuus Osmo Ikonen julkaisee uuden albumin keväällä 2025.</p><p>Vuonna 2021 ilmestyi artistin ensimmäinen suomenkielinen albumi Yhden miehen armeija, joka oli kiitelty menestys. Syksyllä 2024 suomenkielinen tuotanto sai jatkoa, kun mies julkaisi OI -nimeä kantavan EP:n.</p><p>Raikas ja mielenkiintoinen suomenkielinen tuotanto on tuonut mukanaan runsaasti radiosoittoa, esiintymisiä tv:ssä sekä lukuisilla eri festivaaleilla ympäri Suomen ja on pitänyt miehen kiireisenä peräti viiden oman konserttikiertueen osalta.</p><p>”Kuluneen syksyn kiertue muistutti siitä, miten paljon nautin esiintyä bändin kanssa ja tällä kertaa ollaan kovemmassa iskussa mitä koskaan! Keväällä jatketaan OI (Organic Intelligence) teemalla ja keskitytään ottamaan sekä bändin sisäisestä kemiasta, että interaktiosta yleisön kanssa kaikki mehut irti” artisti iloitsee.</p><p>Osmo Ikonen on tunnettu SuomiLovesta sekä lukuisista muista TV-tuotannoista, joissa hän on toiminut solistina, musiikkituottajana, sovittajana ja muusikkona. Ikonen oli myös vuonna 2022 lopettaneen Sunrise Avenue yhtyeen jäsen.</p><p>Kesto: 1 t 15 min</p>", "sv": "<p>Den älskade och uppskattade mångbegåvningen inom musik, Osmo Ikonen, släpper ett nytt album våren 2025.</p><p>Artistens första finskspråkiga album Yhden miehen armeija släpptes år 2021 och togs emot väl.</p><p>På hösten 2024 fick den finskspråkiga produktionen en fortsättning, då mannen publicerade EP:n OI.</p><p>Den fräscha och intressanta finskspråkiga produktionen har fört med sig rikligt med radiospelningar, framträdanden i TV och på talrika festivaler runt omkring i Finland, och har hållit mannen upptagen med hela fem egna konsertturnéer.</p><p>“Den gångna höstens turné påminde mig om hur mycket jag njuter av att framträda med bandet, och den här gången är vi i bättre form än någonsin!</p><p>På våren fortsätter vi med temat OI (Organic Intelligence) och fokuserar på att få ut allt av både bandets interna kemi och interaktionen med publiken”, gläder sig artisten.</p><p>Osmo Ikonen är känd från SuomiLove och talrika andra TV-produktioner, där han har fungerat som solist, musikproducent, arrangör och musiker. Ikonen var också med i bandet Sunrise Avenue som lade av år 2022.</p><p>Längd: 1 h 15 min.</p>", "en": "<p>Osmo Ikonen, the much-loved and acclaimed multi-talented musician, will release a new album in the spring of 2025.</p><p>In 2021, the artist released his first Finnish-language album, Yhden miehen armeija, to critical acclaim. In the autumn of 2024, the Finnish-language production continued with the release of an EP called OI.</p><p>His fresh and interesting Finnish-language music has brought him plenty of radio play, TV appearances and performances at numerous festivals around Finland, and has kept him busy with no less than five concert tours of his own.</p><p>“Last autumn’s tour was a reminder of how much I enjoy performing with the band, and this time, we’re going to be rocking harder than ever! In the spring, we’ll be picking back up with the OI (Organic Intelligence) theme and focusing on getting everything out of both the band’s internal chemistry and our interaction with the audience,” the artist explains.</p><p>Osmo Ikonen is known from SuomiLove and numerous other TV shows, where he has worked as a singer, music producer, arranger and musician. Ikonen was also a member of Sunrise Avenue, a band that split up in 2022.</p><p>Duration: 1 h 15 min</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64841/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64819", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/traveling-jones-feat-pepe-ahlqvist-malmitalo-19385390/", "sv": "https://www.lippu.fi/event/traveling-jones-feat-pepe-ahlqvist-malmitalo-19385390/", "en": "https://www.lippu.fi/event/traveling-jones-feat-pepe-ahlqvist-malmitalo-19385390/" }, "price": { "fi": "24,80 € / 19,80 €", "sv": "24,80 € / 19,80 €", "en": "24,80 € / 19,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153547, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-27T15:13:56.133070Z", "last_modified_time": "2024-12-27T15:13:56.133085Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760302.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153547/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-27T15:13:56.100502Z", "last_modified_time": "2024-12-27T15:13:56.199147Z", "date_published": null, "start_time": "2025-03-15T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Muusikkoveljesten Jakke Ahon ja Juha Sundqvistin 5-vuotias yhtye soittaa rennosti mutta intensiivisesti rouheaa rockia. Mukana myös ilmiömäinen Pepe Alhqvist!", "sv": "Musikerbröderna Jakke Ahos och Juha Sundqvists 5-åriga band spelar grov rock på ett avslappnat men intensivt sätt. Även den fenomenala Pepe Ahlqvist är med!", "en": "The five-year-old band of musician brothers Jakke Aho and Juha Sundqvist plays gritty rock in a relaxed but intense style. Also featuring the phenomenal Pepe Alhqvist!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0C5DD8F63BE088BAB00A48AE40AF8AB3/Traveling_Jones_feat_Pepe_Ahlqvist", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0C5DD8F63BE088BAB00A48AE40AF8AB3/Traveling_Jones_feat_Pepe_Ahlqvist", "en": "http://www.malmitalo.fi/en/events/event/0C5DD8F63BE088BAB00A48AE40AF8AB3/Traveling_Jones_feat_Pepe_Ahlqvist" }, "location_extra_info": null, "name": { "fi": "Traveling Jones feat. Pepe Ahlqvist", "sv": "Traveling Jones feat. Pepe Ahlqvist", "en": "Traveling Jones feat. Pepe Ahlqvist" }, "description": { "fi": "<p>Muusikkoveljesten Jakke Ahon ja Juha Sundqvistin 5-vuotias yhtye soittaa rennosti mutta intensiivisesti rouheaa rockia. Mukana myös ilmiömäinen Pepe Alhqvist!</p><p>Viitisen vuotta sitten muusikkoveljet laulaja-basisti Jakke Aho ja kitaristi Juha Sundqvist päättivät perustaa yhtyeen ja kutsuivat matkalle mukaan kosketinsoittaja Pekka Qvistin ja rumpali Ossi Nykäsen. Syntyi TRAVELING JONES ja matka alkoi!</p><p>Intensiivisen treenaamisen, ahkeran keikkailun ja rennon studiotyöskentelyn tuloksena syntyi bändin ensimmäinen julkaisu ”Here Comes That Traveling Jones”. Alusta asti oli selvää, että bändi esittää omaa musaa ja tarkoin harkittua muiden tekemää musiikkia sekä keikoilla että levyillä.</p><p>Oli myös selvää, että bändin esittämä musiikki painottuu selkeästi rokkaavaan suuntaan – joku voisi sanoa, että tämä on southern rockia, joku voisi kutsua sitä west coast -rockiksi. Selvää on, että rock-asenne edellä mennään, mutta kuulija lokeroikoon musiikin minne haluaa. Olennaista on soiton rentous, svengaavuus, osaaminen ja soiton intensiivisyys.</p><p>Yhtye on aikaisemminkin tehnyt yhteistyötä muusikkolegendojen Eero Raittisen ja Pepe Ahlqvistin kanssa. Hyvin on yhteinen musisointi kulkenut ja nyt sitä haluttiin jatkaa… ja nyt mennään todellakin americana edellä!</p><p><b>Pepe Ahlqvist</b><br>Suomibluesin legenda ei enemmälti esittelyjä kaivanne; jo 70-luvun alkanut ura on jatkunut aina meidän päiviimme asti. Laulaja-harpisti-kitaristi Pepe Ahlqvist on edelleen todella oivallisessa vedossa; laulu ja soitto toimivat tyylikkäästi ja letkeästi. Esiintymisten rentous välittyy myös yleisöön: Traveling Jonesin ja Pepen pitkä yhteistyö näkyy hyvin myös yhteisessä esiintymisessä; lavalla arvostetaan toisia muusikoita ja yleisölle tarjotaan elämyksiä eikä vähiten silloin, kun esitetään yhdessä Pepen 80-luvun huippubändin H.A.R.P:in tunnetuksi tekemiä biisejä... Ja kuullaanhan keikoilla Pepen tyylikästä harpunsoittoakin!</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>", "sv": "<p>Musikerbröderna Jakke Ahos och Juha Sundqvists 5-åriga band spelar grov rock på ett avslappnat men intensivt sätt. Även den fenomenala Pepe Ahlqvist är med!</p><p>För fem år sedan beslutade musikerbröderna sångaren och basisten Jakke Aho och Juha Sundqvist att grunda ett band och bjöd med keyboardisten Pekka Qvist och trummisen Ossi Nykänen. TRAVELING JONES föddes och resan började!</p><p>Intensiv träning, flitiga spelningar och ett avslappat studioarbete ledde till bandets första släpp “Here Comes That Traveling Jones”. Från början var det klart att bandet spelar sin egen musik och noggrant övervägd musik av andra både på spelningar och album.</p><p>Det var också klart att den musik som bandet spelar tydligt lutar mot rock – man kunde säga att detta är southern rock, någon skulle kunna kalla det för west coast rock. Det är tydligt att det är rockattityd som gäller, men lyssnaren får placera musiken i vilken genre han eller hon vill. Väsentligt är musikens avspändhet, svängighet, kompetens och intensitet.</p><p>Bandet har även tidigare samarbetat med musikerlegenderna Eero Raittinen och Pepe Ahlqvist. Det gemensamma musicerandet har gått bra, och nu ville man fortsätta med det... och nu är det verkligen americana som gäller!</p><p><b>Pepe Ahlqvist</b><br>Suomibluesens legend behöver knappast någon närmare presentation; karriären som inleddes i början av 70-talet fortsätter än i dag. Sångaren-harpisten-gitarristen Pepe Ahlqvist är fortfarande i riktigt bra form; sången och musiken fungerar stiligt och lättsamt. Det avslappnade framträdandet förmedlas också till publiken: Det långa samarbetet mellan Traveling Jones och Pepe syns även väl i det gemensamma framträdandet; på scenen respekterar musikerna varandra och publiken bjuds på upplevelser, inte minst då de tillsammans framför låtar som Pepes toppbänd H.A.R.P. gjorde berömda på 80-talet. Och vi får också höra Pepes stiliga harpspel på spelningarna!</p><p>Längd: 2 h, inklusive en paus på 20 minuter</p>", "en": "<p>The five-year-old band of musician brothers Jakke Aho and Juha Sundqvist plays gritty rock in a relaxed but intense style. Also featuring the phenomenal Pepe Alhqvist!</p><p>Five years ago, singer-bassist Jakke Aho and guitarist Juha Sundqvist decided to form a band and invited keyboardist Pekka Qvist and drummer Ossi Nykänen to join them. TRAVELING JONES was born, and the journey began!</p><p>Intensive practice, diligent gigging and laid-back studio work led to the band’s first release, Here Comes That Traveling Jones. From the start, it was clear that the band would play their own music and carefully selected music by other artists, both at their live shows and on their records.</p><p>It was also clear that the music the band played had a clear orientation towards rock – some might say it was Southern rock, while others might call it West Coast rock. What’s obvious is that the band is forging ahead with a rock attitude, but listeners are free to categorise the music however they like. The key is relaxed, swinging, skilful and intense playing.</p><p>The band has also previously collaborated with legendary musicians Eero Raittinen and Pepe Ahlqvist. The joint music-making had worked well and they wanted to continue it... and now they’re really leaning into Americana!</p><p><b>Pepe Ahlqvist</b><br>This Finnish blues legend needs little introduction; a career that started back in the '70s has continued right up to the present day. Singer/harpist/guitarist Pepe Ahlqvist is still in excellent form; his vocals and playing are stylish and relaxed. The relaxed nature of the performances is also passed on to audiences: The longstanding collaboration between the Traveling Jones and Pepe is also clearly visible in their joint performances. The mutual respect among the musicians on stage and the great experiences offered to the audience are apparent, not least when they perform the songs together that were made popular by Pepe's famous 80's band H.A.R.P.... And, of course, we’ll get to hear Pepe’s elegant harmonica playing at the gigs!</p><p>Duration: 2 h, incl. 20 min intermission</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64819/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64624", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-kanneltalo-19345420/", "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-kanneltalo-19345420/", "en": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-kanneltalo-19345420/" }, "price": { "fi": "16,80 € / 15,80 €", "sv": "16,80 € / 15,80 €", "en": "16,80 € / 15,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153546, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-27T15:13:52.074885Z", "last_modified_time": "2024-12-27T15:13:52.074901Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758562.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153546/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-27T15:13:52.045313Z", "last_modified_time": "2024-12-27T15:13:52.146529Z", "date_published": null, "start_time": "2025-02-08T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Lasten ja aikuisten kestosuosikki ja TV:stä tuttu maailmanmestari-taikuri Simo Aalto tarjoilee riemua koko perheelle yhdessä avustaja-vaimonsa Kirstin kanssa.", "sv": "Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.", "en": "A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1F91A3ABD2B5E0B8373C6FD4A983AE04/JOKERI_POKERI_BOX_Ihan_Simona_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1F91A3ABD2B5E0B8373C6FD4A983AE04/JOKERI_POKERI_BOX_Ihan_Simona_", "en": "http://www.kanneltalo.fi/en/events/event/1F91A3ABD2B5E0B8373C6FD4A983AE04/JOKERI_POKERI_BOX_Ihan_Simona_" }, "location_extra_info": null, "name": { "fi": "JOKERI POKERI BOX – Ihan Simona!", "sv": "JOKERI POKERI BOX – Ihan Simona!", "en": "JOKERI POKERI BOX – Ihan Simona!" }, "description": { "fi": "<p>Lasten ja aikuisten kestosuosikki ja TV:stä tuttu maailmanmestari-taikuri Simo Aalto tarjoilee riemua koko perheelle yhdessä avustaja-vaimonsa Kirstin kanssa.</p><p>Uudessa Iloisessa show’ssa nähdään maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashowlla. Simon johdolla kaikenikäiset katsojat pääsevät tunnin matkalle taikamaailmaan, jossa mikään ei ole mahdotonta.</p><p>Mukana seikkailevat Simon ja Kirstin eläinkaverit Erkki-kani ja Paloma kyyhky sekä itsepäinen papukaija Eino. Ja toki lapset pääsevät auttamaan taikuria lavalle asti!</p><p>Simon mukaansatempaava esiintyminen takaa, että taikapillerin vaikutus säilyy pitkään, mieli virkistyy ja arjen pyöritys unohtuu. Sanalla sanoen luvassa on laadukasta estradiviihdettä!</p><p>Simon omin sanoin: ”Pitkän urani aikana on jo yksi sukupolvi, ysärilapset, kasvanut aikuisiksi ja he tulevat nyt omien lastensa kanssa katsomaan lapsuutensa idolia, siksi haluan tarjota iloa ja ihmetystä kaikenikäisille.”</p><p>Kesto 1 tunti <br>Ikäsuositus: 2–100 v</p>", "sv": "<p>Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.</p><p>I den nya glada showen får vi se världens bästa trollkonster smaksatta med en gladlynt scenshow. Under ledning av Simo får åskådare av alla åldrar åka på en timmes resa till trollkonsternas värld, där inget är omöjligt.</p><p>Med i äventyret är Simos och Kirstis djurkompisar kaninen Erkki och duvan Paloma samt den egensinniga papegojan Eino. Och visst får barnen vara med och hjälpa trollkarlen ända upp på scenen!</p><p>Simos medryckande framträdande garanterar att trollpillret verkar länge, humöret piggas upp och vardagens rutiner glöms bort. Med andra ord utlovas högklassig estradunderhållning!</p><p>Själv säger Simo: “Under min långa karriär har redan en generation, nittiotalsbarnen, hunnit växa upp, och de kommer nu för att se sin barndomsidol med sina egna barn. Därför vill jag bjuda på glädje och förundran för alla åldrar.”</p><p>Längd 1 h <br>Åldersrekommendation: 2–100 år</p>", "en": "<p>A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant.</p><p>The happy new show will feature some of the world’s best magic tricks accompanied by a light-hearted stage show. Simo leads audiences of all ages on a one-hour journey into a magical world where everything is possible.</p><p>Along for the adventure are Simo and Kirsti’s animal friends, Erkki the rabbit, Paloma the pigeon, and Eino, the stubborn parrot. And, of course, the kids get to assist the magician up on stage!</p><p>Simo’s engaging performance ensures that the magic pill lasts for a long time, refreshing your mind and making you forget the daily hustle and bustle. In a word, this will be high-quality entertainment on the stage!</p><p>In Simo’s own words, “During my long career, one generation – the ‘90s kids – have already grown up, and are now bringing their own children to see their childhood idol. That’s why I want to offer joy and wonder to people of all ages.”</p><p>Duration: 1 h <br>Age recommendation: 2–100 years</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64624/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19453, "next": "