Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=201
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=202", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=200" }, "data": [ { "id": "kulke:65304", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/molli-ja-maan-aeaeri-vuotalo-3790812/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/molli-ja-maan-aeaeri-vuotalo-3790812/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/molli-ja-maan-aeaeri-vuotalo-3790812/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153509, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T15:13:44.057220Z", "last_modified_time": "2024-12-18T15:13:44.057240Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759570.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153509/?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-12-18T15:13:44.025530Z", "last_modified_time": "2025-04-10T11:14:20.579298Z", "date_published": null, "start_time": "2025-04-12T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "LOPPUUNMYYTY Molli ja maan ääri", "sv": "SLUTSÅLD Molli ja maan ääri", "en": "SOLD OUT Molli ja maan ääri" }, "description": { "fi": "<p>”Tästä se alkaa, matka maan ääreen.”</p><p>Viime aikoina Molli on unohtunut katsomaan kotinsa kiviaidan takana siintävää metsää. Olo on kumma: varpaissa kutittelee ja häntä viuhtoo villisti. Mollilla on matkakuume!</p><p>Katri Kirkkopellon rakastettuun lastenkirjaan pohjautuva Molli ja maan ääri on lempeä ja hykerryttävän hauska lastenteatteriesitys ystävyydestä, koti-ikävästä ja rohkeudesta astua maailmaan.</p><p>Teatteri Konnan ja Turun kaupunginteatterin yhteistyö Molli ja maan ääri on samojen tekijöiden kädenjälkeä kuin yleisönsä monikertoihin ihastuttaneet Molli (2015), Molli ja kumma (2018) sekä Mollistavia mietteitä (2021).</p><p>Suositusikä: 5+ (Ikähaarukka n. 3–10-vuotiaat.)<br>Kesto: n. 40 min.<br>Esitysoikeuksia valvoo Katri Kirkkopelto.</p><p>Molli ja maan ääri -esityksen ensi-ilta on Turun kaupunginteatterin Sopukka-näyttämöllä 22.1.2025.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-19738808/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>”Här börjar det, en resa till jordens ände.”</p><p>På sistone har Molli glömt sig kvar att beundra skogen som skymtar bakom stenmuren vid hennes hem. Det känns märkligt: det kittlar om tårna och svansen viftar vilt. Molli har resfeber!</p><p>Molli ja maan ääri som baserar sig på den älskade barnboken av Katri Kirkkopelto är en snäll och jätterolig barnteaterföreställning om vänskap, hemlängtan och mod att ta sig ute på världen.<br>Teatteri Konnas och Åbo stadsteaters samarbete Molli ja maan ääri kommer från samma arbetsgrupp som Molli (2015), Molli ja kumma (2018) samt Mollistavia mietteitä (2021) som förtjust publiken flera gånger.</p><p>Föreställningen Molli ja maan ääri har premiär på scenen Sopukka på Åbo stadsteater 22.1.2025.<br>Rekommenderad ålder: 5+ (Åldersintervall cirka 3–10 år.)<br>Längd: cirka 40 min.</p><p>Rättigheterna övervakas av Katri Kirkkopelto</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-19738808/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>“Here it begins, the journey to the ends of the earth.”</p><p>Recently, Molli has found himself looking at the forest behind the stone fence surrounding his home. It is the strangest feeling: itchy toes and a wildly wagging tail. Molli is itching to travel!</p><p>Based on Katri Kirkkopelto’s beloved children’s book, Molli ja maan ääri (Molli and the ends of the Earth) is a gentle and hilarious children’s theatre performance about friendship, being homesick and the courage to see the world.</p><p>A collaboration between Teatteri Konna and Turku City Theatre, Molli ja maan ääri is made by the same creators as the audience’s favourites Molli (2015), Molli ja kumma (2018) and Mollistavia mietteitä (2021).</p><p>The premiere of Molli ja maan ääri will take place at the Sopukka stage at Turku City Theatre on 22 January 2025.<br>Recommended age: 5+ (Age range approx. 3–10 years.)<br>Duration: approx. 40 min</p><p>Performance rights are managed by Katri Kirkkopelto</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-19738808/?affiliate=FSF\">HERE</a></u></p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/956F8AD11575D33DD5349EC9D3017B71/LOPPUUNMYYTY_Molli_ja_maan_aari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/956F8AD11575D33DD5349EC9D3017B71/SLUTSALD_Molli_ja_maan_aari", "en": "http://www.vuotalo.fi/en/events/event/956F8AD11575D33DD5349EC9D3017B71/SOLD_OUT_Molli_ja_maan_aari" }, "provider": null, "short_description": { "fi": "”Tästä se alkaa, matka maan ääreen.”", "sv": "”Här börjar det, en resa till jordens ände.”", "en": "“Here it begins, the journey to the ends of the earth.”" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65304/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:aglb6n7gdi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:11/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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, "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:40/?format=api" } ], "created_time": "2025-04-10T10:21:19.310365Z", "last_modified_time": "2025-04-10T10:44:29.357254Z", "date_published": null, "start_time": "2025-05-05T07:00:00Z", "end_time": "2025-05-05T08: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": "2025-04-10T13:45:00+03:00", "enrolment_end_time": "2025-05-02T10:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "Jarkon testitapahtuma", "sv": "", "en": "" }, "description": { "fi": "<p>asadsdg</p>\n", "sv": "", "en": "" }, "location_extra_info": null, "info_url": { "fi": "", "sv": "", "en": "" }, "provider": null, "short_description": { "fi": "Testikuvaus", "sv": "", "en": "" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aglb6n7gdi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:aglb6n2hhm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:11/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:16/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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, "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api" } ], "created_time": "2025-04-10T10:20:38.652278Z", "last_modified_time": "2025-04-10T10:33:25.998090Z", "date_published": null, "start_time": "2025-04-30T07:00:00Z", "end_time": "2025-04-30T09: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": "2025-04-14T10:00:00+03:00", "enrolment_end_time": "2025-04-26T10:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "Testitapahtuma", "sv": "", "en": "" }, "description": { "fi": "<p>asdf</p>\n", "sv": "", "en": "" }, "location_extra_info": null, "info_url": { "fi": "", "sv": "", "en": "" }, "provider": null, "short_description": { "fi": "asdf", "sv": "", "en": "" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aglb6n2hhm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65405", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153690, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-07T10:13:23.104653Z", "last_modified_time": "2025-01-07T10:13:23.104668Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758524.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153690/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-07T10:13:23.091305Z", "last_modified_time": "2025-04-10T08:13:16.638379Z", "date_published": null, "start_time": "2025-02-24T08:15:00Z", "end_time": "2025-05-26T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen", "sv": "Dans och lek – Verkstaden för småbarn", "en": "The dance and play – Workshop for toddlers and their parents" }, "description": { "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä aikuisensa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. <br> <br>Työpaja perustuu amerikkalaisen tanssitaiteilija Alito Alessin kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta. <br> <br>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>HUOM! Tanssi ja leikki -työpajaa ei järjestetä maanantaina 31.3. ja 21.4.2025<br> <br>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä. <br> <br>Tila: Maissi <br>Kielet: Suomi (English, Russian and Spanish if needed) <br>Ohjaaja: Vera Lapitskaya</p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>OBS! Dans- och lekverkstaden anordnas inte måndag 31.3. och 21.4.2025</p><p>Deltagande:</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska och spanska vid behov)</p>", "en": "<p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way.</p><p>The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>NOTE! The dance and play workshop will not be organized on Monday 31.3. and 21.4.2025</p><p><b>Participation:</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together. You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/0DDC4B8DBF94FF9DF2E11226EFF3BEA4/Tanssi_ja_leikki_", "sv": "http://www.caisa.fi/sv/evenemang/event/0DDC4B8DBF94FF9DF2E11226EFF3BEA4/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/0DDC4B8DBF94FF9DF2E11226EFF3BEA4/The_dance_and_play" }, "provider": null, "short_description": { "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65405/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65399", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153689, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-07T10:13:22.925085Z", "last_modified_time": "2025-01-07T10:13:22.925099Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758523.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153689/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-07T10:13:22.904366Z", "last_modified_time": "2025-04-10T08:13:16.551147Z", "date_published": null, "start_time": "2025-02-24T07:15:00Z", "end_time": "2025-05-26T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen", "sv": "Dans och lek – Verkstaden för småbarn", "en": "The dance and play – Workshop for toddlers and their parents" }, "description": { "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä aikuisensa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. <br> <br>Työpaja perustuu amerikkalaisen tanssitaiteilija Alito Alessin kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta. <br> <br>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>HUOM! Tanssi ja leikki -työpajaa ei järjestetä maanantaina 31.3.2025 ja 21.4.2025</b><br> <br><b>Osallistuminen</b> <br>Tanssi ja leikki- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä. <br> <br>Tila: Maissi <br>Kielet: Suomi (English, Russian and Spanish if needed) <br>Ohjaaja: Vera Lapitskaya</p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p>OBS! Dans- och lekverkstaden anordnas inte måndag 31.3. och 21.4.</p><p><b>Deltagande:</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska och spanska vid behov)</p>", "en": "<p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way.</p><p>The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>NOTE! The dance and play workshop will not be organized on Monday 31.3. and 21.4.</p><p><b>Participation:</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together. You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/5F2AACA07A6B1D4E46409C42BD5381FA/Tanssi_ja_leikki", "sv": "http://www.caisa.fi/sv/evenemang/event/5F2AACA07A6B1D4E46409C42BD5381FA/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/5F2AACA07A6B1D4E46409C42BD5381FA/The_dance_and_play" }, "provider": null, "short_description": { "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65399/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19667026", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3802085/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667026/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667026/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667026/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235443, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:56.262449Z", "last_modified_time": "2025-02-17T11:16:56.262465Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/72/54/hkt-dreamer222-tickets_341904_2916919_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235443/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:06.862306Z", "last_modified_time": "2025-04-09T22:15:29.033325Z", "date_published": null, "start_time": "2025-04-09T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "en": "Dreamer" }, "description": { "fi": "<p>Helsinki Dance Company & Annamari Keskinen & Ryan Mason<br><strong>DREAMER</strong></p><p>DREAMER on monitaiteellinen tanssiteos näkyvän ja näkymättömän maailman vuorovaikutuksesta. Esitys kutsuu yleisön surrealistiseen odotushuoneeseen, jossa ihmiskehot, liike, musiikki ja tila sulautuvat yhteen.</p><p>Teoksen ilmaisuvoimaiset esiintyjät johdattavat yleisön matkalle alitajunnan syviin virtauksiin, missä piilotetut pelot, toiveet, ja nautinnot tulevat käsinkosketeltaviksi – lihaksi ja liikkeeksi. DREAMER tekee näkyväksi periksiantamattoman pyrkimyksemme tavoitella uskomatonta myös mahdottoman edessä.</p><p>Annamari Keskinen (1985, Suomi) ja Ryan Mason (1980, USA) ovat tulleet tunnetuksi omaäänisistä, vahvan fyysisistä ja usein elokuvamaisista kansainvälisesti arvostetuista näyttämöteoksistaan.</p><p>Rooleissa: Inka Tiitinen, Sofia Hilli, Mikko Paloniemi, Jyrki Kasper, Justus Pienmunne, Pekka Louhio</p><p>Koreografia: Annamari Keskinen ja Ryan Mason<br>Skenografia ja valosuunnittelu: William Iles<br>Pukusuunnittelu: Elina Kolehmainen<br>Sävellys ja äänisuunnittelu: Timo Tikka<br>Naamioinnin suunnittelu: Henri Karjalainen</p>" }, "location_extra_info": { "fi": "Studio Pasila" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Helsinki Dance Company & Annamari Keskinen & Ryan Mason DREAMER DREAMER on monitaiteellinen tanssiteos näkyvän ja näkymättömän maailman vuorovaikutuksesta." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667026/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19352663", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3504617/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352663/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352663/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352663/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235442, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:52.027374Z", "last_modified_time": "2025-02-17T11:16:52.027397Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hktkatrina222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235442/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:06.755434Z", "last_modified_time": "2025-04-09T22:15:28.982868Z", "date_published": null, "start_time": "2025-04-09T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Katrina" }, "description": { "fi": "<p>Sally Salminen – Kaisa Lundán – Aili Järvelä<br><strong>KATRINA</strong></p>", "sv": "<p>Den unga Katrina lockas av kärleken att flytta från Österbotten till Åland för att bli sjömanshustru. Trots att hon blir lämnad ensam, lyckas hon gång på gång övervinna både yttre svårigheter och sig själv. Katrinas stolthet och rättvisa banar väg där hon utmanar samhällets normer och vad det är att vara kvinna.</p><p>Katrina är en klassikerroman som när den kom ut 1936 var banbrytande och gjorde författaren Sally Salminen till en världskändis, och boken översattes till över tjugo språk. Kaisa Lundáns dramatisering och Aili Järveläs nykomponerade musik ger nu nytt liv åt Katrinas berörande berättelse.</p><p>Emma Klingenberg och Aili Järvelä, Ulriikka Heikinheimo och Senni Valtonen sjunger Katrinas hjärtskärande historia, vars budskap är aktuellt än i dag.</p><p>På scen: Emma Klingenberg, Aili Järvelä, Ulriikka Heikinheimo, Senni Valtonen<br>Dramatisering: Kaisa Lundán<br>Kompositör och arrangör: Aili Järvelä<br>Regi: Jakob Höglund<br>Scenografi och design av rekvisita: Heini Maaranen<br>Kostym: Samu-Jussi Koski<br>Ljusdesign: Tobias Lönnquist<br>Ljuddesign: Antero Mansikka<br>Mask: Pia Kähkönen<br>Premiär: 31.1.2024 på Lilla Teatern<br>Uppföranderätt: Nordic Drama Corner</p><p>Föreställningen textas till finska och svenska via appen Subtitle mobile.<br>Föreställningen är ett samarbete mellan Lilla Teatern, Åbo Svenska Teater och Wasa Teater. I Åbo och Vasa spelar föreställningen våren 2025.<br></p>" }, "location_extra_info": { "fi": "Lilla Teatern" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Sally Salminen – Kaisa Lundán", "sv": "Aili Järvelä KATRINA Den unga Katrina lockas av kärleken att flytta från Österbotten till Åland för att bli sjömanshustru." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352663/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19350926", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748849/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-sinun-margot-helsingin-kaupunginteatteri-19350926/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-sinun-margot-helsingin-kaupunginteatteri-19350926/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-sinun-margot-helsingin-kaupunginteatteri-19350926/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235432, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.590376Z", "last_modified_time": "2025-02-17T11:16:41.590394Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/sinun-margot_222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:06.611204Z", "last_modified_time": "2025-04-09T22:15:28.925696Z", "date_published": null, "start_time": "2025-04-09T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sinun, Margot" }, "description": { "fi": "<p>Meri Valkama – Tuomas Timonen<br><strong>Sinun, Margot</strong></p><p>Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nousi heti ilmestyttyään kirjallisuutemme merkkiteokseksi. Helsingin Kaupunginteatteri vastaa lukijoiden ja katsojien lukuisiin pyyntöihin valmistamalla Riikka Oksasen ohjaamana menestysromaanin pohjalta upean teatteriversion suurelle näyttämölle.</p><p>Vilja Siltasen isä Markus on juuri kuollut. Hänen asunnostaan löytyy nippu kirjeitä naiselta nimeltä Margot. Viljan äiti ei suostu sanomaan kirjeistä mitään, joten Viljan on matkustettava takaisin Berliiniin selvittämään, keneltä kirjeet ovat.</p><p>Vilja on varttunut DDR:ssä, jossa hänen isänsä työskenteli ulkomaankirjeenvaihtajana 1980-luvun alkupuolella. Perhe piti Itä-Saksaa ihannevaltiona. Sitten Berliinin muuri murtui ja perheonni hajosi. Miksi? Ja kuka kirjeiden Margot oikein on?</p><p>Sinun, Margot laajenee yksilön ja perheen tarinasta suureksi, kokonaista aikakautta tarkastelevaksi jännitysnäytelmäksi. Otteessaan pitävä draama onnistuu pohtimaan poikkeuksellisella tavalla ajankohtaisia kysymyksiä: Voiko menneisyyden muistaminen auttaa ymmärtämään nykyisyyttä?</p><p>Sinun, Margot on intensiivinen, psykologinen näytelmä siitä, mitä tapahtuu, kun ihanteelliseksi rakennettu kuva elämästä, aatteesta, tai ihmisestä alkaa särkyä. Kuka tai mitä ihminen lopulta on, jollei tiedä totuutta omasta menneisyydestään?</p><p>Viljan roolissa nähdään Jussi-palkittu Satu Tuuli Karhu. Margotina loistaa elokuvista ja televisiosta tuttu Sara Soulié. Viljan isää Markusta näyttelee useissa elokuvissa vaikutuksen tehnyt Martin Bahne ja Viljan äitiä Rosaa näyttelee upea Sanna-June Hyde.</p><p>Rooleissa: Satu Tuuli Karhu, Sara Soulié, Martin Bahne, Helena Haaranen, Vuokko Hovatta, Sanna-June Hyde, Tuukka Leppänen, Lasse Lipponen, Sanna Majuri, Risto Kaskilahti, Samuli Pajunen, Emma Pälsynaho, Raili Raitala</p><p>Kirjailija: Meri Valkama<br>Dramatisointi: Tuomas Timonen<br>Ohjaus: Riikka Oksanen<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Tiina Kaukanen<br>Valo- ja videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Milja Mensonen<br>Dramaturgi: Ari-Pekka Lahti<br>Ohjaajan assistentti: Kirsi Karlenius</p>" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Meri Valkama – Tuomas Timonen Sinun, Margot Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nous" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350926/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65180", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3764093", "sv": "https://www.lippu.fi/eventseries/name-3764093", "en": "https://www.lippu.fi/eventseries/name-3764093" }, "description": null, "price": { "fi": "29-39 €", "sv": "29-39 €", "en": "29-39 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153297, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-05T16:14:26.635357Z", "last_modified_time": "2024-12-05T16:14:26.635375Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764231.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153297/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-05T16:14:26.607152Z", "last_modified_time": "2025-04-09T12:14:29.747621Z", "date_published": null, "start_time": "2025-04-26T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Blues and more at Savoy: Pepe & Joel Ahlqvist ja Jussu Pöyhönen Trio", "sv": "Blues and more at Savoy: Pepe & Joel Ahlqvist ja Jussu Pöyhönen Trio", "en": "Blues and more at Savoy: Pepe & Joel Ahlqvist ja Jussu Pöyhönen Trio" }, "description": { "fi": "<p>Euroopan blueshuippuihin kuuluva Pepe Ahlqvist on kansainvälisesti tunnettu ja arvostettu bluesmuusikko. Lähes viisikymmentä vuotta kestäneellä uralla tehdyt menestyksekkäät äänitteet sekä vuosien varrella heitetyt yli 6000 keikkaa ovat taanneet vakaan suosion läpi vuosien.</p><p><b>Pepe Ahlqvist</b> sai elämäntyöpalkinnon Finnish Blues Awards -tapahtumassa Helsingissä 14. tammikuuta 2017. Finnish Blues Awards -palkintojen saajat valitaan alan vaikuttajien keskuudessa. Prosessiin osallistuu yli 300 muusikkoa, keikkajärjestäjää, toimittajaa ja muuta aktiivia ympäri Suomen. Pepe palkittiin urasta, joka levittäytyy viiden vuosikymmenen ajalle. Viime vuosina Pepe on tehnyt keikkaa myös poikansa Joelin kanssa.</p><p><b>Joel Ahlqvist</b> on vuonna 1997 syntynyt kitaristi, laulaja-lauluntekijä ja huuliharpisti. Joel opiskeli aluksi klassista kitaraa ja jatkoi opiskelua Helsingin Pop & Jazz Konservatoriossa. Hänet tunnetaan myös Hip hop/Rap piireissä nimellä ''PHDS'' biisin tekijänä sekä tuottajana. Joel on mukana myös erilaisissa bändiprojekteissa.</p><p>Pepe ja Joel valittiin edustamaan Suomea International Blues Challenge tapahtumaan Memphisiin USA:han vuonna 2017.</p><p><b>Jussu Pöyhönen</b> tunnetaan parhaiten yli 30 -vuotisesta urastaan Suurlähettiläät -yhtyeen nokkamiehenä. Emman voittaneen ja useampia kulta- ja platinalevyjä myyneen bändin lukuisten klassikkobiisien (mm. <i>Elokuun 11., Pitääxunaina?, Kuka pysäyttäisi kellot?, Maailman laidalla, Kun Tänään Lähden</i> ja <i>Mitä miehen tulee olla?</i>) lisäksi Jussu on tehnyt kolme soololevyä, viimeisimpänä keväällä 2023 julkaistu <i>Pinnalla</i> (Sonymusic Finland), josta radioon nousseita biisejä ovat olleet mm. <i>Pinnalla, Sydämessä Matkustaja</i> ja <i>Ootko Siinä Vielä Sitten Kun</i>, joka sai koskettavan ensiesityksensä MTV3:n Laulu Rakkaudelle -ohjelmassa helmikuussa 2023.<br>Savoy-teatterissa Jussu esiintyy oman bändinsä kanssa. Repertuaariin kuuluu niin monet Suurlähettiläät -suosikit kuin mielenkiintoisimmat uudet biisitkin. Karismaattisena esiintyjänä ja notkeaäänisenä laulajana tunnetun Jussun esiintymiset ovat vangitsevia ja päättyvät lähes poikkeuksetta yhteislauluun.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>***</p><p>Blues and more at Savoy -konsertin (8.2.2025) liput käyvät sellaisenaan lauantaina 26.4.2025 klo 19 alkavaan konserttiin. Lippuja ei tarvitse vaihtaa.</p>", "sv": "<p>Pepe Ahlqvist är en internationellt känd och respekterad bluesmusiker, som räknas bland de främsta i Europa. De framgångsrika inspelningarna och över 6 000 spelningar under den nästan femtio år långa karriären har garanterat en stadig popularitet genom åren.</p><p>Pepe Ahlqvist belönades med ett pris för sitt livsarbete vid evenemanget Finnish Blues Awards i Helsingfors den 14 januari 2017. Vinnarna av Finnish Blues Awards utses av en panel bestående av inflytelserika personer inom branschen. I processen deltar mer än 300 musiker, arrangörer av spelningar, journalister och andra aktiva från hela Finland. Pepe belönades för en karriär som sträcker sig över fem decennier. På senare år har Pepe även uppträtt med sin son Joel.</p><p>Joel Ahlqvist är en gitarrist, sångare och låtskrivare och munspelare född 1997. Joel studerade först klassisk gitarr och fortsatte sedan sina studier vid Pop & Jazz Konservatoriet i Helsingfors. Han är också känd som låtskrivare och producent i Hip hop/Rap-kretsar under namnet “PHDS”. Joel är också med i olika bandprojekt.</p><p>År 2017 valdes Pepe och Joel ut att representera Finland vid International Blues Challenge i Memphis, USA.</p><p>Jussu Pöyhönen är mest känd för sin 30-åriga karriär som frontman för bandet Suurlähettiläät. Bandet har belönats med ett Emma-pris och sålt flera guld- och platinaalbum. Utöver bandets talrika klassiker (bland annat Elokuun 11, Pitääxunaina?, Kuka pysäyttäisi kellot?, Maailman laidalla, Kun Tänään Lähden och Mitä miehen tulee olla?), har Jussu har gjort tre soloalbum, varav det senaste, Pinnalla (Sonymusic Finland), släpptes våren 2023. Låtar från albumet som spelats i radio inkluderar Pinnalla, Sydämessä Matkustaja och Ootko Siinä Vielä Sitten Kun, som fick en rörande premiär i programmet Laulu Rakkaudelle på MTV3 i februari 2023.<br>På Savoy-teatern uppträder Jussu med sitt eget band. Repertoaren innehåller många av Suurlähettilääts favoriter och spännande nya låtar. Jussu är känd för sin scenkarisma och sin smidiga röst, och hans framträdanden är fängslande och slutar nästan alltid med allsång.</p><p>Längd ca 2 h, inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p><p>***</p><p>Biljetterna till konserten Blues and more at Savoy (8.2.2025) gäller som sådana för konserten som börjar söndag 26.4.2025 kl. 19. Det finns inget behov av att byta biljetter.</p>", "en": "<p>Pepe Ahlqvist, one of the top blues musicians in Europe, is an internationally known and respected blues musician. Successful recordings made over a career spanning nearly fifty years, as well as more than 6,000 gigs over the years, have ensured steady popularity throughout the years.</p><p>Pepe Ahlqvist was awarded the Lifetime Achievement Award at the Finnish Blues Awards even in Helsinki on 14 January 2017. The winners of the Finnish Blues Awards are selected among influencers in the music industry. More than 300 musicians, gig organisers, journalists and other active people from all over Finland participate in the process. Pepe was rewarded for a career that spans five decades. In recent years, Pepe has also done a gig with his son Joel.</p><p>Joel Ahlqvist is a guitarist, singer-songwriter and harmonica player born in 1997. Joel initially studied classical guitar and continued his studies at the Helsinki Pop & Jazz Conservatory. He is also known in Hip Hop/Rap circles as the author and producer of the song “PHDS”. Joel is also involved in various band projects.</p><p>Pepe and Joel were selected to represent Finland in the International Blues Challenge in Memphis, USA in 2017.</p><p>Jussu Pöyhönen is best known for his over 30-year career as a frontman for the band Suurlähettiläät. The band, which has won Emma and sold several gold and platinum albums, has a number of classic songs (e.g. Elokuu 11., Pitääxunaina?, Kuka pysäyttäisi kellot?, Maailman laidalla, Kun Tänään Lähden and Mitä miehen tulee olla?), and Jussu has also made three solo albums, the latest of which was Pinnalla, published in spring 2023 (Sonymusic Finland), from which songs played on the radio include Pinnalla, Sydämessä Matkustaja and Ootko Siinä Vielä Sitten Kun, which received its touching premiere on MTV3’s Laulu Rakkaudelle programme in February 2023.<br>At the Savoy Theatre, Jussu will perform with his own band. The repertoire includes many Suurlähettiläät favourites as well as the most interesting new songs. Known as a charismatic performer and flexibly-voiced singer, Jussu’s performances are captivating and almost invariably end with a sing-along.</p><p>Duration: approx. 2 h, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area.</p><p>***</p><p>The tickets for the Blues and more at Savoy concert (8 February 2025) are valid as such for the concert starting at 7 pm on Saturday 26 April 2025 No need to change tickets.</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CC6C4FF384753DA7C486D78FF8AF1D2C/Blues_and_more_at_Savoy_Pepe_Joel_Ahlqvist_ja_Jussu_Poyhonen_Trio", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/CC6C4FF384753DA7C486D78FF8AF1D2C/Blues_and_more_at_Savoy_Pepe_Joel_Ahlqvist_ja_Jussu_Poyhonen_Trio", "en": "http://www.savoyteatteri.fi/en/events/event/CC6C4FF384753DA7C486D78FF8AF1D2C/Blues_and_more_at_Savoy_Pepe_Joel_Ahlqvist_ja_Jussu_Poyhonen_Trio" }, "provider": { "fi": "General Bass", "sv": "General Bass", "en": "General Bass" }, "short_description": { "fi": "Euroopan blueshuippuihin kuuluva Pepe Ahlqvist on kansainvälisesti tunnettu ja arvostettu bluesmuusikko. Lähes viisikymmentä vuotta kestäneellä uralla tehdyt menestyksekkäät äänitteet sekä vuosien varrella heitetyt yli 6000 keikkaa ovat taanneet vakaan suosion läpi vuosien.", "sv": "Pepe Ahlqvist är en internationellt känd och respekterad bluesmusiker, som räknas bland de främsta i Europa. De framgångsrika inspelningarna och över 6 000 spelningar under den nästan femtio år långa karriären har garanterat en stadig popularitet genom åren.", "en": "Pepe Ahlqvist, one of the top blues musicians in Europe, is an internationally known and respected blues musician. Successful recordings made over a career spanning nearly fifty years, as well as more than 6,000 gigs over the years, have ensured steady popularity throughout the years." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65180/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65991", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/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:p21812/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 498195, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T11:14:27.847487Z", "last_modified_time": "2025-04-09T11:14:27.847503Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769660.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/498195/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-09T11:14:27.819305Z", "last_modified_time": "2025-04-09T11:14:27.910888Z", "date_published": null, "start_time": "2025-05-17T09:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Avoin näyttelyopastus: Huudetaanko?", "sv": "Avoin näyttelyopastus: Huudetaanko?", "en": "Avoin näyttelyopastus: Huudetaanko?" }, "description": { "fi": "<p>Tule tutustumaan Annantalon oppilastyönäyttelyyn!</p><p>Lastenkulttuurin juhlaviikolla lapset pääsevät ääneen! Tule kuulemaan, kun näyttelyn nuoret taiteilijat kertovat teoksistaan ja niiden työstämisestä.</p><p>Huudetaanko? on taidenäyttely, joka kutsuu sinut pohtimaan ääntä eri näkökulmista. Mistä ääni syntyy, miten se vaikuttaa meihin ja millä tavoin ääntä voi käyttää itsensä ilmaisemiseen? Näyttely jatkaa syyskaudella 2024 Annantalolla alkanutta tutkimusmatkaa äänen maailmaan. Esillä on sekä Annantalon oppilasryhmien että ammattitaiteilijoiden teoksia.</p><p>Opastuksen kesto on noin 30min.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Kieli: suomi</p><p>Lastenkulttuurin juhlaviikkoa juhlistetaan Annantalolla 12.–18.5.2025.</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/39B44B7D33E0BDC3A05FACA4DA11BFA7/Avoin_nayttelyopastus_Huudetaanko_", "sv": "http://www.annantalo.fi/sv/evenemang/event/39B44B7D33E0BDC3A05FACA4DA11BFA7/Avoin_nayttelyopastus_Huudetaanko_", "en": "http://www.annantalo.fi/en/events/event/39B44B7D33E0BDC3A05FACA4DA11BFA7/Avoin_nayttelyopastus_Huudetaanko_" }, "provider": null, "short_description": { "fi": "Tule tutustumaan Annantalon oppilastyönäyttelyyn!" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65991/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65132", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3786074", "sv": "https://www.lippu.fi/eventseries/3786074", "en": "https://www.lippu.fi/eventseries/3786074" }, "description": null, "price": { "fi": "17-54 €", "sv": "17-54 €", "en": "17-54 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153377, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T17:15:46.486096Z", "last_modified_time": "2024-12-10T17:15:46.486115Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763506.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153377/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-29T14:14:11.152819Z", "last_modified_time": "2025-04-09T11:14:24.821970Z", "date_published": null, "start_time": "2025-05-01T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Savoyn vappu: Vesku – Jazzmies – Lenni-Kalle Taipale & Kalle Torniainen Band, feat. Arja Saijonmaa", "sv": "Första maj på Savoy: Vesku – Jazzmannen – Lenni-Kalle Taipale & Kalle Torniainen Band, feat. Arja Saijonmaa", "en": "Savoy’s May Day: Vesku – Jazzman – Lenni-Kalle Taipale & Kalle Torniainen Band, feat. Arja Saijonmaa" }, "description": { "fi": "<p>Hiljattain edesmennyt laulaja-näyttelijä, kaatumisen Suomen mestari, jalkapalloilija, nyrkkeilijä ja biljardihai Vesa-Matti Loiri oli jazzmies henkeen ja vereen. Lempimusiikistaan ja parhaista bändeistä Veskulla oli yhtä vahvat näkemykset kuin Uunolla kerman ja sokerin määrästä kahvissa.</p><p>Vappupäivänä Savoy-teatterissa esiintyvän superkokoonpanon kantavina voimina toimivat Veskun lempimuusikot <b>Lenni-Kalle Taipale</b> ja <b>Kalle Torniainen</b>, jotka yhtyeineen muotoilevat ikimuistoisen konsertin Loirin rakastamien jazzbiisien ympärille. Konsertissa kuullaan versiot mm. Chick Corean <i>Spain</i> ja Weather Reportin <i>Birdland</i>.kappaleista Solistiksi kappaleita tulkitsemaan saadaan myös upea <b>Arja Saijonmaa</b>.</p><p>Kalle Torniainen – rummut<br>Lenni-Kalle Taipale – piano ja koskettimet<br>Osmo Ikonen – basso ja laulu<br>Marzi Nyman – kitara<br>Jukka Eskola – trumpetti<br>Pope Puolitaival – saksofoni ja huilu<br>Arja Saijonmaa – laulu</p><p>Kesto n. 2 h sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>Tarjolla myös Vapun brunssipaketit – Nauti herkullinen vappubrunssi ennen konserttia Ravintola Minne Garden & Loungessa.</p><p><b>Show & Brunssi -lippu</b> (93 €) sisältää pääsylipun sekä vappubrunssin.</p><p><i>Brunssi on katettu Savoy-teatterin ravintola Minne Gardenissa kaksi tuntia ennen esityksen alkua.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).<br>Brunssin hinta ei sisällä juomia</i></p><p>Lisätiedot, erikoisruokavaliot, juomatilaukset ja yli 20 hengen Brunssi -ryhmävaraukset: terhi.grohn@sunbornevents.fi</p>", "sv": "<p>Den nyligen bortgångne sångaren och skådespelaren Vesa-Matti Loiri, finsk mästare på att falla, fotbollsspelare, boxare och biljardhaj, var en jazzman till kropp, liv och själ. Då det gällde favoritmusik och de bästa banden hade Vesku lika starka åsikter som Uuno hade om mängden grädde och socker i sitt kaffe.</p><p>De bärande krafterna i superensemblen som uppträder på Savoy-teatern på första maj är Veskus favoritmusiker Lenni-Kalle Taipale och Kalle Torniainen, som tillsammans med sitt band skapar en minnesvärd konsert kring de jazzlåtar Loiri älskade. På konserten får vi bland annat höra Chick Coreas Spain och Weather Reports Birdland. Vi får även höra den underbara Arja Saijonmaa tolka sångerna som solist.</p><p>Kalle Torniainen – trummor<br>Lenni-Kalle Taipale – piano och keyboard<br>Osmo Ikonen – bas och sång<br>Marzi Nyman – gitarr<br>Jukka Eskola – trumpet<br>Pope Puolitaival – saxofon och flöjt<br>Arja Saijonmaa – sång</p><p>Längd ca 2 h, inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p><p>Vi erbjuder även ett Första maj-brunchpaket – Njut av en utsökt Första maj-brunch före konserten på restaurang Minne Garden & Lounge.</p><p>Show & Brunch-biljetten (93 euro) inkluderar en entrébiljett och Första maj-brunch.</p><p>Brunchen serveras på Savoy-teaterns restaurang Minne Garden två timmar före föreställningen.<br>Specialdieter kan tillgodoses genom förhandsbeställning (senast 3 dagar före föreställningen). <br>Brunchpriset inkluderar inte drycker</p><p>För mer information, specialdieter, dryckesbeställningar och gruppbokningar av brunsch för fler än 20 personer: terhi.grohn@sunbornevents.fi</p>", "en": "<p>The recently deceased singer/actor, the Finnish champion of falling, footballer, boxer and pool shark Vesa-Matti Loiri was a jazzman in spirit and blood. About his favourite music and the best bands, Vesku had as strong views as film character Uuno Turhapuro on the amount of cream and sugar in coffee.</p><p>The super assembly performing at the Savoy Theatre on May Day will be powered by Vesku’s favourite musicians Lenni-Kalle Taipale and Kalle Torniainen, who will give a memorable concert around the jazz songs that Loiri loved. The concert will feature, among others, Chick Corean Spain and Weather Report’s Birdland. Some of the songs will be interpreted by the gorgeous Arja Saijonmaa.</p><p>Kalle Torniainen – drums<br>Lenni-Kalle Taipale – piano and keyboards<br>Osmo Ikonen – bass and vocals<br>Marzi Nyman – guitar<br>Jukka Eskola – trumpet<br>Pope Puolitaival – saxophone and flute<br>Arja Saijonmaa – vocals</p><p>Duration: approx. 2 h, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area.</p><p>Also on offer are May Day brunch packages – Enjoy a delicious May Day brunch before the concert at Restaurant Minne Garden & Lounge.</p><p>Show & Brunch ticket (€93) includes the entrance ticket and the May Day brunch.</p><p>The brunch is set in the restaurant Minne Garden at the Savoy Theatre two hours before the performance begins.<br>Special diets are taken into account upon pre-order (latest 3 days before the performance).<br>Brunch price does not include drinks</p><p>Additional information, special diets, drink orders and Brunch group reservations for more than 20 people: terhi.grohn@sunbornevents.fi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/16EF53EB003FC6DAFCA2F00AACBA753C/Savoyn_vappu_Vesku_Jazzmies", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/16EF53EB003FC6DAFCA2F00AACBA753C/Forsta_maj_pa_Savoy_Vesku_Jazzmannen", "en": "http://www.savoyteatteri.fi/en/events/event/16EF53EB003FC6DAFCA2F00AACBA753C/Savoy_s_May_Day_Vesku_Jazzman" }, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "short_description": { "fi": "Hiljattain edesmennyt laulaja-näyttelijä, kaatumisen Suomen mestari, jalkapalloilija, nyrkkeilijä ja biljardihai Vesa-Matti Loiri oli jazzmies henkeen ja vereen. Lempimusiikistaan ja parhaista bändeistä Veskulla oli yhtä vahvat näkemykset kuin Uunolla kerman ja sokerin määrästä kahvissa.", "sv": "Den nyligen bortgångne sångaren och skådespelaren Vesa-Matti Loiri, finsk mästare på att falla, fotbollsspelare, boxare och biljardhaj, var en jazzman till kropp, liv och själ. Då det gällde favoritmusik och de bästa banden hade Vesku lika starka åsikter som Uuno hade om mängden grädde och socker i sitt kaffe.", "en": "The recently deceased singer/actor, the Finnish champion of falling, footballer, boxer and pool shark Vesa-Matti Loiri was a jazzman in spirit and blood. About his favourite music and the best bands, Vesku had as strong views as film character Uuno Turhapuro on the amount of cream and sugar in coffee." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65132/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66009", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@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/kino-helios/kino-helios-minecraft-dub-3872784/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497911, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:29.825869Z", "last_modified_time": "2025-04-09T10:13:29.825882Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759097.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497911/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-09T10:13:29.814058Z", "last_modified_time": "2025-04-09T10:13:29.867003Z", "date_published": null, "start_time": "2025-05-10T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Minecraft (7) – Kino Helios", "sv": "Minecraft (7) – Kino Helios", "en": "Minecraft (7) – Kino Helios" }, "description": { "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_", "en": "http://www.malmitalo.fi/en/events/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_" }, "provider": null, "short_description": { "fi": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66009/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66012", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497909, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:29.433288Z", "last_modified_time": "2025-04-09T10:13:29.433301Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759094.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497909/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:29.418704Z", "last_modified_time": "2025-04-09T10:13:29.467343Z", "date_published": null, "start_time": "2025-05-09T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Orenda (7) – Kino Helios", "sv": "Orenda (7) – Kino Helios", "en": "Orenda (7) – Kino Helios" }, "description": { "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_", "en": "http://www.malmitalo.fi/en/events/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_" }, "provider": null, "short_description": { "fi": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66012/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66008", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@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/kino-helios/kino-helios-minecraft-dub-3872784/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497907, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:28.376110Z", "last_modified_time": "2025-04-09T10:13:28.376127Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759088.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497907/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-09T10:13:28.363322Z", "last_modified_time": "2025-04-09T10:13:28.414860Z", "date_published": null, "start_time": "2025-05-03T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Minecraft (7) – Kino Helios", "sv": "Minecraft (7) – Kino Helios", "en": "Minecraft (7) – Kino Helios" }, "description": { "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_", "en": "http://www.malmitalo.fi/en/events/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_" }, "provider": null, "short_description": { "fi": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66008/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66011", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497906, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:28.178320Z", "last_modified_time": "2025-04-09T10:13:28.178345Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759086.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497906/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:28.163998Z", "last_modified_time": "2025-04-09T10:13:28.214969Z", "date_published": null, "start_time": "2025-05-02T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Orenda (7) – Kino Helios", "sv": "Orenda (7) – Kino Helios", "en": "Orenda (7) – Kino Helios" }, "description": { "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_", "en": "http://www.malmitalo.fi/en/events/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_" }, "provider": null, "short_description": { "fi": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66011/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66007", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@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/kino-helios/kino-helios-minecraft-dub-3872784/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:27.458128Z", "last_modified_time": "2025-04-09T10:13:27.458141Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759079.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497904/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-09T10:13:27.444063Z", "last_modified_time": "2025-04-09T10:13:27.504051Z", "date_published": null, "start_time": "2025-04-26T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Minecraft (7) – Kino Helios", "sv": "Minecraft (7) – Kino Helios", "en": "Minecraft (7) – Kino Helios" }, "description": { "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_", "en": "http://www.malmitalo.fi/en/events/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_" }, "provider": null, "short_description": { "fi": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66007/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66010", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497903, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:27.080715Z", "last_modified_time": "2025-04-09T10:13:27.080729Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759077.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497903/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:27.065115Z", "last_modified_time": "2025-04-09T10:13:27.115258Z", "date_published": null, "start_time": "2025-04-25T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Orenda (7) – Kino Helios", "sv": "Orenda (7) – Kino Helios", "en": "Orenda (7) – Kino Helios" }, "description": { "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_", "en": "http://www.malmitalo.fi/en/events/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_" }, "provider": null, "short_description": { "fi": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66010/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65999", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497619, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T09:13:26.598035Z", "last_modified_time": "2025-04-09T09:13:26.598047Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759098.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497619/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T09:13:26.584298Z", "last_modified_time": "2025-04-09T09:13:26.630929Z", "date_published": null, "start_time": "2025-05-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Flow (7) – Kino Helios", "sv": "Flow (7) – Kino Helios", "en": "Flow (7) – Kino Helios" }, "description": { "fi": "<p>Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 28.03.2025</p><p>Tekstitys: ei puhuttua dialogia</p>", "sv": "<p>Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.</p><p>En modig katt möter en stor tsunami. Katten räddar sig i en båt tillsammans med en glad hund, en trött kapybara, en busig maki och en arg fågel. Djuren gör en äventyrlig resa genom storslagen natur och mystiska städer – en ny och främmande värld där samarbete och vänskap är det viktigaste.</p><p>I den dialoglösa filmen står musiken i centrum – och delar av den är skapad i Finland! En fantastisk filmupplevelse för både barn och vuxna, överöst med de största internationella priserna, med en Oscar för bästa animerade film som kronan på verket.</p><p>Åldersgräns: 7 år<br>Längd: 85 min<br>Textning: ingen talad dialog</p>", "en": "<p>Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature.</p><p>A brave cat faces a massive tsunami. The cat escapes in a boat with a cheerful dog, a tired capybara, a mischievous lemur, and a grumpy bird. Together, the animals embark on an adventure through breathtaking nature and mysterious cities – a strange new world where cooperation and friendship matter most.</p><p>In this dialogue-free film, music takes the spotlight – and part of it was crafted in Finland! A fantastic cinematic experience for both children and adults, showered with top international awards, crowned by the Oscar for Best Animated Feature.</p><p>Age rating: 7<br>Duration: 85 min<br>Subtitles: no spoken dialogue</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_", "en": "http://www.malmitalo.fi/en/events/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_" }, "provider": null, "short_description": { "fi": "Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.", "sv": "Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.", "en": "Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65999/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66002", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497618, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T09:13:25.853228Z", "last_modified_time": "2025-04-09T09:13:25.853242Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759092.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497618/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T09:13:25.841104Z", "last_modified_time": "2025-04-09T09:13:25.889964Z", "date_published": null, "start_time": "2025-05-07T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Black Bag (12) – Kino Helios", "sv": "Black Bag (12) – Kino Helios", "en": "Black Bag (12) – Kino Helios" }, "description": { "fi": "<p>Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä.</p><p>Ohjaaja Steven Soderberghin uusi elokuva Black Bag on tiivistunnelmainen vakoiludraama. Elokuva kertoo kahdesta legendaarisesta tiedustelupalvelun agentista, George Woodhousesta ja hänen rakkaasta vaimostaan Kathrynistä.</p><p>Kun Kathrynia epäillään maanpetoksesta, George joutuu äärimmäiseen koetukseen – hänen on päätettävä, ollako lojaali vaimolleen vai kotimaalleen.</p><p>Pääosissa: Cate Blanchett ja Michael Fassbender</p><p>Ikäraja: 12<br>Kesto: 94 min<br>Ensi-ilta: 17.04.2025<br>Tekstitys: suomi, ruotsi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_", "en": "http://www.malmitalo.fi/en/events/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_" }, "provider": null, "short_description": { "fi": "Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66001", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497617, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T09:13:25.283108Z", "last_modified_time": "2025-04-09T09:13:25.283160Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759089.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497617/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T09:13:25.266610Z", "last_modified_time": "2025-04-09T09:13:25.317324Z", "date_published": null, "start_time": "2025-05-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, "name": { "fi": "Black Bag (12) – Kino Helios", "sv": "Black Bag (12) – Kino Helios", "en": "Black Bag (12) – Kino Helios" }, "description": { "fi": "<p>Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä.</p><p>Ohjaaja Steven Soderberghin uusi elokuva Black Bag on tiivistunnelmainen vakoiludraama. Elokuva kertoo kahdesta legendaarisesta tiedustelupalvelun agentista, George Woodhousesta ja hänen rakkaasta vaimostaan Kathrynistä.</p><p>Kun Kathrynia epäillään maanpetoksesta, George joutuu äärimmäiseen koetukseen – hänen on päätettävä, ollako lojaali vaimolleen vai kotimaalleen.</p><p>Pääosissa: Cate Blanchett ja Michael Fassbender</p><p>Ikäraja: 12<br>Kesto: 94 min<br>Ensi-ilta: 17.04.2025<br>Tekstitys: suomi, ruotsi</p>" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6B62AFDC0C965026949C9133F57E5EE0/Black_Bag_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6B62AFDC0C965026949C9133F57E5EE0/Black_Bag_12_", "en": "http://www.malmitalo.fi/en/events/event/6B62AFDC0C965026949C9133F57E5EE0/Black_Bag_12_" }, "provider": null, "short_description": { "fi": "Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä." }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66001/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26813, "next": "