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=237®istration__remaining_waiting_list_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=238®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=236®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "lippupiste:19327116", "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-3706017/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/lempi-helsingin-kaupunginteatteri-19327116/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lempi-helsingin-kaupunginteatteri-19327116/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lempi-helsingin-kaupunginteatteri-19327116/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.259210Z", "last_modified_time": "2025-02-17T11:16:42.259224Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hktlempi_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/235434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:16:44.178958Z", "last_modified_time": "2025-02-26T02:16:11.683569Z", "date_published": null, "start_time": "2025-02-25T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lempi-3706017/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lempi-3706017/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lempi-3706017/?affiliate=ADV&language=en" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "description": { "fi": "<p>Minna Rytisalo - Miika Muranen - Sinikka Sanelma<br><strong>LEMPI</strong></p><p>On vuosi 1944. Rovaniemen kauppalassa kaksostytöt Lempi ja Sisko elävät nuoruuttaan saksalaissotilaiden huomion keskellä. Oman rakkautensa sotilaiden joukosta löytänyt Sisko haastaa sisarensa vedonlyöntiin, jonka seurauksena Lempi rakastuu nuoreen Viljamiin ja tulee raskaaksi.</p><p>Syttyy sota ja Lempi jää asumaan lappilaiseen syrjäkylään piikatyttö Ellin kanssa. Kun Viljami palaa kotiin rintamalta, Lempi on kadonnut. Kukaan ei tiedä, minne ja miksi. Lempiä, jonka ääniroolissa kuullaan Krista Kosonen, ei näytelmässä nähdä, vaan hänen elämäntarinansa avautuu Viljamin, Ellin ja Lempin kaksoissisaren Siskon kertoman pohjalta. Kuka Lempi todella oli? Mitä hänelle tapahtui?</p><p>Voiko toista ihmistä koskaan nähdä kokonaan?</p><p>Minna Rytisalon esikoisromaaniin pohjautuva Lempi on tiheätunnelmainen draama intohimosta, sattumasta ja rakkauden voimasta. Näytelmän ohjaa Miika Muranen, jonka edellistä ohjausta, Agatha Christien Hiirenloukkua esitettiin Arena-näyttämöllä ja suurella näyttämöllä täysille katsomoille 2023–2024.</p><p>Rooleissa: Vappu Nalbantoglu, Ursula Salo, Sauli Suonpää<br>Äänirooleissa: Krista Kosonen, Risto Kaskilahti, Lenno Paalanen, Alvar Paloniemi, Pekka Huotari, Jouko Klemettilä, Miika Muranen, Santeri Kinnunen, Helena Haaranen, Leenamari Unho<br>Alkuperäisteos: Minna Rytisalo<br>Ohjaus ja dramatisointi: Miika Muranen<br>Dramatisointi: Sinikka Sanelma<br>Lavastus-, projisointi- ja pukusuunnittelu: Reija Hirvikoski<br>Projisointien toteutus: Mika Haaranen<br>Valosuunnittelu: Kari Leppälä<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Tuula Kuittinen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri <br>Lipunvälittäjä: Lippupiste Oy</p>" }, "name": { "fi": "Lempi" }, "short_description": { "fi": "Minna Rytisalo - Miika Muranen - Sinikka Sanelma LEMPI On vuosi 1944." }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19327116/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65631", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 236069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T15:13:20.468518Z", "last_modified_time": "2025-02-17T15:13:20.468532Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765721.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/236069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T15:13:20.420530Z", "last_modified_time": "2025-02-25T17:14:29.427083Z", "date_published": null, "start_time": "2025-03-07T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/214CB566BC07190D90A0BE3E3E44B08A/Savoy_JAZZFest_Keskustelutilaisuus_teemana_UMO_Helsinki_ja_big_band_-musiikki_Suomessa" }, "provider_contact_info": null, "provider": { "fi": "Savoy-teatteri" }, "description": { "fi": "<p>Perjantaina 7.3. Savoy JAZZFestissä järjestetään keskustelutilaisuus teemana UMO Helsinki Jazz Orchestra, joka viettää 50-vuotisjuhlakauttaan kesästä 2025 kevääseen 2026. Keskustelussa katsotaan suomalaisen big band -musiikin historiaan, nykytilaan ja tulevaisuudennäkymiin.</p><p>Keskustelemassa ovat UMO Helsinki Jazz Orchestran tuore toimitusjohtaja Henriika Steidel-Luoto, suomalaisen jazzin merkkihahmo, saksofonisti Eero Koivistoinen, vuonna 2023 UMOn riveissä vakituisena aloittanut saksofonisti Max Zenger sekä Sointi Jazz ry:n hallituksen jäsen, big band -säveltäjä Oskari Siirtola. Paneelikeskustelun vetäjänä toimii toimittaja Katri Kallionpää.</p><p>Tilaisuus kestää n. 50 min, ja sinne on vapaa pääsy. Keskustelu pidetään Savoy-teatterin salissa.</p>" }, "name": { "fi": "Savoy JAZZFest: Keskustelutilaisuus teemana UMO Helsinki ja big band -musiikki Suomessa" }, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65631/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65669", "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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 268554, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T17:14:27.651468Z", "last_modified_time": "2025-02-25T17:14:27.651491Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765962.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/268554/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-25T17:14:27.599450Z", "last_modified_time": "2025-02-25T17:14:27.727538Z", "date_published": null, "start_time": "2025-03-04", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7E9C199A88DE921D2040A5BAAB2013DA/Savoy_JAZZFest_X_HSL" }, "provider_contact_info": null, "provider": { "fi": "Savoy-teatteri" }, "description": { "fi": "<p>Savoy-teatteri on aloittanut Helsingin seudun liikenteen kanssa tapahtumayhteistyön, jota pilotoidaan Savoy JAZZFest 2025 -tapahtumassa. Yhteistyön tavoitteena on edistää vastuullisuutta ja kestäviä liikennemuotoja.</p><p>Savoy JAZZFest -konserttilipun hintaan sisältyy 1 kpl matkalippuja, joiden matkustusaika on 80 minuuttia. 4 päivän festivaalipassin ostajat saavat neljän vuorokauden lipun. Lippu kattaa AB-vyöhykkeet.</p><p>HSL-edun saa lippuihin, jotka on ostettu maanantaihin 3.3. mennessä. Jokainen sähköpostiosoitteensa antanut lipunostaja tulee saamaan Lippupisteeltä tarkemmat ohjeet ja lippukohtaisen koodin matkalipun lunastukseen tiistaina 4.3.</p>" }, "name": { "fi": "Savoy JAZZFest X HSL – Sporalla Savoyhin, julkisilla JAZZFestiin" }, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65669/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65647", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 268207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T15:14:35.669201Z", "last_modified_time": "2025-02-25T15:14:35.669217Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765845.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/268207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-25T15:14:35.626506Z", "last_modified_time": "2025-02-25T15:14:35.746640Z", "date_published": null, "start_time": "2025-05-09", "end_time": "2025-06-08", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/75BD63425E82ACF9F2002188AE500B77/Carolina_Mac-Iver_Lilian_Mac-Iver_Women_of_the_World_in_Finland_", "sv": "http://www.stoa.fi/sv/evenemang/event/75BD63425E82ACF9F2002188AE500B77/Carolina_Mac-Iver_Lilian_Mac-Iver_Women_of_the_World_in_Finland_", "en": "http://www.stoa.fi/en/events/event/75BD63425E82ACF9F2002188AE500B77/Carolina_Mac-Iver_Lilian_Mac-Iver_Women_of_the_World_in_Finland_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Näyttely koostuu 16 maalauksesta, joiden inspiraationa ovat olleet Suomeen eri maista muuttaneet naiset.</p><p>Lisäksi yhden maalauksen aiheena on nuori kantasuomalaisnainen. Kaikki taulut ovat öljyvärimaalauksia.</p><p>Women of the World in Finland on taideprojekti, jonka ovat luoneet sisarukset Carolina Mac-Iver ja Lilian Mac-Iver. Idea syntyi jo noin 15 vuotta sitten, kun sisarukset muuttivat Suomeen. He tutustuivat Suomessa eri maalaisiin naisiin ja heidän kulttuureihinsa.</p><p>”Jokaisen maalauksen takana on maahanmuuttajan tarina. Tarina heidän rakkaudestaan synnyinmaahan ja tarina uudesta kotimaasta. Halusimme vangita kankaalle nämä tarinat naisista, jotka loivat uuden elämän ja perheen tähän kauniiseen pohjoiseen maahan.</p><p>Tarkoituksemme on tämän kokoelman värien kautta osoittaa näiden naisten rakkauden ja juurten kauneuden vaikutus monikulttuuriseen Suomeen. Projekti on toteutettu heidän kunniakseen.”</p><p>Vapaa pääsy.</p>", "sv": "<p>Utställningen består av sexton målningar inspirerade av kvinnor som har flyttat till Finland från olika länder.</p><p>En av målningarna föreställer också en ung kvinna med finländska rötter. Alla målningar är oljemålningar.</p><p>Women of the World in Finland är ett konstprojekt som skapats av systrarna Carolina Mac-Iver och Lilian Mac-Iver. Idén uppstod för ungefär femton år sedan, när syskonen flyttade till Finland. I Finland lärde de känna olika kvinnor från olika länder och deras kulturer.</p><p>”Bakom varje målning finns en invandrares berättelse. En berättelsen om deras kärlek till det land där de föddes och en berättelse om deras nya hemland. Vi ville fånga de här berättelserna om kvinnor som skapade ett nytt liv och en ny familj i detta vackra nordliga land.</p><p>Med hjälp av färgerna i den här samlingen vill vi visa hur skönheten i de här kvinnornas kärlek och rötter påverkar det mångkulturella Finland. Projektet är gjort för att hedra dem.”</p>", "en": "<p>The exhibition consists of 16 paintings inspired by women who have moved to Finland from different countries.</p><p>In addition, the subject of one of the paintings is a young native Finnish woman. All paintings are oil paintings.</p><p>Women of the World in Finland is an art project created by sisters Carolina Mac-Iver and Lilian Mac-Iver. The idea was born approximately 15 years ago as they moved to Finland. In Finland, they became acquainted with women from different countries and their cultures.</p><p>“Behind every painting is the story of an immigrant. A story of their love for their native country and a story of their new homeland. We wanted to capture the stories of these women who created a new life and family in this beautiful northern country.</p><p>Through the colours of this collection, we intend to demonstrate the impact of the love of these women and the beauty of their roots on multicultural Finland. The project is implemented in their honour.”</p>" }, "name": { "fi": "Carolina Mac-Iver & Lilian Mac-Iver: Women of the World in Finland", "sv": "Carolina Mac-Iver & Lilian Mac-Iver: Women of the World in Finland", "en": "Carolina Mac-Iver & Lilian Mac-Iver: Women of the World in Finland" }, "short_description": { "fi": "Näyttely koostuu 16 maalauksesta, joiden inspiraationa ovat olleet Suomeen eri maista muuttaneet naiset.", "sv": "Utställningen består av sexton målningar inspirerade av kvinnor som har flyttat till Finland från olika länder.", "en": "The exhibition consists of 16 paintings inspired by women who have moved to Finland from different countries." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65647/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65008", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153553, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T07:14:16.531669Z", "last_modified_time": "2024-12-30T07:14:16.531696Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763470.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153553/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T07:14:16.492403Z", "last_modified_time": "2025-02-25T14:14:24.157760Z", "date_published": null, "start_time": "2025-03-28T16:30:00Z", "end_time": "2025-03-28T19:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/72FA1479845332E9869D30593AB1CEA4/Pimienta_Negra_ja_Postel_Codes", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/72FA1479845332E9869D30593AB1CEA4/Pimienta_Negra_och_Postel_Codes", "en": "http://www.kanneltalo.fi/en/events/event/72FA1479845332E9869D30593AB1CEA4/Pimienta_Negra_and_Postel_Codes" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Aloitetaan viikonloppu yhdessä!</p><p><b>Postel Codes</b><br>Rafa Postel (USA), Hector Lepe (MEX), Tuomo Purhonen (FI) ja Kasper Halttunen (FI) tutustuivat toisiinsa Sibelius-Akatemiassa. Heitä yhdistää avoin ja improvisatorinen lähestymistapa, syvä rakkaus jazzperinteeseen sekä kokemus ja uteliaisuus muita musiikkigenrejä kohtaan, mikä luo raikasta ja mukaansatempaavaa musiikkia. Nämä muusikot nauttivat musiikin tekemisestä yhdessä. Tämä erityiskonsertti sisältää heidän omia sävellyksiään sekä vanhoja suosikkikappaleita.</p><p><b>Pimienta Negra</b><br>Helsingissä toimivan latinalaisbändin vastustamattomat rytmit hurmaavat kuulijat! Lahjakkaaseen kokoonpanoon kuuluvat Leandro Roco (laulu ja kitara), Jani Lehtioksa (rummut ja perkussiot), Gorky Alvarado (basso) sekä José Robelo (kitara). Tämä yhtye yhdistää kiehtovalla tavalla latinalaisia rytmejä ja jazz-vaikutteita, vieden yleisönsä suoraan Etelä-Amerikan eläväisille kaduille. Salsan ja cumbian sykkivistä rytmeistä latinalaisen rockin ja jazzin sielukkaisiin säveliin, Pimienta Negra kattaa koko latinalaisen musiikin kirjon.</p><p>Global Club Nights -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja Kanneltalon kanssa.</p><p>Tapahtumilla pyritään rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p><b>Postel Codes</b><br>Rafa Postel (USA), Hector Lepe (MEX), Tuomo Purhonen (FI) och Kasper Halttunen (FI) lärde känna varandra i Sibelius-Akademin. Gemensamt för dem är ett öppet och improvisatoriskt grepp, en djup kärlek till jazztraditionen samt erfarenhet av och nyfikenhet gentemot andra musikgenrer, vilket skapar fräsch och medryckande musik. Dessa musiker njuter av att göra musik tillsammans. Denna specialkonsert innefattar deras egna kompositioner samt gamla favoritlåtar.</p><p><b>Pimienta Negra</b><br>De oemotståndliga rytmerna hos detta Helsingforsbaserade latinband förtrollar åhörarna! Den begåvade ensemblen inkluderar Leandro Roco (sång och gitarr), Jani Lehtioksa (trummor och percussion), Gorky Alvarado (bas) och José Robelo (gitarr).</p><p>Detta band kombinerar latinska rytmer och jazzintryck på ett fascinerande sätt, och tar med sin publik direkt till Sydamerikas livliga gator. Från salsans och cumbians pulserande rytmer till latinsk rock och själfulla jazzmelodier, Pimienta Negra täcker hela den latinska musikens spektrum.</p><p>Syftet med klubbarna är att skapa en trygg, inkluderande och kreativ miljö och bygga broar mellan alla musikälskare och deras gemenskaper. Global Club Nights har producerats i samarbete med avdelningen för global musik vid Sibelius-Akademin och Gamlasgården.</p><p>Evenemangen syftar till att bygga broar mellan alla musikälskare och deras gemenskaper. Kulturcentret Gamlasgården producerar Global Club Nights (GCN)-kvällarna i samarbete med Sibelius-Akademins utbildningsprogram Global Music.</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p><b>Pimienta Negra</b> <br>The irresistible sounds of a Latin band based in Helsinki! With talented members featuring: Leandro Roco on vocals and guitar, Jani Lehtioksa on drums and percussion, Gorky Alvarado on bass, and José Robelo on guitar.</p><p>With their captivating blend of Latin rhythms and jazz influences, this band will transport audiences straight to the vibrant streets of South America. From the pulsating beats of salsa and cumbia to the soulful sounds of Latin rock and jazz, Pimienta Negra covers the complete spectrum of the Latin music scene.</p><p><b>Postel Codes</b><br>Rafa Postel (US), Hector Lepe (MX), Tuomo Purhonen (FI), and Kasper Halttunen met as colleagues at the Sibelius Academy. They share an open-minded, improvisational approach, a deep love of the jazz tradition, as well as experience in and curiosity about other genres, which results in fresh and engaging music. These musicians have a joyful time making music together. This special concert will include original compositions as well as some old favorite songs.</p><p>Global Club Nights aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Global Club Nights has been produced in cooperation with the Sibelius Academy’s Global Music Department and Kanneltalo.</p><p>The events aim to build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>" }, "name": { "fi": "Pimienta Negra ja Postel Codes – Global Club Nights", "sv": "Pimienta Negra och Postel Codes – Global Club Nights", "en": "Pimienta Negra and Postel Codes – Global Club Nights" }, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65008/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65234", "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: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165100, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T13:15:46.618651Z", "last_modified_time": "2025-01-23T13:15:46.618671Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764253.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165100/?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-23T13:15:46.592508Z", "last_modified_time": "2025-02-25T14:14:21.970143Z", "date_published": null, "start_time": "2025-03-22T09:00:00Z", "end_time": "2025-03-22T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/70018E867B54DAFAE6C819C010C592EA/Annantalon_taidelauantai_Aarrehetkia", "sv": "http://www.annantalo.fi/sv/evenemang/event/70018E867B54DAFAE6C819C010C592EA/Annegardens_konstlordag_Skattstunder_", "en": "http://www.annantalo.fi/en/events/event/70018E867B54DAFAE6C819C010C592EA/Annantalo_Art_Saturday_Treasure_moments_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Hurraa! - Taidelauantaihin kutsumme erityisesti isovanhempia lastenlasten kanssa, mutta pajaan ovat tervetulleita kaikki aikuiset ja lapset.</p><p>Jenni Viljanderin vetämässä työpajassa aikuinen ja lapsi kohtaavat muistelurasioiden äärellä ja kertovat toisilleen itselleen merkityksellisistä asioista. Rasioista löytyy monipuolisesti pienesineitä ja luonnonmateriaaleja.</p><p>Kukin osallistuja valitsee kolme itselleen merkityksellistä esinettä/asiaa ja kertoo niistä parilleen. Pari sommittelee yhdessä kokeillen kummankin valitsemat esineet mieluisaksi asetelmaksi paperille ja antaa asetelmalle nimen. Asetelmia tarkastellaan yhdessä ja niistä voi ottaa kuvan muistoksi.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Annantalon taidelauantai on maksuton.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>", "sv": "<p>Till Hurra!-konstlördagen bjuder vi särskilt in mor- och farföräldrar med sina barnbarn, men alla vuxna och barn är välkomna till workshoppen.</p><p>I workshoppen möts vuxna och barn vid minnesaskar och berättar för varandra om föremål som är betydelsefulla för dem. Askarna innehåller en mängd olika små föremål och naturmaterial. Varje deltagare väljer tre föremål som är betydelsefulla för honom/henne och berättar om dem för sin partner. Tillsammans experimenterar paret med att arrangera de föremål de har valt till ett fint stilleben på papper och ger det ett namn. Vi tittar på stillebenen tillsammans och tar ett foto av dem som minne.</p><p>Inga förkunskaper krävs för att delta. Undervisningsspråket på verkstäderna är finska, men alla språk och språkkunskaper är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum.</p><p>Konstlördagen på Annegården är avgiftsfri.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>We especially invite grandparents with grandchildren to Hurraa! Art Saturday, but all adults and children are welcome to the workshop.</p><p>In this workshop, the adult and child meet in front of reminiscence boxes and tell each other about the things that matter to them. The boxes contain a wide range of small items and natural materials.</p><p>Each participant selects three items/things that are relevant to them and tells their partner about them. The couple, experimenting together, composes their chosen items into a pleasing arrangement on paper and gives the arrangement a name. The arrangements are then examined together. Feel free to take a photo of them as a souvenir!</p><p>No advance skills are required to participate. The language of instruction in the workshops is Finnish, but all languages and language skills are welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space.</p><p>The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Aarrehetkiä – Hurraa! -teatteriviikot", "sv": "Annegårdens konstlördag: Skattstunder – Hurraa!-teaterveckor", "en": "Annantalo Art Saturday: Treasure moments – Hurraa! theatre weeks" }, "short_description": { "fi": "Hurraa! - Taidelauantaihin kutsumme erityisesti isovanhempia lastenlasten kanssa, mutta pajaan ovat tervetulleita kaikki aikuiset ja lapset.", "sv": "Till Hurra!-konstlördagen bjuder vi särskilt in mor- och farföräldrar med sina barnbarn, men alla vuxna och barn är välkomna till workshoppen.", "en": "We especially invite grandparents with grandchildren to Hurraa! Art Saturday, but all adults and children are welcome to the workshop." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65234/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65668", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 268033, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T14:14:17.618521Z", "last_modified_time": "2025-02-25T14:14:17.618536Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765876.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/268033/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-02-25T14:14:17.563830Z", "last_modified_time": "2025-02-25T14:14:17.713836Z", "date_published": null, "start_time": "2025-03-13T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/77467CB419F9C69456C5AE11901EC803/Teaterforeningen_Svalan_Lyckans_minut_dikter_om_karlek", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/77467CB419F9C69456C5AE11901EC803/Teaterforeningen_Svalan_Lyckans_minut_dikter_om_karlek", "en": "http://www.kanneltalo.fi/en/events/event/77467CB419F9C69456C5AE11901EC803/Teaterforeningen_Svalan_Lyckans_minut_dikter_om_karlek" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.</p><p>Fri entré, ingen förhandsanmälan behövs. Infotorg och kaffe ingår i programmen.</p><p>Mer info: Seniorinfo vardagar kl. 9–15 tfn 09 310 44556 och Facebook: https://www.facebook.com/seniornatverkethelsingfors/</p><p>Varmt välkommen med!</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>", "sv": "<p>Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.</p><p>Fri entré, ingen förhandsanmälan behövs. Infotorg och kaffe ingår i programmen.</p><p>Mer info: Seniorinfo vardagar kl. 9–15 tfn 09 310 44556 och Facebook: https://www.facebook.com/seniornatverkethelsingfors/</p><p>Varmt välkommen med!</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>", "en": "<p>Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.</p><p>Fri entré, ingen förhandsanmälan behövs. Infotorg och kaffe ingår i programmen.</p><p>Mer info: Seniorinfo vardagar kl. 9–15 tfn 09 310 44556 och Facebook: https://www.facebook.com/seniornatverkethelsingfors/</p><p>Varmt välkommen med!</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>" }, "name": { "fi": "Teaterföreningen Svalan: Lyckans minut – dikter om kärlek – Seniornätverksevenemang", "sv": "Teaterföreningen Svalan: Lyckans minut – dikter om kärlek – Seniornätverksevenemang", "en": "Teaterföreningen Svalan: Lyckans minut – dikter om kärlek – Seniornätverksevenemang" }, "short_description": { "fi": "Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.", "sv": "Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.", "en": "Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65668/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65371", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153647, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-02T13:14:16.584568Z", "last_modified_time": "2025-01-02T13:14:16.584584Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759555.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153647/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-02T13:14:16.534444Z", "last_modified_time": "2025-02-25T13:14:15.048057Z", "date_published": null, "start_time": "2025-02-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5C269048AD733ECD1D3AEBC70341ACE4/Flyygelikuu_Ilona_Liiman", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5C269048AD733ECD1D3AEBC70341ACE4/Flyygelikuu_Ilona_Liiman", "en": "http://www.vuotalo.fi/en/events/event/5C269048AD733ECD1D3AEBC70341ACE4/Flyygelikuu_Ilona_Liiman" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kevään 2025 ensimmäisessä Flyygelikuussa kuullaan Mozartia ja Lisztin klassikoita nuoren pianistilupauksen Ilona Liimanin soittamana.</p><p>Juuri Saksaan muuttanut pianisti on valinnut ohjelmaan uudessa kotimaassaan syntyneiden tai siellä asuneiden säveltäjien teoksia.</p><p>Ilona Liiman on Mäntsälässä kasvanut, nykyään Berliinissä asuva 20-vuotias pianisti. Hän opiskeli monen vuoden ajan Sibelius-Akatemian nuorisokoulutuksessa Niklas Pokin johdolla ja jatkaa syksystä 2024 opintojaan Hanns Eisler -musiikkikorkeakoulussa Berliinissä Eldar Nebolsinin luokalla.</p><p>Ilona on esiintynyt solistina muun muassa Radion Sinfoniaorkesterin ja Avanti! -kamariorkesterin kanssa, sekä esiintynyt soolopianistina mm. Nummisten Pianofestivaalilla, Porvoo-festivaalilla ja Mäntän Musiikkijuhlilla. Lisäksi Ilona on ansainnut palkintoja pianokilpailuissa Suomessa ja Virossa.</p><p>Ohjelma:<br>Mozart: D-duurisonaatin nro. 9 K.311 <br>Liszt: Pianosonaatti h-molli</p><p>Vapaa pääsy</p>", "sv": "<p>På den första Flyygelikuu-konserten på våren 2025 hörs klassiker av Mozart och Liszt framförda av den unga lovande pianisttalangen Ilona Liiman.</p><p>Pianisten, som nyligen flyttat till Tyskland, har valt till sin repertoar verk av kompositörer som är födda i hennes nya hemland eller har bott där.</p><p>Ilona Liiman är en 20-årig pianist som växte upp i Mäntsälä och nu bor i Berlin. Hon studerade många år under ledning av Niklas Pokki i ungdomsutbildningen vid Sibelius-Akademin och fortsätter sina studier under ledning av Eldar Nebolsin från och med hösten 2024 vid musikhögskolan Hanns Eisler i Berlin. Ilona har uppträtt som solist bland annat med Radions symfoniorkester och kammarorkestern Avanti! samt uppträtt som solopianist bland annat på Nummis Pianofestival, Borgåfestivalen och Musikfestivalen i Mänttä. Ilona har också vunnit priser i pianotävlingar i Finland och Estland.</p><p>Program:<br>Mozart: PIanosonat i d-dur nro 9 K.311 <br>Liszt: Pianosonat h-moll<br>Fritt inträde</p>", "en": "<p>In the first Flyygelikuu of spring 2025, we will hear classics from Mozart and Liszt by the young pianist Ilona Liiman.</p><p>The pianist, who has just moved to Germany, has chosen works by composers who were born or lived in her new home country. <br>Ilona Liiman grew up in Mäntsälä and is today a 20-year-old pianist living in Berlin. She studied at the Sibelius Junior Academy for many years in under Niklas Pokki and is continuing her studies in autumn 2024 at the School of Music Hanns Eisler Berlin in Eldar Nebolsin’s class.</p><p>Ilona has performed as a soloist with the Finnish Radio Symphony Orchestra and Avanti! Chamber Orchestra as well as solo pianist at the Numminen Piano Festival, Porvoo Festival and Mänttä Music Festival, among others. In addition, Ilona has earned prizes in piano competitions in Finland and Estonia.</p><p>Programme:<br>Mozart: Piano Sonata in D major nro. 9 K.311 <br>Liszt: Piano Sonata in B minor</p><p>Free admission</p>" }, "name": { "fi": "Flyygelikuu – Ilona Liiman", "sv": "Flyygelikuu – Ilona Liiman", "en": "Flyygelikuu – Ilona Liiman" }, "short_description": { "fi": "Kevään 2025 ensimmäisessä Flyygelikuussa kuullaan Mozartia ja Lisztin klassikoita nuoren pianistilupauksen Ilona Liimanin soittamana.", "sv": "På den första Flyygelikuu-konserten på våren 2025 hörs klassiker av Mozart och Liszt framförda av den unga lovande pianisttalangen Ilona Liiman.", "en": "In the first Flyygelikuu of spring 2025, we will hear classics from Mozart and Liszt by the young pianist Ilona Liiman." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65371/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65667", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19877445/", "sv": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19877445/", "en": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19877445/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 267686, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T12:14:45.425995Z", "last_modified_time": "2025-02-25T12:14:45.426019Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765887.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/267686/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-25T12:14:45.368454Z", "last_modified_time": "2025-02-25T12:14:45.518663Z", "date_published": null, "start_time": "2025-03-12T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/39525B2D3070DEA7A1D293959B17E531/Kesakirja_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/39525B2D3070DEA7A1D293959B17E531/Kesakirja_S_", "en": "http://www.malmitalo.fi/en/events/event/39525B2D3070DEA7A1D293959B17E531/Kesakirja_S_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa.</p><p>Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br> <br>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.</p><p>Elokuvan pääosissa nähdään kahdeksankertainen Oscar®-ehdokas Glenn Close sekä suomalainen, nyt 10-vuotias, elokuvanäyttelijänä debytoiva Emily Matthews. Merkittävässä sivuroolissa näyttelee myös Anders Danielsen Lie. Lisäksi elokuvassa nähdään Pekka Strang, Sophia Heikkilä ja Ingvar Sigurdsson.</p><p>Charlie McDowellin ohjaama ja Robert Jonesin valkokankaalle sovittama Kesäkirja kuvattiin Suomessa kesällä 2023 muun muassa Itäisen Suomenlahden rannikolla, esimerkiksi Kotkan ja Porvoon saaristoissa.</p><p>Kansainvälisen yhteistuotannon suomalainen tuotantoyhtiö on Helsinki-filmi, tuottajinaan Aleksi Bardy ja Helen Vinogradov.</p><p>Ikäraja: S<br>Kesto: 95 min.<br>Ensi-ilta: 31.1.2025<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kesäkirja (S) – Kino Helios", "sv": "Kesäkirja (S) – Kino Helios", "en": "Kesäkirja (S) – Kino Helios" }, "short_description": { "fi": "Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65667/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65308", "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: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: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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "11 € / 6 €", "sv": "11 € / 6 €", "en": "11 € / 6 €" }, "info_url": { "fi": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-19588566/", "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-19588566/", "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-19588566/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153527, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-19T15:14:05.491843Z", "last_modified_time": "2024-12-19T15:14:05.491858Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760716.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153527/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T15:14:05.455773Z", "last_modified_time": "2025-02-25T12:14:41.372742Z", "date_published": null, "start_time": "2025-02-28T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AA0683979BC66E1E15C76382E450EBD0/Nei_ZIGMA_Los_Fabulosos", "sv": "http://www.caisa.fi/sv/evenemang/event/AA0683979BC66E1E15C76382E450EBD0/Nei_ZIGMA_Los_Fabulosos", "en": "http://www.caisa.fi/en/events/event/AA0683979BC66E1E15C76382E450EBD0/Nei_ZIGMA_Los_Fabulosos" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p><b>Illan aikataulu</b><br>klo 18.50 Sisäänpääsy<br>klo 19.00 Tervetulosanat & ekan bändin esittely<br>klo 19.05 NEI ZIGMA esiintyy<br>klo 20.05 Tauko (20 min)<br>klo 20.25 Toisen bändin esittely<br>klo 20.25 LOS FABULOSOS esiintyy<br>klo 21.25 Outro</p><p><b>Nei ZIGMA</b><br>Brasilialainen laulaja Nei Zigma esittää shown EVOCAÇÃO NEGREIRA (Musta Evokaatio) alkuperäisellä ohjelmistolla, joka perustuu hänen albumiinsa, jossa on mukana hänen yhtyeensä ORBITAL.</p><p>Esitys sekoittaa jazzia, rockia, sambaa, funkia sekä muita fuusioita ja nykyajan ääniä sekä uudelleentulkintoja brasilialaisesta mustasta musiikista. São Paulossa arvostetun kitaristin GUILHERME HELDin tuottama albumi esittelee yhteistyötä artistin ja runoilija ASSIS LIMAN välillä. Albumin runollisessa maisemassa taustalla soi muistoja Cafuzo-verisestä, jossa Pohjoisen rummut ja Brasilian kaakkoisosan lumoavat kuvat yhdistyvät maailman muihin kulttuureihin.</p><p><b>Los Fabulosos</b><br>Los Fabulosos (The Fabulous) on vuonna 2010 perustettu kuubalaisen son-musiikin supertrio. Kuubalaisen musiikin ytimessä sykkivä son on maailman mukaansatempaavinta musiikkia, ja virtuoosimaiset muusikot saavat ikivihreät bolerot ja rytmikkäät rumbat soimaan kuplivan kuumina. \"Fabujen\" kitarat ja lauluäänet soivat yhteen klassisen kiireettömällä pieteetillä ja nahkarumpujen villit rytmit maanittelevat tanssijoita vietäväkseen.</p><p>Los Fabulososin veljekset Ernesto ja Mario ovat kuubalaisen musiikin spesialisteja jo toisessa polvessa. Trion matalin taajuus, basisti La Bomba, on ollut mukana suomalaisissa kuubalaisen musiikin yhtyeissä (Son Sabroson, Salsa Caliente, Son Mercedes) 1990-luvun lopulta asti. Juurevuutta ei siis tämän yhtyeen soitosta puutu! Heittäydy vapaasti tunnelmoimaan Los Fabulososin täyttäessä tilan vuosikymmenten lempeällä nostalgialla.</p><p>VILI \"ERNESTO\" MUSTALAMPI: tres, laulu, clave<br>TERO \"MARIO\" RANTANEN: lyömäsoittimet, laulu<br>PURO \"LA BOMBA\" PAJU: basso, laulu</p><p><b>Global Club Nights</b> <br>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som jobbar och älskar musik samlas för att fira musik tillsammans.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p><b>Kvällens schema</b><br>kl. 18.50 Entré<br>kl. 19.00 Välkomstord<br>kl. 19.05 Intervju med artisterna<br>kl. 19.30 Los Fabulosos<br>kl. 20.30 Paus (20 min.)<br>kl. 20:50 Nei ZIGMA <br>kl. 22.00 Outro</p><p><b>Nei ZIGMA</b><br>Den brasilianska sångaren Nei Zigma framför showen EVOCAÇÃO NEGREIRA (Svart evokation) med originalrepertoar baserad på hans album med sitt band ORBITAL. <br>Föreställningen blandar jazz, rock, samba, funk och andra fusioner och samtida ljud med nytolkningar av brasiliansk svart musik. Albumet har producerats av den hyllade São Paulo-gitarristen GUILHERME HELD, och presenterar ett samarbete mellan artisten och poeten ASSIS LIMA. I albumets poetiska landskap ekar minnena av Cafuzo i bakgrunden, där trummorna från norr och de förtrollande bilderna från Brasiliens sydöstra del blandas med andra världskulturer.</p><p><b>Los Fabulosos</b><br>Los Fabulosos (The Fabulous) är en kubansk supertrio inom sonmusik som grundades år 2010. Den pulserande sonen i hjärtat av den kubanska musiken är bland den mest medryckande musiken i världen, med virtuosa musiker som får evigt unga boleron och rytmiska rumbor att bubbla hett. “Fabunas” gitarrer och sång klingar med en klassiskt stillsam skärpa och lädertrummornas vilda rytmer förför dansarna.<br>Bröderna Ernesto och Mario i Los Fabulosos är andra generationens specialister på kubansk musik. Trions lägsta frekvens, basisten La Bomba, har varit engagerad i finländska band för kubansk musik (Son Sabroson, Salsa Caliente, Son Mercedes) sedan slutet av 1990-talet. Det finns alltså ingen brist på roots i det här bandets spelande! Kasta dig in i atmosfären när Los Fabulosos fyller utrymmet med mjuk nostalgi från årtiondena.<br> <br>VILI “ERNESTO” MUSTALAMPI: tres, sång, clave<br>TERO “MARIO” RANTANEN: slagverk, sång<br>PURO “LA BOMBA” PAJU: bas, sång</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work in music and love it come together to celebrate music together.</p><p><b>Nei ZIGMA</b><br>Brazilian singer Nei Zigma presents the show EVOCAÇÃO NEGREIRA (Black Evocation) with an original repertoire based on his recent album, accompanied by his band ORBITAL,<br>mixing jazz, rock, samba, funk and other fusions and contemporary sounds and reinterpretations of Brazilian Black Music. Produced by renowned guitarist GUILHERME<br>HELD in São Paulo, the album presents some partnerships between the artist and poet ASSIS LIMA, having as a backdrop in its poetic landscape memories of a Cafuzo blood where drums from the North, and imaginaries of the enchantment of the Brazilian Northeast merge with other cultures of the world.</p><p><b>Los Fabulosos</b><br>Los Fabulosos (The Fabulous), founded in 2010, is a Finnish trio <br>performing traditional Cuban music: sparkling sones, evergreen boleros and rhytmic rumbas. This music, made famous worldwide by the Cuban band Buena Vista Social Club, is the perfect combination of the beautifully resonating voices, the guitars and the wild bongó drums that make dancers go wild.</p><p>The Los Fabulosos originally consists of the brothers, Vili \"Ernesto\" Mustalampi, Tero \"Mario\" Rantanen, who are Cuban music specialists already in the second generation. The lowest frequency in the band, the basist Puro \"La Bomba\" Paju, has performed Cuban music with other Finnish bands (Son Sabroson, Salsa Caliente, Son Mercedes) since the late 1990s. The groove of Los Fabulosos is deeply rooted.</p><p>Let yourself freely enjoy the nostalgic moments listening to Los Fabulosos interpret the best Cuban classics ever since.</p><p>Duration: 3,5 hrs</p><p><b>Global Club Nights</b><br>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment. With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) closely collaborates with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p>" }, "name": { "fi": "Nei ZIGMA | Los Fabulosos – Global Club Nights", "sv": "Nei ZIGMA | Los Fabulosos – Global Club Nights", "en": "Nei ZIGMA | Los Fabulosos – Global Club Nights" }, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som jobbar och älskar musik samlas för att fira musik tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work in music and love it come together to celebrate music together." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65308/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65662", "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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 267512, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T11:14:56.747994Z", "last_modified_time": "2025-02-25T11:14:56.748010Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759043.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/267512/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-25T11:14:56.724200Z", "last_modified_time": "2025-02-25T11:14:56.822695Z", "date_published": null, "start_time": "2025-03-29T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7D61F59917E99A70B70B397D1759F0B7/Risto_Rappaaja_ja_kaksoisolento_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7D61F59917E99A70B70B397D1759F0B7/Risto_Rappaaja_ja_kaksoisolento_S_", "en": "http://www.malmitalo.fi/en/events/event/7D61F59917E99A70B70B397D1759F0B7/Risto_Rappaaja_ja_kaksoisolento_S_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Onko kaupungissa Riston kaksoisolento?</p><p>Risto näkee kaupungilla ihan samannäköisen pojan kuin hän itse – sillä on samanlainen tukka, samanlainen huppari ja samanlaiset housut. Risto ja Nelli päättävät selvittää onko poika kaksoisolento, varjominä, vai jopa huijari? Miksi Rauha-täti on ollut salaperäinen ja piilotellut valokuva-albumia? Entä miten Pakastaja-Elvi, hämähäkit sekä suvun kadonnut sormus liittyvät tähän kaikkeen?</p><p>Risto ja Nelli löytävät johtolangan ja päättävät selvittää salaisuuden, joka vie heidät suureen yölliseen seikkailuun Kurjenkalliolle.</p><p>Elokuva perustuu Sinikka ja Tiina Nopolan rakastetun kirjasarjan saman nimiseen kirjaan Risto Räppääjä ja kaksoisolento.</p><p>Elokuvan päärooleissa nähdään Risto Räppääjänä Aleksi Johansson ja Nelli Nuudelipäänä Alma Järvensivu. Muissa päärooleissa Lennart Lindberginä ja Pakastaja-Elvinä nähdään Ylermi Rajamaa ja Jenni Kokander sekä Rauha-tätinä Iina Kuustonen.</p><p>Elokuvan on ohjannut Samuel Harjanne, käsikirjoittaneet Tiina ja Emma Nopola. Musiikin on säveltänyt Kerkko Koskinen ja laulujen sanat ovat Matias Nopolan kynästä.</p><p>Ikäraja: S<br>Kesto: 81 min.<br>Ensi-ilta: 14.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "sv": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "en": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios" }, "short_description": { "fi": "Onko kaupungissa Riston kaksoisolento?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65662/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65661", "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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 267510, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T11:14:54.554759Z", "last_modified_time": "2025-02-25T11:14:54.554776Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759034.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/267510/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-25T11:14:54.527059Z", "last_modified_time": "2025-02-25T11:14:54.631251Z", "date_published": null, "start_time": "2025-03-22T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BEC08B204BC972A297DC0CA14595C78C/Risto_Rappaaja_ja_kaksoisolento_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BEC08B204BC972A297DC0CA14595C78C/Risto_Rappaaja_ja_kaksoisolento_S_", "en": "http://www.malmitalo.fi/en/events/event/BEC08B204BC972A297DC0CA14595C78C/Risto_Rappaaja_ja_kaksoisolento_S_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Onko kaupungissa Riston kaksoisolento?</p><p>Risto näkee kaupungilla ihan samannäköisen pojan kuin hän itse – sillä on samanlainen tukka, samanlainen huppari ja samanlaiset housut. Risto ja Nelli päättävät selvittää onko poika kaksoisolento, varjominä, vai jopa huijari? Miksi Rauha-täti on ollut salaperäinen ja piilotellut valokuva-albumia? Entä miten Pakastaja-Elvi, hämähäkit sekä suvun kadonnut sormus liittyvät tähän kaikkeen?</p><p>Risto ja Nelli löytävät johtolangan ja päättävät selvittää salaisuuden, joka vie heidät suureen yölliseen seikkailuun Kurjenkalliolle.</p><p>Elokuva perustuu Sinikka ja Tiina Nopolan rakastetun kirjasarjan saman nimiseen kirjaan Risto Räppääjä ja kaksoisolento.</p><p>Elokuvan päärooleissa nähdään Risto Räppääjänä Aleksi Johansson ja Nelli Nuudelipäänä Alma Järvensivu. Muissa päärooleissa Lennart Lindberginä ja Pakastaja-Elvinä nähdään Ylermi Rajamaa ja Jenni Kokander sekä Rauha-tätinä Iina Kuustonen.</p><p>Elokuvan on ohjannut Samuel Harjanne, käsikirjoittaneet Tiina ja Emma Nopola. Musiikin on säveltänyt Kerkko Koskinen ja laulujen sanat ovat Matias Nopolan kynästä.</p><p>Ikäraja: S<br>Kesto: 81 min.<br>Ensi-ilta: 14.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "sv": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "en": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios" }, "short_description": { "fi": "Onko kaupungissa Riston kaksoisolento?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65661/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65660", "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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 267507, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T11:14:50.818938Z", "last_modified_time": "2025-02-25T11:14:50.818953Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759025.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/267507/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-25T11:14:50.770271Z", "last_modified_time": "2025-02-25T11:14:50.916197Z", "date_published": null, "start_time": "2025-03-15T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/57F6041C1E683E3235E7513083A94560/Risto_Rappaaja_ja_kaksoisolento_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/57F6041C1E683E3235E7513083A94560/Risto_Rappaaja_ja_kaksoisolento_S_", "en": "http://www.malmitalo.fi/en/events/event/57F6041C1E683E3235E7513083A94560/Risto_Rappaaja_ja_kaksoisolento_S_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Onko kaupungissa Riston kaksoisolento?</p><p>Risto näkee kaupungilla ihan samannäköisen pojan kuin hän itse – sillä on samanlainen tukka, samanlainen huppari ja samanlaiset housut. Risto ja Nelli päättävät selvittää onko poika kaksoisolento, varjominä, vai jopa huijari? Miksi Rauha-täti on ollut salaperäinen ja piilotellut valokuva-albumia? Entä miten Pakastaja-Elvi, hämähäkit sekä suvun kadonnut sormus liittyvät tähän kaikkeen?</p><p>Risto ja Nelli löytävät johtolangan ja päättävät selvittää salaisuuden, joka vie heidät suureen yölliseen seikkailuun Kurjenkalliolle.</p><p>Elokuva perustuu Sinikka ja Tiina Nopolan rakastetun kirjasarjan saman nimiseen kirjaan Risto Räppääjä ja kaksoisolento.</p><p>Elokuvan päärooleissa nähdään Risto Räppääjänä Aleksi Johansson ja Nelli Nuudelipäänä Alma Järvensivu. Muissa päärooleissa Lennart Lindberginä ja Pakastaja-Elvinä nähdään Ylermi Rajamaa ja Jenni Kokander sekä Rauha-tätinä Iina Kuustonen.</p><p>Elokuvan on ohjannut Samuel Harjanne, käsikirjoittaneet Tiina ja Emma Nopola. Musiikin on säveltänyt Kerkko Koskinen ja laulujen sanat ovat Matias Nopolan kynästä.</p><p>Ikäraja: S<br>Kesto: 81 min.<br>Ensi-ilta: 14.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "sv": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "en": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios" }, "short_description": { "fi": "Onko kaupungissa Riston kaksoisolento?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65660/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agkrrif2yq", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45928/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "" }, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" } ], "created_time": "2025-02-18T10:35:41.649853Z", "last_modified_time": "2025-02-25T10:12:40.852334Z", "date_published": null, "start_time": "2025-02-20T07:00:00Z", "end_time": "2025-03-29T07:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 5, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "" }, "provider_contact_info": null, "provider": { "fi": "" }, "description": { "fi": "<p>Tää on tapahtuman kuvaus-kenttä.</p><p>Jooga on kokonaisvaltainen liikuntamuoto.</p>" }, "name": { "fi": "Paloheinän rieha" }, "short_description": { "fi": "testi taas" }, "location_extra_info": { "fi": "Paikan lisätiedot on tämä kenttä, seksti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agkrrif2yq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19344138", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@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-967155/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/kiviae-taskussa-helsinki-helsingin-kaupunginteatteri-19344138/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kiviae-taskussa-helsinki-helsingin-kaupunginteatteri-19344138/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kiviae-taskussa-helsinki-helsingin-kaupunginteatteri-19344138/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 152460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-18T10:16:44.815531Z", "last_modified_time": "2024-09-18T10:16:44.815551Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2017/hkt_kiviataskussa_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/152460/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:16:44.055550Z", "last_modified_time": "2025-02-25T02:16:56.547167Z", "date_published": null, "start_time": "2025-02-24T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=en" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "description": { "fi": "<p>Marie Jones<br><strong>KIVIÄ TASKUSSA</strong></p><p>Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän. Pentti Kotkaniemen ohjauksessa ihmiskohtaloihin ja kokemuksiin limittyy myös Irlannin historia. Kiviä taskussa on ilmiö Suomen teatterikentällä – sitä on esitetty loppuunmyytynä jo vuodesta 2002.</p><p>Ohjaaja kehuu näytelmän ideaa: “Ihmettelen sitä, että vasta nyt joku nykykirjailija on käyttänyt keskiajalta tunnettua mysteerio buffo-menetelmää eli näyttelijä siirtyy toiseen rooliin vain rytmiä ja painotusta vaihtamalla.” Tähän hatunvaihtotekniikkaan yltävät nimenomaan Suosalo ja Nuojua. He tekevät yhteensä 15 roolia. “Vaihdot ovat salamannopeita ja roolihahmojen skaala ulottuu hemaisevasta amerikkalaiskaunottaresta 75-vuotiaaseen maalaisukkeliin”, Kotkaniemi kertoo.</p><p>Tarina ei ole silti mikään kahden miehen vitsi-ilta. “Ei, Kiviä taskussa on traaginen komedia ja haastava kahden miehen näytelmä”, Mika Nuojua sanoo. Tarina alkaa siitä, kun 35-vuotiaat luuserit Charlie ja Jake menevät avustajiksi amerikkalaisen elokuvan kuvauksiin ja joutuvatkin tekemään aivan muuta kuin ennakkoon aavistavat.</p><p>Ohjaaja Kotkaniemi sanoo, että näytelmä on tyypillistä näyttelijöiden teatteria. “Siksi molempien herrojen pitää olla virtuooseja. Onneksi he ovat, ja se on ohjaajan lottovoitto.”</p><p>Esitysoikeus: Suomen Teatteritoimisto Teateragenturen i Finland Ab <a href=\"http://www.teatteritoimisto.fi.\">http://www.teatteritoimisto.fi./</a></p><p>Rooleissa:<br>Martti Suosalo ja Mika Nuojua</p><p>Suomentaja: Henri Kapulainen<br>Ohjaaja: Pentti Kotkaniemi<br>Koreografia: Tuovi Rantanen<br>Lavastus ja puvut: Jyrki Seppä<br>Valot: Teppo Saarinen<br>Ääni: Ari-Pekka Saarikko</p><p><a href=\"https://hkt.fi/esitykset/kivia-taskussa\"><strong>Lisätietoa</strong></a></p>" }, "name": { "fi": "Kiviä Taskussa" }, "short_description": { "fi": "Marie Jones KIVIÄ TASKUSSA Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän." }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19344138/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65659", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 264045, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T15:14:21.250899Z", "last_modified_time": "2025-02-24T15:14:21.250911Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759032.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/264045/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T15:14:21.227258Z", "last_modified_time": "2025-02-24T15:14:21.312993Z", "date_published": null, "start_time": "2025-03-21T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/70BF86F3E8A4D4A302F510426FAC1B7A/Hajyt_2_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/70BF86F3E8A4D4A302F510426FAC1B7A/Hajyt_2_16_", "en": "http://www.malmitalo.fi/en/events/event/70BF86F3E8A4D4A302F510426FAC1B7A/Hajyt_2_16_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään.</p><p>Paras ystävä Jalo vasikoi aikanaan Konstan, joka punoo vankilassa kostoa. Vapauden koittaessa Karhu palaa Etelä-Pohjanmaalle. Häjyn veri virtaa vahvana suonissa ja pikkurikollisen leima loistaa otsassa. Konsta kohtaa yllättäen menneisyytensä ja joutuu päätöksen eteen, jatkaako vihan tiellä vai antaako anteeksi. Miten uuden sukupolven häjyn käy?</p><p>Ikäraja: 16<br>Kesto: 112 min.<br>Ensi-ilta: 19.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Häjyt 2 (16) – Kino Helios", "sv": "Häjyt 2 (16) – Kino Helios", "en": "Häjyt 2 (16) – Kino Helios" }, "short_description": { "fi": "Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65659/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65658", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 264044, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T15:14:18.170191Z", "last_modified_time": "2025-02-24T15:14:18.170203Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765888.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/264044/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T15:14:18.145916Z", "last_modified_time": "2025-02-24T15:14:18.233370Z", "date_published": null, "start_time": "2025-03-12T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9E91AD1412A4A46AA06B5C75B84CA10/Hajyt_2_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9E91AD1412A4A46AA06B5C75B84CA10/Hajyt_2_16_", "en": "http://www.malmitalo.fi/en/events/event/A9E91AD1412A4A46AA06B5C75B84CA10/Hajyt_2_16_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään.</p><p>Paras ystävä Jalo vasikoi aikanaan Konstan, joka punoo vankilassa kostoa. Vapauden koittaessa Karhu palaa Etelä-Pohjanmaalle. Häjyn veri virtaa vahvana suonissa ja pikkurikollisen leima loistaa otsassa. Konsta kohtaa yllättäen menneisyytensä ja joutuu päätöksen eteen, jatkaako vihan tiellä vai antaako anteeksi. Miten uuden sukupolven häjyn käy?</p><p>Ikäraja: 16<br>Kesto: 112 min.<br>Ensi-ilta: 19.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Häjyt 2 (16) – Kino Helios", "sv": "Häjyt 2 (16) – Kino Helios", "en": "Häjyt 2 (16) – Kino Helios" }, "short_description": { "fi": "Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65658/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65657", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 264043, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T15:14:17.307619Z", "last_modified_time": "2025-02-24T15:14:17.307635Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759017.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/264043/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T15:14:17.256949Z", "last_modified_time": "2025-02-24T15:14:17.387072Z", "date_published": null, "start_time": "2025-03-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B5661E209939234E5476E9B9247AF275/Hajyt_2_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B5661E209939234E5476E9B9247AF275/Hajyt_2_16_", "en": "http://www.malmitalo.fi/en/events/event/B5661E209939234E5476E9B9247AF275/Hajyt_2_16_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään.</p><p>Paras ystävä Jalo vasikoi aikanaan Konstan, joka punoo vankilassa kostoa. Vapauden koittaessa Karhu palaa Etelä-Pohjanmaalle. Häjyn veri virtaa vahvana suonissa ja pikkurikollisen leima loistaa otsassa. Konsta kohtaa yllättäen menneisyytensä ja joutuu päätöksen eteen, jatkaako vihan tiellä vai antaako anteeksi. Miten uuden sukupolven häjyn käy?</p><p>Ikäraja: 16<br>Kesto: 112 min.<br>Ensi-ilta: 19.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Häjyt 2 (16) – Kino Helios", "sv": "Häjyt 2 (16) – Kino Helios", "en": "Häjyt 2 (16) – Kino Helios" }, "short_description": { "fi": "Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65657/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65652", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263696, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:13.375351Z", "last_modified_time": "2025-02-24T13:14:13.375364Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759035.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263696/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:13.350749Z", "last_modified_time": "2025-02-24T13:14:13.431497Z", "date_published": null, "start_time": "2025-03-22T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4F3FAB548A2E723E106ADECF542CA2E9/The_Brutalist_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4F3FAB548A2E723E106ADECF542CA2E9/The_Brutalist_16_", "en": "http://www.malmitalo.fi/en/events/event/4F3FAB548A2E723E106ADECF542CA2E9/The_Brutalist_16_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Huippulahjakas arkkitehti László Toth pakenee sodanjälkeisestä Euroopasta Amerikkaan aloittaakseen oman elämänsä ja uransa jälleenrakennuksen.</p><p>Uutta alkua kaipaa myös sodan aikana siirreltyjen rajalinjojen ja vaihtelevien hallitsijoiden rikki repimä avioliitto Erzsébet-vaimon kanssa. László on yksin vieraalla maalla ja asettuu Pennsylvaniaan, missä varakas ja vaikutusvaltainen teollisuuspohatta Harrison Lee Van Buren kiinnittää huomiota hänen kykyihinsä. Vallalla ja maineella on kuitenkin kova hinta.</p><p>The Brutalist keräsi 10 Oscar-ehdokkuutta: paras elokuva, ohjaus (Brady Corbet), miespääosa (Adrien Brody), naissivuosa (Felicity Jones), miessivuosa (Guy Pearce), käsikirjoitus, kuvaus, leikkaus, musiikki ja lavastus.</p><p>Elokuvan kestoon sisältyy 15 minuutin väliaika.</p><p>Ikäraja: 16<br>Kesto: 215 min. (sisältää 15 minuutin väliajan)<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "The Brutalist (16) – Kino Helios", "sv": "The Brutalist (16) – Kino Helios", "en": "The Brutalist (16) – Kino Helios" }, "short_description": { "fi": "Huippulahjakas arkkitehti László Toth pakenee sodanjälkeisestä Euroopasta Amerikkaan aloittaakseen oman elämänsä ja uransa jälleenrakennuksen." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65652/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65656", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263695, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:12.512399Z", "last_modified_time": "2025-02-24T13:14:12.512412Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759031.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263695/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:12.489274Z", "last_modified_time": "2025-02-24T13:14:12.568499Z", "date_published": null, "start_time": "2025-03-21T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/833E6AC9C0B3A5C903EE5D2A0FC55F58/The_Last_Showgirl_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/833E6AC9C0B3A5C903EE5D2A0FC55F58/The_Last_Showgirl_S_", "en": "http://www.malmitalo.fi/en/events/event/833E6AC9C0B3A5C903EE5D2A0FC55F58/The_Last_Showgirl_S_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan.</p><p>Höyheniin ja kristalleihin pukeutunut tähti on Sin Cityn viimeisen jäljellä olevan perinteisen esityksen keskipiste. Lava ja naiset, joiden kanssa hän sen jakaa, ovat hänen rakastava, kinasteleva ja paljetein koristeltu perheensä.</p><p>Kun näyttämömestari Eddie (Dave Bautista, maskuliinisuuden huippu naismeren keskellä) ilmoittaa, että esitys päättyy pysyvästi kahden viikon kuluttua, Shelley ja hänen työkaverinsa joutuvat tekemään päätöksiä tulevaisuudestaan. Tulevaisuus näyttää kovin erilaiselta 50-vuotiaalle kuin parikymppiselle, kun ainoa ammattitaitosi on tanssiminen.</p><p>Ikäraja: S<br>Kesto: 89 min.<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "The Last Showgirl (S) – Kino Helios", "sv": "The Last Showgirl (S) – Kino Helios", "en": "The Last Showgirl (S) – Kino Helios" }, "short_description": { "fi": "Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65656/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26992, "next": "