Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1149®istration__remaining_waiting_list_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1150®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1148®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "kulke:61120", "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/?affiliate=ADV" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5334, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-10T13:31:13.896003Z", "last_modified_time": "2023-10-10T13:31:13.896022Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737936.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5334/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-10T13:31:12.597192Z", "last_modified_time": "2023-11-14T06:13:36.215649Z", "date_published": null, "start_time": "2023-11-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C2CAA044C7883F30F23736EF4D133101/Ihmeiden_aarella_S_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin.</p><p>Kuuluisassa ranskalaisessa pyhiinvaelluskohteesessa virtaa parantavaksi kutsuttua lähdevettä itsensä Neitsyt Marian toimesta.</p><p>Matkaan lähtee myös nuori äiti Dolly pienen, puhumattoman poikansa kanssa sekä vuosia poissa ollut Chrissie. Jokainen odottaa matkalta ihmeitä vain huomatakseen, että ovat jo ystävyydessään ihmeiden äärellä.</p><p>Hauskan ja koskettavan elokuvan pääosissa nähdään Oscar-palkitut Maggie Smith ja Kathy Bates sekä Laura Linney ja Stephen Rea.</p><p>Kesto 90 min<br>Ensi-ilta 3.11.<br>Ikäraja Sallittu</p>" }, "name": { "fi": "Ihmeiden äärellä (S) – Kino Helios" }, "short_description": { "fi": "Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61120/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61138", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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:u4804001050", "sub_events": [], "images": [ { "id": 5451, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T13:58:28.350829Z", "last_modified_time": "2023-10-12T13:58:28.350849Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733539.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5451/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-12T13:58:28.216592Z", "last_modified_time": "2023-11-14T06:13:36.141831Z", "date_published": null, "start_time": "2023-11-08T16:00:00Z", "end_time": "2023-11-08T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen", "en": "http://www.vuotalo.fi/en/events/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kahden vuoden ajan elokuvaohjaaja Karin af Klintberg oli yhteydessä Ruotsin hovin tiedotusosastoon. Lopulta hänestä tuli ensimmäinen journalisti, jolle sanottiin kyllä.</p><p>Hän sai ainutlaatuisen tilaisuuden seurata tiiviisti kuningas Kaarle XVI Kustaata hänen elämässään ja työssään. Kuvaukset alkoivat viime keväänä ja sen jälkeen tapaamisia on ollut useita. Joskus etäältä virallisemmissa tilaisuuksissa, kuten virkaanastujaisissa ja valtiovierailuissa. Joskus kasvokkain Tukhoman linnassa tai Sollidenin puistossa kuninkaan kesäasunnossa Öölannissa. Keskustelut koskevat kaikkea lapsuudesta kuninkaallisen elämän ylä- ja alamäkiin.</p><p>Dokumentti on ensimmäinen Ruotsin kuninkaasta tämän elinaikana kuvattu dokumentti. Kuninkaan isoisä Kustaa VI Adolf ja isoisän isä Kustaa V eivät antaneet haastatteluja.</p><p>Maa: Ruotsi 2023<br>Ohjaaja: Karin af Klintberg<br>Kesto: 1 t 38 min.<br>Kieli: ruotsi<br>Tekstitys: suomi<br>Ikäraja: S</p><p>Vapaa pääsy</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Under två år uppvaktade filmregissören Karin af Klintberg hovets informationsavdelning. Till slut fick hon som första journalist någonsin ett ja.</p><p>En unik möjlighet att på nära håll få följa kung Carl XVI Gustaf i hans liv och arbete.</p><p>Det är första gången i historien som det pågår en dokumentärfilmsinspelning om och med en kung medan han fortfarande lever. Kungens farfar Gustaf VI Adolf och farfars far Gustaf V gav inte intervjuer.</p><p>Land: Sverige 2023<br>Regissör: Karin af Klintberg<br>Medverkande: Carl XVI Gustaf<br>Längd: 1 h 38 min.<br>Språk: svenska<br>Text: finska<br>Barntillåten<br>Fritt inträde</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>", "en": "<p>The Swedish bio-pic about the country's monarch is the first of its kind: never before has a documentary been filmed about the king during his lifetime.</p><p>Sweden 2023<br>Director: Karin af Klintberg<br>Duration: 1 h 38 min<br>Language: Swedish<br>Subtitles: Finnish</p><p>For all ages, free entry.</p>" }, "name": { "fi": "Onsdagsbio: Kungen", "sv": "Onsdagsbio: Kungen", "en": "Onsdagsbio: Kungen" }, "short_description": { "fi": "Kahden vuoden ajan elokuvaohjaaja Karin af Klintberg oli yhteydessä Ruotsin hovin tiedotusosastoon. Lopulta hänestä tuli ensimmäinen journalisti, jolle sanottiin kyllä.", "sv": "Under två år uppvaktade filmregissören Karin af Klintberg hovets informationsavdelning. Till slut fick hon som första journalist någonsin ett ja.", "en": "The Swedish bio-pic about the country's monarch is the first of its kind: never before has a documentary been filmed about the king during his lifetime." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61138/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60650", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,50 € / 17 €", "sv": "24,50 € / 17 €", "en": "24,50 € / 17 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV", "en": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4521, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:09.903902Z", "last_modified_time": "2023-09-07T14:26:09.903923Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730532.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4521/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:09.757837Z", "last_modified_time": "2023-11-14T06:13:36.065519Z", "date_published": null, "start_time": "2023-11-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio", "en": "http://www.kanneltalo.fi/en/events/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Upeaääninen ja karismaattinen Tommi Läntinen on kirjoittanut, esittänyt ja levyttänyt musiikkiaan jo yli neljänkymmenen vuoden ajan.</p><p>Lukuisten sooloalbumiensa lisäksi hän on vaikuttanut pitkän uransa aikana mm. Boycott-yhtyeessä ja tehnyt kappaleita myös muille artisteille. Läntisen suurimpiin hitteihin lukeutuvat esimerkiksi Via Dolorosa, Kevät ja minä, Rööperin kuu, Syvälle sydämeen sattuu, Satelliitti, Villi ja vapaa, Se on rock sekä monta muuta.</p><p>Läntinen osallistui vuonna 2022 Uuden Musiikin Kilpailuun kappaleellaan ”Elämä kantaa mua”, minkä lisäksi saman vuoden helmikuussa ilmestyi samanniminen albumi. Läntinen nähtiin mukana myös syksyn 2022 Vain Elämää -ohjelmassa.</p><p>Esityksen kesto n. 1 t 30 min. sisältäen väliajan.</p>", "sv": "<p>Karismatiska Tommi Läntinen med den fantastiska rösten har skrivit, framfört och spelat in musik i redan över fyra årtionden.</p>", "en": "<p>Tommi Läntinen, the charismatic singer with a magnificent voice, has been writing, performing and recording music for over 40 years.</p>" }, "name": { "fi": "Tommi Läntinen Trio", "sv": "Tommi Läntinen Trio", "en": "Tommi Läntinen Trio" }, "short_description": { "fi": "Upeaääninen ja karismaattinen Tommi Läntinen on kirjoittanut, esittänyt ja levyttänyt musiikkiaan jo yli neljänkymmenen vuoden ajan.", "sv": "Karismatiska Tommi Läntinen med den fantastiska rösten har skrivit, framfört och spelat in musik i redan över fyra årtionden.", "en": "Tommi Läntinen, the charismatic singer with a magnificent voice, has been writing, performing and recording music for over 40 years." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60650/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60680", "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: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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:u4804001050", "sub_events": [], "images": [ { "id": 4520, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:09.527910Z", "last_modified_time": "2023-09-07T14:26:09.527931Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735268.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:26:09.380305Z", "last_modified_time": "2023-11-14T06:13:35.985796Z", "date_published": null, "start_time": "2023-11-08T15:00:00Z", "end_time": "2023-11-08T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_", "en": "http://www.vuotalo.fi/en/events/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br> <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii. <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br> <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>", "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig. <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>", "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br> <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>" }, "name": { "fi": "Sanapaja / Wordshop", "sv": "Sanapaja / Wordshop", "en": "Sanapaja / Wordshop" }, "short_description": { "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?", "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?", "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60680/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60050", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "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:u4804001050", "sub_events": [], "images": [ { "id": 4519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:09.158830Z", "last_modified_time": "2023-09-07T14:26:09.158862Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732348.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:08.950225Z", "last_modified_time": "2023-11-14T06:13:35.910967Z", "date_published": null, "start_time": "2023-11-08T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tarinankerrontaa – Juniper and the Wolf</p><p><b>Juniper & The Wolf</b> (aka <b>Genevieve Andersen</b>) on yhden hengen duo: aivan omanlaisensa lauluntekijä ja balladilaulaja, joka punoo yhteen ainutlaatuisen sekoituksen eeppistä runoutta, tarinankerrontaa, alkuperäistä musiikkia ja kansanlauluja eri puolilta maailmaa.</p><p>Kesto: 60 min</p>", "sv": "<p>Berättelser – Juniper and the Wolf</p><p><b>Juniper and the Wolf</b> (även <b>Genevieve Andersen</b>) är en duo i en person; en enastående låtskrivare och balladsångare, som väver samman en egen unik blandning av episk poesi, berättande, originalmusik och folksånger från hela världen.</p><p>Längd: 60 min</p>", "en": "<p>Storytelling – Juniper and the Wolf</p><p><b>Juniper & The Wolf</b> (aka <b>Genevieve Andersen</b>) is a duo of one; a one-of-a-kind songwriter and ballad singer, weaving together her own unique blend of epic poetry, storytelling, original music, and folk songs from around the world.</p><p>Hailing from the USA, Genevieve has traveled extensively throughout Europe, the US, and Canada, collecting songs and stories from various countries and cultures.</p><p>With performances that encompass a multitude of eras and languages—and shows that are equally known for spellbound silences as they are for joyously singing crowds—Juniper & The Wolf will leave you quietly transformed; ready to escape unto the wilds, forge a new world empire, or delve into the heart of a fascinating story.</p><p>Duration: 60 min</p>" }, "name": { "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves", "sv": "HOW-radio | Global Club Nights – Helsinki Open Waves", "en": "HOW-radio | Global Club Nights – Helsinki Open Waves" }, "short_description": { "fi": "Tarinankerrontaa – Juniper and the Wolf", "sv": "Berättelser – Juniper and the Wolf", "en": "Storytelling – Juniper and the Wolf" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60050/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59923", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4518, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:07.735641Z", "last_modified_time": "2023-09-07T14:26:07.735662Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731297.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4518/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:26:06.756757Z", "last_modified_time": "2023-11-14T06:13:35.840605Z", "date_published": null, "start_time": "2023-11-08T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/301408B0013472C01061467739D650DF/Unfinished_Tales", "sv": "http://www.annantalo.fi/sv/evenemang/event/301408B0013472C01061467739D650DF/Unfinished_Tales", "en": "http://www.annantalo.fi/en/events/event/301408B0013472C01061467739D650DF/Unfinished_Tales" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.</p><p>Installaatioesityksessä nuori yleisö kutsutaan runolliseen arkistoon, joka koostuu nuorten ja taiteilijoiden yhteistyönä luomasta tutkimusaineistosta. Esitettävä aineisto on valikoitu pohjoismaalaisten, ghanalaisten ja St. Croix'n nuorten muodostaman kuraattoritiimin toimesta.</p><p>Installaatiossa nuorten tarinoita esittävät ammattitaiteilijat, ja nuori yleisö opastetaan läpi installaation, jossa videokuva, liikkeet, teksti, äänitallenteet ja esineet avautuvat ja heräävät henkiin yleisön ja esiintyjien yhteistyönä.</p><p>Esityksen kesto: 60 min<br>Kieli: englanti, ruotsi, suomi<br>Ikäsuositus: 13–18<br>Maksuttomiin installaatioesityksiin ilmoittautuminen 15.9. alkaen osoitteessa https://www.kultus.fi</p>", "sv": "<p>Hur känns det att vara ung efter kolonialismen? Att vara tvungen att hitta sin identitet mellan oskrivna sidor i historieböcker och svarta hål i det kollektiva medvetandet?<br> <br><i>Unfinished Tales – a collective story (Oavslutade berättelser – en kollektiv berättelse)</i> är ett transatlantiskt samarbete som utforskar den nordiska kolonialismen – förr och nu – som upplevs av unga i Norden, Ghana och Saint Croix. <br> <br>Installationen bjuder en ung publik in i ett sensuellt och poetiskt arkiv som utgörs av forskningsmaterial som skapats av ungdomar och artister i samarbete. Det material som presenteras har valts ut av ett team kuratorer som består av ungdomar från Norden, Ghana och Saint Croix.</p><p>I installationen främjas och framförs de ungas berättelser av professionella artister. Den unga publiken handleds genom installationen där filmer, rörelser, text, ljudinspelningar och föremål avslöjas och väcks till liv i ett samarbete mellan publiken och dem som uppträder.</p><p>Längd: 60 min<br>Språk: engelska<br>Åldersrekommendation: 13-18 år</p><p>Anmälan till gratis installationspresentationer: kultus.fi</p>", "en": "<p>Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix.</p><p>In the installation the young audience is invited into a sensous and poetic archive composed of the research material created by youth and artists in collaboration. The material presented is selected by a curatorteam of youths from the Nordics, Ghana and St. Croix. <br> <br>In the installation the stories of the youth are facilitated and performed by the professional artists and the young audience is guided through the installation where films, movements, text, audiorecordings and objects are unfolded and brought to life in collaboration between audience and performers.</p><p><i>\"Overgrown history is everywhere\"<br>\"Why do I know so little?\"<br>\"It feels like I have empty hand, no tools, a world of knowledge, but everything is in the dark\"<br>\"I hope nothing bad happens today, but it is of course not good, what happened in the past\"<br>\"It is not past, it is still here\"<br>\"We must continue talking, so that everyone can see, we all are one people\"</i></p><p>How does it feel to be young in the wake of colonialism? Having to find your identity between the unwritten pages in history books and black holes in the collective consciousness?</p><p>Performance duration: 60 min<br>Language: English<br>Age recommendation: 13–18-year-olds<br>Free entry, pre-registration at https://www.kultus.fi starting 15 September.</p>" }, "name": { "fi": "Unfinished Tales", "sv": "Unfinished Tales – Oavslutade berättelser – en kollektiv berättelse", "en": "Unfinished Tales" }, "short_description": { "fi": "Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.", "en": "Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59923/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61137", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T13:58:23.728093Z", "last_modified_time": "2023-10-12T13:58:23.728113Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736815.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-10-12T13:58:23.587820Z", "last_modified_time": "2023-11-14T06:13:35.762589Z", "date_published": null, "start_time": "2023-11-08T11:00:00Z", "end_time": "2023-11-08T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4E15F2F7FA8BD5D2C76252F051030777/DOKKINO_filmvisningar_for_hogstadiet", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4E15F2F7FA8BD5D2C76252F051030777/DOKKINO_filmvisningar_for_hogstadiet", "en": "http://www.vuotalo.fi/en/events/event/4E15F2F7FA8BD5D2C76252F051030777/DOKKINO_filmvisningar_for_hogstadiet" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>7.–9.-luokkalaisten DOKKINO-elokuvanäytöksessä nähdään neljä lyhytdokumenttielokuvaa. Elokuvat ovat kansainvälisiä ja ne on tekstitetty ruotsiksi.</p><p>Näytöksen kokonaiskesto on 70 minuuttia. Elokuvien tarkempiin sisältöihin voit tutustua <u><a href=\"https://dokkino.fi/ylakoulunaytos/\">DOKKINON sivuilla</a></u>.</p><p>Jokaiseen elokuvaan liittyy oma opetusmateriaali, jonka löydät myös DOKKINON sivuilta. Opetusmateriaalit on tuotettu yhteistyössä ammattitahojen kanssa ja ne tarjoavat keskustelunavauksia ja tehtäviä elokuvien teemoihin sekä dokumenttielokuvaan liittyen.</p><p>Näytökseen on vapaa pääsy, mutta osallistuminen edellyttää ilmoittautumista <u><a href=\"https://www.kultus.fi\">Kultuksessa</a></u></p><p>Näytöksessä nähtävät elokuvat:<br>Aikiddo<br>#kiusaamistarina<br>Safiyan elokuva<br>Surffari Charlie</p>", "sv": "<p>DOKKINOs dokumentärfilmserien för lågstadiet riktar sig till årskurserna 7–9. Filmerna är internationella med svensk text.</p><p>Den totala längden på visningarna är ca.70 minuter. Du kan bekanta dig närmare med filmerna på <u><a href=\"https://dokkino.fi/sv/filmvisningar-for-hogstadiet/\">DOKKINOs sida</u></a></p><p>På DOKKINOs sida finns det också läromaterial som är framtaget för varje film som lärarna kan använda sig av för att behandla filmerna och dess innehåll efteråt med eleverna.</p><p>Fritt deltagande men obligatorisk förhandsanmälan via <u><a href=\"https://www.kultus.fi\">kultus.fi</u></a></p><p>Dokumentärfilmserien för lågstadiet består av följande filmer: <br>Aikiddo<br>#mobbningsfall<br>Safiyas film<br>Surfar-Charlie</p>", "en": "<p>At the DOKKINO film screening for 7–9 graders, four short documentary films are presented. The films are international and have subtitles in Swedish-</p><p>The screening duration in full is approximately 70 minutes. You can read more about the films on <u><a href=\"https://dokkino.fi/en/\">DOKKINO's own site.</u></a></p><p>Each film also has an associated learning material in Finnish and Swedish that you can find on DOKKINO's site of the corresponding language.</p><p>Free entry, obligatory pre-registration at <u><a href=\"https://www.kultus.fi\">Kultus</u></a></p><p>Films shown in the screening:<br>Aikiddo<br>#bullyingstory<br>Safiya the Movie<br>Charlie Surfer</p>" }, "name": { "fi": "DOKKINO filmvisningar för högstadiet", "sv": "DOKKINO filmvisningar för högstadiet", "en": "DOKKINO filmvisningar för högstadiet" }, "short_description": { "fi": "7.–9.-luokkalaisten DOKKINO-elokuvanäytöksessä nähdään neljä lyhytdokumenttielokuvaa. Elokuvat ovat kansainvälisiä ja ne on tekstitetty ruotsiksi.", "sv": "DOKKINOs dokumentärfilmserien för lågstadiet riktar sig till årskurserna 7–9. Filmerna är internationella med svensk text.", "en": "At the DOKKINO film screening for 7–9 graders, four short documentary films are presented. The films are international and have subtitles in Swedish-" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61133", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:u4804001050", "sub_events": [], "images": [ { "id": 5426, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T12:31:05.471894Z", "last_modified_time": "2023-10-12T12:31:05.471949Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736814.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5426/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-12T12:31:05.341212Z", "last_modified_time": "2023-11-14T06:13:35.685162Z", "date_published": null, "start_time": "2023-11-08T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8637F168214EBB8869845C53869FFD31/DOKKINO_filmvisningar_for_lagstadiet", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8637F168214EBB8869845C53869FFD31/DOKKINO_filmvisningar_for_lagstadiet", "en": "http://www.vuotalo.fi/en/events/event/8637F168214EBB8869845C53869FFD31/DOKKINO_filmvisningar_for_lagstadiet" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>4.–6.-luokkalaisten DOKKINO-elokuvanäytöksessä nähdään neljä lyhytdokumenttielokuvaa. Elokuvat ovat kansainvälisiä ja ne on tekstitetty ruotsiksi.</p><p>Näytöksen kokonaiskesto on 70 minuuttia. Elokuvien tarkempiin sisältöihin voit tutustua <u><a href=\"https://dokkino.fi/alakoulunaytos/\">DOKKINON sivuilla</a></u>.</p><p>Jokaiseen elokuvaan liittyy oma opetusmateriaali, jonka löydät myös DOKKINON sivuilta. Opetusmateriaalit on tuotettu yhteistyössä ammattitahojen kanssa ja ne tarjoavat keskustelunavauksia ja tehtäviä elokuvien teemoihin sekä dokumenttielokuvaan liittyen.</p><p>Näytökseen on vapaa pääsy, mutta osallistuminen edellyttää ilmoittautumista <u><a href=\"https://www.kultus.fi\">Kultuksessa</a></u></p><p>Näytöksessä nähtävät elokuvat:<br>Aikiddo<br>#kiusaamistarina<br>Safiyan elokuva<br>Surffari Charlie</p>", "sv": "<p>DOKKINOs dokumentärfilmserien för lågstadiet riktar sig till årskurserna 4-6. Filmerna är internationella med svensk text.</p><p>Den totala längden på visningarna är ca.70 minuter. Du kan bekanta dig närmare med filmerna på <u><a href=\"https://dokkino.fi/sv/filmvisningar-for-lagstadiet/\">DOKKINOs sida</u></a></p><p>På DOKKINOs sida finns det också läromaterial som är framtaget för varje film som lärarna kan använda sig av för att behandla filmerna och dess innehåll efteråt med eleverna.</p><p>Fritt deltagande men obligatorisk förhandsanmälan via <u><a href=\"https://www.kultus.fi\">kultus.fi</u></a></p><p>Dokumentärfilmserien för lågstadiet består av följande filmer: <br>Aikiddo<br>#mobbningsfall<br>Safiyas film<br>Surfar-Charlie</p>", "en": "<p>At the DOKKINO film screening for 4–6 graders, four short documentary films are presented. The films are international and have subtitles in Swedish-</p><p>The screening duration in full is approximately 70 minutes. You can read more about the films on <u><a href=\"https://dokkino.fi/en/\">DOKKINO's own site.</u></a></p><p>Each film also has an associated learning material in Finnish and Swedish that you can find on DOKKINO's site of the corresponding language.</p><p>Free entry, obligatory pre-registration at <u><a href=\"https://www.kultus.fi\">Kultus</u></a></p><p>Films shown in the screening:<br>Aikiddo<br>#bullyingstory<br>Safiya the Movie<br>Charlie Surfer</p>" }, "name": { "fi": "DOKKINO filmvisningar för lågstadiet", "sv": "DOKKINO filmvisningar för lågstadiet", "en": "DOKKINO filmvisningar för lågstadiet" }, "short_description": { "fi": "4.–6.-luokkalaisten DOKKINO-elokuvanäytöksessä nähdään neljä lyhytdokumenttielokuvaa. Elokuvat ovat kansainvälisiä ja ne on tekstitetty ruotsiksi.", "sv": "DOKKINOs dokumentärfilmserien för lågstadiet riktar sig till årskurserna 4-6. Filmerna är internationella med svensk text.", "en": "At the DOKKINO film screening for 4–6 graders, four short documentary films are presented. The films are international and have subtitles in Swedish-" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61133/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59922", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4516, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:05.357917Z", "last_modified_time": "2023-09-07T14:26:05.357940Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731296.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4516/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:26:05.202587Z", "last_modified_time": "2023-11-14T06:13:35.610667Z", "date_published": null, "start_time": "2023-11-08T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C0030752392D0253376495F7EDD9580C/Unfinished_Tales", "sv": "http://www.annantalo.fi/sv/evenemang/event/C0030752392D0253376495F7EDD9580C/Unfinished_Tales", "en": "http://www.annantalo.fi/en/events/event/C0030752392D0253376495F7EDD9580C/Unfinished_Tales" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.</p><p>Installaatioesityksessä nuori yleisö kutsutaan runolliseen arkistoon, joka koostuu nuorten ja taiteilijoiden yhteistyönä luomasta tutkimusaineistosta. Esitettävä aineisto on valikoitu pohjoismaalaisten, ghanalaisten ja St. Croix'n nuorten muodostaman kuraattoritiimin toimesta.</p><p>Installaatiossa nuorten tarinoita esittävät ammattitaiteilijat, ja nuori yleisö opastetaan läpi installaation, jossa videokuva, liikkeet, teksti, äänitallenteet ja esineet avautuvat ja heräävät henkiin yleisön ja esiintyjien yhteistyönä.</p><p>Esityksen kesto: 60 min<br>Kieli: englanti, ruotsi, suomi<br>Ikäsuositus: 13–18<br>Maksuttomiin installaatioesityksiin ilmoittautuminen 15.9. alkaen osoitteessa https://www.kultus.fi</p>", "sv": "<p>Hur känns det att vara ung efter kolonialismen? Att vara tvungen att hitta sin identitet mellan oskrivna sidor i historieböcker och svarta hål i det kollektiva medvetandet?<br> <br><i>Unfinished Tales – a collective story (Oavslutade berättelser – en kollektiv berättelse)</i> är ett transatlantiskt samarbete som utforskar den nordiska kolonialismen – förr och nu – som upplevs av unga i Norden, Ghana och Saint Croix. <br> <br>Installationen bjuder en ung publik in i ett sensuellt och poetiskt arkiv som utgörs av forskningsmaterial som skapats av ungdomar och artister i samarbete. Det material som presenteras har valts ut av ett team kuratorer som består av ungdomar från Norden, Ghana och Saint Croix.</p><p>I installationen främjas och framförs de ungas berättelser av professionella artister. Den unga publiken handleds genom installationen där filmer, rörelser, text, ljudinspelningar och föremål avslöjas och väcks till liv i ett samarbete mellan publiken och dem som uppträder.</p><p>Längd: 60 min<br>Språk: engelska<br>Åldersrekommendation: 13-18 år</p><p>Anmälan till gratis installationspresentationer: kultus.fi</p>", "en": "<p>Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix.</p><p>In the installation the young audience is invited into a sensous and poetic archive composed of the research material created by youth and artists in collaboration. The material presented is selected by a curatorteam of youths from the Nordics, Ghana and St. Croix. <br> <br>In the installation the stories of the youth are facilitated and performed by the professional artists and the young audience is guided through the installation where films, movements, text, audiorecordings and objects are unfolded and brought to life in collaboration between audience and performers.</p><p><i>\"Overgrown history is everywhere\"<br>\"Why do I know so little?\"<br>\"It feels like I have empty hand, no tools, a world of knowledge, but everything is in the dark\"<br>\"I hope nothing bad happens today, but it is of course not good, what happened in the past\"<br>\"It is not past, it is still here\"<br>\"We must continue talking, so that everyone can see, we all are one people\"</i></p><p>How does it feel to be young in the wake of colonialism? Having to find your identity between the unwritten pages in history books and black holes in the collective consciousness?</p><p>Performance duration: 60 min<br>Language: English<br>Age recommendation: 13–18-year-olds<br>Free entry, pre-registration at https://www.kultus.fi starting 15 September.</p>" }, "name": { "fi": "Unfinished Tales", "sv": "Unfinished Tales – Oavslutade berättelser – en kollektiv berättelse", "en": "Unfinished Tales" }, "short_description": { "fi": "Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.", "en": "Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59922/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60940", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:42.944630Z", "last_modified_time": "2023-10-09T13:31:42.944650Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737174.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5212/?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-10-09T13:31:42.798165Z", "last_modified_time": "2023-11-14T06:13:35.536213Z", "date_published": null, "start_time": "2023-11-08T08:00:00Z", "end_time": "2023-11-08T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D24B7727E374BCEABD311BED09D33B99/Naperokino_Yhteiskunta_ja_kaupunki", "sv": "http://www.annantalo.fi/sv/evenemang/event/D24B7727E374BCEABD311BED09D33B99/Knattebion_samhalle_och_stad_", "en": "http://www.annantalo.fi/en/events/event/D24B7727E374BCEABD311BED09D33B99/Naperokino_toddles_cinema_society_and_the_city" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>0–3-vuotiaiden Naperokino palaa ohjelmistoon syksyllä 2023! Rento, mukava esityspaikka ja -tilanne mahdollistavat vaipanvaihdon, syöttämisen/imettämisen tai vaikkapa pienet päiväunet lyhäreiden lomassa.</p><p>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen ottamaan vastaan ja katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas painottuu pienimmillekin sopiviin sanattomiin animaatioihin, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja.</p><p>Naperokino on suunnattu kotiäideille ja –isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ke 11.10., 22.11. ja 13.12. pääset myös paikan päällä tapaamaan ja halaamaan Naperokinossa vierailevaa Myyrää, jonka seikkailuita voit seurata tänä syksynä Annantalon somessa!</p><p>Näytöksillä on joka viikko vaihtuva teema.</p><p>Kieli: suomi<br>Ikäsuositus: 0-3-vuotiaille vanhempiensa kanssa<br>Tila: 1. kerroksen oleskelutila</p>", "sv": "<p>Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!</p><p>De minsta barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se även för en liten stund i taget. En avslappnad, bekväm plats för filmvisningen gör det möjligt att byta blöjor, mata/amma barnet eller t.ex. ta en liten tupplur under de korta filmerna.</p><p>Syftet är att visa barnet filmer av hög kvalitet och gradvis vänja hen vid att ta emot och titta på långa barnfilmer på biografer. Under den första halvan av visningen som varar två timmar ligger fokusen på animerade filmer utan tal och på den andra halvan visas det favoriter med tal.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Ons 11.10, 22.11. och 13.12 på plats kan du också möta och krama Mullvaden som besöker Knattebion. Mullvadens äventyr kan du följa under hösten också i Annegårdens sociala medier!</p><p>Föreställningarna har ett varierande tema varje vecka. Den här veckan är temat samhälle och stad!</p><p>Mer information från kultural producent, tel. +358 40 188 3416</p>", "en": "<p>Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!</p><p>The cinema for toddlers, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while. The relaxed, comfortable venue and setting allow nappy changes, feeding/breastfeeding, or even little naps between short films.</p><p>The goal is to show children high-quality films and gradually get them used to engaging with and watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on wordless animations suitable for even the smallest children, and the second hour will feature favourites with spoken dialogue.</p><p>Naperokino is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>On Wed Oct 11, Nov 22 and Dec 13 you also get to meet and hug Naperokino’s guest Mole, whose adventures you can also follow this autumn on Annantalo’s social media!</p><p>The screenings have a different theme each week. This week, it’s society and the city!</p><p>For more information please contact cultural produces +358 40 188 3416</p>" }, "name": { "fi": "Naperokino: Yhteiskunta ja kaupunki", "sv": "Knattebion: samhälle och stad!", "en": "Naperokino (toddles cinema): society and the city" }, "short_description": { "fi": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!", "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60940/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60732", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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:u4804001050", "sub_events": [], "images": [ { "id": 4514, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:04.541776Z", "last_modified_time": "2023-09-07T14:26:04.541805Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735160.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4514/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:26:03.655273Z", "last_modified_time": "2023-11-14T06:13:35.464890Z", "date_published": null, "start_time": "2023-11-08", "end_time": "2024-01-20", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9A7B4C8EC75BC0C22788E5C3B04CFDD2/Annantalo_valkokankaalla_Elavat_kuvat_2", "sv": "http://www.annantalo.fi/sv/evenemang/event/9A7B4C8EC75BC0C22788E5C3B04CFDD2/Pa_vita_duken_i_Annegarden_Levande_bilder_2", "en": "http://www.annantalo.fi/en/events/event/9A7B4C8EC75BC0C22788E5C3B04CFDD2/Annantalo_on_the_Big_Screen_Moving_Pictures_2" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa.</p><p>Perinteistä sekä kokeellista, uutta ja vanhaa sopivassa suhteessa. Esillä oleva kokoelma koostuu Annantalon oppilaiden tekemistä videoista vuosilta 2020–2023.</p><p>Yhden näytöskierroksen kokonaiskesto on noin 30 minuuttia. Videot pyörivät nonstoppina galleriatilassa.</p><p>Ota mukava asento sohvalta ja nauti!</p><p>Paikka: pohjoinen lasigalleria<br>Kielet: Suomi / sanaton<br>Kaikenikäisille</p><p>Elävät kuvat 2 Annantalossa 19.9.2023–12.10.2023 ja 8.11.2023–20.1.2024.</p>", "sv": "<p>Det norra galleriet på andra våningen i Annegården förvandlas till biosalong, där vi får se animationer, videor och en kortfilmer.</p><p>En lagom blandning av traditionellt och experimentellt, nytt och gammalt. Den utställda samlingen består av videor skapade av Annegårdens elever från åren 2020–2023.</p><p>Den totala längden på en utställningsrunda är cirka 30 minuter. Videorna rullar nonstop i gallerilokalen.</p><p>Inta en bekväm ställning på soffan och njut!</p><p>Språk: finska / ordlös<br>För alla åldrar</p>", "en": "<p>The northern gallery on the second floor of Annantalo is transformed into a cinema presenting animations, videos and short films.</p><p>It is an ecletic mix of traditional and experimental, new and old. The collection on display consists of videos made by the students of Annantalo between 2020 and 2023.</p><p>The total duration is approximately 30 minutes. The videos run non-stop in the gallery.</p><p>Take a seat on the couch, lie back and enjoy!</p><p>Language: Finnish / non-verbal<br>For all ages</p>" }, "name": { "fi": "Annantalo valkokankaalla: Elävät kuvat 2", "sv": "På vita duken i Annegården: Levande bilder 2", "en": "Annantalo on the Big Screen: Moving Pictures 2" }, "short_description": { "fi": "Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa.", "sv": "Det norra galleriet på andra våningen i Annegården förvandlas till biosalong, där vi får se animationer, videor och en kortfilmer.", "en": "The northern gallery on the second floor of Annantalo is transformed into a cinema presenting animations, videos and short films." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60732/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60888", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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: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": "17,50 € / 33,50 €", "en": "17,50 € / 33,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/", "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5211, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:39.988851Z", "last_modified_time": "2023-10-09T13:31:39.988869Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735805.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5211/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:31:39.837905Z", "last_modified_time": "2023-11-14T06:13:35.390972Z", "date_published": null, "start_time": "2023-11-07T17:00:00Z", "end_time": "2023-11-07T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/79E33720FBE92ECF9D239C20665F19A2/Liikkeella_marraskuussa_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP", "en": "http://www.stoa.fi/en/events/event/79E33720FBE92ECF9D239C20665F19A2/Moving_in_November_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Teoksessa SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke ja Paweł Duduś tutkivat suhteensa laajuutta: ystävyyttä, joka uhmaa perinteisiä määritelmiä ja vahvistuu runollisuudesta ja yhteisestä halusta kurottaa aistillisuutta kohti.</p><p>Vuorovaikutuksessa Kim_Twiddlen live-musiikin kanssa esiintyjät maalaavat intiimin muotokuvan suhteestaan seitsemässä luvussa. Tämä persoonallisuuksien cocktail uhmaa stereotypioita ja normatiivisia käsityksiä tarjoamalla yleisölle välähdyksen utopiasta – näkemyksen ihmisten välisestä vuorovaikutuksesta, joka perustuu aidolle kohtaamiselle asettaen etusijalle hellyyden ja rehellisyyden.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia vierailevat taiteilijat käyvät keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 8.11. klo 12 Goethe instituutissa.</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/scores-that-shaped-our-friendship-2/</p><p>Kesto: 1 tunti<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.</p><p>Stoa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>", "en": "<p>With SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke and Paweł Duduś explore the scope of their relationship: a friendship that defies traditional definitions and is shaped by poetic tendencies and a shared urge for sensuality.</p><p>Interacting with live music by Kim_Twiddle, the performers paint an intimate portrait in seven chapters. This cocktail of personalities defies stereotypes and normative perceptions and offers the audience a glimpse of utopia – a vision of human interactions that prioritize tenderness, honesty, and a dedication to authentically relate to one another.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with the invited artists and local host called Soup Talk on the 8th of November at noon in Goethe-Institut.</p><p>Read more: https://movinginnovember.fi/scores-that-shaped-our-friendship/</p><p>Duration: 1 hour<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Stoa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11. The festival program will be published in September.</p>" }, "name": { "fi": "Liikkeellä marraskuussa – Lucy Wilke & Paweł Duduś: SCORES THAT SHAPED OUR FRIENDSHIP", "en": "Moving in November – Lucy Wilke & Paweł Duduś: SCORES THAT SHAPED OUR FRIENDSHIP" }, "short_description": { "fi": "Teoksessa SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke ja Paweł Duduś tutkivat suhteensa laajuutta: ystävyyttä, joka uhmaa perinteisiä määritelmiä ja vahvistuu runollisuudesta ja yhteisestä halusta kurottaa aistillisuutta kohti.", "en": "With SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke and Paweł Duduś explore the scope of their relationship: a friendship that defies traditional definitions and is shaped by poetic tendencies and a shared urge for sensuality." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60888/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61053", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:39.632891Z", "last_modified_time": "2023-10-09T13:31:39.632911Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729626.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5210/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:31:39.496711Z", "last_modified_time": "2023-11-14T06:13:35.311599Z", "date_published": null, "start_time": "2023-11-07T12:00:00Z", "end_time": "2023-11-07T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A05C19BE1630E83457E030911E1E7366/Charlotta_Kerbs_Sanjay_Khan", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A05C19BE1630E83457E030911E1E7366/Charlotta_Kerbs_Sanjay_Khan", "en": "http://www.vuotalo.fi/en/events/event/A05C19BE1630E83457E030911E1E7366/Charlotta_Kerbs_Sanjay_Khan" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Charlotta Curbs (Lepplax, Suomi) ja Sanjay Khan (Rajasthan, Intia) tapasivat Ruotsissa festivaaleilla kesällä 2022.</p><p>Molemmat esiintyivät festivaaleilla ja pian syntyi yhteistyö. Toistensa musiikin ja kulttuurin inspiroimana he luovat ainutlaatuisen musiikillisen tapaamisen, jossa yhdistyvät perinteinen suomalainen ja pohjoismainen musiikkiperinne sekä perinteinen ja klassinen intialainen musiikki.</p><p>Heidän yhdessä luomansa musiikki on meditatiivista, mystistä, mutta myös leikkisää ja energistä ja kutsuu vuorovaikutukseen ja tanssiin. Ne tuovat viestin rakkaudesta ja ilosta musiikin kautta, levein hymyin ja avoimin sydämin.</p><p>Sanjay Khan on laulaja, tabla-, harmoni- ja kartal-virtuoosi sekä seitsemän sukupolven ajan säilyneen musiikillisen tietämyksen perillinen. Hän kiertää ja edustaa sufi-musiikkia sekä perinteistä ja klassista musiikkia Pohjois-Intiasta kaikkialla maailmassa. Sanjay on esiintynyt yli 80 maassa ja soittanut Queen Elizabethille ja Mick Jaggerille tuoden intialaista perinnettä sydämiin kaikkialla maailmassa.</p><p>Charlotta Kerbs – laulu, akustinen kitara<br>Sanjay Khan – laulu, tablarummut, harmoni, kartal, tanpura</p><p>Konsertin kesto n. 60 min. Infotori ja kahvitarjoilu. <br>Vapaa pääsy, ei ennakkoilmoittautumista.<br>Järjestäjä: Seniornätverket i Helsingfors yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Sanjay Khan och Charlotta Kerbs träffades på en festival sommaren 2022 och ett samarbete föddes kort därefter.</p><p>I sommar bjuder duon på en konsert i samband med folkmusikfestivalen Etno-Espa i Helsigfors. <br>Sångaren Charlotta Kerbs från Österbotten är en mångsidig, stark och själfull sångare, som arbetar aktivt i många olika band över genregränserna med stark inspiration från jazz, soul och nordisk folkmusik. Sanjay Khan är en sångare och multiinstrumentalist från Rajasthan, Indien. Han turnerar med traditionell och klassisk musik från norra Indien över hela världen. Duons framträdande är en fusion mellan traditionell nordisk folkmusik och klassisk musik från Indien.</p><p>Charlotta Kerbs – sång, akustisk gitarr<br>Sanjay Khan – sång, tablatrummor, harmonium, kartal, tanpura</p><p>Konsertens längd ca 60 min. <br>Dessutom infotorg och kaffeservering mm. <br>Fritt deltagande, ingen förhandsanmälan.<br>Arr. Seniornätverket i Helsingfors i samarbete med Nordhuset</p>", "en": "<p>Charlotta Kerbs (Lepplax, Finland) and Sanjay Khan (Rajasthan, India) met at a festival summer 2022 in Sweden where they were both performing, and a collaboration was soon born.</p><p>Inspired by each others music and culture they create an unique musical meeting, blending traditional Finnish and Nordic music tradition together with traditional and classical music from India. The music they create together is meditative, mystic but also playful and energetic and invites to interaction and dance. They bring the message of love and joy through music, with big smiles and open hearts!</p><p>Sanjay Khan is a singer, tabla, harmonium and kartal virtuoso and a heir to a musical knowledge perpetuated for seven generations. He tours and represents sufi music and traditional and classical music from northern India all over the world. Sanjay has performed in over 80 countries and played for Queen Elizabeth and Mick Jagger, bringing Indian tradition to hearts all over the world.</p><p>Charlotta Kerbs – vocals, acustic guitar <br>Sanjay Khan – vocals, tabladrums, harmonium, kartal, tanpura</p><p>Duration approx. 60 minutes. Info and coffee. <br>Free entry, no need to pre register. <br>Co-operation: Seniornätverket i Helsingingors and Vuotalo</p>" }, "name": { "fi": "Charlotta Kerbs & Sanjay Khan – Svenska Veckans Seniornätverksträff", "sv": "Charlotta Kerbs & Sanjay Khan – Svenska Veckans Seniornätverksträff", "en": "Charlotta Kerbs & Sanjay Khan – Svenska Veckans Seniornätverksträff" }, "short_description": { "fi": "Charlotta Curbs (Lepplax, Suomi) ja Sanjay Khan (Rajasthan, Intia) tapasivat Ruotsissa festivaaleilla kesällä 2022.", "sv": "Sanjay Khan och Charlotta Kerbs träffades på en festival sommaren 2022 och ett samarbete föddes kort därefter.", "en": "Charlotta Kerbs (Lepplax, Finland) and Sanjay Khan (Rajasthan, India) met at a festival summer 2022 in Sweden where they were both performing, and a collaboration was soon born." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61053/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60461", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-2/?format=api" }, "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:u4804001050", "sub_events": [], "images": [ { "id": 4511, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:00.938849Z", "last_modified_time": "2023-09-07T14:26:00.938871Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725186.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4511/?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-09-07T14:26:00.683832Z", "last_modified_time": "2023-11-14T06:13:35.232856Z", "date_published": null, "start_time": "2023-11-07T11:30:00Z", "end_time": "2023-11-07T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/24E64E159485126AA39EF58FDD55E5FF/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/24E64E159485126AA39EF58FDD55E5FF/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/24E64E159485126AA39EF58FDD55E5FF/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Open Art Studio for Toddlers-verkstäder", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60461/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59976", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "49/59 €" }, "info_url": { "fi": "https://www.ticketmaster.fi/artist/ron-carter-foursight-quartet-lippuja/1142424" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4510, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:00.441079Z", "last_modified_time": "2023-09-07T14:26:00.441100Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730719.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4510/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:00.154073Z", "last_modified_time": "2023-11-14T06:13:35.157082Z", "date_published": null, "start_time": "2023-11-06T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5902D4A328892498EB35C133CA2B8FB9/Ron_Carter_Foursight_Quartet_US_" }, "provider_contact_info": null, "provider": { "fi": "Live Nation Finland Oy" }, "description": { "fi": "<p>Jazzin elävä legenda Ron Carter saapuu yhtyeineen suomeen</p><p>Suurimpiin yhä esiintyviin jazzlegendoihin lukeutuva Ron Carter saapuu loppuvuodesta konsertoimaan Suomeen yhdessä ”Foursight” Quartet -kokoonpanon kanssa! Basistimaestron johtama nelihenkinen yhtye esiintyy Helsingin Savoy-teatterissa maanantaina 6. marraskuuta 2023.</p><p>Viime viikolla 86 vuotta täyttänyt Ron Carter on yksi kaikkien aikojen tunnetuimmista jazzbasisteista. Yli 2 500 levytyksellään hän on myös yksi jazzhistorian eniten levyttäneistä basisteista.</p><p>Carter soitti 1960-luvulla jazzikoni Miles Davisin kuuluisassa kvintetissä, minkä jälkeen hän oli mukana monilla Herbie Hancockin ja Wayne Shorterin levytyksillä. Carter on tehnyt kunnioitettavalla urallaan yhteistyötä myös mm. Thelonious Monkin, Antonio Carlos Jobimin, Freddie Hubbardin, McCoy Tynyerin ja lukemattomien muiden artistien kanssa.</p><p>Ron Carter ”Foursight” Quartetissa soittavat yhtyeen johtohahmon ohella pianisti Renee Rosnes, tenorisaksofonisti Jimmy Greene ja rumpali Payton Crossley. Kokoonpano on nähty Suomessa aiemmin Pori Jazzeilla vuonna 2019, jolloin Yle kehui esiintymistä sanoin ”huipputyylikäs konsertti oli yksi Lokkilavan kesän jazztarjonnan helmiä”.</p><p>Kesto n. 90 min, ei väliaikaa</p>" }, "name": { "fi": "Ron Carter ”Foursight” Quartet (US)" }, "short_description": { "fi": "Jazzin elävä legenda Ron Carter saapuu yhtyeineen suomeen" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59976/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60498", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4509, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:58.931083Z", "last_modified_time": "2023-09-07T14:25:58.931103Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731777.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4509/?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-09-07T14:25:57.971447Z", "last_modified_time": "2023-11-14T06:13:35.080019Z", "date_published": null, "start_time": "2023-11-06T08:15:00Z", "end_time": "2023-11-06T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FA02514349B6E7B6EF04FFE11BE50FBA/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset", "sv": "http://www.caisa.fi/sv/evenemang/event/FA02514349B6E7B6EF04FFE11BE50FBA/Dans_och_lek_verkstad_Barn_i_lekaldern", "en": "http://www.caisa.fi/en/events/event/FA02514349B6E7B6EF04FFE11BE50FBA/Dance_and_play_workshops_Play-age" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "name": { "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar", "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60498/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60486", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4508, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:57.237264Z", "last_modified_time": "2023-09-07T14:25:57.237287Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731761.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4508/?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-09-07T14:25:56.951915Z", "last_modified_time": "2023-11-14T06:13:35.006227Z", "date_published": null, "start_time": "2023-11-06T07:15:00Z", "end_time": "2023-11-06T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BF7A958B88C9DA00D7E110A46FBABEE7/Tanssi_ja_leikki_-tyopaja_Taaperot", "sv": "http://www.caisa.fi/sv/evenemang/event/BF7A958B88C9DA00D7E110A46FBABEE7/Dans_och_lek_verkstad_Smabarn", "en": "http://www.caisa.fi/en/events/event/BF7A958B88C9DA00D7E110A46FBABEE7/Dance_and_play_workshops_Toddlers" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "name": { "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar", "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60486/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61183", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5637, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-25T10:15:01.834325Z", "last_modified_time": "2023-10-25T10:15:01.834353Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738369.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5637/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-25T10:15:01.803500Z", "last_modified_time": "2023-11-14T06:13:34.935930Z", "date_published": null, "start_time": "2023-11-06", "end_time": "2023-11-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C9B8175062C0C6695E31B4C6A6DC5F05/Anja_Kallio_Patalappu_taidetta_vai_ei_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Anja Kallio kertoo: \"Viime talvena vietin neljä ja puoli kuukautta putkiremonttia paossa tyttäreni luona. Hän teki töitä ja oma aikani kävi pitkäksi, kunnes löysin hänen jäännöslankalaatikkonsa ja sain luvan käyttää sen sisältöä.</p><p>Aloin virkata ja kirjoa patalappuja, joista ensimmäiset 20 kpl kymmenvuotias lapsenlapseni Eva on jo myynyt Reykjavikissa Islannin Syöpäyhdistyksen hyväksi. Asun taas kotonani, mutta jäin koukkuun tähän virkkuutyöhän ja naapurit ovat tuoneet vanhoja lankojaan käyttööni.</p><p>Asuessani tyttäreni luona parhaita hetkiä olivat aamukahvit, kun kahdestamme keskustelimme menneistä, tulevasta ja nykyhetkestäkin eli elämästä yleensäkin ja sain ikään kuin tutustua tyttäreeni uudelleen. Sen kokemuksen soisin jokaiselle aikuisen lapsen äidille.\"</p>" }, "name": { "fi": "Anja Kallio: Patalappu – taidetta vai ei?" }, "short_description": { "fi": "Anja Kallio kertoo: \"Viime talvena vietin neljä ja puoli kuukautta putkiremonttia paossa tyttäreni luona. Hän teki töitä ja oma aikani kävi pitkäksi, kunnes löysin hänen jäännöslankalaatikkonsa ja sain luvan käyttää sen sisältöä." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61183/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60279", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "54,50/119,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3425784" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4507, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:56.698765Z", "last_modified_time": "2023-09-07T14:25:56.698782Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734137.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4507/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:25:56.554498Z", "last_modified_time": "2023-11-14T06:13:34.864592Z", "date_published": null, "start_time": "2023-11-05T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6928A77717D746832CCFB8CAE5FED1AB/BG_Boris_Grebenschikov_" }, "provider_contact_info": null, "provider": { "fi": "Feels Like Red AB" }, "description": { "fi": "<p>Iso uusi konserttiohjelmisto Helsingissä! Tuskin löytyy sellaista venäjänkielistä ihmistä, joka ei olisi kuullut legendaarisesta Boris Grebenshikovista (BG:stä)</p><p>Hänet tunnetaan myös rockyhtye Akvariumin perustajana. BG: n sanoituslyriikka on suorastaan uusinut sitä venäjää, jota parhaillaan puhutaan.</p><p>BG loi Venäjälle 1970- ja 1980-luvuilla myös täysin ainutlaatuisen musiikillisen ja sosiaalisen estetiikan, joka avautuu lähes 30:stä studioalbumistaan. Grebenshikov on ollut tuttu myös Neuvostoliiton hajoamisen jälkeen itsenäistyneissä maissa, hän on vieraillut Euroopassa ja Pohjois-Amerikassa, tullut tunnetuksi ja arvostetuksi länsimaisten merkittävimpien alansa muusikkojen keskuudessa.</p><p>Viime vuosina BG on jatkuvasti ja rohkeasti vastustanut epäoikeudenmukaisuutta ja kansanvainoja kotimaassaan, kunnes se oli mahdollista.</p><p>Pidettyään esityksiään täysille saleille eri puolilla maailmaa, BG pitää ainoan, kauan odotetun konserttinsa Suomessa.</p><p>Siihen kuuluu uusien kappaleiden lisäksi ”akvariumilaisia” klassikkoja sovittamalla näin yhteen ikuisuutta ja ajankohtaisuutta.</p><p>BG+ on pääasiallisesti yhtä kuin BG, Aleksandr Titov (basso), Brian Finnegan (huilu), Konstantin Tumanov (kosketinsoittimet ja harmonikka), Liam Bradley (rummut), Andrei Surotdinov (viulu), Gleb Grebenshikov (lyömäsoittimet).</p><p>Koe unohtumaton viikonloppu ja tule konserttiin, jonka tulet muistamaan aina!</p><p>Kesto n. 3 h, sisältää väliajan</p>" }, "name": { "fi": "BG+ (Boris Grebenschikov) – Iso uusi konserttiohjelmisto Helsingissä!" }, "short_description": { "fi": "Iso uusi konserttiohjelmisto Helsingissä! Tuskin löytyy sellaista venäjänkielistä ihmistä, joka ei olisi kuullut legendaarisesta Boris Grebenshikovista (BG:stä)" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60279/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60958", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": "17,50 € / 33,50 €", "en": "17,50 € / 33,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-3488987/", "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-3488987/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5209, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:35.842300Z", "last_modified_time": "2023-10-09T13:31:35.842328Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737218.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5209/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:31:35.705114Z", "last_modified_time": "2023-11-14T06:13:34.790608Z", "date_published": null, "start_time": "2023-11-05T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F1AC9FC543F4934614A1F581C955BD09/Liikkeella_marraskuussa_Dana_Michel_MIKE", "en": "http://www.caisa.fi/en/events/event/F1AC9FC543F4934614A1F581C955BD09/Moving_in_November_Dana_Michel_MIKE" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Jos emme voi olla oma itsemme töissä, missä vietämme suurimman osan elämästämme, niin millaista elämää elämme?</p><p>Dana Michelin teos MIKE muuttaa arkipäiväiset toiminnot koreografisiksi kokeiluiksi tutkien luottamuksen ja itseilmaisun välistä syvällistä yhteyttä työkulttuurin kontekstissa. Kulttuurikeskus Caisan avoimeen esitystilaan sijoitetun kolmen tunnin esityksen aikana Michel kerii auki päivittäistoimintojen automatisoitumista ja käsittelee terävästi työn ja yksityiselämän kauhun tasapainoa, leijuen tragedian ja komiikan välillä.</p><p>MIKE on pitkäkestoinen esitys, johon kutsumme sinut makaamaan, istumaan tai seisomaan. Vapaa liikkuminen tilassa on sallittua. Suosittelemme kokemaan koko teoksen, mutta halutessasi voit poistua ja palata esitystilaan milloin tahansa.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia Michel käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 6.11. klo 12 Caisassa.</p><p>Kesto: 3h<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/mike-2</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.<br> <br>Caisa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>", "en": "<p>In her performance MIKE, Dana Michel starts with a question: if we cannot be ourselves at work, where we spend most of our lives – what kind of lives are we living?</p><p>MIKE transforms mundane actions into choreographic experiments, exploring the profound connection between trust and self-expression within the context of work culture. During a three-hour performance placed in the open space of Caisa, Michel unfolds the automatism of our daily actions, sharply addressing work-life balance, hovering between tragic and comic.</p><p>MIKE is a long-durational performance, and you are invited to lie, sit or stand and to move freely in the space. Witnessing the full experience is recommended, but you can leave and re-enter if wished.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with Michel and local host called Soup Talk on the 6th of November at noon in Caisa.</p><p>Read more: https://movinginnovember.fi/mike</p><p>Duration: 3h<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Caisa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11.</p>" }, "name": { "fi": "Liikkeellä marraskuussa – Dana Michel: MIKE", "en": "Moving in November – Dana Michel: MIKE" }, "short_description": { "fi": "Jos emme voi olla oma itsemme töissä, missä vietämme suurimman osan elämästämme, niin millaista elämää elämme?", "en": "In her performance MIKE, Dana Michel starts with a question: if we cannot be ourselves at work, where we spend most of our lives – what kind of lives are we living?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60958/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26992, "next": "