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 normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
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&is_free=true&page=243
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=244", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=242" }, "data": [ { "id": "kulke:64486", "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: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:669/?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:p1278/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152482, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T13:14:25.032309Z", "last_modified_time": "2024-09-19T13:14:25.032323Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757547.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T13:14:25.015901Z", "last_modified_time": "2024-12-20T01:14:07.175720Z", "date_published": null, "start_time": "2024-11-15T10:00:00Z", "end_time": "2024-11-15T11: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, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Panel with local artist", "sv": "Liikkeellä marraskuussa: Soup Talks – Panel with local artist", "en": "Moving in November: Soup Talks – Panel with local artist" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/979708A21F50512640C6638A89B294A9/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/979708A21F50512640C6638A89B294A9/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/979708A21F50512640C6638A89B294A9/Moving_in_November_Soup_Talks" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64486/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64485", "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: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:669/?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:p1278/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152481, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T13:14:24.759799Z", "last_modified_time": "2024-09-19T13:14:24.759816Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757545.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152481/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T13:14:24.737274Z", "last_modified_time": "2024-12-20T01:14:06.590667Z", "date_published": null, "start_time": "2024-11-14T10:00:00Z", "end_time": "2024-11-14T11: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, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Rosana Cade & Ivor MacAskill", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Rosana Cade & Ivor MacAskill", "en": "Moving in November: Soup Talks – Talk with Rosana Cade & Ivor MacAskill" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C18E35F9E38BD3866ECF6448FD19DFD2/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/C18E35F9E38BD3866ECF6448FD19DFD2/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/C18E35F9E38BD3866ECF6448FD19DFD2/Moving_in_November_Soup_Talks" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64485/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64231", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151787, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T14:13:35.627311Z", "last_modified_time": "2024-07-22T14:13:35.627329Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750149.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151787/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T14:13:35.608441Z", "last_modified_time": "2024-12-20T01:14:06.507204Z", "date_published": null, "start_time": "2024-11-14T09:45:00Z", "end_time": "2024-11-14T11:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn muut laulupajakerrat: <br>To 3.10. klo 10 ja 11.45 <br>To 14.11. klo 10 ja 11.45 <br>To 12.12. Klo 10 ja 11.45</p>", "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A3DDD4A8E4AF438C766B93B1AA223A06/Opi_suomea_laulaen", "sv": "http://www.stoa.fi/sv/evenemang/event/A3DDD4A8E4AF438C766B93B1AA223A06/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/A3DDD4A8E4AF438C766B93B1AA223A06/Learn_Finnish_by_Singing_" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64231/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64230", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151786, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T14:13:35.535695Z", "last_modified_time": "2024-07-22T14:13:35.535709Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750148.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151786/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T14:13:35.521236Z", "last_modified_time": "2024-12-20T01:14:06.416851Z", "date_published": null, "start_time": "2024-11-14T08:00:00Z", "end_time": "2024-11-14T09: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, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn muut laulupajakerrat: <br>To 3.10. klo 10 ja 11.45 <br>To 14.11. klo 10 ja 11.45 <br>To 12.12. Klo 10 ja 11.45</p>", "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/EA4111FDC08567F8B16F191367EE1500/Opi_suomea_laulaen", "sv": "http://www.stoa.fi/sv/evenemang/event/EA4111FDC08567F8B16F191367EE1500/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/EA4111FDC08567F8B16F191367EE1500/Learn_Finnish_by_Singing_" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64230/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63700", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151965, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T10:14:47.444115Z", "last_modified_time": "2024-07-30T10:14:47.444132Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752098.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151965/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-30T10:14:47.412834Z", "last_modified_time": "2024-12-20T01:14:06.327850Z", "date_published": null, "start_time": "2024-11-14", "end_time": "2024-12-19", "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, "description": { "fi": "<p>Performanssia ja eri medioita yhdistävä näyttely, jonka tarkoituksena on vapauttaa identiteettimme sosiaalisista normeista.</p><p>NoCore: Encaged on yhteiskunnallisesti vaikuttava hanke, joka antaa osallistujille ja katsojille mahdollisuuden tunnistaa sisällämme piilevät puolet ja vapauttaa ne. Tanssia käytetään ilmaisun kielenä, jolla muistutetaan meitä kaikista meitä rajoittavista sosiaalisista malleista. Se antaa kuitenkin myös mahdollisuuden rikkoa näitä malleja ja kehittää itseään normien, sääntöjen ja rajoitusten ulkopuolella.</p><p>NoCore on yhteisöllinen tanssiprojekti, joka käsittelee sukupuolirooleihin ja monikulttuurisuuteen liittyviä aiheita ja kokoaa yhteen ihmisiä, jotka haluavat jakaa ajatuksiaan siitä, että heidät on syrjäytetty seksuaalisen ja kulttuurisen monimuotoisuuden vuoksi.</p><p>Kuuden viikon kuluttua näyttelystä järjestämme kahdenkeskisiä työpajoja, joihin voivat osallistua ihmiset, jotka ovat kiinnostuneita luomaan omiin ajatuksiinsa ja tarinoihinsa perustuvan tanssisoolon (3–5 minuuttia) eli ”rituaalin”, jolla he voisivat vapauttaa sisimpäänsä loukkuun jääneitä puolia.</p><p>Soolot kuvataan ja kootaan jatkuvalla syötöllä näkyväksi videoseinäksi. Moninaisten tanssien avulla pystytään kasvattamaan tämän yhteisöllisen ”rituaalin” voimaa.</p><p>Osallistujia ohjataan etsimään omista tarinoistaan avainsanoja ja katkelmia, jotka kertovat siitä, mitä he ovat pitäneet sisällään. Nämä sanat tallennetaan ja niistä luodaan taustanauha heidän tanssilleen.</p><p>Huomio: Joissakin tämän videon kohtauksissa on alastomuutta.</p><p><b>Työpajojen kuvaus ja päivämäärät:</b><br>NoCore: Encaged on performanssia ja eri medioita yhdistävä näyttely, jonka tarkoituksena on vapauttaa identiteettimme sosiaalisista normeista.</p><p>Yksi näyttelyn installaatioista on näyttämö/häkki, jota käytetään kahdenkeskisissä työpajoissa.</p><p>Näyttelyn ideoinut taiteilija ja koreografi<b> Beniamino Borghi</b> opastaa osallistujia etsimään avainsanoja ja katkelmia omista tarinoistaan ja muuttamaan ne lyhyiksi tanssisooloiksi. Esitykset videoidaan ja näytetään videoseinällä.</p><p>Alla on lista päivämääristä ja kellonajoista, joina kahdenkeskiset työpajat ovat varattavissa (90 min):</p><p>Perjantai 15.11. klo 10–19<br>Lauantai 16.11. klo 10–19<br>Tiistai 19.11. klo 10–19<br>Lauantai 23.11. klo 10–19<br>Tiistai 26.11. klo 10–19<br>Perjantai 29.11. klo 10–19<br>Lauantai 30.11. klo 10–19<br>Tiistai 3.12. klo 10–19<br>Tiistaina 10.12. klo 10–19<br>Tiistai 17.12. klo 10–19</p><p>Saat lisätietoja ja voit varata työpajoja ottamalla yhteyttä osoitteeseen: tanssiartesaani@gmail.com / Beniamino Borghi</p><p>Kaikki näyttelyn kävijät voivat luoda näyttämöllä/häkissä oman rituaalisen tanssinsa ja tallentaa siitä videon, jonka voi julkaista sosiaalisessa mediassa tunnuksella #freefromsocialnorms.</p>", "sv": "<p>En performativ och intermedial utställning som syftar till att befria våra identiteter från sociala normer.</p><p>NoCore: Encaged är ett socialt påverkansprojekt som ger deltagare och åskådare möjlighet att erkänna dolda sidor inom oss och släppa dem fria. Dans används som ett uttrycksfullt språk för att befria oss från alla sociala mönster som håller oss tillbaka. Men dansen ger oss också en möjlighet att bryta dessa mönster och ägna oss åt en personlig utveckling utanför normer, regler och begränsningar.</p><p>NoCore är ett community-dansprojekt som tar upp ämnen som könsroller och mångkultur, och som samlar människor som vill dela med sig av tankar kring marginalisering på grund av sexuell och kulturell mångfald.</p><p>6 veckor in i utställningen kommer vi att arrangera personliga workshoppar för personer som är intresserade av att skapa en solodans (3–5 min.) utifrån egna tankar och historier: en ”ritual” som kan befria sidor som har varit fångna inuti.</p><p>Solodanserna kommer att filmas och samlas på en vägg med videoslingor. De många dansnumren kommer att göra ”communityritualen” ännu intensivare.</p><p>Deltagarna kommer att vägledas i att leta efter nyckelord och bitar av deras egna historier som berättar vad de håller inom sig. Dessa ord spelas in och används för att skapa ett soundtrack till deltagarnas danser.</p><p>Observera: Vissa scener i denna video innehåller nakenhet.</p><p><b>Förklaring av workshopparna och datum:</b><br>NoCore: Encaged är en performativ och intermedial utställning som syftar till att befria våra identiteter från sociala normer.</p><p>En installation är en Stage/Cage (”scen/bur”) som används för personliga workshoppar.</p><p>Beniamino Borghi, artisten och koreografen bakom utställningen, vägleder deltagarna i att leta efter nyckelord och bitar av deras egna historier och förvandla dem till korta dansnummer. Uppträdandena videofilmas och läggs upp på en videovägg.</p><p>Följande datum kan personliga workshoppar (90 min.) bokas:</p><p>Fredag 15.11 kl. 10–19<br>Lördag 16.11 kl. 10–19<br>Tisdag 19.11 kl. 10–19<br>Lördag 23.11 kl. 10–19<br>Tisdag 26.11 kl. 10–19<br>Fredag 29.11 kl. 10–19<br>Lördag 30.11 kl. 10–19<br>Tisdag 3.12 kl. 10–19<br>Tisdag 10.12 kl. 10–19<br>Tisdag 17.12 kl. 10–19</p><p>För mer information och bokning av workshoppar, kontakta<br>tanssiartesaani@gmail.com / Beniamino Borghi</p><p>Alla besökare kan använda Stage/Cage för att skapa egna uttrycksfulla och rituella danser, och videofilma och lägga upp dem på sociala medier med taggen #freefromsocialnorms.</p>", "en": "<p>Performative and intermedia exhibition for liberating our identities from social norms.</p><p>NoCore: Encaged is a social impacting project that gives the opportunity, to participants and viewers, to acknowledge the sides that are hidden inside us and let them free. Dance is used as an expressive language to recall all the social patterns that tighten us. But also, it gives the possibility to break those patterns and to engage in a personal development outside the norms, rules and constrictions.</p><p>NoCore is a community dance project that deals with topics of gender roles and multiculturalism and it gathers people who want to share thoughts about being marginalized for sexual and cultural diversity.</p><p>Within 6 weeks of exhibition we will organize one-to-one workshops for people who are interested in creating a dance solo (3–5 min long) based on their own thoughts and stories: a “ritual” that could liberate sides that have been trapped inside them.</p><p>The solos will be filmed and collected in a looped Video Wall. The multitude of dances will be able to raise up the intensity of this community “ritual”.</p><p>The participant will be guided in searching keywords and fragments of their own stories that tell what they have been restraining inside. Those words will be recorded and used in creating an instant soundtrack for their dances.</p><p>Please Note: Some scenes in this video contain nidity.</p><p><b>Explanation of the workshops and the dates:</b><br>NoCore: Encaged is a performative and intermedia exhibition for liberating our identities from social norms.</p><p>One installation is a Stage/Cage used for one-to-one workshops.</p><p>Beniamino Borghi, the artist and choreographer behind this exhibition, will guide the participants in searching keywords and fragments of their own stories and transform them into short dance solos. The performances are video recorded and inserted in a video wall.</p><p>Here are the possible dates to book one-to-one workshops (90 min):</p><p>Friday 15.11. at 10–19<br>Saturday 16.11. at 10–19<br>Tuesday 19.11. at 10–19<br>Saturday 23.11. at 10–19<br>Tuesday 26.11. at 10–19<br>Friday 29.11. at 10–19<br>Saturday 30.11. at 10–19<br>Tuesday 3.12. at 10–19<br>Tuesday 10.12. at 10–19<br>Tuesday 17.12. at 10–19</p><p>For more information and booking the workshops contact:<br>tanssiartesaani@gmail.com / Beniamino Borghi</p><p>Any visitor can use the Stage/Cage for their own expressive and ritual dance and record it in videos to post on social media with #freefromsocialnorms.</p>" }, "name": { "fi": "NoCore: Encaged – Tanssiartesaani", "sv": "NoCore: Encaged – En performativ utställning", "en": "NoCore: Encaged – Performative exhibition" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/EC6D365227ACDADDE2623722AC5DE9BA/NoCore_Encaged", "sv": "http://www.caisa.fi/sv/evenemang/event/EC6D365227ACDADDE2623722AC5DE9BA/NoCore_Encaged", "en": "http://www.caisa.fi/en/events/event/EC6D365227ACDADDE2623722AC5DE9BA/NoCore_Encaged" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Performanssia ja eri medioita yhdistävä näyttely, jonka tarkoituksena on vapauttaa identiteettimme sosiaalisista normeista.", "sv": "En performativ och intermedial utställning som syftar till att befria våra identiteter från sociala normer.", "en": "Performative and intermedia exhibition for liberating our identities from social norms." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63700/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64687", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152791, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-11T13:16:28.251487Z", "last_modified_time": "2024-10-11T13:16:28.251505Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759236.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152791/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-11T13:16:28.220558Z", "last_modified_time": "2024-12-20T01:14:06.130289Z", "date_published": null, "start_time": "2024-11-13T17: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, "description": { "fi": "<p>Luvassa afroamerikkalaisia helmiä ja Miles Davisin klassikoita.</p><p><b>NLO - The Nordic Latin Orchestra</b><br>NLO - The Nordic Latin Orchestra tulkitsee ja esittää heittäytyvällä asenteella latino- ja afroamerikkalaisen musiikin helmiä. Leikkisyys, rytmisyys ja vuorovaikutus ovat NLO:n esittämän musiikin ytimessä. Orkesteri tuo groovavan soundinsa sieluusi asti!</p><p>Kamilla Kujala - laulu<br>Siiri Toiviainen - saksofoni<br>Jerry Uusi-Mikkola - kitara<br>Margit Urantowka - piano<br>Olavi Miettinen - basso<br>Emilio Montaguti Jones - rummut <br>Joel Mäntyvaara - perkussiot</p><p><b>Miles Davis -tribuutti</b></p><p>PJK:n 2. vuosikurssin opiskelijoista koostuva sekstetti, joka keskittyy Miles Davisin esittämiin, modaalista kautta edeltäviin kappaleisiin.</p><p>Timo Tihtonen - rummut<br>Joel Wikström - basso<br>Elvis Rahka - piano<br>Lenni Seebeck - kitara<br>Rebecca Ekman - trumpetti <br>Waltteri Hirvonen - saksofoni</p><p><b>Aikataulu</b> <br>klo 19.00 - NLO<br>klo 20.00 - Miles Davis -tribuutti</p><p>Vapaa pääsy!</p>", "sv": "<p>På programmet afroamerikanska pärlor och klassiker från Miles Davis.</p><p><b>NLO – The Nordic Latin Orchestra</b><br>NLO – Nordic Latin Orchestra tolkar och spelar den latinamerikanska och afroamerikanska musikens pärlor med en orädd och nyfiken attityd. Lekfullhet, rytmer och interaktion utgör kärnan i NLO:s musik. Orkesterns grooviga sound når din själ!</p><p>Kamilla Kujala – sång<br>Siiri Toiviainen – saxofon<br>Jerry Uusi-Mikkola – gitarr<br>Margit Urantowka – piano<br>Olavi Miettinen – basgitarr<br>Emilio Montaguti Jones – trummor <br>Joel Mäntyvaara – perkussion</p><p><b>Tribut till Miles Davis</b></p><p>En sextett som består av andraårsstuderande vid PJK och fokuserar på Miles Davis låtar som föregår hans modalperiod.</p><p>Timo Tihtonen – trummor<br>Joel Wikström – basgitarr<br>Elvis Rahka – piano<br>Lenni Seebeck – gitarr<br>Rebecca Ekman – trumpet <br>Waltteri Hirvonen – saxofon</p><p><b>Tidsplan</b> <br>kl. 19.00 – NLO<br>kl. 20.00 – Tribut till Miles Davis</p><p>Fritt inträde</p>", "en": "<p>African American gems and classics by Miles Davis.</p><p><b>NLO – The Nordic Latin Orchestra</b><br>With a captivating attitude, NLO – The Nordic Latin Orchestra interprets and performs the gems of Latin and African American music. Playfulness, rhythm and interaction are at the heart of NLO’s music. The orchestra’s groovy sound will find its way to your soul!</p><p>Kamilla Kujala – vocals<br>Siiri Toiviainen – saxophone<br>Jerry Uusi-Mikkola – guitar<br>Margit Urantowka – piano<br>Olavi Miettinen – bass<br>Emilio Montaguti Jones – drums <br>Joel Mäntyvaara – percussion</p><p><b>Tribute to Miles Davis</b></p><p>A sextet of 2nd year students from the Pop & Jazz Conservatory focuses on modal songs by Miles Davis.</p><p>Timo Tihtonen – drums<br>Joel Wikström – bass<br>Elvis Rahka – piano<br>Lenni Seebeck – guitar<br>Rebecca Ekman – trumpet <br>Waltteri Hirvonen – saxophone</p><p><b>Schedule</b> <br>19:00 NLO<br>20:00 A tribute to Miles Davis</p><p>Free of charge</p>" }, "name": { "fi": "NLO – The Nordic Latin Orchestra ja Miles Davis -tribuutti – Pop & Jazz Konservatorion ammattiopiskelijat", "sv": "NLO – The Nordic Latin Orchestra och tribut till Miles Davis – Konserter med Pop & Jazz Konservatoriets yrkesstuderande", "en": "NLO – The Nordic Latin Orchestra and a tribute to Miles Davis – Concerts by students of the Pop & Jazz Conservatory" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/39A33122931CDA275DDC6D753C20F824/NLO_The_Nordic_Latin_Orchestra_ja_Miles_Davis_-tribuutti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/39A33122931CDA275DDC6D753C20F824/NLO_The_Nordic_Latin_Orchestra_och_tribut_till_Miles_Davis", "en": "http://www.malmitalo.fi/en/events/event/39A33122931CDA275DDC6D753C20F824/NLO_The_Nordic_Latin_Orchestra_and_a_tribute_to_Miles_Davis" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Luvassa afroamerikkalaisia helmiä ja Miles Davisin klassikoita.", "sv": "På programmet afroamerikanska pärlor och klassiker från Miles Davis.", "en": "African American gems and classics by Miles Davis." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64687/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64197", "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: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151706, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T13:13:34.879048Z", "last_modified_time": "2024-07-12T13:13:34.879063Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751736.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151706/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T13:13:34.860408Z", "last_modified_time": "2024-12-20T01:14:05.883089Z", "date_published": null, "start_time": "2024-11-13T16: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, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30.</p><p>Lämpimästi tervetuloa!</p><p>Syksyn kuorokerrat: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18–19.30.</p><p>Datum: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall.</p><p>Spring season: <br>Sept 11.9.<br>Sept 18.9.<br>Sept 25.9.<br>Oct 2.10.<br>Oct 9.10.<br>Oct 30.10.<br>Nov 6.11.<br>Nov 13.11.<br>Nov 27.11.</p><p>More info and registration: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/0F4E3E13789E416AF69E74A484D22A59/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/0F4E3E13789E416AF69E74A484D22A59/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/0F4E3E13789E416AF69E74A484D22A59/Stoa_Choir_" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64197/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64185", "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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-78/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151683, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-10T13:13:13.237680Z", "last_modified_time": "2024-07-10T13:13:13.237695Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749959.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151683/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-10T13:13:13.217045Z", "last_modified_time": "2024-12-20T01:14:05.786422Z", "date_published": null, "start_time": "2024-11-13T14:00:00Z", "end_time": "2024-11-13T16: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, "description": { "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p><b>Koristele kortti kirjoen</b></p><p>Tule kokeilemaan jotain uutta! Saat kirjoa postikorttiin kuvia tai tekstiä erivärisillä langoilla.</p><p>Ehkä innostut lähettämään perinteisen postikortin sukulaiselle tai ystävälle? Kortit sopivat myös mainiosti kirjanmerkiksi.</p><p>Tekniikka on piikikäs ja sopii yli 8-vuotiaille tai 5-vuotiaasta alkaen oman aikuisen kanssa.</p><p>Työpajan ohjaa Chloé Mahy-Hulkko.</p><p>Järjestämme eriteemaisia taidepajoja kerran kuussa Vuotalon aulassa. Taidepajat sopivat lapsille ja aikuisille. Työpajoja ohjaa Chloé Mahy-Hulkko.</p><p>Taidepajat ovat maksuttomia.</p><p><b>Syksyn 2024 avoimien taidepajojen teemat:</b></p><p>Ke 11.9. Siivekäs heijastin <br>Ke 9.10. Yllättävät veistokset <br>Ke 13.11. Koristele kortti kirjoen<br>Ke 11.12. Hassu himmeli</p>", "sv": "<p>Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.</p><p><b>Dekorera ett kort med broderi</b></p><p>Kom och pröva på något nytt! Du kan brodera bilder eller text på ett vykort med garn i olika färger.</p><p>Kanske blir du inspirerad att skicka det traditionella vykortet till en släkting eller vän? Korten passar också perfekt som bokmärken.</p><p>Tekniken utnyttjar nålar och passar för över 8-åriga barn eller från 5-åriga barn i sällskap av en vuxen.</p><p>Vi ordnar konstworkshoppar en gång i månaden i Nordhusets foajé. Konstworkshopparna passar för barn och vuxna. Workshopparna dras av Chloé Mahy-Hulkko.</p><p>Konstworkshopparna är avgiftsfria.</p><p><b>Teman för höstens 2024 öppna konstworkshoppar:</b></p><p>Ons 11.9. Bevingad reflex <br>Ons 9.10. Överraskande skulpturer <br>Ons 13.11. Dekorera ett kort med broderi<br>Ons 11.12. En skojig himmel</p>", "en": "<p>Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship.</p><p><b>Embroidered cards</b></p><p>Come and try something new! You can embroider pictures or text on a postcard with different-coloured threads.</p><p>Maybe you're looking forward to send a traditional postcard to a relative or friend? The cards are also great as bookmarks.</p><p>The technique is prickly and suitable for children over 8 years old, 5-year-olds can join with an adult.</p><p>We are holding various themed art workshops once a month in the Vuotalo lobby. These art workshops are suitable for children and adults. The workshops are led by Chloé Mahy-Hulkko.</p><p>Art workshops are free of charge.</p><p><b>Autumn 2024 open art workshops themes:</b></p><p>Wed 11 Sept Winged reflector <br>Wed 9 Oct Surprising sculptures <br>Wed 13 Nov Embroidered cards<br>Wed 11 Dec Hilarious himmelis</p>" }, "name": { "fi": "Luova hetki – avoin taidepaja – Koristele kortti kirjoen", "sv": "Kreativ stund – öppen konstworkshop – Dekorera ett kort med broderi", "en": "Creative Moment – Open Art Workshop – Embroidered cards" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/948F923B3ECE95B8A3C701AB336EDA31/Luova_hetki_avoin_taidepaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/948F923B3ECE95B8A3C701AB336EDA31/Kreativ_stund_oppen_konstworkshop", "en": "http://www.vuotalo.fi/en/events/event/948F923B3ECE95B8A3C701AB336EDA31/Creative_Moment_Open_Art_Workshop" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.", "sv": "Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.", "en": "Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64185/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64308", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151942, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-29T12:15:28.220694Z", "last_modified_time": "2024-07-29T12:15:28.220711Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753051.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151942/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-29T12:15:28.194199Z", "last_modified_time": "2024-12-20T01:14:05.645734Z", "date_published": null, "start_time": "2024-11-13T13:00:00Z", "end_time": "2024-11-13T14: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, "description": { "fi": "<p>Tässä jaksossa pohdimme suomalaisen, japanilaisen ja taiwanilaisen taiteen yhtäläisyyksiä ja eroja. Onko olemassa tekijöitä, jotka pysyvät samana paikasta riippumatta ja joista muusikoiden pitäisi olla tietoisia?</p><p>Onko olemassa tekijöitä, jotka auttavat siirtämään perinteen yhdestä paikasta toiselle puolelle maailmaa ja joita emme tiedä? Tutustu shamisenin taikaan ja mahtavaan shamisenin soittajaan ja ihmiseen.</p><p>Zuiko on Taiwanista kotoisin oleva Tsugaru-shamisenin soittaja, joka aloitti shamisenin opiskelun vuonna 2015. Hän on erikoistunut japanilaisen Tsugaru-shamisenin soittoon ja yhdistää musiikissaan japanilaista perinteistä folkia, poppia, rockia ja omia sävellyksiään. Zuiko opiskelee tällä hetkellä Sibelius-Akatemian Global Music -koulutusohjelmassa, ja hänen tavoitteenaan on integroida musiikillisia elementtejä eri puolilta maailmaa ja kehittää uutta shamisen-musiikkityyliä.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "sv": "<p>Idag utforskar vi likheter och skillnader mellan konst i Finland, Japan och Taiwan. Finns det internationella beständigheter som musiker bör vara medvetna om?</p><p>Finns det en hemlighet bakom en framgångsrik förflyttning av en tradition halvvägs runt världen? Upptäck det magiska instrumentet shamisen och en fantastisk shamisenspelare och människa.</p><p>Zuiko är en tsugarushamisen-spelare från Taiwan. Han började spela shamisen 2015 och specialiserade sig på användningen av Japans tsugarushamisen. Han kombinerar inslag av japansk traditionell folkmusik, pop, rock och originalkompositioner. Zuiko studerar för tillfället på fakulteten för världsmusik på Sibelius-Akademin i Finland, och har som mål att införliva musikaliska element från hela världen och utveckla en ny typ av Shamisen-musik.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "en": "<p>Today we explore the similarities and Differences in art between Finland, Japan and Taiwan. Are there any international constants that musicians should be aware of?</p><p>Are there any secrets behind the successful relocation of a tradition halfway around the world? Discover the magic of Shamisen and a wonderful shamisen player and human being.</p><p>Zuiko is Tsugarushamisen Player from Taiwan, who began studying Shamisen in 2015, specializing in the use of Japan's Tsugaru Shamisen, and combines elements of Japanese traditional folk, pop, rock, and original compositions. Zuiko is currently enrolled in the Global Music department at the Sibelius Academy in Finland, aiming to integrate musical elements from around the world and develop a new style of Shamisen music.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>" }, "name": { "fi": "HOW radio: Global Club Nights – Ni Jui Hsin (Zuiko)", "sv": "HOW radio: Global Club Nights – Ni Jui Hsin (Zuiko)", "en": "HOW radio: Global Club Nights – Ni Jui Hsin (Zuiko)" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C33D52CACA373BFE987B6147FC542776/HOW_radio_Global_Club_Nights_", "sv": "http://www.caisa.fi/sv/evenemang/event/C33D52CACA373BFE987B6147FC542776/HOW_radio_Global_Club_Nights_", "en": "http://www.caisa.fi/en/events/event/C33D52CACA373BFE987B6147FC542776/HOW_radio_Global_Club_Nights_" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Tässä jaksossa pohdimme suomalaisen, japanilaisen ja taiwanilaisen taiteen yhtäläisyyksiä ja eroja. Onko olemassa tekijöitä, jotka pysyvät samana paikasta riippumatta ja joista muusikoiden pitäisi olla tietoisia?", "sv": "Idag utforskar vi likheter och skillnader mellan konst i Finland, Japan och Taiwan. Finns det internationella beständigheter som musiker bör vara medvetna om?", "en": "Today we explore the similarities and Differences in art between Finland, Japan and Taiwan. Are there any international constants that musicians should be aware of?" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64308/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64166", "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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T14:13:22.020948Z", "last_modified_time": "2024-07-03T14:13:22.020972Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751993.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T14:13:22.000208Z", "last_modified_time": "2024-12-20T01:14:05.554871Z", "date_published": null, "start_time": "2024-11-13T11:30:00Z", "end_time": "2024-11-13T12: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, "description": { "fi": "<p>Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.</p><p>Rakkaimpien yhteislaulujen soidessa kaikki saavat laulamisen lomassa piirtää omia kuviaan tai kirjoittaa vaikka omia musiikkimuistojaan. Kokonaisuudesta syntyy monitaiteellinen elämys, johon saa osallistua laulaen, piirtäen, kuunnellen ja katsellen. Hetket rakennetaan joka kerta eri teeman ympärille lauluvalikoiman ja piirrosten aiheiden avulla.</p><p>Esitystä voi seurata maksutta kulttuuripalvelu Lämpiön kanavalla https://lampio.fi/</p><p>Tallenne esityksestä on katsottavissa kaksi viikkoa esityksen jälkeen.</p><p><b>Syyskauden lauluteemat:</b></p><p>18.9. Kerro se kukkasin!<br>16.10. Se hetki!<br>13.11. Juhlatunnelmaa<br>11.12. Meidän joulu</p><p>Kesto n. 30 min</p><p>Vapaa pääsy</p>", "sv": "<p>Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.</p><p>Medan de mest älskade allsångslåtarna spelas kan även deltagarna rita sina egna bilder eller kanske skriva ner sina egna musikminnen. Av helheten uppstår en mångkonstnärlig upplevelse som man kan delta i genom att sjunga, rita eller lyssna och titta. Med hjälp av sångurvalet och bilderna byggs stunderna varje gång upp runt ett visst tema.</p><p>Du kan följa uppträdandet kostnadsfritt via kulturtjänsten Lämpiös kanal https://lampio.fi/ och en inspelning av uppträdandet finns att se i två veckor därefter.</p>", "en": "<p>Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images.</p><p>While the most beloved sing-along songs are playing, even the singers can draw or write down their own pictures and musical memories. The performance creates a multi-artistic experience which you can take part in by singing, drawing, or listening and watching. Each moment is built around a different theme with the help of a selection of songs and drawing themes.</p><p>The performance can be followed free of charge on cultural service Lämpiö’s channel at https://lampio.fi/, and a recording of the performance will be available two weeks after the performance.</p>" }, "name": { "fi": "Hyvän tuulen hetket – iltapäiväohjelmaa ikäihmisille", "sv": "Stunder med god stämning", "en": "Moments of happiness" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/910B15EEFA3B9D548875941345F19122/Hyvan_tuulen_hetket", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/910B15EEFA3B9D548875941345F19122/Stunder_med_god_stamning", "en": "http://www.kanneltalo.fi/en/events/event/910B15EEFA3B9D548875941345F19122/Moments_of_happiness" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.", "sv": "Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.", "en": "Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64166/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64484", "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: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:669/?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:p1278/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152480, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T13:14:24.378509Z", "last_modified_time": "2024-09-19T13:14:24.378525Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757543.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152480/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T13:14:24.343808Z", "last_modified_time": "2024-12-20T01:14:05.468463Z", "date_published": null, "start_time": "2024-11-13T10:00:00Z", "end_time": "2024-11-13T11: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, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Rébecca Chaillon", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Rébecca Chaillon", "en": "Moving in November: Soup Talks – Talk with Rébecca Chaillon" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D677DE667628E0784D42B7EB01A621C6/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/D677DE667628E0784D42B7EB01A621C6/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/D677DE667628E0784D42B7EB01A621C6/Moving_in_November_Soup_Talks" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64484/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64584", "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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152441, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-17T10:14:06.404253Z", "last_modified_time": "2024-09-17T10:14:06.404267Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758082.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152441/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-17T10:14:06.390935Z", "last_modified_time": "2024-12-20T01:14:05.379301Z", "date_published": null, "start_time": "2024-11-13T09:00:00Z", "end_time": "2024-11-13T11: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, "description": { "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>", "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>", "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>" }, "name": { "fi": "Keskiviikon lounasjamit", "sv": "Jams till onsdagslunchen", "en": "Wednesday lunch jams" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/90C113575AFF2470AB74B7BBC16BCEE7/Keskiviikon_lounasjamit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/90C113575AFF2470AB74B7BBC16BCEE7/Jams_till_onsdagslunchen", "en": "http://www.kanneltalo.fi/en/events/event/90C113575AFF2470AB74B7BBC16BCEE7/Wednesday_lunch_jams" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.", "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.", "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64521", "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:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152304, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-05T11:13:59.423241Z", "last_modified_time": "2024-09-05T11:13:59.423254Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749841.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152304/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-09-05T11:13:59.404679Z", "last_modified_time": "2024-12-20T01:14:05.292492Z", "date_published": null, "start_time": "2024-11-13T08:00:00Z", "end_time": "2024-11-13T10: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, "description": { "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</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>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>", "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</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>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>", "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema 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>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>" }, "name": { "fi": "Naperokino", "sv": "Knattebion", "en": "Toddler cinema" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5EA6ACEF5AD52E6D86893E4C9CABFE1D/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/5EA6ACEF5AD52E6D86893E4C9CABFE1D/Knattebion", "en": "http://www.annantalo.fi/en/events/event/5EA6ACEF5AD52E6D86893E4C9CABFE1D/Toddler_cinema" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64521/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64425", "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:205/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152189, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-22T12:14:55.743340Z", "last_modified_time": "2024-08-22T12:14:55.743356Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757126.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152189/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-08-22T12:14:55.711854Z", "last_modified_time": "2024-12-20T01:14:05.206182Z", "date_published": null, "start_time": "2024-11-13T07: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, "description": { "fi": "<p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Syksyn Skidikinossa Myyrä lähtee etsimään lääkettä ystävälleen. Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa riemukkaita hetkiä kaikenikäisille.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Kieli: Elokuvassa on musiikkisäestys, ei puhetta. <br>Kesto: n. 30 min<br>Ikäraja: S</p><p>Esitykset <br>klo 9:00-9:30<br>ja<br>klo 10:30–11</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi</p>", "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus</p><p>Längd: ca. 30 min<br>Språk: inget språk, musik<br>Anmälan för grupper på kultus.fi<br>Mera info: salla.fornaro@hel.fi</p>", "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus</p><p>Duration: 30 min<br>Language: no language, only music<br>Registration for daycare groups at kultus.fi<br>More information: salla.fornaro@hel.fi</p>" }, "name": { "fi": "Skidikino: Myyrä lääkettä etsimässä", "sv": "Skidikino", "en": "Skidikino" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A0E00689A4B9C32A73D71D9783595421/Skidikino_Myyra_laaketta_etsimassa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A0E00689A4B9C32A73D71D9783595421/Skidikino", "en": "http://www.vuotalo.fi/en/events/event/A0E00689A4B9C32A73D71D9783595421/Skidikino" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64425/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63818", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151447, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-13T10:13:04.848927Z", "last_modified_time": "2024-06-13T10:13:04.848943Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753139.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151447/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-13T10:13:04.834628Z", "last_modified_time": "2024-12-20T01:14:04.635095Z", "date_published": null, "start_time": "2024-11-12T15: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, "description": { "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.</p><p>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti:</p><p>Ti 10.9. klo 17–18<br>Ti 8.10. klo 17–18<br>Ti 12.11. klo 17–18<br>Ti 10.12. klo 17–18</p><p>Tervetuloa mukaan!<br>Vapaa pääsy</p>", "sv": "<p>De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!</p><p>Här får alla sjunga härliga favoritlåtar av hjärtats lust under ledning av Jukka Okkonen och Pauli Kainulainen.</p><p>Allsången ordnas i den lilla salen i Malms kulturhus en gång i månaden på tisdagar.</p><p>Välkommen med!<br>Fritt inträde</p>", "en": "<p>The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to wonderful classics.</p><p>Sing-along sessions are held in the small hall of Malmitalo once a month on Tuesdays.</p><p>Welcome!<br>Free admission</p>" }, "name": { "fi": "Yhteislaulut", "sv": "Yhteislaulut", "en": "Yhteislaulut" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/685C5F3E004CB377794F9B6AB54F4690/Yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/685C5F3E004CB377794F9B6AB54F4690/Yhteislaulut", "en": "http://www.malmitalo.fi/en/events/event/685C5F3E004CB377794F9B6AB54F4690/Yhteislaulut" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!", "sv": "De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!", "en": "The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63818/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64896", "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:288/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152949, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-05T12:13:58.887513Z", "last_modified_time": "2024-11-05T12:13:58.887528Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761438.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152949/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-05T12:13:58.871285Z", "last_modified_time": "2024-12-20T01:14:04.493440Z", "date_published": null, "start_time": "2024-11-12T10:00:00Z", "end_time": "2024-11-12T13: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, "description": { "fi": "<p>Tervetuloa luovaan koruvalmistusworkshopiin Stoan kulttuurikeskukseen!<br> <br>Kutsumme sinut oppimaan tekemään yksinkertaisen mutta ainutlaatuisen choker-kaulakorun käyttäen luonnonkiviä, erilaisia helmiä ja korunosia. Yhdessä luomme korun, joka heijastaa persoonallisuuttasi ja tyyliäsi. Tämä on upea tilaisuus kehittää luovuutta, rentoutua ja tavata uusia ihmisiä! Työpaja on venäjänkielinen.<br> <br>Työpajaa järjestetään kolmena eri päivänä. Voit ilmoittautua yhdelle seuraavista päivistä:<br>Su 10.11, klo 12:00–15:00<br>Ti 12.11, klo 12:00–15:00<br>La 23.11, klo 14:00–17:00<br>Työpaja on maksuton, ja osallistujamäärä on rajoitettu 10 henkilöön per työpaja.<br> <br>Ilmoittautuminen sähköpostitse – ilmoitathan samalla, mihin päivään haluat osallistua: maria.bolshedonova@gmail.com.<br> <br>Työpajan vetäjästä:<br>Maria Bolshedonova on helsinkiläinen suunnittelija, jolla on laaja kokemus tekstiili- ja korusuunnittelusta. Hän järjestää luovia työpajoja ja kehittää omaa brändiään, Wild Fern Design.</p>", "ru": "<p>Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!</p><p>Приглашаем вас на трехчасовой мастер-класс, где вы научитесь создавать простой, но уникальный чокер, используя натуральные камни, различные бусины и фурнитуру. Вместе мы создадим украшение, которое отразит вашу индивидуальность и стиль. Это прекрасная возможность проявить творческий потенциал, расслабиться и найти новые знакомства!<br> <br>Мастер-класс проводится в три разных дня. Вы можете записаться на один из следующих дней:<br>Вс, 10.11, с 12:00 до 15:00<br>Вт, 12.11, с 12:00 до 15:00<br>Сб, 23.11, с 14:00 до 17:00<br> <br>Участие в мастер-классе бесплатно, количество мест ограничено — максимум 10 участников на каждую сессию.<br> <br>Для регистрации, пожалуйста, отправьте письмо на электронную почту и укажите дату, на которую хотите записаться: maria.bolshedonova@gmail.com<br> <br>О ведущей:<br>Мария Большедонова — дизайнер из Хельсинки с большим опытом в области текстильного и ювелирного дизайна. Она проводит творческие мастер-классы и развивает свой бренд Wild Fern Design.</p>" }, "name": { "fi": "Venäjänkielinen korutyöpaja", "en": "Russian-language jewelry workshop" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/47E0CE8A10A5398D6190A41599E39C57/Venajankielinen_korutyopaja", "en": "http://www.stoa.fi/en/events/event/47E0CE8A10A5398D6190A41599E39C57/Russian-language_jewelry_workshop" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "ru": "Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64896/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64483", "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: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:669/?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:p1278/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152479, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T11:14:26.214620Z", "last_modified_time": "2024-09-19T11:14:26.214634Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757541.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152479/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T11:14:26.199289Z", "last_modified_time": "2024-12-20T01:14:04.407575Z", "date_published": null, "start_time": "2024-11-12T10:00:00Z", "end_time": "2024-11-12T11: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, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Stina Nyberg", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Stina Nyberg", "en": "Moving in November: Soup Talks – Talk with Stina Nyberg" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C6E61717CD798240B740D7D69787DE14/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/C6E61717CD798240B740D7D69787DE14/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/C6E61717CD798240B740D7D69787DE14/Moving_in_November_Soup_Talks" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63688", "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:104/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151919, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T08:14:34.294892Z", "last_modified_time": "2024-07-26T08:14:34.294911Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752034.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151919/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T08:14:34.269790Z", "last_modified_time": "2024-12-20T01:14:04.211611Z", "date_published": null, "start_time": "2024-11-11T16:00:00Z", "end_time": "2024-11-11T17: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, "description": { "fi": "<p>Pasilan Myrkky -dekkarisarjallaan suosiota niittänyt Kale Puonti saapuu Kanneltalon kirjailijavieraaksi.</p><p>Haastattelijana kirjailija ja toimittaja Esa Mäkijärvi.</p><p>Kale Puonti (s. 1962) työskenteli yli 30 vuotta Helsingissä huumepoliisina ja järjestäytyneen rikollisuuden tutkinnassa. Hän on nähnyt aitiopaikalta kansainvälisen huumerikollisuuden rantautumisen Suomeen ja ollut mukana monissa suurta julkisuutta saaneissa jutuissa. Kale Puonti on noussut lukijoiden suosikiksi vakuuttavan realistisella Pasilan Myrkky -dekkarisarjallaan, jonka viides osa Fadi sai Suomen dekkariseuran Vuoden johtolanka -palkinnon 2023. Pasilan Myrkyn kuudes osa Joni ilmestyi alkuvuodesta 2024. Sarjan neljästä ensimmäisestä on myyty tv- ja elokuvaoikeudet.</p><p>Puonti tunnetaan myös tietokirjoistaan, kuten Kokaiinikeilapallo ja muita huumekytän tapauksia sekä Satu – Alamaailman rautarouva, joka on käännetty ruotsiksi, tanskaksi ja norjaksi. Lisäksi Puonti on tuttu katsojille MTV3:n Rikospaikka-ohjelman vakiokasvona ja kuuntelijoille podcastin tekijänä. Immun ja Kalen rötöskatsaus on saavuttanut jo 300 000 kuuntelun rajan, ja suositusta Ammattina rikos -podcastista on tehty kolme tuotantokautta.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.</p>", "sv": "<p>Författaren Kale Puonti, som blev välkänd genom sin deckarserie Pasilan Myrkky, besöker Gamlasgården.</p><p>Författaren och journalisten Esa Mäkijärvi fungerar som intervjuare.</p><p>I över 30 år arbetade Kale Puonti (f. 1962) som narkotikapolis och med utredning av organiserad brottslighet i Helsingfors. Han har följt med den internationella narkotikaindustrins ankomst till Finland på första parkett, och har varit med om flera mycket uppmärksammade fall. Kale Puonti har blivit en läsarfavorit med sin övertygande realistiska deckarserie Pasilan Myrkky. Seriens femte del Fadi belönades med föreningen Suomen dekkariseuras pris Vuoden johtolanka 2023. Den sjätte delen av Pasilan Myrkky, Joni, utkom i början av 2024. TV- och filmrättigheterna till de fyra första delarna i serien har sålts.</p><p>Puonti är också känd för sina faktaböcker, såsom Kokaiinikeilapallo ja muita huumekytän tapauksia och Satu – Undre världens järnlady, som har översatts till svenska, danska och norska. Puonti är också bekant för TV-tittare som en återkommande gäst i MTV3:s program Rikospaikka och för podcast-lyssnare. Podcasten Immun ja Kalen rötöskatsaus har redan nått 300 000 lyssnare, och tre säsonger av den populära podcasten Ammattina rikos har producerats.</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.</p>", "en": "<p>Kale Puonti, who gained popularity with his Pasilan Myrkky series, makes an appearance at Kanneltalo.</p><p>The interviewer is author and journalist Esa Mäkijärvi.</p><p>Kale Puonti (b. 1962) worked for the Helsinki Police as a narcotics and organised crime investigator for more than 30 years. He has seen the landing of international drug crime in Finland and was involved in many high-profile cases. Kale Puonti has become a reader favourite with his convincingly realistic Pasilan Myrkky detective series, the fifth part of which, Fadi, received the Finnish Detective Novel Association's Lead of the Year award in 2023. The sixth part of Pasilan Myrkky, Joni, was released in early 2024. TV and film rights have been sold for the first four books of the series.</p><p>Puonti is also known for his non-fiction books, such as Kokaiinikeilapallo and other drug cop cases, as well as Satu – Alamaailman rautarouva, which has been translated into Swedish, Danish and Norwegian. In addition, Puonti is familiar to viewers as a standard face of MTV3's Rikospaikka programme and to listeners as a podcaster. Immun ja Kalen rötöskatsaus has already found 300,000 listens, and there are already three seasons of the popular Ammattina rikos podcast.</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.</p>" }, "name": { "fi": "Kirjailijavieraana Kale Puonti – Maksuttomat maanantait", "sv": "Gästförfattare Kale Puonti – Avgiftsfria måndagar", "en": "Author guest Kale Puonti – Free Mondays" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/89CAFFD4F8B2C2F1B431A8A6CD4166B5/Kirjailijavieraana_Kale_Puonti", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/89CAFFD4F8B2C2F1B431A8A6CD4166B5/Gastforfattare_Kale_Puonti", "en": "http://www.kanneltalo.fi/en/events/event/89CAFFD4F8B2C2F1B431A8A6CD4166B5/Author_guest_Kale_Puonti" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Pasilan Myrkky -dekkarisarjallaan suosiota niittänyt Kale Puonti saapuu Kanneltalon kirjailijavieraaksi.", "sv": "Författaren Kale Puonti, som blev välkänd genom sin deckarserie Pasilan Myrkky, besöker Gamlasgården.", "en": "Kale Puonti, who gained popularity with his Pasilan Myrkky series, makes an appearance at Kanneltalo." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63688/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64482", "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: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:669/?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:p1278/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T11:14:26.000178Z", "last_modified_time": "2024-09-19T11:14:26.000205Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757539.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152478/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T11:14:25.966237Z", "last_modified_time": "2024-12-20T01:14:04.113064Z", "date_published": null, "start_time": "2024-11-11T10:00:00Z", "end_time": "2024-11-11T11: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, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Tiziano Cruz", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Tiziano Cruz", "en": "Moving in November: Soup Talks – Talk with Tiziano Cruz" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DAC70E9187D9461FB862C8E19D6B0186/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/DAC70E9187D9461FB862C8E19D6B0186/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/DAC70E9187D9461FB862C8E19D6B0186/Moving_in_November_Soup_Talks" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64482/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64621", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152608, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-25T10:15:35.300218Z", "last_modified_time": "2024-09-25T10:15:35.300236Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758433.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152608/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T10:15:35.277578Z", "last_modified_time": "2024-12-20T01:14:04.025608Z", "date_published": null, "start_time": "2024-11-11T09: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, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 8 lasta ja 8 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 8 barn och 8 vuxna.</p><p>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11. https://link.webropol.com/ep/muskari5</p>" }, "name": { "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille", "sv": "Musikaliskt konstäventyr – för 1–2-åringar", "en": "Musical Art Adventure – for 1–2-year-olds" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/407E08F1118C1B070E0BE3199B0A2716/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/407E08F1118C1B070E0BE3199B0A2716/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/407E08F1118C1B070E0BE3199B0A2716/Musical_Art_Adventure" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64621/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24655, "next": "