Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=234
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=235", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=233" }, "data": [ { "id": "kulke:61276", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24 € / 15 € / 10 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6189, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T12:13:19.383603Z", "last_modified_time": "2024-02-06T13:23:31.504332Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739160.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6189/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T12:13:19.364594Z", "last_modified_time": "2024-04-05T17:14:00.420888Z", "date_published": null, "start_time": "2024-04-05T16: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.stoa.fi/fi/tapahtumat/event/166DDA5B40C47B0B6B3B01505DACD7CF/Susanna_Leinonen_Company_Satakieli_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>" }, "name": { "fi": "Susanna Leinonen Company: Satakieli" }, "short_description": { "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61276/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63072", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "28 € / 23 €", "sv": "28 € / 23 €", "en": "28 € / 23 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kanneltalo/imbalance-3599044/", "sv": "https://www.lippu.fi/artist/kanneltalo/imbalance-3599044/", "en": "https://www.lippu.fi/artist/kanneltalo/imbalance-3599044/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11038, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-26T13:14:39.060139Z", "last_modified_time": "2024-02-26T13:14:39.060206Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739586.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11038/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-26T13:14:39.010270Z", "last_modified_time": "2024-04-05T17:14:00.370729Z", "date_published": null, "start_time": "2024-04-05T15: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/CBDE7B78825629BA0C7C5ABF70F93716/IMBALANCE", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CBDE7B78825629BA0C7C5ABF70F93716/IMBALANCE", "en": "http://www.kanneltalo.fi/en/events/event/CBDE7B78825629BA0C7C5ABF70F93716/IMBALANCE" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Helsinki Dance Theatren vuoden 2024 teos tutkii tanssin keinoin yhteiskuntamme tasapainoa horjuttavia elementtejä.</p><p>Yhteiskuntamme ongelmia eivät aiheuta yksittäiset teot tai laitteet, vaan niiden epäsuhtaisuus ja hallitsemattomuus, kun itsehillintämme ei riitä.</p><p>Esitys koostuu taiteellisen johtajan Val Suarezin kahdesta uudesta teoksesta sekä kolmen vierailevan koreografin teoksista. Suarezin <i> Contagious Convictions </i> perustuu Alexei Navalnyin kirjeeseen vankilasta ja <i> Behind the Smiles </i> pureutuu cancel-kulttuurin rajuihin vaikutuksiin. Sini Mäenpään <i> Echoes </i> tarkastelee omien todellisuuksiemme ja tietoisuuden ulottuvuuksia, Phet Haanpään <i> Pulse </i> alati uusiutuvan teknologian kehityksen vaikutuksia elämänkaariimme ja Julia Ilmon <i> Väilttelyä </i> tapaa, joilla sanat muokkaavat mielikuviamme.</p><p>Vuonna 2016 perustetun Helsinki Dance Theatren liikekieli yhdistää balettia ja nykytanssia sekä etnisiä vivahteita teatterillisiin elementteihin.</p><p>Koregrafia:<br>Phet Haanpää<br>Julia Adina Ilmo<br>Sini Mäenpää<br>Val Suarez</p><p>Tanssijat:<br>Lotta Arjanne<br>Phet Haanpää<br>Julia Adina Ilmo<br>Joanna Keränen<br>Maria Rita<br>Aletta Salo<br>Jiro Tanabe</p><p>Kesto: 1 t, ei väliaikaa</p><p>Ikäsuositus: 12+</p><p>Liput: 28 € / 23 €</p>", "sv": "<p>Helsinki Dance Theatres verk för 2024 undersöker destabiliserande element i vårt samhälle genom dans.</p><p>Problemen i vårt samhälle beror inte på enskilda handlingar eller anordningar, utan på disporportion och brist på kontroll när vi inte har tillräckligt med självbehärskning.</p>", "en": "<p>Helsinki Dance Theatre’s 2024 show explores the elements that destabilise our society through dance.</p><p>The issues in modern society are not caused by individual actions or devices, but by disproportion and lack of control, as our self-control is not enough.</p>" }, "name": { "fi": "IMBALANCE – Helsinki Dance Theatre | Kantaesitys", "sv": "IMBALANCE", "en": "IMBALANCE" }, "short_description": { "fi": "Helsinki Dance Theatren vuoden 2024 teos tutkii tanssin keinoin yhteiskuntamme tasapainoa horjuttavia elementtejä.", "sv": "Helsinki Dance Theatres verk för 2024 undersöker destabiliserande element i vårt samhälle genom dans.", "en": "Helsinki Dance Theatre’s 2024 show explores the elements that destabilise our society through dance." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63072/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63127", "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:348/?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" } ], "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": 11106, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-28T15:14:55.671413Z", "last_modified_time": "2024-02-28T15:14:55.671434Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737089.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11106/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-28T15:14:55.644424Z", "last_modified_time": "2024-04-05T17:14:00.316639Z", "date_published": null, "start_time": "2024-04-05T15: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/783B9EE2D33C1E3415D983A2453EF711/Akusmata_Polyphonic_2024_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/783B9EE2D33C1E3415D983A2453EF711/Akusmata_Polyphonic_2024_", "en": "http://www.vuotalo.fi/en/events/event/783B9EE2D33C1E3415D983A2453EF711/Akusmata_Polyphonic_2024_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Akusmata Polyphonic 2024 on intensiivinen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.</p><p>Kutsutut muusikot, säveltäjät ja äänitaiteilijat tarjoavat yleisölle laajan kirjon uutta äänellistä ilmaisua kokeellisen elektronisen musiikin, äänitaiteen ja ambient-musiikin alueilta.</p><p>Ohjelmaan kuuluu modulaarisia äänijärjestelmiä, tee-se-itse-musiikkisoittimia ja asenteella improvisoitua musiikkia.</p><p>Tapahtumassa esiintyy taiteilijoita Färsaarilta, Grönlannista, Tanskasta ja Suomesta, mukana myös ainutlaatuinen Cracklebox Orchestra!</p><p>Vapaa pääsy</p>", "sv": "<p>Akusmata Polyphone 2024 är ett intensivt ljudkonst- och musikevenemang i Nordhuset.</p><p>De inbjudna musikerna, kompositörerna och ljudkonstnärerna bjuder publiken på ett brett spektrum av nya ljudliga uttryck inom den experimentella elektroniska musiken, ljudkonsten och ambient-musiken.</p><p>Fri entré</p>", "en": "<p>Akusmata Polyphonic 2024 is an intensive sound art and electronic music event at Vuosaari House.</p><p>Invited musicians, composers and sound artists offer the audience a wide spectrum of new sonic expression from the fields of experimental electronic music, sound art, and ambient.</p><p>The program includes modular sound systems, do-it-yourself musical instruments, and improvised music with attitude.</p><p>The event features performers from the Faroe Islands, Greenland, Denmark and Finland, including the unique Cracklebox Orchestra!</p><p>Free entrance</p>" }, "name": { "fi": "Akusmata Polyphonic 2024", "sv": "Akusmata Polyphonic 2024", "en": "Akusmata Polyphonic 2024" }, "short_description": { "fi": "Akusmata Polyphonic 2024 on intensiivinen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.", "sv": "Akusmata Polyphone 2024 är ett intensivt ljudkonst- och musikevenemang i Nordhuset.", "en": "Akusmata Polyphonic 2024 is an intensive sound art and electronic music event at Vuosaari House." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63127/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63228", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/kino-helios-alma-life-must-be-beautiful-3610327/", "en": "https://www.lippu.fi/artist/malmitalo/kino-helios-alma-life-must-be-beautiful-3610327/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12822, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T12:14:07.721838Z", "last_modified_time": "2024-03-15T12:14:07.721855Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745642.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12822/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T12:14:07.679678Z", "last_modified_time": "2024-04-05T17:14:00.253587Z", "date_published": null, "start_time": "2024-04-05T15: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/F637FB5DD761B67CC33797EF630DD5E4/Alma_Life_Must_Be_Beautiful_", "en": "http://www.malmitalo.fi/en/events/event/F637FB5DD761B67CC33797EF630DD5E4/Alma_Life_Must_Be_Beautiful_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Alma – Life Must Be Beautiful kertoo 28-vuotiaan Alma-Sofia Miettisen tarinan. Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa.</p><p>Elokuva tuo päivänvaloon sen Alman, joka löytyy julkisuudessa esitellyn persoonan takaa. Lapsuudesta saakka kuvattu arkistomateriaali ja lukuisat keikkakiertueilla kuvatut tallenteet valottavat Alman tarinaa alusta alkaen, päästäen katsojan sisälle Alman, tämän perheen ja ystäväporukan intiimeihin hetkiin – unohtamatta menestyksen monia puolia.</p><p>Ikäraja 7</p><p>Kesto 99 min</p><p>Ohjaus Pamela Tola</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>", "en": "<p>Alma - Life Must Be Beautiful tells the story of 28-year-old Alma-Sofia Miettinen.</p>" }, "name": { "fi": "Alma – Life Must Be Beautiful – Kino Helios", "en": "Alma – Life Must Be Beautiful – Kino Helios" }, "short_description": { "fi": "Alma – Life Must Be Beautiful kertoo 28-vuotiaan Alma-Sofia Miettisen tarinan. Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa.", "en": "Alma - Life Must Be Beautiful tells the story of 28-year-old Alma-Sofia Miettinen." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63228/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63178", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ohjus-3585920/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12445, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T15:14:08.734506Z", "last_modified_time": "2024-03-14T15:14:08.734542Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745569.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12445/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T15:14:08.704782Z", "last_modified_time": "2024-04-05T17:14:00.200218Z", "date_published": null, "start_time": "2024-04-05T12: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.malmitalo.fi/fi/tapahtumat/event/EE92AF397BF4162B089FF48DC095C168/Ohjus_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin.</p><p>Joulukuussa 1984 Inarijärveen syöksyi neuvostoliittolainen ohjus, ja kansainvälinen selkkaus oli valmis. Draamakomedia kertoo yksinhuoltaja Niinasta, joka saa uuden alun elämälleen paikallisen sanomalehden toimittajana - ja eteensä mahdollisen jymyjutun kylässä, jossa ei koskaan tapahdu mitään. Niina uppoaa syvälle kansainväliseen ohjuskriisiin. Lappi ja pieni kirkonkylä menevät sekaisin, ja ulkomaisia toimittajia lappaa paikalliseen hotelliin. Tutkimusten keskellä Niina tapaa hävittäjälentäjä Kain, ja samaan aikaan ex-mies Tapio on vapautumassa vankilasta. Niinan on löydettävä rajansa, jotta myös totuus ohjuksesta näkisi päivänvalon.</p><p>Kesto 115 min</p><p>Ikäraja 12</p><p>Ensi-ilta 2.2.2024</p><p>Elokuva on tekstitetty Suomeksi.</p>" }, "name": { "fi": "Ohjus (12) – Kino Helios" }, "short_description": { "fi": "Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63178/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61275", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24 € / 15 € / 10 €", "sv": "24 € / 15 € / 10 €", "en": "24 € / 15 € / 10 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/", "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/", "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6188, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T12:13:19.281815Z", "last_modified_time": "2024-02-06T13:23:31.411454Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739159.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6188/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T12:13:19.262816Z", "last_modified_time": "2024-04-05T17:14:00.147973Z", "date_published": null, "start_time": "2024-04-05T11: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.stoa.fi/fi/tapahtumat/event/9D495510CFFB26811074FAA1831219BF/Susanna_Leinonen_Company_Satakieli_", "sv": "http://www.stoa.fi/sv/evenemang/event/9D495510CFFB26811074FAA1831219BF/Susanna_Leinonen_Company_Naktergal_", "en": "http://www.stoa.fi/en/events/event/9D495510CFFB26811074FAA1831219BF/Susanna_Leinonen_Company_Nightingale" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>", "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>", "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>" }, "name": { "fi": "Susanna Leinonen Company: Satakieli", "sv": "Susanna Leinonen Company: Näktergal", "en": "Susanna Leinonen Company: Nightingale" }, "short_description": { "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.", "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.", "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61275/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61561", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 10919, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T13:13:20.190911Z", "last_modified_time": "2024-02-16T13:13:20.190938Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741257.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10919/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T13:13:20.167237Z", "last_modified_time": "2024-04-05T17:14:00.083694Z", "date_published": null, "start_time": "2024-04-05T06:00:00Z", "end_time": "2024-04-27T16: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.caisa.fi/fi/tapahtumat/event/1FDE0CFB3AA8FF604DB69FB26635BE78/Christian_Rosenlund_I_AM_GOD", "sv": "http://www.caisa.fi/sv/evenemang/event/1FDE0CFB3AA8FF604DB69FB26635BE78/Christian_Rosenlund_I_AM_GOD", "en": "http://www.caisa.fi/en/events/event/1FDE0CFB3AA8FF604DB69FB26635BE78/Christian_Rosenlund_I_AM_GOD" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Valokuvanäyttely kertoo yhden ihmisen kamppailusta oman mielenterveytensä kanssa.</p><p>“I AM GOD -projektissa tavoitteeni on ollut antaa realistinen kuva siitä, miltä arki mielenterveysongelmien kanssa voi näyttää. Näillä aiheilla on omat sosiaaliset ja poliittiset ulottuvuutensa, mutta tällaisten melko abstraktien käsitteiden ulkopuolella niillä on myös käytännölliset, konkreettiset ja näkyvät puolensa.</p><p>Konkreettiset ja näkyvät puolet muodostavatkin näyttelyn valokuvien ja videoteosten mielenmaiseman – ne pyrkivät kuvastamaan yhden yksilön elämäntilanteita ja vaikeuksia tuhansien ja taas tuhansien ihmisten joukosta.</p><p>Teosteni katsoja saattaa pohtia omia kokemuksiaan mielenterveydestä sekä niihin liittyvistä ja niiden heijastamista moninaisista ilmiöistä. Voiko mahdollisista pohdinnoista vetää johtopäätöksiä? Voiko niistä löytää merkityksiä tai ymmärrystä?” Taiteilija <b>Christian Rosenlund</b></p><p>Näyttelyssä esillä oleva video sisältää voimakkaita kohtauksia.</p><p>Näyttelyyn järjestetään opastus suomalaisella viittomakielellä la 13.4.2024 klo 13-14.<br>Vapaa pääsy.</p>", "sv": "<p>Fotografisk utställning kring en persons svårigheter med sin psykiska ohälsa.</p><p>”Med detta projekt, \"I AM GOD\" (Jag är gud) har jag velat ge en realistisk bild av hur vardagen kan te sig för en person som kämpar med psykisk ohälsa. Dessa teman har sina sociala och politiska dimensioner, men utöver dessa ofta ganska abstrakta begrepp har de även mycket praktiska, konkreta och synliga aspekter.</p><p>Dessa konkreta och synliga aspekter är stoffet som bildar det mentala landskapet i fotografierna och videoverken på utställningen – för att framkalla och reflektera de verkliga situationer och kamper som upplevs av en individ bland tusentals individer.</p><p>Den som betraktar mina verk vill kanske tänka på, eller känna sig kallad att tänka på sina olika upplevelser av psykisk hälsa och de många innebörder som de inrymmer och projicerar. Och kan man i så fall dra några slutsatser av dessa reflektioner? Finns det någon slags mening och insikt att finna i det?” Konstnär <b>Christian Rosenlund</b></p><p>Videon i utställningen innehåller starka scener.</p>", "en": "<p>Photography exhibition is centered around one person's difficulties with their own mental illness.</p><p>\"With this project, \"I AM GOD\", my ambition has been to give a realistic view of how everyday life might look for somebody with mental health issues. These topics have their given social and political dimensions, but quite apart from these often rather abstract notions, they are also topics that have a very practical, concrete and visible side to them.</p><p>These concrete and visible tangents are the subject matter that constitutes the mental landscape of the photographs and the video work of the exhibition – so as to evoke and reflect the in-life situations and struggles of one individual out of thousands upon thousands.</p><p>The viewer of my work might want to or feel called on to think about their own various experiences of mental health and the multitude of implications they include and project. And if so, can any conclusions be drawn from these reflections? Are there kinds of meaning and understanding to be found in it?\"<br>Artist <b>Christian Rosenlund</b></p><p>The exhibition video includes scenes that some viewers may find disturbing.</p>" }, "name": { "fi": "Christian Rosenlund: I AM GOD", "sv": "Christian Rosenlund: I AM GOD", "en": "Christian Rosenlund: I AM GOD" }, "short_description": { "fi": "Valokuvanäyttely kertoo yhden ihmisen kamppailusta oman mielenterveytensä kanssa.", "sv": "Fotografisk utställning kring en persons svårigheter med sin psykiska ohälsa.", "en": "Photography exhibition is centered around one person's difficulties with their own mental illness." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61561/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61571", "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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7011, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-05T12:14:55.627444Z", "last_modified_time": "2024-02-06T13:23:31.316381Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741477.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7011/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-05T12:14:55.578258Z", "last_modified_time": "2024-04-05T17:14:00.031468Z", "date_published": null, "start_time": "2024-04-05", "end_time": "2024-05-12", "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/87C7CDD2B6B54D4AEF7393C319DC08AC/Perustuu_tositapahtumiin_", "sv": "http://www.stoa.fi/sv/evenemang/event/87C7CDD2B6B54D4AEF7393C319DC08AC/Baserat_pa_verkliga_handelser_", "en": "http://www.stoa.fi/en/events/event/87C7CDD2B6B54D4AEF7393C319DC08AC/Perustuu_tositapahtumiin" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Perustuu tositapahtumiin -näyttelyssä ihmetellään nykyaikaa, kommentoidaan ja otetaan kantaa.</p><p>Mitä tulevat sukupolvet ajattelevat tästä ajasta ja teoistamme? Miltä nykyhetki näyttää sadan vuoden kuluttua elävän ihmisen silmissä? Stoan gallerian kuratoimassa ryhmänäyttelyssä nähdään teoksia viideltä taiteilijalta: Ignata Elana, Lora Dimova, Anniina Lius, Sepideh Rahaa ja Elham Rahmati.</p>", "sv": "<p>I utställningen Baserat på verkliga händelser förundrar man sig över nutiden, kommenterar och tar ställning.</p><p>Vad kommer kommande generationer att tycka om denna tid och våra gärningar? Hur kommer nutiden att se ut i ögonen på en människa som kommer att leva om etthundra år? På grupputställningen som kurerats av Stoas galleri ser man verk från fem konstnärer: Ignata Elana, Lora Dimova, Anniina Lius, Sepideh Rahaa och Elham Rahmati</p>", "en": "<p>The Based on a True Story exhibition examines, comments and takes a stand on modern times.</p><p>What will future generations think about this time and our actions? What will the present look like in a hundred years through the eyes of a living person? The group exhibition curated by Stoa Gallery features works by five artists: Ignata Elana, Lora Dimova, Anniina Lius, Sepideh Rahaa and Elham Rahmati.</p>" }, "name": { "fi": "Perustuu tositapahtumiin – Based on a true story", "sv": "Baserat på verkliga händelser – Based on a true story", "en": "Perustuu tositapahtumiin – Based on a true story" }, "short_description": { "fi": "Perustuu tositapahtumiin -näyttelyssä ihmetellään nykyaikaa, kommentoidaan ja otetaan kantaa.", "sv": "I utställningen Baserat på verkliga händelser förundrar man sig över nutiden, kommenterar och tar ställning.", "en": "The Based on a True Story exhibition examines, comments and takes a stand on modern times." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61571/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63235", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "10 € / 12,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-halkara-postimies-3612030/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 14285, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-18T12:14:50.290969Z", "last_modified_time": "2024-03-18T12:14:50.290992Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746202.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/14285/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-18T12:14:50.257396Z", "last_modified_time": "2024-04-05T17:13:59.973218Z", "date_published": null, "start_time": "2024-04-04T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B1FB72EE4FE5733F54AF65F1AEBCFDB9/Halkara_-_postimies_12_" }, "provider_contact_info": null, "provider": { "fi": "Mama Events Oy" }, "description": { "fi": "<p>Työtön kyläjuoppo pestautuu postimieheksi ja ryhtyy kiertämään Nepalin syrjäisiä kyliä. Matkoillaan hänen täytyy kantaa uuden työnsä vastuita ja kohdata menneisyytensä demoneita.</p><p>Elokuvan tarina valaisee myös Lähi-idässä työskentelevien nepalilaisten siirtotyöntekijöiden kovaa arkea, ja kertoo millaisia sydäntä kouraisevia päätöksiä heidän on työnsä takia tehtävä ja millaisia vaikutuksia niillä on heidän läheisilleen.</p><p>Elokuvasta esitetään suomeksi tekstitetty versio.</p><p>Kesto 1h 50 min</p><p>Halkara on voittanut seuraavat palkinnot:<br>Platinum Remi Winner: WorldFest Houston International Film Festival 2022<br>Best Actor: Mahesh Tripathi – WorldFest Houston International Film Festival USA 2022<br>Best Cinematographer: Chintan Rajbhandari – WorldFest Houston International Film Festival 2022<br>Best Long Narrative NAIFF 2022<br>Semi-Finalist: Flickers’ Rhode Island International Film Festival 2022<br>Official Selection: Carmarthen Bay Film Festival</p>" }, "name": { "fi": "Halkara - postimies (12) – Mama Eventsin näytös" }, "short_description": { "fi": "Työtön kyläjuoppo pestautuu postimieheksi ja ryhtyy kiertämään Nepalin syrjäisiä kyliä. Matkoillaan hänen täytyy kantaa uuden työnsä vastuita ja kohdata menneisyytensä demoneita." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63235/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61274", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24 € / 15 € / 10 €", "sv": "24 € / 15 € / 10 €", "en": "24 € / 15 € / 10 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/", "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/", "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6187, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T12:13:19.178406Z", "last_modified_time": "2024-02-06T13:23:31.226237Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739158.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6187/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T12:13:19.159291Z", "last_modified_time": "2024-04-05T17:13:59.921113Z", "date_published": null, "start_time": "2024-04-04T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/863D4BE34F6FE28E2C2D2DA41D1BDEA2/Susanna_Leinonen_Company_Satakieli_", "sv": "http://www.stoa.fi/sv/evenemang/event/863D4BE34F6FE28E2C2D2DA41D1BDEA2/Susanna_Leinonen_Company_Naktergal_", "en": "http://www.stoa.fi/en/events/event/863D4BE34F6FE28E2C2D2DA41D1BDEA2/Susanna_Leinonen_Company_Nightingale" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>", "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>", "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>" }, "name": { "fi": "Susanna Leinonen Company: Satakieli", "sv": "Susanna Leinonen Company: Näktergal", "en": "Susanna Leinonen Company: Nightingale" }, "short_description": { "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.", "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.", "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61274/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63126", "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:348/?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" } ], "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": 11105, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-28T15:14:55.237934Z", "last_modified_time": "2024-02-28T15:14:55.237969Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737997.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11105/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-28T15:14:55.191451Z", "last_modified_time": "2024-04-05T17:13:59.869360Z", "date_published": null, "start_time": "2024-04-04T15: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/27B7FE4482F7BCD37F23B2336362B51B/Akusmata_Polyphonic_2024_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/27B7FE4482F7BCD37F23B2336362B51B/Akusmata_Polyphonic_2024_", "en": "http://www.vuotalo.fi/en/events/event/27B7FE4482F7BCD37F23B2336362B51B/Akusmata_Polyphonic_2024_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Akusmata Polyphonic 2024 on intensiivinen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.</p><p>Kutsutut muusikot, säveltäjät ja äänitaiteilijat tarjoavat yleisölle laajan kirjon uutta äänellistä ilmaisua kokeellisen elektronisen musiikin, äänitaiteen ja ambient-musiikin alueilta.<br> <br>Ohjelmaan kuuluu modulaarisia äänijärjestelmiä, tee-se-itse-musiikkisoittimia ja asenteella improvisoitua musiikkia.</p><p>Tapahtumassa esiintyy taiteilijoita Färsaarilta, Grönlannista, Tanskasta ja Suomesta, mukana myös ainutlaatuinen Cracklebox Orchestra!</p><p>Vapaa pääsy</p>", "sv": "<p>Akusmata Polyphone 2024 är ett intensivt ljudkonst- och musikevenemang i Nordhuset.</p><p>De inbjudna musikerna, kompositörerna och ljudkonstnärerna bjuder publiken på ett brett spektrum av nya ljudliga uttryck inom den experimentella elektroniska musiken, ljudkonsten och ambient-musiken.</p><p>Fri entré</p>", "en": "<p>Akusmata Polyphonic 2024 is an intensive sound art and electronic music event at Vuosaari House.</p><p>Invited musicians, composers and sound artists offer the audience a wide spectrum of new sonic expression from the fields of experimental electronic music, sound art, and ambient.</p><p>The program includes modular sound systems, do-it-yourself musical instruments, and improvised music with attitude.</p><p>The event features performers from the Faroe Islands, Greenland, Denmark and Finland, including the unique Cracklebox Orchestra!</p><p>Free entrance</p>" }, "name": { "fi": "Akusmata Polyphonic 2024", "sv": "Akusmata Polyphonic 2024", "en": "Akusmata Polyphonic 2024" }, "short_description": { "fi": "Akusmata Polyphonic 2024 on intensiivinen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.", "sv": "Akusmata Polyphone 2024 är ett intensivt ljudkonst- och musikevenemang i Nordhuset.", "en": "Akusmata Polyphonic 2024 is an intensive sound art and electronic music event at Vuosaari House." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63126/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63238", "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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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,5 €", "en": "8,5 €" }, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 14284, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-18T12:14:50.096524Z", "last_modified_time": "2024-03-18T12:14:50.096542Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746203.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/14284/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-18T12:14:50.070660Z", "last_modified_time": "2024-04-05T17:13:59.819111Z", "date_published": null, "start_time": "2024-04-04T14:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B25205C2DB65E6703BD9449EA92E9B1C/Dhorpatan_-_No_Winter_Holidays_-dokumenttielokuva", "en": "http://www.malmitalo.fi/en/events/event/B25205C2DB65E6703BD9449EA92E9B1C/Dhorpatan_-_No_Winter_Holidays_documentary_film" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Dhorpatan on syrjäinen, mutta kaunis Himalajan alue, joka sijaitsee Nepalin länsiosassa. Salpa Films, dokumentin tuottajatiimi, viipyi Dhorpatanissa useita kuukausia ja koki useita ponnisteluita vangitakseen elokuvan ja tuodakseen sen nähtäville.</p><p>Elinikäiset kilpailijat, Ratima ja Kalima, on määrätty huolehtimaan tyhjentyneestä kylästä. Naiset, jotka ovat olleet naimisissa saman miehen kanssa, joutuvat uudessa tilanteessa unohtamaan menneisyytensä ja yhdistämään voimansa, jotta selviävät talven yli tyhjässä lumisessa kylässä.</p><p>Ohjaus: Rajan Kathet, Sunir Pandey</p><p>Kesto 79 min<br>Ikäraja Sallittu<br>Elokuva on tekstitetty suomeksi</p><p>Liput tulossa myyntiin lippu.fi</p>", "en": "<p>Dhorpatan is a remote yet beautiful himalayan region located in the western part of Nepal. Salpa Films, the producer team of the documentary stayed in Dhorpatan for multiple months to capture the film and many more efforts since then to bring the movie among us.</p>" }, "name": { "fi": "Dhorpatan - No Winter Holidays -dokumenttielokuva – Mama Eventsin näytös", "en": "Dhorpatan - No Winter Holidays documentary film – Mama Events" }, "short_description": { "fi": "Dhorpatan on syrjäinen, mutta kaunis Himalajan alue, joka sijaitsee Nepalin länsiosassa. Salpa Films, dokumentin tuottajatiimi, viipyi Dhorpatanissa useita kuukausia ja koki useita ponnisteluita vangitakseen elokuvan ja tuodakseen sen nähtäville.", "en": "Dhorpatan is a remote yet beautiful himalayan region located in the western part of Nepal. Salpa Films, the producer team of the documentary stayed in Dhorpatan for multiple months to capture the film and many more efforts since then to bring the movie among us." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63238/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63068", "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:288/?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: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:p25966/?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": 10969, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-20T14:14:24.878260Z", "last_modified_time": "2024-02-20T14:14:24.878294Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744743.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10969/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-20T14:14:24.841079Z", "last_modified_time": "2024-04-05T17:13:59.705063Z", "date_published": null, "start_time": "2024-04-04", "end_time": "2024-04-27", "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/EEE303DEE32510D79DE8B38EFB1017B2/Sari_Nieminen_Tassa_hetkessa_mina_elan_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EEE303DEE32510D79DE8B38EFB1017B2/Sari_Nieminen_Jag_lever_i_denna_stund", "en": "http://www.malmitalo.fi/en/events/event/EEE303DEE32510D79DE8B38EFB1017B2/Sari_Nieminen_The_moment_I_live_in" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Rintasyöpäyhdistys Europa Donna Finland ry:n jäseniä osallistui kuvausprojektiin, jossa kuvattiin heidän alastonta keskivartaloaan. Kaikki kuvatut ovat rintasyövän sairastaneita.</p><p>”Naisena on vaikea hyväksyä itsensä sellaisena kuin on. Haluan kuvata valokuvilla, että on hyvä ja kaunis olla sellaisenaan. Minulla itsellä on leikattu rintasyöpä vuonna 2014 joulukuussa, levinneisyys todettu 2018. Alastomuus itsessään kiehtoo, olemme kaikki erilaisia kooltamme ja muodoiltamme. Haluan kuvata ihmisen kauneutta omalla tavallaan ja näen kauneuden kaikenlaisina muotoina. Tässä valokuvanäyttelyssä kuvaan lähinnä informatiivisesti ja formalistisesti keskivartaloalastomuutta.</p><p>Ajatuksena on tukea rintasyöpäpotilaita heidän kamppailussaan muuttuneen vartalon hyväksymisessä. Mallit ovat eri ikäisiä ja kokoisia ja osalla levinnyt rintasyöpä”, kertoo <b>Sari Nieminen</b>.</p><p>Rintasyöpäyhdistys - Europa Donna Finland ry on vuonna 2005 perustettu rintasyöpään sairastuneiden oma järjestö, jonka toiminnan ydin on vertaistuki eri muodoissa. Yhdistys on 47 maassa toimivan Europa Donna - The European Breast Cancer Coalition –järjestön jäsen ja osa Syöpäjärjestöjä.</p><p>Rintasyöpäyhdistyksen toiminnan tavoitteena on rintasyöpään sairastuneiden fyysisen, psyykkisen ja sosiaalisen elämänlaadun paraneminen ja että suomalaiset rintasyöpäpotilaat saavat parasta mahdollista hoitoa asuinpaikasta riippumatta. Yhdistys jakaa tietoa rintasyövästä ja sen hoidosta ja toimii rintasyöpäpotilaiden edunvalvojana.</p><p><b>Tervetuloa näyttelyn avajaisiin 3.4.2024 kello 17–19.</b></p><p>Vapaa pääsy</p>", "sv": "<p>Medlemmar av bröstcancerföreningen Europa Donna Finland rf deltog i ett fotografiprojekt, där man fotograferade deras nakna bål. Alla de som fotograferades har haft bröstcancer.</p><p>”Som kvinna är det svårt att godkänna sig själv som man är. Med hjälp av fotografierna vill jag visa att vi är bra och vackra som vi är. Jag har själv blivit opererad för bröstcancer i december 2014, som konstaterades ha spridit sig 2018. Nakenhet i sig är fascinerande, vi är alla av olika storlek och form. Jag vill fotografera människans skönhet på hennes egna villkor, och jag ser skönheten i alla slags former. I denna fotografiutställning fotograferar jag i det närmaste de nakna bålarna på ett informativt och formalistiskt sätt. Tanken är att stöda bröstcancerpatienter i deras kamp med att acceptera sin förändrade kropp. Modellerna är av olika åldrar och storlekar, och hos en del av dem har bröstcancern spridit sig”, berättar <b>Sari Nieminen.</b></p><p>Bröstcancerföreningen Europa Donna Finland rf är en organisation för personer med bröstcancer som har grundats 2005. Kamratstöd av alla slag ligger i kärnan för verksamheten. Föreningen är en medlem av organisationen Europa Donna - The European Breast Cancer Coalition som har verksamhet i 47 länder, och en del av Cancerorganisationerna. Målet med Bröstcancerföreningens verksamhet är förbättrande av den fysiska, psykiska och sociala livskvaliteten för bröstcancerpatienter, och att finländska bröstcancerpatienter ska få den bästa möjliga vården oberoende av deras hemort. Föreningen delar ut information om bröstcancer och vården av den samt fungerar som intressebevakare för bröstcancerpatienter.</p><p><b>Välkommen på utställningens vernissage 3.4.2024 kl. 17–19.00.</b></p><p>Plats: Foajén i Malms kulturhus<br>Språk: utställningen överskrider språkgränserna<br>Biljetter: avgiftsfri</p>", "en": "<p>Members of the breast cancer association Europa Donna Finland ry took part in a project in which their naked torsos were photographed. Every subject had dealt with breast cancer.</p><p>“It’s difficult for a woman to accept themselves as they are. With these photos, I want to show that you’re good and beautiful as you are. I, personally, had a breast cancer operation in December 2014, and it was confirmed to have spread in 2018. Nudity fascinates me, since we are all different sizes and shapes. I want to show how beautiful people are in their own way, and I see beauty as all kinds of shapes. In this photography exhibit, I generally show torso nudity in an informative and formalist manner. The idea is that I want to support breast cancer patients in their fight to accept their new bodies. My models are of various ages and some of their cancers have spread”, says <b>Sari Nieminen.</b></p><p>The breast cancer association Europa Donna Finland was founded in 2005 to provide peer support for breast cancer sufferers. The association is a part of Europa Donna – the European Breast Cancer Coalition and a member of the Cancer Associations. The breast cancer association’s target is to improve the quality of life, physically, psychologically and socially for breast cancer patients, and to make sure that Finnish breast cancer patients have access to the best possible care, regardless of where they live. The association distributes information on breast cancer and care, and lobbies for breast cancer patients.</p><p><b>The opening ceremony for the exhibit is on 3 April 2024 at 5 pm – 7 pm, welcome! </b></p><p>Place: Malmitalo lobby<br>Language: no language barriers<br>Admission: free</p>" }, "name": { "fi": "Sari Nieminen: Tässä hetkessä minä elän!", "sv": "Sari Nieminen: Jag lever i denna stund", "en": "Sari Nieminen: The moment I live in" }, "short_description": { "fi": "Rintasyöpäyhdistys Europa Donna Finland ry:n jäseniä osallistui kuvausprojektiin, jossa kuvattiin heidän alastonta keskivartaloaan. Kaikki kuvatut ovat rintasyövän sairastaneita.", "sv": "Medlemmar av bröstcancerföreningen Europa Donna Finland rf deltog i ett fotografiprojekt, där man fotograferade deras nakna bål. Alla de som fotograferades har haft bröstcancer.", "en": "Members of the breast cancer association Europa Donna Finland ry took part in a project in which their naked torsos were photographed. Every subject had dealt with breast cancer." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63068/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61564", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "59,50 €", "sv": "59,50 €", "en": "59,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3545056", "sv": "https://www.lippu.fi/eventseries/name-3545056", "en": "https://www.lippu.fi/eventseries/name-3545056" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T13:14:03.292499Z", "last_modified_time": "2024-02-06T13:23:31.034033Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741318.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T13:14:03.241966Z", "last_modified_time": "2024-04-05T17:13:59.651316Z", "date_published": null, "start_time": "2024-04-03T16: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.savoyteatteri.fi/fi/tapahtumat/event/D97A63FB74EE3D9F9A0B062188311D41/Melissa_Horn_SWE_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D97A63FB74EE3D9F9A0B062188311D41/Melissa_Horn_SWE_", "en": "http://www.savoyteatteri.fi/en/events/event/D97A63FB74EE3D9F9A0B062188311D41/Melissa_Horn_SWE_" }, "provider_contact_info": null, "provider": { "fi": "HH Agency Oy & United Stage", "sv": "HH Agency Oy & United Stage", "en": "HH Agency Oy & United Stage" }, "description": { "fi": "<p>Melissa Horn julkaisee uutta musiikkia ja lähtee kiertueelle suurten kaupunkien pienemmille näyttämöille keväällä 2024.</p><p>Esiinnyttyään menestyksekkäästi Ruotsin television Så Mycket Bättre -ohjelmassa Melissa Horn lähti vuonna 2022 suurelle kiertueelle, johon kuului kaikkiaan 58 konserttia suurissa konserttisaleissa ja ulkoilmanäyttämöillä kaikkialla Pohjoismaissa.</p><p>Vuodenvaihteen jälkeen Melissa Hornilta kuullaan pitkästä aikaa uutta musiikkia, ja keväällä 2024 hän esiintyy yhtyeineen suurissa kaupungeissa eri puolilla Pohjoismaita. Tällä kertaa esiintymisareenoina ovat pienemmät intiimit näyttämöt.</p><p>Melissa Horn on yksi Ruotsin tunnetuimmista ja arvostetuimmista artisteista. Hänen rakkaudesta ja ihmissuhteista kertovat laulunsa ovat tehneet vaikutuksen suureen yleisöön jo yli 15 vuoden ajan. Hänen syksyllä 2021 Ruotsin television Så Mycket Bättre -ohjelmassa esittämänsä versio Cherrien kappaleesta ”Lämna han” teki yleisöön suuren vaikutuksen. Tulkinnasta tuli heti radiohitti, ja sitä on striimattu Spotifyssä yli 20 miljoona kertaa. Seuraavana vuonna Melissa järjesti lähes 60 konserttia, joista monet olivat loppuunmyytyjä viimeistä paikkaa myöten. Yleisön vastaanotto oli mahtava, ja monen sekä kultaa että platinaa myyneen albumin, usean Grammis-ehdokkuuden ja listasijoitusten jälkeenkin kiertueet ovat Melissalle kaikkein tärkein juttu.</p><p>Kun hän keväällä 2024 julkaisee uutta musiikkia ja lähtee taas kiertueelle, vuorossa on sarja pienimuotoisia konsertteja viihtyisillä pienillä näyttämöillä Ruotsissa, Norjassa ja Suomessa. Yleisö pääsee kokemaan Melissa Hornin entistä lähempää ja entistä intensiivisemmin. Mukanaan Melissalla on yhtyeensä: Rikard Lidhamn bassossa, Magnus Olsson rummuissa, Mikael Nilzén ja Claes Björklund koskettimissa ja syntetisaattorissa.</p><p>Pituus: noin 90 minuuttia, ei väliaikaa.</p><p>Permanto anniskelualuetta, ikäraja 18 vuotta. Parvekkeella ei anniskelua eikä ikärajaa</p>", "sv": "<p>Melissa Horn släpper ny musik och åker på intim storstadsturné till vackra salonger våren 2024</p><p>Efter att Melissa Horn gjort succé i Så Mycket Bättre åkte hon ut på en stor turné 2022, sammanlagt blev det mäktiga 58 konserter i stora konserthus och sommarscener runt om i Norden.</p><p>Efter årsskiftet hör vi äntligen ny musik och våren 2024 kommer Melissa Horn och hennes band att spela i ett antal storstäder runt om i Norden. Den här gånger blir det i mindre och mer intima salonger.</p><p>Melissa Horn är en av Sveriges största och mest uppskattade artister. Hon har med sina målande texter om kärlek och relationer berört en stor publik med sin musik i över 15 år. Hösten 2021 kunde vi se henne i Så Mycket Bättre och versionen av Cherries ”Lämna han” berörde Sverige på djupet. Tokningen blev snabbt en radiofavorit och har streamats över 20 miljoner gånger på Spotify. Under det efterföljande året gjorde Melissa närmare 60 konserter, många utsålda till sista plats. Publikens gensvar var fantastiskt och efter flera album som sålt både guld och platina, flera Grammisnomineringar och topplisteplaceringar, så är det fortfarande turnéerna som betyder allra mest för Melissa.</p><p>När hon våren 2024 släpper ny musik och än en gång ger sig ut på turné, kommer det bli en serie intima konserter i vackra salonger i Sverige, Norge och Finland. Melissa Horn kommer närmare publiken som får en ännu intensivare upplevelse. Med sig har hon sitt band i form av Rikard Lidhamn på bas, Magnus Olsson på trummor, Mikael Nilzén och Claes Björklund på klaviatur/synth.</p><p>Längd: Ca 90 minuter utan paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>Melissa Horn is planning to release new music and will be touring a series of elegant venues in major cities in 2024.</p><p>After Melissa Horn’s successful appearance on the hit Swedish TV show Så Mycket Bättre she went on a long tour in 2022, performing a grand total of 58 gigs in large concert halls and summer stages around Scandinavia.</p><p>We will finally get the chance to see Melissa Horn on stage again in spring 2024, when she and her band will be performing in several major Scandinavian cities. This time she will be appearing in smaller and more intimate venues.</p><p>Melissa Horn is one of Sweden’s greatest and most appreciated musicians. Her emotive descriptions of love and relationships have moved audiences for over fifteen years. In autumn 2021 she appeared on Så Mycket Bättre and her version of Cherrie’s “Lämna han” touched the very core of the Swedish audience’s soul. Her interpretation of the song quickly became a hit on the radio and has been streamed 20 million times on Spotify. During the next year Melissa went on tour and performed nearly 60 concerts, many of which were completely sold out. The response from the audience was fantastic and after many gold and platinum albums, several Grammy nominations and a string of chart toppers, Melissa still feels that nothing beats performing live.</p><p>In spring 2024 Melissa Horn will be releasing new music and going out on tour again. She will be performing a series of intimate concerts in beautiful venues throughout Sweden, Norway and Finland. This time she wants to get closer to the audience and give them an even more intense experience. She will be accompanied by her band: Rikard Lidhamn on bass, Magnus Olsson on drums, Mikael Nilzén and Claes Björklund on keyboards/synth.</p><p>Duration: Approx. 90 minutes, no interval.</p><p>Stalls with serving area, 18 year age limit. Gallery, no serving area or age limit</p>" }, "name": { "fi": "Melissa Horn (SWE)", "sv": "Melissa Horn (SWE)", "en": "Melissa Horn (SWE)" }, "short_description": { "fi": "Melissa Horn julkaisee uutta musiikkia ja lähtee kiertueelle suurten kaupunkien pienemmille näyttämöille keväällä 2024.", "sv": "Melissa Horn släpper ny musik och åker på intim storstadsturné till vackra salonger våren 2024", "en": "Melissa Horn is planning to release new music and will be touring a series of elegant venues in major cities in 2024." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61564/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61273", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24 € / 15 € / 10 €", "sv": "24 € / 15 € / 10 €", "en": "24 € / 15 € / 10 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/", "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/", "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6186, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T12:13:19.076473Z", "last_modified_time": "2024-02-06T13:23:30.945578Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739157.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6186/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T12:13:19.057604Z", "last_modified_time": "2024-04-05T17:13:59.596558Z", "date_published": null, "start_time": "2024-04-03T16: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.stoa.fi/fi/tapahtumat/event/87E30014AD8D4644293A36E19E3C67FC/Susanna_Leinonen_Company_Satakieli_", "sv": "http://www.stoa.fi/sv/evenemang/event/87E30014AD8D4644293A36E19E3C67FC/Susanna_Leinonen_Company_Naktergal_", "en": "http://www.stoa.fi/en/events/event/87E30014AD8D4644293A36E19E3C67FC/Susanna_Leinonen_Company_Nightingale" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>", "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>", "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>" }, "name": { "fi": "Susanna Leinonen Company: Satakieli", "sv": "Susanna Leinonen Company: Näktergal", "en": "Susanna Leinonen Company: Nightingale" }, "short_description": { "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.", "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.", "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61273/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63148", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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-madeleinen-pariisi-3604192/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11196, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-04T13:14:03.091528Z", "last_modified_time": "2024-03-04T13:14:03.091548Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745123.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11196/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-04T13:14:03.067746Z", "last_modified_time": "2024-04-05T17:13:59.535004Z", "date_published": null, "start_time": "2024-04-03T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/237D0C61451D5F72C857B10D0A714A7A/Madeleinen_Pariisi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/237D0C61451D5F72C857B10D0A714A7A/Madeleinen_Pariisi", "en": "http://www.malmitalo.fi/en/events/event/237D0C61451D5F72C857B10D0A714A7A/Madeleinen_Pariisi" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen.</p><p>Huolien riivaama taksikuski Charles (Dany Boon) ottaa rahakkaan tuntuisen ajokeikan Pariisin laidalta toiselle. Pian käy ilmi, että 92-vuotias Madeleine on menossa vanhainkotiin, mutta haluaa ensin ajella muistorikkaiden paikkojen kautta vailla kiirettä.</p><p>Ensirakkaudet, tulinen ero, radikaalit kamppailut naisten oikeuksista ja historian myllerrykset vyöryvät esiin Madeleinen tarinan myötä. Nimiroolissa loistaa ikinuori näyttelijätär Line Renaud, joka tunnetaan mm. Relaxes-vous (Ottakaa rennosti) duetosta Dean Martinin kanssa. ”Hymy nuorentaa” kuvastaa Madeleinen elämänasennetta. Automatkan aikana pari ystävystyy tavalla, joka muuttaa kummankin elämän.</p><p>Kesto 91 min<br>Ensi-ilta 15.3.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b><br>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>" }, "name": { "fi": "Madeleinen Pariisi – Kino Helios", "sv": "Madeleinen Pariisi – Kino Helios", "en": "Madeleinen Pariisi – Kino Helios" }, "short_description": { "fi": "Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63148/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61945", "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:45/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7249, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-18T15:13:33.924049Z", "last_modified_time": "2024-02-06T13:23:30.754892Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743786.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7249/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-18T15:13:33.908972Z", "last_modified_time": "2024-04-05T17:13:59.443750Z", "date_published": null, "start_time": "2024-04-03T13:00:00Z", "end_time": "2024-04-03T15: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.vuotalo.fi/fi/tapahtumat/event/D96E4AB8271A69FF0FCAC6686572BA20/Luova_hetki_-_avoin_taidepaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D96E4AB8271A69FF0FCAC6686572BA20/Skapande_stund_oppen_konstworkshop", "en": "http://www.vuotalo.fi/en/events/event/D96E4AB8271A69FF0FCAC6686572BA20/A_creative_moment_open_art_workshop" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Ollaan yhdessä luovia! Tule Vuotalon aulaan tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Järjestämme viisi eriteemaista taidepajaa kerran kuussa. Taidepajat sopivat lapsille ja aikuisille.</p><p><b> ke 7.2. klo 16–18 Loistavasti liikenteessä</b><br>Pajassa tehdään neulahuovutuksella värikäs ja loistava heijastin, niin ollaan turvallisesti liikenteessä kevääseen asti. Piikikäs menetelmä! Alle 8-vuotiaat ainoastaan aikuisen seurassa. Ei sovi alle 5-vuotiaille.<br> <br><b>ke 6.3. klo 16–18 Loistavat ikkunakoristeet</b><br>Luodaan ikkunankoriste silkkipaperilla. Kevään auringon säteillä se loistaa ja ilahduttaa meitä vieden ajatukset kesään.<br> <br><b>ke 27.3. klo 16–18 Pääsiäishuovutus </b><br>Luodaan pehmeitä pääsiäismunia ja tipuja lampaanvillasta. Villa kastellaan suopavedellä ja huovutetaan kärsivällisesti käsin hieromalla. Halutessasi muna voi jäädä Vuotaloon pääsiäiskoristeeksi ja saat hakea sen kotiin pääsiäisen jälkeen.<br> <br><b>ke 3.4. klo 16–18 Paperimosaiikki pienistä palasista</b><br>Inspiroidumme vanhasta klassisesta tekniikasta ja luomme mosaiikkiteoksia värikkäistä papereista.<br> <br><b>ke 15.5. klo 16–18 Hienostunut nyöri</b><br>“Kumihimo” on perinteinen japanilainen letittämismenetelmä. Yksinkertaisella tekniikalla luodaan värikkäitä ja konstikkaita kuvioita nöyrille. Pajalla saat sekä tekniikan alkeet haltuun että oman letityskiekon kotiin. Varoitus! Tämä tekniikka on koukuttavaa!</p><p>Ohjaaja: Chloé Mahy-Hulkko<br>Ohjauskielet: suomi, ranska, englanti</p>", "sv": "<p>Vi skapar tillsammans! Kom med till Nordhusets lobby och skapa vackra och behövliga dekorationer.</p><p>Vi ordnar fem olika konstworkshoppar med olika teman en gång i månaden. Konstworkshopparna passar för barn och vuxna.</p><p><b>ons 7.2. Lysande i trafiken</b> <br>Under workshoppen lagar vi en färgglad och lysande reflex med nåltovning, så att vi kan röra oss tryggt i trafiken fram till våren. En vass metod! Under 8-åringar ska ha sällskap av en vuxen. Lämpar sig inte för personer under 5 år.</p><p><b>ons 6.3. Glimmande fönsterdekorationer</b> <br>Vi skapar en fönsterdekoration med silkespapper. Vårsolen får den att glimma glatt, och för våra tankar till sommaren.</p><p><b>ons 27.3. Påsktovning</b><br>Vi skapar mjuka påskägg och kycklingar av fårull. Ullen fuktas med tvålvatten och tovas genom att tålmodigt bearbeta den för hand. Om du vill kan du lämna ditt ägg som påskdekoration i Nordhuset och ta hem det efter påsken.</p><p><b>ons 3.4. Pappersmosaik av små bitar</b><br>Vi tar inspiration av en gammal, klassisk teknik och skapar mosaikverk av färgglatt papper.</p><p><b>ons 15.5. Förfinade snören</b><br>”Kumihimo” är en traditionell japansk flätningsmetod. Med hjälp av den enkla tekniken skapar man färgglada och komplicerade mönster på snören. I workshoppen får du en introduktion till tekniken och en egen flätskiva att ta med hem. Varning! Den här tekniken är beroendeframkallande!</p><p>Workshopparna passar för barn och vuxna.</p><p>Handledare: Chloé Mahy-Hulkko<br>Språk: finska, franska, engelska</p>", "en": "<p>Let’s get creative together! Come to the Vuotalo lobby to craft beautiful and useful decorations.</p><p>We will hold five monthly art workshops with different themes. These art workshops are suitable for children and adults.</p><p><b>Wed, 7 Feb: Brilliantly on the Road reflector workshop</b> <br>The workshop involves using needle felting to make a colourful and bright reflector to keep us safe on the roads until spring. This is a potentially prickly crafting method! Children under the age of eight must be accompanied by an adult. Not suitable for children under five years of age.</p><p><b>Wed, 6 March: Brilliant window decorations</b> <br>We’ll create window decorations with tissue paper. They will shine with the rays of the spring sun and delight us with thoughts of summer.</p><p><b>Wed, 27 March: Easter felting</b><br>We’ll create soft Easter eggs and chicks from sheep’s wool. The wool is soaked in soapy water and then carefully felted by working it with your hands. You can leave the egg in Vuotalo as an Easter decoration and pick it up after Easter if you’d like.</p><p><b>Wed, 3 April: Paper mosaic from small pieces</b><br>We’ll be inspired by an age-old classic technique and create mosaics from colourful paper.</p><p><b>Wed, 15 May: Sophisticated braiding</b><br>‘Kumihimo’ is a traditional Japanese braiding method. This simple technique is used to create colourful and intricate patterns on cords. This workshop will give you the basics of the technique and your own braiding disc to take home. Warning! You may find this crafting technique irresistible!</p><p>These workshops are suitable for children and adults.</p><p>Instructor: Chloé Mahy-Hulkko<br>Language(s) of instruction: Finnish, French, English</p>" }, "name": { "fi": "Luova hetki - avoin taidepaja", "sv": "Skapande stund – öppen konstworkshop – i Nordhusets lobby", "en": "A creative moment – open art workshop – In the Vuotalo lobby" }, "short_description": { "fi": "Ollaan yhdessä luovia! Tule Vuotalon aulaan tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.", "sv": "Vi skapar tillsammans! Kom med till Nordhusets lobby och skapa vackra och behövliga dekorationer.", "en": "Let’s get creative together! Come to the Vuotalo lobby to craft beautiful and useful decorations." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61945/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61421", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "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": 6226, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-24T12:13:09.809721Z", "last_modified_time": "2024-02-06T13:23:30.662405Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740235.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6226/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-24T12:13:09.795684Z", "last_modified_time": "2024-04-05T17:13:59.392266Z", "date_published": null, "start_time": "2024-04-03T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/1FB047B3E3A47F0503BB1E682A0EDCE7/HOW_radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/1FB047B3E3A47F0503BB1E682A0EDCE7/HOW_radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/1FB047B3E3A47F0503BB1E682A0EDCE7/HOW_radio_Global_Club_Nights" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Keskustelemme projektien ja ideoiden mahdollisuuksista, vahvuuksista ja heikkouksista sekä siitä, miten nämä ideat voisivat muuntautua luoviksi prosesseiksi ja lopulta viimeistellyiksi taiteellisiksi tuotteiksi yhteistyön kautta.</p><p><b>Kati Uusi-Rauva</b> on antropologi, ja hän on kehittänyt luovien alojen liiketoimintaosaamista ja -mahdollisuuksia Suomessa ja kansainvälisesti 90-luvun lopulta lähtien. Tällä hetkellä hän kirjoittaa Oulun yliopiston antropologian yksikköön väitöskirjaansa verkostoitumiskulttuurista luovien alojen PK-yrityksissä ja toimii Taideyliopistossa Helsingissä projektipäällikkönä.</p><p>--</p><p>Helsinki Open Waves -radion, Caisan ja Sibelius-Akatemian Global Music -osaston yhteistuottamissa keskusteluissa tarkastellaan musiikkia niin muusikon kuin musiikkiteollisuuden näkökulmasta, monimuotoisuuteen keskittyvässä, neutraalissa ja turvallisessa tilassa. Kuuntele ohjelmaa HOW-radion aalloilla osoitteessa <u><a href=\"https://www.helsinkiopenwaves.com\">helsinkiopenwaves.com</u></a>.</p><p>Keskustelun kieli on englanti.</p><p>Global Club Nights -live-klubi-iltoja järjestetään Caisassa kuukausittain! Lue lisää Caisan <u><a href=\"https://www.caisa.fi/fi/tapahtumat/?q=Global%20Club%20Nights\">tapahtumakalenterista</u></a>.</p><p>Helsinki Open Waves on voittoa tavoittelematon ja yhteisölähtöinen alusta, jonka osallistujat voivat toteuttaa omia sisältöjään juuri niin kuin haluavat ja ilmaista itseään omalla kielellään ja kulttuurinsa kautta. Lue lisää <u><a href=\"https://www.caisa.fi/fi/tapahtumat/event/bfdfdd7f694211e35cf77b582ce20924/helsinki_open_waves\">täältä</u></a>.</p>", "sv": "<p>Vi pratar om projekts och idéers möjligheter, styrkor och svagheter, samt möjligheten att genom samarbete omvandla dessa idéer först till kreativa processer och slutligen till kompletta konstnärliga produkter</p><p><b>Kati Uusi-Rauva</b> är antropolog och har utvecklat affärsskicklighet och möjligheter inom den kreativa sektorn, både i Finland och internationellt sedan slutet på 1990-talet. För närvarande skriver hon på sin doktorsavhandling – om nätverkande inom små och medelstora företag i den kreativa sektorn – på avdelningen för antropologi på Uleåborgs universitet och arbetar som projektledare på Konstuniversitetet i Helsingfors.</p>", "en": "<p>This afternoon, on HOW radio's Global Club Nights episode, we discuss the possibilities, the strengths and the weaknesses of projects and ideas, and the possibilities of these ideas transforming into creative processes.</p><p>Finally, we complete artistic products through collaborative processes.</p><p><b>Kati Uusi-Rauva</b> is an anthropologist, having developed creative industries’ business skills and opportunities in Finland and internationally since the late 1990’s. At the moment she is writing her doctoral thesis on networking culture among creative industries’ SME’s in the anthropology department in University of Oulu and working as a project manager in Uniarts Helsinki</p><p>--</p><p>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s <u><a href=\"https://www.caisa.fi/en/events/?q=Global%20Club%20Nights\">event calendar</u>.</a></p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more <u><a href=\"https://www.caisa.fi/en/events/event/BFDFDD7F694211E35CF77B582CE20924/Helsinki_Open_Waves_\">here</u></a>.</p>" }, "name": { "fi": "HOW radio: Global Club Nights – with Kati Uusi-Rauva", "sv": "HOW radio: Global Club Nights – with Kati Uusi-Rauva", "en": "HOW radio: Global Club Nights – with Kati Uusi-Rauva" }, "short_description": { "fi": "Keskustelemme projektien ja ideoiden mahdollisuuksista, vahvuuksista ja heikkouksista sekä siitä, miten nämä ideat voisivat muuntautua luoviksi prosesseiksi ja lopulta viimeistellyiksi taiteellisiksi tuotteiksi yhteistyön kautta.", "sv": "Vi pratar om projekts och idéers möjligheter, styrkor och svagheter, samt möjligheten att genom samarbete omvandla dessa idéer först till kreativa processer och slutligen till kompletta konstnärliga produkter", "en": "This afternoon, on HOW radio's Global Club Nights episode, we discuss the possibilities, the strengths and the weaknesses of projects and ideas, and the possibilities of these ideas transforming into creative processes." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61421/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61827", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?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": 6916, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T11:13:06.653817Z", "last_modified_time": "2024-02-06T13:23:30.564295Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742306.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6916/?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": "2023-12-29T11:13:06.640205Z", "last_modified_time": "2024-04-05T17:13:59.289605Z", "date_published": null, "start_time": "2024-04-03T07:30:00Z", "end_time": "2024-04-03T08:15: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.stoa.fi/fi/tapahtumat/event/FB71C3B86B3652FEDF3603558582A7D3/Vauvasirkuksen_alkeiskurssi", "sv": "http://www.stoa.fi/sv/evenemang/event/FB71C3B86B3652FEDF3603558582A7D3/Babycirkus_grundkurs", "en": "http://www.stoa.fi/en/events/event/FB71C3B86B3652FEDF3603558582A7D3/Baby_Circus_for_Beginners" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Vauvasirkuksessa pääset pitämään hauskaa naperosi kanssa turvallisessa, mutta virikkeellisessä ympäristössä. Kurssiaika: ke 20.3.-17.4. (5x) klo 10.30-11.15.</p><p>Pienten omalla sirkuskurssilla leikitään ja kokeillaan erilaisia sirkustaitoja kuten tasapainoilua, akrobatiaa ja jongleerausvälineitä. Lapsesi pääsee iloitsemaan kokonaisvaltaisesta aistikokemuksesta, joka edistää luovuutta ja hahmotuskykyä sekä kehittää tärkeitä taitoja, kuten tasapainoa, voimaa ja koordinaatiota. Aikuiset saavat samalla vetreyttää omia taitojaan, pääsevät tutustumaan muihin vanhempiin tai isovanhempiin sekä tietenkin luomaan läheistä suhdetta omaan pienokaiseensa.</p><p>Vauvasirkusryhmän ikäsuositus: 5kk -1-vuotiaat, ei vielä kävelevät lapset</p><p>Ohjaaja: sirkusohjaaja Enrique Salas <br>Paikka: Stoan musiikkisali <br>Kesto: 5 x 45 min <br>Kieli: suomi, englanti ja espanja <br> <br>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta <br>Lisätiedot: hanna.westerholm@hel.fi</p><p>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan vauvasirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua kokeilemaan onneasi. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti, jos tilaa on.</p>", "sv": "<p>På babycirkus får du ha kul med din lilla småtting i en säker men stimulerande miljö. 20.3.-17.4. (5x) klo 10.30-11.15.</p><p>Cirkuskursen omfattar tio verkstadsträffar där man övar på och leker med olika cirkusfärdigheter såsom balansering, akrobatik och jongleringsutrustning.</p><p>Upplevelsen involverar även ditt barns alla sinnen, vilket uppmuntrar till kreativitet, utvecklar rumsuppfattningen och låter det träna på grundläggande färdigheter, såsom balans, styrka, koordination osv.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Språk: engelska, spanska och finska <br>Åldersrekommendation: 0,5-1-åringar med föräldrar eller mor/farföräldrar <br>Längd: 5 x 45 min.</p><p>Fritt inträde, anmälningar fr.o.m. 10.1. klo 10 på www.stoa.fi</p>", "en": "<p>The baby circus is a safe but stimulating environment for little ones with their parents. 20.3.-17.4. (5x) klo 10.30-11.15.</p><p>The circus course includes ten workshops where participants play and experiment with different circus skills, such as balancing, acrobatics and juggling equipment.</p><p>It will be a complete sensory experience for your baby, encouraging creativity, laterality, developing spatial awareness and building on essential skills like balance, strength, coordination and more.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Language: English, Spanish and Finnish <br>Age recommendation: 5 months to 1-year-old with a parent or grandparent <br>Duration: 5 x 45 min</p><p>Entrance free, pre-registration starting from Jan 10th at 10.00 a.m. at www.stoa.fi</p>" }, "name": { "fi": "Vauvasirkuksen alkeiskurssi", "sv": "Babycirkus grundkurs", "en": "Baby Circus for Beginners" }, "short_description": { "fi": "Vauvasirkuksessa pääset pitämään hauskaa naperosi kanssa turvallisessa, mutta virikkeellisessä ympäristössä. Kurssiaika: ke 20.3.-17.4. (5x) klo 10.30-11.15.", "sv": "På babycirkus får du ha kul med din lilla småtting i en säker men stimulerande miljö. 20.3.-17.4. (5x) klo 10.30-11.15.", "en": "The baby circus is a safe but stimulating environment for little ones with their parents. 20.3.-17.4. (5x) klo 10.30-11.15." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61827/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61618", "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: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: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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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": 6488, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T14:14:11.981169Z", "last_modified_time": "2024-02-06T13:23:30.469452Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738496.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6488/?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": "2023-12-07T14:14:11.965893Z", "last_modified_time": "2024-04-05T17:13:59.239058Z", "date_published": null, "start_time": "2024-04-03T07:00:00Z", "end_time": "2024-04-03T09: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/CBD98A2FC611BFC3447DC9333B35B250/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/CBD98A2FC611BFC3447DC9333B35B250/Naperokino", "en": "http://www.annantalo.fi/en/events/event/CBD98A2FC611BFC3447DC9333B35B250/Naperokino" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.<br> <br>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.<br> <br>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.<br> <br>Ovella lapsia on tervehtimässä Pikku-Myyrä.</p><p>Viikon teemana on rohkeus ja auttaminen, johon liittyen viereisessä tilassa järjestetään oheisohjelmana pieni taidetuokio. Osallistuminen on vapaaehtoista.</p><p>Näytöksillä on joka viikko vaihtuva teema:<br>• Ke 17.1.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 24.1.2024 Naperokino: seikkailu ja matka<br>• Ke 31.1.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 7.2.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 14.2.2024 Naperokino: ystävät ja perhe <br>• Ke 21.2.2024 Naperokino: luovuus ja taiteet <br>• Ke 28.2.2024 Naperokino: luonto ja eläimet <br>• Ke 6.3.2024 Naperokino: mielikuvitus<br>• Ke 13.3.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 20.3.2024 Naperokino: seikkailu ja matka<br>• Ke 27.3.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 3.4.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 10.4.2024 Naperokino: ystävät ja perhe<br>• Ke 17.4.2024 Naperokino: luovuus ja taiteet<br>• Ke 24.4.2024 Naperokino: luonto ja eläimet</p><p>Kieli: suomi<br>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa</p>", "sv": "<p>De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Under den första halvan av visningen som varar två timmar visas animerade filmer utan tal och under den andra halvan kommer finskspråkiga favoritfilmer med.</p><p>Språk: finska<br>För 0–3 åringar med sina föräldrar</p>", "en": "<p>The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue in Finnish.</p><p>For 0–3 year olds with their parents.</p>" }, "name": { "fi": "Naperokino", "sv": "Naperokino – Knattebion", "en": "Naperokino – Toddler cinema" }, "short_description": { "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61618/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19239, "next": "