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=586
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=587", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=585" }, "data": [ { "id": "kulke:61696", "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:350/?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" } ], "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": 6718, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-19T12:12:58.538692Z", "last_modified_time": "2024-02-06T13:23:01.836379Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741045.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6718/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-19T12:12:58.526598Z", "last_modified_time": "2024-02-06T13:23:01.873893Z", "date_published": null, "start_time": "2024-02-03T12:00:00Z", "end_time": "2024-02-03T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Barnens DanceAbility dansworkshops", "en": "Children's DanceAbility workshops" }, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Muut inklusiiviset tanssitunnit: 3.2., 17.2., 2.3.,16.3., 30.3., 20.4., 11.5., 25.5. klo 14–15.</p><p>Ilmoittautuminen: daf@danceabilityfinland.com <br>max.18 osallistujaa</p>", "sv": "<p>DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.</p><p>Klasserna är öppna för alla barn och deras närstående vuxna oavsett funktionsnedsättning eller inte.</p><p>Lokalerna är tillgängliga.</p><p>bokningar: daf@danceabilityfinland.com<br>max. 18 dansare</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com<br>max. 18 dancers</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/995D7FCE8839D36284CA51BBAEAF21AF/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/995D7FCE8839D36284CA51BBAEAF21AF/Barnens_DanceAbility_dansworkshops", "en": "http://www.annantalo.fi/en/events/event/995D7FCE8839D36284CA51BBAEAF21AF/Children_s_DanceAbility_workshops" }, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61696/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61385", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/docteatern-tittut/", "sv": "https://www.lippu.fi/artist/docteatern-tittut/", "en": "https://www.lippu.fi/artist/docteatern-tittut/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6153, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-22T15:13:05.946392Z", "last_modified_time": "2024-02-06T13:23:01.742959Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740230.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6153/?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-11-22T15:13:05.925980Z", "last_modified_time": "2024-02-06T13:23:01.783397Z", "date_published": null, "start_time": "2024-02-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, "provider_contact_info": null, "provider": null, "name": { "fi": "Dockteatern Tittut: Snö – Lumi", "sv": "Dockteatern Tittut: Snö – Lumi", "en": "Dockteatern Tittut: Snö – Snow" }, "description": { "fi": "<p>Lapista inspiraationsa saanut sanaton tanssi- ja nukketeatteriesitys.</p><p>Lumi narisee ja vikisee. Jää halkeilee. Eläimet liikkuvat talvisessa maisemassa. Luonto on ikuinen ja koskematon, energian ja pohdinnan lähde.</p><p>Sanattomassa esityksessä tanssin ja nukketeatterin avulla muovataan saamelainen vuoristomaisema. Yhteistyössä Dans i Nordin kanssa ja Jokkmokkin residenssin jälkeen, Tittut ammentaa inspiraatiota upeasta vuoristomaisemasta ja sen monipuolisesta eläimistöstä.</p><p>Yleisö kutsutaan mukaan taianomaiseen, myyttiseen ja ilmavaan satumaailmaan. Herkän pantomiimin ja tanssin kautta, tunnelmallisen musiikin, narisevan lumen ja kilisevän jään äänten säestämänä matkustamme läpi Lapin valkoisen maiseman. Runollinen esitys eläimistä ja luonnosta toteutetaan kauniin lavastuksen puitteissa, jossa jokainen yksityiskohta on huolellisesti valittu.</p><p>Esiintyjät: Pascal Jansson & Niklas Blomqvist<br>Idea & dramatisointi: Hugo Therkelsson, Lisa Kjellgren Almstig, Sophia Segrell, Tobias Ulfvebrand<br>Ohjaus: Sophia Segrell<br>Nuket, lavastus & puvustus: Lisa Kjellgren Almstig<br>Musiikki: Tobias Ulfvebrand & Hugo Therkelson<br>Koreografia: Tobias Ulfvebrand & Hugo Therkelson<br>Äänisuunnittelu: Hugo Therkelson<br>Valaistus: Robin Thorman</p><p>Ikäsuositus: 4+<br>Kesto: 40 min<br>Kieli: esitys ei sisällä puhetta</p>", "sv": "<p>En dans- och dockteaterföreställning med inspiration från Lappland.</p><p>Snön knarrar och viner. Isen spricker. Djuren rör sig i vinterlandskapet. Naturen är evig och oberörd, en källa av energi och funderingar.</p><p>Vid föreställningen formas ett samiskt berglandskap med hjälp av dans och dockteater.</p><p>Medverkande: Pascal Jansson & Niklas Blomqvist<br>Idé & dramatisering: Hugo Therkelsson, Lisa Kjellgren Almstig, Sophia Segrell, Tobias Ulfvebrand<br>Regi: Sophia Segrell<br>Dockor, Scenografi & Kostym: Lisa Kjellgren Almstig<br>Musik: Tobias Ulfvebrand & Hugo Therkelson<br>Koreografi: Tobias Ulfvebrand & Hugo Therkelson<br>Ljuddesign: Hugo Therkelson<br>Ljussättning: Robin Thorman</p><p>Åldersrekommendation: 4+<br>Längd: 40 min</p>", "en": "<p>A dance and puppet performance inspired by Sápmi.</p><p>The snow creaks and squeaks. The ice is cracking. The animals move across the landscape. Nature is self-evident, eternal, and unadulterated. A source of energy and reflection.</p><p>Through dance and puppets, the Sami mountain world is shaped. Thanks to a collaboration with Dans i Nord and a residency in Jokkmokk, Tittut draws inspiration from a magnificent mountain landscape with rich wildlife.</p><p>The audience is invited to a magical, mythical, and airy, fabulous world. With a sensitive mix of mime and dance to evocative music, creaking snow, and clinking ice, we travel through Sápmi’s white landscape. A poetic performance about animals and nature, in a beautiful and integrated scenography, where every detail is carefully executed.</p><p>Performance: Pascal Jansson & Niklas Blomqvist<br>Concept & dramatization: Hugo Therkelsson, Lisa Kjellgren Almstig, Sophia Segrell, Tobias Ulfvebrand<br>Direction: Sophia Segrell<br>Puppets, Set design & Costume: Lisa Kjellgren Almstig<br>Music: Tobias Ulfvebrand & Hugo Therkelson<br>Choreography: Tobias Ulfvebrand & Hugo Therkelson<br>Sound design: Hugo Therkelson<br>Lighting: Robin Thorman</p><p>Age recommendation: 4+<br>Duration: 40 minutes<br>Language: the performance contains no speech</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2F106CFD3FE5567D04AEED9043C99D03/Dockteatern_Tittut_Sno_Lumi_", "sv": "http://www.annantalo.fi/sv/evenemang/event/2F106CFD3FE5567D04AEED9043C99D03/Dockteatern_Tittut_Sno_Lumi_", "en": "http://www.annantalo.fi/en/events/event/2F106CFD3FE5567D04AEED9043C99D03/Dockteatern_Tittut_Sno_Snow" }, "short_description": { "fi": "Lapista inspiraationsa saanut sanaton tanssi- ja nukketeatteriesitys.", "sv": "En dans- och dockteaterföreställning med inspiration från Lappland.", "en": "A dance and puppet performance inspired by Sápmi." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61385/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61384", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/docteatern-tittut/", "sv": "https://www.lippu.fi/artist/docteatern-tittut/", "en": "https://www.lippu.fi/artist/docteatern-tittut/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6152, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-22T15:13:05.819298Z", "last_modified_time": "2024-02-06T13:23:01.645404Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740229.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6152/?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-11-22T15:13:05.797425Z", "last_modified_time": "2024-02-06T13:23:01.685211Z", "date_published": null, "start_time": "2024-02-03T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Dockteatern Tittut: Snö – Lumi", "sv": "Dockteatern Tittut: Snö – Lumi", "en": "Dockteatern Tittut: Snö – Snow" }, "description": { "fi": "<p>Lapista inspiraationsa saanut sanaton tanssi- ja nukketeatteriesitys.</p><p>Lumi narisee ja vikisee. Jää halkeilee. Eläimet liikkuvat talvisessa maisemassa. Luonto on ikuinen ja koskematon, energian ja pohdinnan lähde.</p><p>Sanattomassa esityksessä tanssin ja nukketeatterin avulla muovataan saamelainen vuoristomaisema. Yhteistyössä Dans i Nordin kanssa ja Jokkmokkin residenssin jälkeen, Tittut ammentaa inspiraatiota upeasta vuoristomaisemasta ja sen monipuolisesta eläimistöstä.</p><p>Yleisö kutsutaan mukaan taianomaiseen, myyttiseen ja ilmavaan satumaailmaan. Herkän pantomiimin ja tanssin kautta, tunnelmallisen musiikin, narisevan lumen ja kilisevän jään äänten säestämänä matkustamme läpi Lapin valkoisen maiseman. Runollinen esitys eläimistä ja luonnosta toteutetaan kauniin lavastuksen puitteissa, jossa jokainen yksityiskohta on huolellisesti valittu.</p><p>Esiintyjät: Pascal Jansson & Niklas Blomqvist<br>Idea & dramatisointi: Hugo Therkelsson, Lisa Kjellgren Almstig, Sophia Segrell, Tobias Ulfvebrand<br>Ohjaus: Sophia Segrell<br>Nuket, lavastus & puvustus: Lisa Kjellgren Almstig<br>Musiikki: Tobias Ulfvebrand & Hugo Therkelson<br>Koreografia: Tobias Ulfvebrand & Hugo Therkelson<br>Äänisuunnittelu: Hugo Therkelson<br>Valaistus: Robin Thorman</p><p>Ikäsuositus: 4+<br>Kesto: 40 min<br>Kieli: esitys ei sisällä puhetta</p>", "sv": "<p>En dans- och dockteaterföreställning med inspiration från Lappland.</p><p>Snön knarrar och viner. Isen spricker. Djuren rör sig i vinterlandskapet. Naturen är evig och oberörd, en källa av energi och funderingar.</p><p>Vid föreställningen formas ett samiskt berglandskap med hjälp av dans och dockteater.</p><p>Medverkande: Pascal Jansson & Niklas Blomqvist<br>Idé & dramatisering: Hugo Therkelsson, Lisa Kjellgren Almstig, Sophia Segrell, Tobias Ulfvebrand<br>Regi: Sophia Segrell<br>Dockor, Scenografi & Kostym: Lisa Kjellgren Almstig<br>Musik: Tobias Ulfvebrand & Hugo Therkelson<br>Koreografi: Tobias Ulfvebrand & Hugo Therkelson<br>Ljuddesign: Hugo Therkelson<br>Ljussättning: Robin Thorman</p><p>Åldersrekommendation: 4+<br>Längd: 40 min</p>", "en": "<p>A dance and puppet performance inspired by Sápmi.</p><p>The snow creaks and squeaks. The ice is cracking. The animals move across the landscape. Nature is self-evident, eternal, and unadulterated. A source of energy and reflection.</p><p>Through dance and puppets, the Sami mountain world is shaped. Thanks to a collaboration with Dans i Nord and a residency in Jokkmokk, Tittut draws inspiration from a magnificent mountain landscape with rich wildlife.</p><p>The audience is invited to a magical, mythical, and airy, fabulous world. With a sensitive mix of mime and dance to evocative music, creaking snow, and clinking ice, we travel through Sápmi’s white landscape. A poetic performance about animals and nature, in a beautiful and integrated scenography, where every detail is carefully executed.</p><p>Performance: Pascal Jansson & Niklas Blomqvist<br>Concept & dramatization: Hugo Therkelsson, Lisa Kjellgren Almstig, Sophia Segrell, Tobias Ulfvebrand<br>Direction: Sophia Segrell<br>Puppets, Set design & Costume: Lisa Kjellgren Almstig<br>Music: Tobias Ulfvebrand & Hugo Therkelson<br>Choreography: Tobias Ulfvebrand & Hugo Therkelson<br>Sound design: Hugo Therkelson<br>Lighting: Robin Thorman</p><p>Age recommendation: 4+<br>Duration: 40 minutes<br>Language: the performance contains no speech</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9EA57B3CE3C3D9634CD46B8E3BF1D49E/Dockteatern_Tittut_Sno_Lumi_", "sv": "http://www.annantalo.fi/sv/evenemang/event/9EA57B3CE3C3D9634CD46B8E3BF1D49E/Dockteatern_Tittut_Sno_Lumi_", "en": "http://www.annantalo.fi/en/events/event/9EA57B3CE3C3D9634CD46B8E3BF1D49E/Dockteatern_Tittut_Sno_Snow" }, "short_description": { "fi": "Lapista inspiraationsa saanut sanaton tanssi- ja nukketeatteriesitys.", "sv": "En dans- och dockteaterföreställning med inspiration från Lappland.", "en": "A dance and puppet performance inspired by Sápmi." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61384/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61895", "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: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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7119, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T08:13:11.074297Z", "last_modified_time": "2024-02-06T13:23:01.552457Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742649.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7119/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-11T08:13:11.059111Z", "last_modified_time": "2024-02-06T13:23:01.595663Z", "date_published": null, "start_time": "2024-02-02T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": { "fi": "DocPoint-elokuvatapahtumat ry" }, "name": { "fi": "Dingo ja levottomat tuhkimot – DocPoint – Helsingin dokumenttielokuvafestivaali" }, "description": { "fi": "<p>Dingo-huuman keskellä kuvattu dokumentti vie katsojan aikansa suosituimman kotimaisen bändin keikoille, hysteeristen fanien sekaan ja aina Lontooseen asti.</p><p>Vuonna 2024 tulee kuluneeksi 40 vuotta Dingo-ilmiön synnystä. DocPoint ja YLE Teema järjestävät yhteistyössä maksuttoman näytöksen Dingo ja levottomat tuhkimot -dokumentista sekä uuteen Dingo-elokuvaan perehtyvästä Elokuvan hetki -ohjelmasta! Dokumentit esitetään pe 2.2. klo 20 alkaen samaan aikaan Savoy-teatterissa ja YLE Teemalla. Varaa ilmaiset lippusi tapahtumaan alta!</p><p>Elokuvan hetki: Levoton tuhkimo</p><p>Näytöksen alkukuvana esitetään Elokuvan hetki -ohjelma, jossa Mari Rantasila ja muut tekijät sekä aikalaiset kuten Pertti Neumann ja Lasse Norres kertovat tulossa olevan elokuvan Levoton Tuhkimo taustoista sekä omasta Dingo-suhteestaan.</p><p>Dingo ja levottomat tuhkimot</p><p>1980-luvun ajankuvaa säteilevä dokumentti kertoo suomalaisen pop-musiikin valovoimaisimmasta ilmiöstä. Katsoja pääsee aikamatkalle Dingon keikkabussiin, lavahysterian äärelle ja jopa Euroopan-valloitusyritystä seuraamaan.</p><p>Dingo-yhtye upposi aikanaan suomalaisten nuorten sydämiin kuin tikari, ja bändin musiikki elää vielä lähes 40 vuotta sen ensimmäisen hajoamisen jälkeenkin. Tämä rosoinen dokumentti kertoo Dingosta sellaisena kuin me aikalaisfanit bändin muistamme. Neumannin uskomaton tyyli-ikonius, vaatimattomat lavat, joilla nuoret itkivät ja pyörtyilivät, psykologin analyysi siitä, mitä Neumannin seksuaalissävytteinen esiintyminen tarkoittaa. Dokumentissa kuullaan Dingon suurimpia hittejä livenä ja kuullaan bändin alkuajoista, jolloin tähteyteen matkustettiin velkarahalla. Neumann analysoi myös omaa työtään: intuitiivinen ja nopea lauluntekijä kirjoitti Suomen pop-historian ehkä suurimmat hitit usein hyvin nopeasti.</p><p>Nykyajan hiottua ja tuotteistettua musiikkimaailmaa katsellessa Dingon tarina on miltei arkaainen ja erittäin liikuttava self made -miesten matka Porin lähiöistä supertähteyteen. Jotakin olennaista Dingosta aukeaa manageri Lasse Norreksen sekä fanien haastatteluista: yhtenäiskulttuurisessa Suomessa aito yksilöllisyys oli jotakin häikäisevän uutta.</p><p>Salla Nazarenko</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon: https://docpointfestival.fi/event/docpoint-yle-teema-dingo-ja-levottomat-tuhkimot/</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8243DD7B96991BE164327FCFEDC54772/Dingo_ja_levottomat_tuhkimot" }, "short_description": { "fi": "Dingo-huuman keskellä kuvattu dokumentti vie katsojan aikansa suosituimman kotimaisen bändin keikoille, hysteeristen fanien sekaan ja aina Lontooseen asti." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61895/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61259", "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: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/yso:p2625/?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": false, "offer_price_groups": [], "price": { "fi": "27 € / 19 €", "sv": "27 € / 19 €", "en": "27 € / 19 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/", "sv": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/", "en": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6175, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T12:13:16.933644Z", "last_modified_time": "2024-02-06T13:23:01.443900Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739202.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6175/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T12:13:16.914988Z", "last_modified_time": "2024-02-06T13:23:01.490243Z", "date_published": null, "start_time": "2024-02-02T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "PERUTTU Pentinsaari-Schönberg-Utriainen: Stage of Change", "sv": "INSTÄLLT Pentinsaari-Schönberg-Utriainen: Stage of Change", "en": "CANCELLED Pentinsaari-Schönberg-Utriainen: Stage of Change" }, "description": { "fi": "<p>Stage of Change on nykysirkusesitys muutoksesta. Teoksessa kolme ilma-akrobaattia kulkevat rengastrapetsien ja muutosprosessien läpi.</p><p>Kuinka alttiita olemme muuttumaan toisten vaikutuksesta? Milloin muutos kumpuaa itsestämme? Mitä meissä tapahtuu kun muutumme?</p><p>Toisinaan muutosta tavoitellaan tietoisesti ja joskus se on lähes huomaamatonta ja orgaanista. Usein kuitenkin prosessissa tapahtuu repsahduksia ja taantumaa, eikä muutos välttämättä ole suoraviivaista tai pysyvää. Stage of Change tarjoaa kolme näkökulmaa siitä, kuinka vaikutumme toinen toisistamme sekä ympäristöstämme ja miten erilaisia muutosprosessit voivat olla.</p><p>Konsepti ja koreografiat: Riikka Pentinsaari, Pinja Schönberg ja Maarit Utriainen<br>Esiintyjät: Pentinsaari, Schönberg, Utriainen<br>Pukusuunnittelu ja pukujen toteutus: Suvi Hänninen<br>Äänisuunnittelu ja tuotanto: Konsta Leinonen<br>Valosuunnittelu: Niko Mattila ja Maarit Utriainen<br>Tuotanto: Zero Gravity Company</p><p>Kesto: n. 50 min<br>Ikäsuositus: 7+</p><p>Teosta ovat tukeneet:<br>Espoon kaupunki<br>Jenny ja Antti Wihurin rahasto<br>Taiteen edistämiskeskus<br>Suomen Kulttuurirahasto, Uudenmaan rahasto<br>Espoon sirkus- ja teatterikoulu<br>Hiljaisuus<br>Näyttämö<br>Old mine Outokumpu Residenssi<br>Sirkus Faktori</p>", "sv": "<p>Stage of Change är en nutidscirkusföreställning om förändring. I verket passerar tre luftakrobater genom ringtrapetser och via konsten att göra på annat sätt genom skedena i omvandlingsprocesserna.</p><p>Hur lätt kan vi ändras under andras inflytande? När kommer förändringen från oss själva? Vad händer med oss när vi förändras?</p><p>Längd: ca. 50 min.<br>Åldersrekommendation: 7+</p>", "en": "<p>Stage of Change is a contemporary circus show about change. In the performance, three aerialists pass through the stages of a change process through aerial hoops and by doing otherwise.</p><p>How prone are we to change under the influence of others? When does change come from ourselves? What happens to us when we change?</p><p>Duration: approx. 50 min<br>Age recommendation: 7+</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/21F02304ED913DADD2838E492D6DE0CC/PERUTTU_Pentinsaari-Schonberg-Utriainen_Stage_of_Change", "sv": "http://www.stoa.fi/sv/evenemang/event/21F02304ED913DADD2838E492D6DE0CC/INSTALLT_Pentinsaari-Schonberg-Utriainen_Stage_of_Change", "en": "http://www.stoa.fi/en/events/event/21F02304ED913DADD2838E492D6DE0CC/CANCELLED_Pentinsaari-Schonberg-Utriainen_Stage_of_Change" }, "short_description": { "fi": "Stage of Change on nykysirkusesitys muutoksesta. Teoksessa kolme ilma-akrobaattia kulkevat rengastrapetsien ja muutosprosessien läpi.", "sv": "Stage of Change är en nutidscirkusföreställning om förändring. I verket passerar tre luftakrobater genom ringtrapetser och via konsten att göra på annat sätt genom skedena i omvandlingsprocesserna.", "en": "Stage of Change is a contemporary circus show about change. In the performance, three aerialists pass through the stages of a change process through aerial hoops and by doing otherwise." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61259/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61410", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" }, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=global+club+nights", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=global+club+nights", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=global+club+nights" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-24T09:13:01.977837Z", "last_modified_time": "2024-02-06T13:23:01.343913Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740193.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-24T09:13:01.940359Z", "last_modified_time": "2024-02-06T13:23:01.384444Z", "date_published": null, "start_time": "2024-02-02T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "SIIRRETTY / Global Club Nights: Tataki | Denise Fontoura & Sambaki", "sv": "FRAMFLYTTAT / Global Club Nights: Tataki | Denise Fontoura & Sambaki", "en": "RESCHEDULED / Global Club Nights: Tataki | Denise Fontoura & Sambaki" }, "description": { "fi": "<p>Tapahtuma siirtyy, tarkempi ajankohta ilmoitetaan myöhemmin.</p><p>Jo ostetut liput käyvät sellaisenaan myös tulevaan tapahtumaan. Tarkempi ajankohta ilmoitetaan myöhemmin. Pahoittelemme tapahtuman siirrosta aiheutuvaa haittaa!</p><p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p><b>Tataki</b> on musiikkiesitys, josta vastaavat taiwanilainen shamisenin soittaja <b>Zuiko</b> ja suomalainen rumpali ja laulaja <b>Aarne</b>. Yksi piirre yhdistää Zuikoa ja Aarnea – kumpikin lyö instrumenttiaan. Olipa kyse sitten shamisenin kieliä takovasta bachista tai rumpua lyövistä rumpukapuloista, iskut ja rytmiset elementit ovat tämän esityksen ytimessä.</p><p>Laulaja ja sanoittaja <b>Denise Fontoura</b> aloitti musiikkitaipaleensa hip hop -ryhmässä, ja työhön tuli lisää monipuolisuutta hänen asuessaan Rio de Janeirossa. Denise on tehnyt yhteistyötä paikallisten taiteilijoiden kanssa ja laatinut heidän kappaleistaan portugalinkielisiä versioita. Hänellä on myös ollut muita projekteja, joiden myötä paikalliseen musiikkiskeneen on saatu ripaus aitoa brasilialaisuutta.</p><p><b>Sambaki</b> on Brasiliasta alkunsa saanut bändi, jonka jäsenet ovat eri puolilta maailmaa. Sambaki on käynyt kiertueilla jo vuosikymmenen ja valloittanut yleisöjä suosittujen brasilialaisten kappaleiden ja tyylien cover-versioilla.</p><p>Kesto: 3,5 t, sis. väliajan<br>Kieli: Englanti, suomi, portugali ja espanja</p><p>Liput: 10 € / 6 € osoitteesta lippu.fi.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi</p>", "sv": "<p>Evenemanget flyttas och det nya datumet kommer att meddelas senare.</p><p>Redan köpta biljetter duger som sådana till det nya datumet. Vi ber om ursäkt för besväret.</p><p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p>Global Club Nights (GCN) anordnas i samarbete med Globala musikinstitutionen vid Sibeliusakademin och Kulturcentret Caisa.</p><p><b>Tataki</b> är en musikgrupp under ledning av den taiwanesiske shamisenspelaren <b>Zuiko</b> och den finske trumslagaren och vokalisten <b>Aarne</b>. Zuiko och Aarne har en sak gemensamt i sitt musicerande: båda två spelar på sina instrument genom att slå på dem! Vare sig det rör sig om Zuikos batchi som slår på instrumentets strängar eller Aarnes trumpinnar är deras spelande djupt rotat i slagljud och rytmiska element.</p><p>Sångaren och textförfattaren <b>Denise Fontoura</b> inledde sin musikaliska karriär i en hiphopgrupp men har senare, under tiden hon var bosatt i Rio de Janeiro, breddat sin repertoar. Denise har samarbetat med och gjort versioner på portugisiska av lokala artisters låtar, samtidigt som hon har arbetet på en rad andra projekt som gett den lokala musikscenen en genuint brasiliansk touch.</p><p><b>Sambaki</b> är ett band som har rötterna i Brasilien och vars medlemmar har sitt ursprung i olika delar av världen. Under tio års turnerande har Sambaki förtrollat sin publik med versioner av populära brasilianska melodier och musikstilar.</p><p>Längd: 3,5 t., med paus<br>Språk: engelska, finska, portugisiska och spanska</p>", "en": "<p>The event will be rescheduled and the new date will be announced later.</p><p>Already bought tickets are still valid for the new date. The new date will be announced later. We apologize for the inconvenience!</p><p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment.</p><p>With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) closely collaborates with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p><p><b>Tataki</b> is a musical act led by Taiwanese shamisen player Zuiko and Finnish drummer/singer Aarne. Zuiko and Aarne share a common characteristic: they both strike their instruments! Whether it’s the bachi hitting the strings of the shamisen or the drumsticks hitting the drums, their performance is highly rooted in percussive sounds and rhythmical elements.</p><p>Singer and lyricist <b>Denise Fontoura</b> started her path in music through a hip hop group and diversified her work during the time she lived in Rio de Janeiro. Denise has collaborated and made Portuguese versions for songs of local artists and has put together a few other projects, bringing an authentic Brazilian flavor to the local music scene.</p><p><b>Sambaki</b> is a band with roots in Brazil and members from around the world. With 10 years on the road, Sambaki has been captivating audiences with their covers of popular Brazilian songs and styles.</p><p>Duration: 3,5 h, incl. intermission<br>Language: English, Finnish, Portuguese and Spanish</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/863F0E150E75DA1D73C29596CB5FB77C/SIIRRETTY_Global_Club_Nights_Tataki_Denise_Fontoura_Sambaki", "sv": "http://www.caisa.fi/sv/evenemang/event/863F0E150E75DA1D73C29596CB5FB77C/FRAMFLYTTAT_Global_Club_Nights_Tataki_Denise_Fontoura_Sambaki", "en": "http://www.caisa.fi/en/events/event/863F0E150E75DA1D73C29596CB5FB77C/RESCHEDULED_Global_Club_Nights_Tataki_Denise_Fontoura_Sambaki" }, "short_description": { "fi": "Tapahtuma siirtyy, tarkempi ajankohta ilmoitetaan myöhemmin.", "sv": "Evenemanget flyttas och det nya datumet kommer att meddelas senare.", "en": "The event will be rescheduled and the new date will be announced later." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61410/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61894", "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: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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "12 €" }, "info_url": { "fi": "https://docpointfestival.fi/liput/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7118, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T08:13:10.920982Z", "last_modified_time": "2024-02-06T13:23:01.251155Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742648.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7118/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-11T08:13:10.905723Z", "last_modified_time": "2024-02-06T13:23:01.295592Z", "date_published": null, "start_time": "2024-02-02T15: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, "provider_contact_info": null, "provider": { "fi": "DocPoint-elokuvatapahtumat ry" }, "name": { "fi": "Annelin aika – DocPoint – Helsingin dokumenttielokuvafestivaali" }, "description": { "fi": "<p>Näyttelijä-ikoni Anneli Saulin seitsemän vuosikymmentä kestäneen uran kautta dokumentti valottaa elokuva-alan ja yhteiskunnallisen ilmapiirin muutoksia läpi vuosikymmenten.</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C12C256CE5DE5718186E60DC30180BD2/Annelin_aika" }, "short_description": { "fi": "Näyttelijä-ikoni Anneli Saulin seitsemän vuosikymmentä kestäneen uran kautta dokumentti valottaa elokuva-alan ja yhteiskunnallisen ilmapiirin muutoksia läpi vuosikymmenten." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61894/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61893", "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: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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "12 €" }, "info_url": { "fi": "https://docpointfestival.fi/liput/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7117, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T08:13:10.828590Z", "last_modified_time": "2024-02-06T13:23:01.154941Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742647.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7117/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-11T08:13:10.811857Z", "last_modified_time": "2024-02-06T13:23:01.197888Z", "date_published": null, "start_time": "2024-02-02T13:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": { "fi": "DocPoint-elokuvatapahtumat ry" }, "name": { "fi": "Vika! – DocPoint – Helsingin dokumenttielokuvafestivaali" }, "description": { "fi": "<p>Hersyvä ja koskettava henkilökuva klubeilla levyjä soittavasta 84-vuotiaasta DJ Vikasta, joka ei halua vanheta hiljaisesti.</p><p>Vika on Varsovan yökerhojen 84-vuotias DJ-kuningatar. Kun hän pyörittää levyjä, nuoret hurraavat unelmien isoäidille. Vika! on ohjaaja Agnieszka Zwiefkan herkällä kädellä hahmottelema henkilökuva naisesta, joka ei suostu vanhenemaan, kuten hänelle on opetettu. Ikä on vain numero – ja nuorten seurassa Vika tuntee olevan eniten elossa. Hän on tuttu näky niin Pride-kulkueissa kuin lukuisissa yökerhoissakin, myös Puolan ulkopuolella.</p><p>Värikkäiden musikaalinumeroiden rytmittämä dokumentti uhkuu elämää mutta ei pakene vaikeita aiheita, vaikka päähenkilö itkisikin mieluummin yksin kuin muiden nähden. Elämänilon ja juhlan taakse piiloutuu pitkä elämä, joka ei ole ollut pelkästään helppo. Vika muistelee lapsuuttaan sodan aikana, perheensä menettämistä ja sitä, kuinka hänen on myöhemmin ollut vaikea ylläpitää läheisiä ihmissuhteita.</p><p>Läpi käydään myös vanhentumiseen liittyviä kipupisteitä. Miten vanha ihminen saa näkyä – vai saako ollenkaan? Vika ei halua olla vanhus, joka seuraa elämää sivusta. Siitä hän puhuu myös muille ikäisilleen ja tempauksillaan kokoaa heitä yhteen tanssimaan ja marssimaan kaduille, jotta hekin näkyisivät ja kuuluisivat.</p><p>Vanhenemista ei voi pysäyttää, mutta elämää voi juhlia loppuun asti. Vika! on koskettava ja mukaansatempaava dokumentti oman polkunsa kulkemisesta ja itselleen aitona pysymisestä.</p><p>Ida Kumpulainen</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B3A7BA55FD7A7ED28CDF71A8382BCADE/Vika_" }, "short_description": { "fi": "Hersyvä ja koskettava henkilökuva klubeilla levyjä soittavasta 84-vuotiaasta DJ Vikasta, joka ei halua vanheta hiljaisesti." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61893/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61757", "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/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6829, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-27T08:12:27.529384Z", "last_modified_time": "2024-02-06T13:23:01.058660Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743139.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6829/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-27T08:12:27.502993Z", "last_modified_time": "2024-02-06T13:23:01.101566Z", "date_published": null, "start_time": "2024-02-02T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Neljä pientä aikuista (12)" }, "description": { "fi": "<p>Neljä pientä aikuista on lämminhenkinen sukellus rakkauden syvään päähän.</p><p>Neljä pientä aikuista tarttuu puhuttavaan aiheeseen rakkauden monista muodoista. Elokuva kertoo Juuliasta joka saa tietää, että hänen puolisollaan Matiaksella on sivusuhde Ennin kanssa, jolloin hän päättää avata avioliittonsa muille suhteille.</p><p>Selma Vilhusen ohjaaman ja käsikirjoittaman kotimaisen elokuvan pääosissa nähdään Jussi-palkittu Alma Pöysti ja Guldbagge-palkittu Eero Milonoff sekä Jussi-palkittu Oona Airola ja Pietu Wikström.</p><p>Ikäsuositus: 12<br>Kesto: 123 min<br>Ensi-ilta: 27.12.2023</p><p>Elokuvassa on suomenkielinen tekstitys.</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8EAA958AA46A85C83689F7DC10E08FA1/Nelja_pienta_aikuista_12_" }, "short_description": { "fi": "Neljä pientä aikuista on lämminhenkinen sukellus rakkauden syvään päähän." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61757/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61747", "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: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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6817, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-27T07:13:48.446876Z", "last_modified_time": "2024-02-06T13:23:00.955874Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738420.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-27T07:13:48.416844Z", "last_modified_time": "2024-02-06T13:23:00.995875Z", "date_published": null, "start_time": "2024-02-02T11:00:00Z", "end_time": "2024-02-02T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": { "fi": "Arkkitehtuurin tiedotuskeskus Archinfo, Finnish Design Info, Alvar Aalto -säätiö, Rakennustietosäätiö, Ornamo, Arkkitehtitoimistojen liitto, Suomen Arkkitehtiliitto, Suomen maisema-arkkitehtiliitto, Sisustusarkkitehdit SIO, AD-museo, ja EMMA – Espoon modernin taiteen museo" }, "name": { "fi": "SIIRRETTY / ArkMuoto 2024: Hyvässä tilassa", "sv": "FRAMFLYTTAT / ArkMuoto 2024: I ett gott utrymme", "en": "RESCHEDULED/ ArcDesign 2024: In Good Space" }, "description": { "fi": "<p>ArkMuoto 2024-päätapahtuma on siirretty laajamittaisten lakkojen vuoksi toukokuulle. Tarkka päivämäärä ilmoitetaan lähempänä tapahtuman uutta ajankohtaa.</p><p>Tämänvuotisen ArkMuoto-festivaalin päätapahtuma järjestetään Helsingin Vuosaaressa yhteistyössä Vuotalon kanssa. Tapahtumaa voi myös seurata verkossa.</p><p>Rakennettu ja muotoiltu ympäristömme vaikuttaa suuresti hyvinvointiimme. Kauniit, toimivat ja kestävät tilat ja esineet helpottavat arkeamme ja tuovat iloa elämäämme. Voimme paremmin hyvin suunnitelluissa, laadukkaissa tiloissa. Arjen sujuvuudesta ja hyvinvoinnista huolehtiminen on entistä tärkeämpää globaalien kriisien ja suurten yhteiskunnallisten muutosten paineessa.</p><p>Koko iltapäivän mittaisen tapahtuman esityksissä ja puheenvuoroissa pohditaan erilaisista näkökulmista sitä, millaisia ovat hyvinvointia luovat tilat – sisätiloista rakennuksiin ja kaupunkeihin ja aina maapallon mittakaavaan saakka. Tänä vuonna painopisteenä on paikallisuus, ja ääneen pääsevät myös lapset, nuoret ja muut kaupunkilaiset.</p><p>ArkMuoto avaa uusia näkökulmia omaan rakennettuun ympäristöön. Mitä hyvä tila sinulle merkitsee? Tuoko se elämääsi esimerkiksi viihtyisyyttä, turvallisuutta, kestävyyttä, arjen sujuvuutta vai jotain ihan muuta? Tervetuloa mukaan!</p><p>Tapahtuma on kaikille avoin ja osallistuminen on ilmaista.<br>Ennakkoilmoittautumiset.</p><p>Ohjelma</p><p>13.00 Tervetuloa Vuosaareen!</p><p>Vuosaaren kaavoituksesta vastaava arkkitehti Petri Leppälä Helsingin kaupungin kaupunkiympäristön toimialalta ja Vuotalon johtaja Tuuli Tokkola toivottavat meidät tervetulleiksi Vuotaloon ja kertovat alueen kehityksestä ja tulevaisuudesta.</p><p>13.30 Arkkitehtuuri ja muotoilu osana lasten ja nuorten arkea</p><p>Kuulemme lasten ja nuorten tervehdykset Hintan koulusta Oulusta ja Arkkitehtuurikoulu Tiilestä Tampereelta, minkä jälkeen Vuosaaren lukion kuvaamataidon opettajat ja oppilaat kertovat, miten arkkitehtuuri ja muotoilu ovat läsnä kouluarjessa. Keskustelun juontaa Designmuseon museolehtori Hanna Kapanen.</p><p>14.15 Ajatuksia joustavista oppimisympäristöistä</p><p>Palkittuja oppimisympäristöjä suunnitelleet arkkitehdit Riina Palva Verstas Arkkitehdeilta ja Juha Salmenperä AFKS Arkkitehdeilta keskustelevat Helsingin kaupungin kasvatuksen ja koulutuksen toimialan yksikönjohtajan Vera Schulmanin ja Aalto-yliopiston Media Labin oppimisympäristöjen tutkimusryhmää johtaneen professori Teemu Leinosen kanssa joustavien oppimisympäristöjen uhista ja mahdollisuuksista. Keskustelun juontaa Archinfon viestintäpäällikkö Miina Jutila.</p><p>15.00 Kahvitauko</p><p>15.30 Onnellisuuden infrastruktuuri</p><p>JKMM Arkkitehtien mielestä onnellisuus syntyy, kun kulttuuri, tieto ja hyvinvointi kohtaavat. Toimiston töissä yhdistyvät arkkitehtuuri, sisustusarkkitehtuuri, kaupunkisuunnittelu, kalustemuotoilu, grafiikka ja taide. Arkkitehti Samuli Miettinen kertoo menestystä niittäneen toimiston tuoreista töistä, joiden suunnittelun keskiössä on kokonaisvaltainen hyvinvointi.</p><p>15.30 Samanaikaisesti: Vierailu Vuosaaren lukioon</p><p>Vuotalon naapurissa sijaitsevan lukion esittelevät lukion rehtori Marko Paju ja vararehtori Emma Pihkala yhdessä Verstas Arkkitehtien Riina Palvan kanssa. Mukaan vierailulle mahtuu 30 ensimmäiseksi ilmoittautunutta.</p><p>16.30 ArkMuoto 2024: Hyvässä tilassa -keskustelu</p><p>Kolme suunnittelualojen asiantuntijaa pohtivat rakennettuun ympäristöön liittyviä haasteita, joita heille heittää kolme rakennettua ympäristöä eri näkökulmista katsovaa yhteisöä: Vuosaaren nuorisotoimi, Arkkitehtuurikapina-Facebook-ryhmä ja RELEX-säätiö. Asiantuntijat ovat arkkitehti Tommy Lindgren Aalto-yliopistosta, maisema-arkkitehti Pia Kuusiniemi Loci Maisema-arkkitehdeilta ja palvelumuotoilija ja sistusarkkitehti Tiina Hirvanen 2Loops-muotoilutoimistosta. Keskustelun juontaa toimittaja Aino-Mari Tuuri.</p><p>17.45 Palkintoja!</p><p>Päivä päättyy juhlavasti kolmen palkinnonsaajan julkistukseen: SIO:n jakama Vuoden kalustesuunnittelija 2024 ja Suomen maisema-arkkitehtiliiton jakamat Vuoden maisema-arkkitehtuuriteko ja Vuoden nuori maisema-arkkitehti.</p>", "sv": "<p>Evenemanget framflyttas, den nya informationen kommer att meddelas senare.</p><p>I olika presentationer och anföranden talar man om välfärdsskapande utrymmen – från inomhus till byggnader och städer och ända upp till jordklotets skala. Barn, ungdomar och andra stadsbor får också komma till tal.</p>", "en": "<p>Due to the strikes the event is postponed to May 2024.</p><p>This year, the main event of the Finnish Architecture and Design Days will be organised in cooperation with Vuosaari House.</p><p>Various presentations and speeches will reflect on what spaces creating wellbeing are like – from indoor spaces to buildings and cities, all the way to the global scale. Children, young people and other residents of the city will also have the chance to make their voices heard.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E23FB1A4B1D4118E7596B3BC32C441B6/SIIRRETTY_ArkMuoto_2024_Hyvassa_tilassa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E23FB1A4B1D4118E7596B3BC32C441B6/FRAMFLYTTAT_ArkMuoto_2024_I_ett_gott_utrymme", "en": "http://www.vuotalo.fi/en/events/event/E23FB1A4B1D4118E7596B3BC32C441B6/RESCHEDULED_ArcDesign_2024_In_Good_Space" }, "short_description": { "fi": "ArkMuoto 2024-päätapahtuma on siirretty laajamittaisten lakkojen vuoksi toukokuulle. Tarkka päivämäärä ilmoitetaan lähempänä tapahtuman uutta ajankohtaa.", "sv": "Evenemanget framflyttas, den nya informationen kommer att meddelas senare.", "en": "Due to the strikes the event is postponed to May 2024." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61747/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61775", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 6997, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-04T15:14:22.247769Z", "last_modified_time": "2024-02-06T13:23:00.856545Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741633.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6997/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-04T15:14:22.198637Z", "last_modified_time": "2024-02-06T13:23:00.899829Z", "date_published": null, "start_time": "2024-02-02T08:15:00Z", "end_time": "2024-02-02T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Näytöksessä esitetään neljä lyhytelokuvaa, joissa professori Balthazar ratkaisee mitä moninaisimpia ongelmia. Elokuvien teemat ystävyydestä, auttamisesta ja myötätunnosta ovat edelleen ajankohtaisia. Nämä jugoslavialaiset piirrosanimaatiot ovat klassikoita runsaan 50 vuoden takaa. Elokuvat ovat suomenkielisiä.</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min</p><p>Språk: finska</p><p>Anmälan för grupper på kultus.fi.</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min</p><p>Language: Finnish</p><p>Registration at kultus.fi</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/07D6E0B2C2A9F3F0739A9945F38571CE/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/07D6E0B2C2A9F3F0739A9945F38571CE/Skidikino", "en": "http://www.stoa.fi/en/events/event/07D6E0B2C2A9F3F0739A9945F38571CE/Skidikino" }, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61775/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61587", "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: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 6848, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T09:14:05.850022Z", "last_modified_time": "2024-02-06T13:23:00.654325Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741630.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6848/?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-28T09:14:05.821729Z", "last_modified_time": "2024-02-06T13:23:00.696347Z", "date_published": null, "start_time": "2024-02-02T07:15:00Z", "end_time": "2024-02-02T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut. <br> <br>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 35–40 min <br>Kieli: suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: <u><a href=\"https://kultus.fi/search?places=tprek%3A7259\">www.kultus.fi 10.1. klo 10 alkaen.</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/67B0100E382C6CCFE2D5F601BB437329/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/67B0100E382C6CCFE2D5F601BB437329/Skidikino", "en": "http://www.stoa.fi/en/events/event/67B0100E382C6CCFE2D5F601BB437329/Skidikino" }, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61587/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61892", "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: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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "12 €" }, "info_url": { "fi": "https://docpointfestival.fi/liput/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T08:13:10.576244Z", "last_modified_time": "2024-02-06T13:23:00.558853Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742646.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7116/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-11T08:13:10.559252Z", "last_modified_time": "2024-02-06T13:23:00.600186Z", "date_published": null, "start_time": "2024-02-01T18: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, "provider_contact_info": null, "provider": { "fi": "DocPoint-elokuvatapahtumat ry" }, "name": { "fi": "Citizen Sleuth – DocPoint – Helsingin dokumenttielokuvafestivaali" }, "description": { "fi": "<p>True crimen etiikkaan pureutuvassa dokumentissa FBI:n riveistä haaveileva nainen törmää epäilyttävään onnettomuuteen kotikaupungissaan ja ottaa tehtäväkseen selvittää sen podcastinsa avulla.</p><p>Nuori nainen nimeltä Jaleayah Davis kuoli auto-onnettomuudessa Ohiossa vuonna 2011. Vai oliko kyseessä sittenkään onnettomuus? Samanikäinen true crime -fani Emily Nestor ryhtyi tutkimaan tapausta ja aloitti sen käsittelemiseksi oman podcastinsa, Mile Marker 181:n. Siitä tuli yllättävä menestys, ja nuori Nestor singahti true crime -median isojen nimien joukkoon.</p><p>Citizen Sleuth seuraa Nestoria hänen tehdessään podcast-jaksoja, haastatellessaan poliiseja ja asiantuntijoita ja käydessään true crime -fanitapahtumissa. Tarina kuitenkin elää, ja pian Nestorilla on vaikeita eettisiä ongelmia pohdittavanaan.</p><p>Alussa Nestor on idealistinen. Rikoksen uhrien on saatava oikeutta. Entä jos poliisi ei ole tehnyt työtään kunnolla? Tapahtumien edetessä hänen tilanteensa muuttuu: podcastin tekemisestä tulee ammatti ja tulonlähde. Tällöin salapoliisityön vaikuttimetkin muuttuvat. Entä jos uhkaa vaikuttaa siltä, että todisteet viittaavat sellaiseen lopputulokseen, joka ei kiinnosta kuuntelijoita?</p><p>Emily Nestor on kotoisin Länsi-Virginian Appalakeilta, alueelta, joka ei Yhdysvaloissa ole tunnettu sivistyksestä ja sofistikoituneisuudesta. Nestorin lapsuuden esikuva oli Uhrilampaat-elokuvan päähenkilö, FBI-agentti Clarice Starling, joka oli niin ikään Appalakeilta kotoisin. Nestor kuitenkin arveli, ettei hänen kotikonnuiltaan todellisuudessa ponnisteta niin hienoihin hommiin, ja teki töitä baarimikkona ja tarjoilijana ennen podcast-menestystään. Elokuvan miljöö onkin yksi sen suurista vahvuuksista. Se kuvaa sellaista Yhdysvaltojen kolkkaa, jota harvemmin nähdään.</p><p>Juhana Pettersson</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/ACA747A923FB782C3D9B62E22D8F11F6/Citizen_Sleuth" }, "short_description": { "fi": "True crimen etiikkaan pureutuvassa dokumentissa FBI:n riveistä haaveileva nainen törmää epäilyttävään onnettomuuteen kotikaupungissaan ja ottaa tehtäväkseen selvittää sen podcastinsa avulla." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61892/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61599", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 6461, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T13:15:23.671094Z", "last_modified_time": "2024-02-06T13:23:00.458904Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737214.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6461/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-07T13:15:23.629324Z", "last_modified_time": "2024-02-06T13:23:00.502140Z", "date_published": null, "start_time": "2024-02-01T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Nordic Banjo", "sv": "Nordic Banjo", "en": "Nordic Banjo" }, "description": { "fi": "<p>Nordic Banjo on kahden suomalaisen huippubanjistin muodostama duo, jonka ohjelmisto koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle.</p><p>Duon tavoitteena on tuoda amerikkalainen banjo osaksi pohjoismaista pelimannikulttuuria ja toisaalta tehdä suomalaista perinnemusiikkia tunnetuksi maailmalla.</p><p>Nordic Banjo yhdistää useat pohjoiseurooppalaiset perinteet, jotka juontavat juurensa metsäsuomalaisten savuisista saunoista ja muinaisten skandinaavien yhteisöllisistä pitkätaloista. Sovitukset laajentavat kunnioittavasti satojen vuosien ajan perheiden, sukulaisten ja naapureiden kautta säilyneitä melodisia ja rytmisiä tekstuureja.</p><p>Afroamerikkalaisen viisikielisen selostamana Nordic Banjo osuu maailmanmusiikin ytimeen. Banjolle idiomaattiset näppäilykuviot ja bordunat yhdistettynä boreaaliseen ääni-ilmastoon luovat mystisen ilmapiirin, jossa voi samanaikaisesti kuulla lukemattomia arkaaisia tarinoita eri kielillä ja murteilla kerrottuna. Nordic Banjon syvin olemus kiteytyy osuvasti suomen kielen sanassa viisikielinen: universaali ääni, joka puhuttelee ihmisiä mantereiden välillä.</p><p><b>Lauri Häme</b> on helsinkiläinen muusikko ja lauluntekijä. Vuodesta 2004 hän on esiintynyt banjistina ja laulajana indie folk -yhtye Rautakourassa. Instrumentalistina hän kokeilee jatkuvasti uusia perinteisten ja nykyaikaisten äänimaisemien yhdistelmiä.</p><p><b>Miihkali Jaatinen</b> on monipuolinen musiikin ammattilainen ja yksi Suomen arvostetuimmista banjisteista. Toimi hän sitten kitaristina, banjistina tai tuottajana, leimaa hänen työskentelyään toisaalta tekemisen tinkimättömyys, toisaalta ennakkoluuloton luova heittäytyminen.</p><p>Malmitalon Nordic Banjo -konsertin erikoisvieraana esiintyy <b>Paula Wolski</b>, jonka tuotannossa punoutuvat yhteen vaikutteet suomalaisesta kansanmusiikista ja amerikkalaisesta juurimusiikista.</p><p>Kokoonpano:<br>Lauri Häme - banjo<br>Miihkali Jaatinen - kitara ja banjo</p><p>Kesto: 1h</p>", "sv": "<p>Traditionell nordisk folkmusik omarrangerad för 5-strängad banjo och gitarr.</p><p>Förutom musiken hörs på konserten historier om de magiska melodiernas rötter och uråldriga nordliga kultur samt om banjos mytiska resa från Afrika via Amerika till Europa.</p><p><b>Lauri Häme</b> banjo<br><b>Miihkali Jaatinen</b> gitarr ja banjo</p><p>Nattens speciell gäst <b>Paula Wolski</b></p>", "en": "<p>Nordic Banjo is a duo formed by two Finnish banjoists, whose repertoire consists of well-known pieces of Nordic folk music arranged for the five-string bluegrass banjo and guitar.</p><p>The goal of the duo is to bring the American banjo into the Nordic fiddle-driven folk culture and on the other hand to increase the recognition of Finnish traditional music worldwide.</p><p>The hand-picked Nordic Banjo collection mixes together several Northern European traditions originating from the smoky saunas of Forest Finns and the shared longhouses of Norsemen. The work respectfully extends the melodic and rhythmic textures passed down through families, relatives and neighbors over hundreds of years.</p><p>Narrated by the Afro-American five-string, the Nordic Banjo melange settles itself in the core of what is known as World Music. The rolls and drones which are idiomatic to the banjo combined with the boreal sound climate create a mystical atmosphere where a myriad of archaic story layers are being told concurrently in different languages and dialects. This spirit of Nordic Banjo is aptly captured by the Finnish word viisikielinen, which refers to both five-stringed and pentalingual: A universal voice that speaks to people across the continents.</p><p><b>Lauri Häme</b> is a musician and songwriter from Helsinki, Finland. Since 2004 he has been performing with the indie folk band Rautakoura on banjo and vocals. As an instrumentalist he is constantly experimenting with new combinations of traditional and contemporary sounds.</p><p><b>Miihkali Jaatinen</b> is a versatile music professional and one of the most respected banjo pickers in Finland. Whether he is working as a guitarist, banjoist or producer, he is known for both ambitious work ethics and unprejudiced creativity.</p><p><b>Paula Wolski</b> will be performing as a special guest in the concert. Wolski's music is a fusion of Finnish traditional music and American roots music.</p><p>Line up<br>Lauri Häme – banjo<br>Miihkali Jaatinen - guitar and banjo</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo", "sv": "http://www.malmitalo.fi/sv/evenemang/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo", "en": "http://www.malmitalo.fi/en/events/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo" }, "short_description": { "fi": "Nordic Banjo on kahden suomalaisen huippubanjistin muodostama duo, jonka ohjelmisto koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle.", "sv": "Traditionell nordisk folkmusik omarrangerad för 5-strängad banjo och gitarr.", "en": "Nordic Banjo is a duo formed by two Finnish banjoists, whose repertoire consists of well-known pieces of Nordic folk music arranged for the five-string bluegrass banjo and guitar." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61599/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61891", "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: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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "12 €" }, "info_url": { "fi": "https://docpointfestival.fi/liput/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T08:13:10.451659Z", "last_modified_time": "2024-02-06T13:23:00.355032Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742645.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-11T08:13:10.434870Z", "last_modified_time": "2024-02-06T13:23:00.394284Z", "date_published": null, "start_time": "2024-02-01T16: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, "provider_contact_info": null, "provider": { "fi": "DocPoint-elokuvatapahtumat ry" }, "name": { "fi": "Hollywoodgate – DocPoint – Helsingin dokumenttielokuvafestivaali" }, "description": { "fi": "<p>Talibaniin soluttautuva elokuvantekijä seuraa henkensä uhalla, mitä tapahtuu CIA:n entisessä tukikohdassa sen jälkeen, kun Yhdysvallat poistuu Afganistanista.</p><p>Yhdysvallat lopetti miehityksensä Afganistanissa vuoden 2021 keväällä. Lähtiessään he jättivät jälkeensä noin seitsemän miljardin dollarin edestä sotilaskalustoa.</p><p>Ohjaaja Ibrahim Nash'at saapui Afganistaniin pian Yhdysvaltojen lähdön jälkeen aikeenaan dokumentoida Talibanin ensiaskeleita maan hallinnossa. Hän seurasi vuoden ajan Taliban-komentaja Mawlawi Mansouria ja tämän joukkoja heidän ihmetellessään Yhdysvaltojen miehityksen jäänteitä.</p><p>Elokuva Hollywoodgate, joka on nimetty yhden tapahtumapaikkansa, entisen Yhdysvaltojen tukikohdan mukaan, käsittelee Talibania. Sissisotilaat pohtivat valtiohallinnon haasteita, usein hyvin arkisella tasolla. Yksi toistuva ongelma on, että osa Yhdysvaltojen jättämistä lääkkeistä on vanhentuneita ja pitää erotella vielä käyttökelpoisista. Sotilasparaatissa nähdään itsemurhapommitusjoukot.</p><p>Taliban-sotilaat pääsevät tonkimaan yhdysvaltalaisten sotilaiden viinakaappeja ja ihmettelemään käsidesitelinettä. Perustellessaan naisten oikeuksien rajoittamista soturit kuulostavat siltä mitä ovatkin: maalaispojilta, joille suuren maailman kuviot ovat hämmennyksen aihe.</p><p>Juhana Pettersson</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1A54717A1CA07179BC9BC3A64BE73603/Hollywoodgate" }, "short_description": { "fi": "Talibaniin soluttautuva elokuvantekijä seuraa henkensä uhalla, mitä tapahtuu CIA:n entisessä tukikohdassa sen jälkeen, kun Yhdysvallat poistuu Afganistanista." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61891/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61890", "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: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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "12 €" }, "info_url": { "fi": "https://docpointfestival.fi/liput/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7114, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T08:13:10.365994Z", "last_modified_time": "2024-02-06T13:23:00.262518Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742644.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-11T08:13:10.347594Z", "last_modified_time": "2024-02-06T13:23:00.303357Z", "date_published": null, "start_time": "2024-02-01T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": { "fi": "DocPoint-elokuvatapahtumat ry" }, "name": { "fi": "Seven Winters in Tehran – DocPoint – Helsingin dokumenttielokuvafestivaali" }, "description": { "fi": "<p>Raiskaajansa murhasta kuolemaan tuomitun opiskelijan elämästä kertova elokuva puhuu naisten oikeuksien puolesta ja kunnioittaa teloitettujen iranilaisten muistoa.</p><p>Raiskaajansa murhasta kuolemaan tuomitun opiskelijan elämästä kertova elokuva puhuu naisten oikeuksien puolesta ja kunnioittaa teloitettujen iranilaisten muistoa.</p><p>7. heinäkuuta 2007. Sisustussuunnittelijana työskentelevä 19-vuotias Reyhaneh Jabbari lähtee sovitusti asiakastapaamiseen, mutta ymmärtääkin pian astuneensa ansaan. Hän puukottaa raiskausta yrittäneen miehen itsepuolustuksena ja pakenee paikalta. Mahdollisuudet saada oikeutta ovat olemattomat, sillä vaikutusvaltaista miestä jäävät puolustamaan tämän kunniaa vaaliva perhe tukenaan valtion väkivaltakoneisto ja patriarkaalinen yhteiskunta.</p><p>Taistelu epäoikeudenmukaisuutta vastaan kestää seitsemän vuotta. Tuona aikana Reyhaneh kulki vankilasta toiseen. Hänen perheensä, joka ei aiemmin tiennyt mitään maan oikeusjärjestelmästä, huomaa yhtäkkiä elävänsä keskellä painajaista. Dokumentti kuvaa pitkää epätietoisuuden aikaa, jolloin heidän asiansa saa tuen osoituksia ympäri maailman.</p><p>Kansainvälisestä vastustuksesta huolimatta Reyhaneh teloitettiin hirttämällä 25. lokakuuta 2014. Ohjaaja Steffi Niederzoll ja Reyhaneh'n äiti Shole Pakravan tekivät yhteistyötä kertoakseen tarinan, joka koskettaa myös muita iranilaisia perheitä: Iranissa teloitettiin yli 600 ihmistä vuonna 2023. Elokuvan tarkoituksena on antaa uhreille nimi, minkä puolesta puhuvat vanhat kotivideot, perheenjäsenten haastattelut sekä vankilassa kirjoitetut kirjeet, joille näyttelijä Zar Amir Ebrahimi lainaa äänensä.</p><p>Omar Fasolah</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D809C729385672F59B45DEB20F3CFC1A/Seven_Winters_in_Tehran" }, "short_description": { "fi": "Raiskaajansa murhasta kuolemaan tuomitun opiskelijan elämästä kertova elokuva puhuu naisten oikeuksien puolesta ja kunnioittaa teloitettujen iranilaisten muistoa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61890/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61922", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7402, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-29T09:13:18.370271Z", "last_modified_time": "2024-02-06T13:23:00.050239Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743991.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7402/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-29T09:13:18.332041Z", "last_modified_time": "2024-02-06T13:23:00.099446Z", "date_published": null, "start_time": "2024-02-01", "end_time": "2024-02-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Suvi Innasen grafiikkaa – Haagan Taideseura" }, "description": { "fi": "<p>Kanneltalon kahvilassa on esillä Suvi Innasen grafiikkaa helmikuussa 2024.</p><p>\"Olen ollut Haagan Taideseuran jäsen vuodesta 1993. Taide ja taiteileminen on kuulunut elämääni pienestä pitäen. Lapsena piirtelin aina, kun sain käsiini paperia. Kouluikäisenä aloin maalata öljyväreillä ja myöhemmin siirryin käyttämään temperavärejä ja akvarelleja.</p><p>Vuodesta 1996 metalligrafiikan peruskurssin jälkeen aloin tehdä metalligrafiikan töitä, joita teen edelleen. Opiskelen grafiikankurssilla edelleen, sillä uudet tekniikat tuovat tekemiseen lisämahdollisuuksia.</p><p>Lisäksi vedostamisessa voi monin tavoin vaikuttaa työn lopputulokseen. Valmis grafiikan lehti onkin usein yllätys. Mutta siinä onkin grafiikan teon lumo.\" Suvi Innanen</p><p>Haagan Taideseura ry on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2BAB09A3CA07C1F1BA96DB03CEDC79CF/Suvi_Innasen_grafiikkaa" }, "short_description": { "fi": "Kanneltalon kahvilassa on esillä Suvi Innasen grafiikkaa helmikuussa 2024." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61922/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61741", "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: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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "20 €" }, "info_url": { "fi": "https://docpointfestival.fi/event/masterclass-mark-cousins/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6729, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-19T14:12:50.525959Z", "last_modified_time": "2024-02-06T13:22:59.954505Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742643.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6729/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-19T14:12:50.510628Z", "last_modified_time": "2024-02-06T13:22:59.995906Z", "date_published": null, "start_time": "2024-01-31T18: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, "provider_contact_info": null, "provider": { "fi": "DocPoint-elokuvatapahtumat ry" }, "name": { "fi": "The March on Rome – DocPoint – Helsingin dokumenttielokuvafestivaali" }, "description": { "fi": "<p>Uusimmassa elokuvassaan Mark Cousins tarttuu propagandaelokuvan kulmakiveen ja tutkii fasistista liikettä ennen sen valtaannousua 1920-luvun Italiassa.</p><p>Valheet koukuttavat, ja elokuvalla on vaarallinen puolensa. Tuotteliaan elokuvantekijän ja esseistin Mark Cousinsin mielenkiinnon kohteena on, miten Benito Mussolinin johtamaa Italian fasistista liikettä kuvattiin 1920-luvulla ennen sen valtaannousua. Erityisesti suurennuslasin alla on pseudodokumenttielokuva A Noi!, propagandaelokuvan kulmakivi, joka kuvaa fasistien marssia Roomaan vuonna 1922.</p><p>Propaganda loi fasismille myyttisen hohteen, vaikka se rakentui ilmiselvien valheiden varaan. Mussolini käytti myös pelottelua ja väkivaltaa vallan haalimiseksi. Arkistomateriaalin vastapainona nähdään myös lavastettuja kohtauksia, joissa näyttelijä Alba Rohrwacher esittää naista, joka uskoo vahvasti fasismiin ja oppii liian myöhään ideologian todelliset seuraukset.</p><p>Mussolinin fasistinen hallinto pysyi vallassa Italiassa vuosina 1922–1943. Elokuvan keskeinen viesti on, että lopulta koittanut tappio ei merkinnyt loppua fasismille vaikutusvaltaisena liikkeenä, vaan nykypäivän äärioikeiston liikehdintään ympäri maailmaa on suora yhteys. Elokuvan alussa nähdään leike vuonna 2016 Yhdysvaltain presidentiksi nousseen Donald Trumpin haastattelusta. Kysyttäessä, miksi hän twiittasi lainauksen Mussolinilta (\"On parempi elää päivä leijonana kuin sata vuotta lampaana.\"), Trump ei vaikuta edes tietävän, kuka Mussolini oli.</p><p>Paavo Ihalainen</p><p>Masterclass-tilaisuuden liput (20 €) ovat myynnissä nyt! Lisäksi myynnissä on lippupaketti (40 €), joka sisältää pääsyn Masterclass-tilaisuuteen sekä kaikkiin Cousinsin elokuvien näytöksiin festivaalin aikana. Elokuvanäytösten yksittäisliput tulevat myyntiin 11. tammikuuta, jolloin festivaalin koko ohjelmisto julkistetaan.</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0FAC5EFF5C10482657B5368FA970E996/The_March_on_Rome" }, "short_description": { "fi": "Uusimmassa elokuvassaan Mark Cousins tarttuu propagandaelokuvan kulmakiveen ja tutkii fasistista liikettä ennen sen valtaannousua 1920-luvun Italiassa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61741/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61258", "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: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/yso:p2625/?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": false, "offer_price_groups": [], "price": { "fi": "27 € / 19 €", "sv": "27 € / 19 €", "en": "27 € / 19 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/", "sv": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/", "en": "https://www.lippu.fi/artist/stoa/stage-of-change-3536311/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6174, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T12:13:16.801842Z", "last_modified_time": "2024-02-06T13:22:59.851363Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739200.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6174/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T12:13:16.763249Z", "last_modified_time": "2024-02-06T13:22:59.891436Z", "date_published": null, "start_time": "2024-01-31T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Pentinsaari-Schönberg-Utriainen: Stage of Change – ENSI-ILTA", "sv": "Pentinsaari-Schönberg-Utriainen: Stage of Change – PREMIÄR", "en": "Pentinsaari-Schönberg-Utriainen: Stage of Change – PREMIERE" }, "description": { "fi": "<p>Stage of Change on nykysirkusesitys muutoksesta. Teoksessa kolme ilma-akrobaattia kulkevat rengastrapetsien ja muutosprosessien läpi.</p><p>Kuinka alttiita olemme muuttumaan toisten vaikutuksesta? Milloin muutos kumpuaa itsestämme? Mitä meissä tapahtuu kun muutumme?</p><p>Toisinaan muutosta tavoitellaan tietoisesti ja joskus se on lähes huomaamatonta ja orgaanista. Usein kuitenkin prosessissa tapahtuu repsahduksia ja taantumaa, eikä muutos välttämättä ole suoraviivaista tai pysyvää. Stage of Change tarjoaa kolme näkökulmaa siitä, kuinka vaikutumme toinen toisistamme sekä ympäristöstämme ja miten erilaisia muutosprosessit voivat olla.</p><p>Konsepti ja koreografiat: Riikka Pentinsaari, Pinja Schönberg ja Maarit Utriainen<br>Esiintyjät: Pentinsaari, Schönberg, Utriainen<br>Pukusuunnittelu ja pukujen toteutus: Suvi Hänninen<br>Äänisuunnittelu ja tuotanto: Konsta Leinonen<br>Valosuunnittelu: Niko Mattila ja Maarit Utriainen<br>Tuotanto: Zero Gravity Company</p><p>Kesto: n. 50 min<br>Ikäsuositus: 7+</p><p>Teosta ovat tukeneet:<br>Espoon kaupunki<br>Jenny ja Antti Wihurin rahasto<br>Taiteen edistämiskeskus<br>Suomen Kulttuurirahasto, Uudenmaan rahasto<br>Espoon sirkus- ja teatterikoulu<br>Hiljaisuus<br>Näyttämö<br>Old mine Outokumpu Residenssi<br>Sirkus Faktori</p>", "sv": "<p>Stage of Change är en nutidscirkusföreställning om förändring. I verket passerar tre luftakrobater genom ringtrapetser och via konsten att göra på annat sätt genom skedena i omvandlingsprocesserna.</p><p>Hur lätt kan vi ändras under andras inflytande? När kommer förändringen från oss själva? Vad händer med oss när vi förändras?</p><p>Längd: ca. 50 min.<br>Åldersrekommendation: 7+</p>", "en": "<p>Stage of Change is a contemporary circus show about change. In the performance, three aerialists pass through the stages of a change process through aerial hoops and by doing otherwise.</p><p>How prone are we to change under the influence of others? When does change come from ourselves? What happens to us when we change?</p><p>Duration: approx. 50 min<br>Age recommendation: 7+</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F43AFA4BFE3A4BB34B2B558524440476/Pentinsaari-Schonberg-Utriainen_Stage_of_Change", "sv": "http://www.stoa.fi/sv/evenemang/event/F43AFA4BFE3A4BB34B2B558524440476/Pentinsaari-Schonberg-Utriainen_Stage_of_Change", "en": "http://www.stoa.fi/en/events/event/F43AFA4BFE3A4BB34B2B558524440476/Pentinsaari-Schonberg-Utriainen_Stage_of_Change" }, "short_description": { "fi": "Stage of Change on nykysirkusesitys muutoksesta. Teoksessa kolme ilma-akrobaattia kulkevat rengastrapetsien ja muutosprosessien läpi.", "sv": "Stage of Change är en nutidscirkusföreställning om förändring. I verket passerar tre luftakrobater genom ringtrapetser och via konsten att göra på annat sätt genom skedena i omvandlingsprocesserna.", "en": "Stage of Change is a contemporary circus show about change. In the performance, three aerialists pass through the stages of a change process through aerial hoops and by doing otherwise." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61258/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61802", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-17956636/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6880, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T12:13:57.818300Z", "last_modified_time": "2024-02-06T13:22:59.762538Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742033.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6880/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-28T12:13:57.770667Z", "last_modified_time": "2024-02-06T13:22:59.802003Z", "date_published": null, "start_time": "2024-01-31T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "name": { "fi": "Jo' Buddy's One Man Stomptet ja Ismo Haavisto – Roots-musiikin evoluutio vol. 1" }, "description": { "fi": "<p>Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!</p><p>Nykyisin Englannin Lontoossa asuva, elämäntyöpalkittu laulaja-lauluntekijä-multi-instrumentalisti <b>Jo' Buddy</b>, juhlii 42:tta vuotta tienpäällä. Hän esiintyy Malmitalolla kanssa Jo' Buddy's One Man Stomptet -kokoonpanonsa, jonka tuore \"Lockdown Sessions & Beyond Vol. 1\" -debyyttialbumi on saanut erinomaisen vastaanoton myös kansainvälisesti.</p><p>Kyseessä on hänen 8. sooloalbuminsa ja kaiken kaikkiaan 14. pitkäsoitto laulaja-kitaristina. Vuosikymmenet tienpäällä, tuhannet esiintymiset 16 maassa sekä sadat levytyssessiot ovat hioneet hänestä kansainvälisesti arvostetun artistin, jonka omaperäisiä soundeja ja biisejä ollaan jäljitelty ja esitetty ympäri maailman, jo vuosikymmenien ajan.</p><p>Jo' Buddy's One Man Stomptet tarjoaa ajattoman herkullisen läpileikkauksen USA:n eteläosien rullaavien juurimusiikkityylien luonnollisesta synteesistä, jossä swing, rhythm & blues, country ja rock & roll lyövät kättä, lisäämällä soppaan oman välittömästi tunnistettavan, elämäniloa pursuavan soundinsa, pitäen tunnelman katossa läpi keikan.</p><p><b>Ismo Haavisto</b> kuuluu Suomi-bluesin taidokkaaseen ammattilaiskaartiin. Yli 30-vuoden blueskokemus takaa vankan ammattitaidon ja syvältä sielusta kumpuavan tulkinnan. Hän keikkailee ympäri Suomea ja ulkomaita.</p><p>Kesto: 110 min sis. väliajan 20 min.</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/91B5E7FFD8D49D96A7241F3B76C785F7/Jo_Buddy_s_One_Man_Stomptet_ja_Ismo_Haavisto" }, "short_description": { "fi": "Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61802/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19397, "next": "