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=238
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=239", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=237" }, "data": [ { "id": "kulke:64850", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T15:14:41.310534Z", "last_modified_time": "2024-12-03T15:14:41.310551Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760486.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153217/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-03T15:14:41.287552Z", "last_modified_time": "2024-12-20T01:14:36.304552Z", "date_published": null, "start_time": "2025-02-05T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "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!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/258477CE6AB28BC99EDCAE20217DAB04/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/258477CE6AB28BC99EDCAE20217DAB04/Stoas_kor", "en": "http://www.stoa.fi/en/events/event/258477CE6AB28BC99EDCAE20217DAB04/Stoa_Choir" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "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. <br>Lämpimästi tervetuloa! <br> <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Kevään 2025 kuorokerrat: <br>15.1., 22.1., 29.1., 5.2.,12.2., 5.3., 12.3., 26.3., 2.4.</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. <br> <br>Varmt välkommen! <br> <br>På onsdagar kl. 18–19.30. <br> <br>Datum: <br>15.1.<br>22.1.<br>29.1.<br>5.2.<br>12.2.<br>5.3.<br>12.3.<br>26.3.<br>2.4.<br> <br>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. <br> <br>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall. <br> <br>Spring season: <br>15.1.<br>22.1.<br>29.1.<br>5.2.<br>12.2.<br>5.3.<br>12.3.<br>26.3.<br>2.4.</p><p>Ask for more information and sign up: sanna.nuutinen@hel.fi</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64850/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64849", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T15:14:40.701062Z", "last_modified_time": "2024-12-03T15:14:40.701079Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760484.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-03T15:14:40.672412Z", "last_modified_time": "2024-12-20T01:14:34.297665Z", "date_published": null, "start_time": "2025-01-29T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "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!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A6B38E428C5D89A0885307784B4E86DE/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/A6B38E428C5D89A0885307784B4E86DE/Stoas_kor", "en": "http://www.stoa.fi/en/events/event/A6B38E428C5D89A0885307784B4E86DE/Stoa_Choir" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "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. <br>Lämpimästi tervetuloa! <br> <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Kevään 2025 kuorokerrat: <br>15.1., 22.1., 29.1., 5.2.,12.2., 5.3., 12.3., 26.3., 2.4.</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. <br> <br>Varmt välkommen! <br> <br>På onsdagar kl. 18–19.30. <br> <br>Datum: <br>15.1.<br>22.1.<br>29.1.<br>5.2.<br>12.2.<br>5.3.<br>12.3.<br>26.3.<br>2.4.<br> <br>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. <br> <br>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall. <br> <br>Spring season: <br>15.1.<br>22.1.<br>29.1.<br>5.2.<br>12.2.<br>5.3.<br>12.3.<br>26.3.<br>2.4.</p><p>Ask for more information and sign up: sanna.nuutinen@hel.fi</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64849/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65010", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2433/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153368, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T13:14:09.286254Z", "last_modified_time": "2024-12-10T13:14:09.286270Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763493.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153368/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2024-12-10T13:14:09.256074Z", "last_modified_time": "2024-12-20T01:14:33.756709Z", "date_published": null, "start_time": "2025-01-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7167D6F9CB41EAAAAC28170314378BDA/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7167D6F9CB41EAAAAC28170314378BDA/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/7167D6F9CB41EAAAAC28170314378BDA/Let_us_sing_" }, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 tunti<br>Vapaa pääsy</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65010/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65084", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153485, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T12:14:44.034684Z", "last_modified_time": "2024-12-18T12:14:44.034700Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763835.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153485/?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-12-18T12:14:44.008718Z", "last_modified_time": "2024-12-20T01:14:32.415157Z", "date_published": null, "start_time": "2025-01-24T08:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en halv timmes långa kortfilmstunder för över 3-åringar. Passar för daghemsgrupper och barn i hemvård under skolåldern tillsammans med en vuxen.", "en": "Skidikino events are 30-minute short film events for children over the age of three. Suitable for daycare groups and preschool-aged children in home care together with an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3DE08D5BE525162BAB2A1A7EA30544E3/Skidikino_Professori_Balthazar", "sv": "http://www.stoa.fi/sv/evenemang/event/3DE08D5BE525162BAB2A1A7EA30544E3/Skidikino_Professor_Balthazar", "en": "http://www.stoa.fi/en/events/event/3DE08D5BE525162BAB2A1A7EA30544E3/Skidikino_Professor_Balthazar" }, "name": { "fi": "Skidikino: Professori Balthazar – pienten lyhytelokuvahetki", "sv": "Skidikino: Professor Balthazar", "en": "Skidikino: Professor Balthazar" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä seurataan Professori Balthazarin seikkailuja. Klassikkoanimaatio kertoo lempeästä ja nokkelasta professori Balthazarista, joka keksii ihmekoneensa avulla ratkaisun kaikkiin pulmiin. Balthazar opettaa esimerkillään kuinka mielikuvituksella ja luovuudella ratkaistaan hankalatkin tilanteet. Kroatiassa vuosina 1967-1974 tuotettu animaatiosarja on uudistettu vuonna 2007.<br> <br>Ikäsuositus: 3–6-vuotiaille <br>Paikka: musiikkisali <br>Kesto n. 35–40 min <br>Kieli: sanaton tai suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 9.1. klo 10 alkaen.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan taidekasvatussivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p>", "sv": "<p>Skidikino är en halv timmes långa kortfilmstunder för över 3-åringar. Passar för daghemsgrupper och barn i hemvård under skolåldern tillsammans med en vuxen.</p><p>I den klassiska kroatiska animerade serien får vi följa den charmerande professor Balthazars äventyr, där han löser problem med hjälp av sin fantasi.</p><p>Åldersgräns: 3–6 år<br>Längd: 35–45 min<br>Språk: ordlös eller finska</p><p>Fri entré, anmälan obligatorisk för grupper: www.kultus.fi 9.1. från kl. 10.</p>", "en": "<p>Skidikino events are 30-minute short film events for children over the age of three. Suitable for daycare groups and preschool-aged children in home care together with an adult.</p><p>This delightful Croatian classic animation features Professor Balthazar who solves problems using his imagination.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s arts education website.The theme of the illustrated material is going to the cinema.</p><p>Age limit: 3-6 years old<br>Duration: 35-45 min<br>Language: nonverbal or Finnish</p><p>Free admission, registration mandatory for groups at www.kultus.fi January 9th, starting at 10 a.m.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s arts education website.The theme of the illustrated material is going to the cinema.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65084/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65083", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153484, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T12:14:43.844294Z", "last_modified_time": "2024-12-18T12:14:43.844321Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763834.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153484/?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-12-18T12:14:43.789726Z", "last_modified_time": "2024-12-20T01:14:32.324627Z", "date_published": null, "start_time": "2025-01-24T07:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en halv timmes långa kortfilmstunder för över 3-åringar. Passar för daghemsgrupper och barn i hemvård under skolåldern tillsammans med en vuxen.", "en": "Skidikino events are 30-minute short film events for children over the age of three. Suitable for daycare groups and preschool-aged children in home care together with an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E62D4DC35F1BEB67343F98390F54C20E/Skidikino_Professori_Balthazar", "sv": "http://www.stoa.fi/sv/evenemang/event/E62D4DC35F1BEB67343F98390F54C20E/Skidikino_Professor_Balthazar", "en": "http://www.stoa.fi/en/events/event/E62D4DC35F1BEB67343F98390F54C20E/Skidikino_Professor_Balthazar" }, "name": { "fi": "Skidikino: Professori Balthazar – pienten lyhytelokuvahetki", "sv": "Skidikino: Professor Balthazar", "en": "Skidikino: Professor Balthazar" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä seurataan Professori Balthazarin seikkailuja. Klassikkoanimaatio kertoo lempeästä ja nokkelasta professori Balthazarista, joka keksii ihmekoneensa avulla ratkaisun kaikkiin pulmiin. Balthazar opettaa esimerkillään kuinka mielikuvituksella ja luovuudella ratkaistaan hankalatkin tilanteet. Kroatiassa vuosina 1967-1974 tuotettu animaatiosarja on uudistettu vuonna 2007.<br> <br>Ikäsuositus: 3–6-vuotiaille <br>Paikka: musiikkisali <br>Kesto n. 35–40 min <br>Kieli: sanaton tai suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 9.1. klo 10 alkaen.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan taidekasvatussivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p>", "sv": "<p>Skidikino är en halv timmes långa kortfilmstunder för över 3-åringar. Passar för daghemsgrupper och barn i hemvård under skolåldern tillsammans med en vuxen.</p><p>I den klassiska kroatiska animerade serien får vi följa den charmerande professor Balthazars äventyr, där han löser problem med hjälp av sin fantasi.</p><p>Åldersgräns: 3–6 år<br>Längd: 35–45 min<br>Språk: ordlös eller finska</p><p>Fri entré, anmälan obligatorisk för grupper: www.kultus.fi 9.1. från kl. 10.</p>", "en": "<p>Skidikino events are 30-minute short film events for children over the age of three. Suitable for daycare groups and preschool-aged children in home care together with an adult.</p><p>This delightful Croatian classic animation features Professor Balthazar who solves problems using his imagination.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s arts education website.The theme of the illustrated material is going to the cinema.</p><p>Age limit: 3-6 years old<br>Duration: 35-45 min<br>Language: nonverbal or Finnish</p><p>Free admission, registration mandatory for groups at www.kultus.fi January 9th, starting at 10 a.m.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s arts education website.The theme of the illustrated material is going to the cinema.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64848", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153215, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T15:14:39.814265Z", "last_modified_time": "2024-12-03T15:14:39.814284Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760482.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153215/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-03T15:14:39.789623Z", "last_modified_time": "2024-12-20T01:14:31.789506Z", "date_published": null, "start_time": "2025-01-22T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "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!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AD5E155F13099165F31AE08EE99C4A6E/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/AD5E155F13099165F31AE08EE99C4A6E/Stoas_kor", "en": "http://www.stoa.fi/en/events/event/AD5E155F13099165F31AE08EE99C4A6E/Stoa_Choir" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "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. <br>Lämpimästi tervetuloa! <br> <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Kevään 2025 kuorokerrat: <br>15.1., 22.1., 29.1., 5.2.,12.2., 5.3., 12.3., 26.3., 2.4.</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. <br> <br>Varmt välkommen! <br> <br>På onsdagar kl. 18–19.30. <br> <br>Datum: <br>15.1.<br>22.1.<br>29.1.<br>5.2.<br>12.2.<br>5.3.<br>12.3.<br>26.3.<br>2.4.<br> <br>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. <br> <br>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall. <br> <br>Spring season: <br>15.1.<br>22.1.<br>29.1.<br>5.2.<br>12.2.<br>5.3.<br>12.3.<br>26.3.<br>2.4.</p><p>Ask for more information and sign up: sanna.nuutinen@hel.fi</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64848/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65244", "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:205/?format=api" }, { "@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: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/yso:p1235/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153418, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T14:14:23.219388Z", "last_modified_time": "2024-12-12T14:14:23.219406Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760842.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153418/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T14:14:23.164168Z", "last_modified_time": "2024-12-20T01:14:31.522398Z", "date_published": null, "start_time": "2025-01-22T13:00:00Z", "end_time": "2025-01-22T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Portugalin Portossa syntynyt ja kasvanut João Luís aloitti taiteellisen tutkimusmatkansa ja kasvupolkunsa jo nuorella iällä.", "en": "Born and raised in the city of Porto, Portugal, João Luís embarked on a journey of exploration and growth from a young age." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/715F3432299E7562B95A7FE66B7EED58/HOW_radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/715F3432299E7562B95A7FE66B7EED58/HOW_radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/715F3432299E7562B95A7FE66B7EED58/HOW_radio_Global_Club_Nights" }, "name": { "fi": "HOW radio: Global Club Nights – João Luís", "sv": "HOW radio: Global Club Nights – João Luís", "en": "HOW radio: Global Club Nights – João Luís" }, "description": { "fi": "<p>Portugalin Portossa syntynyt ja kasvanut João Luís aloitti taiteellisen tutkimusmatkansa ja kasvupolkunsa jo nuorella iällä.</p><p>Luís opiskeli taidetta ja arkkitehtuuria, mutta vuonna 2010 hän teki merkittävän päätöksen siirtyä musiikkiuralle. Vuonna 2016 Luís muutti Suomeen ja hän asuu nykyään Helsingissä. Hän opiskeli Taideyliopiston Sibelius-Akatemian Global Music -osastolla, jossa hän on hionut musiikillisia taitojaan ja osallistunut aktiivisesti Helsingin elävään musiikkikenttään.</p><p>Yhteistyö monenlaisten musiikillisten ryhmien kanssa, jotka työskentelevät improvisaation, sirkuksen, kansanmusiikin, klassisen ja globaalin musiikin parissa, on laajentanut hänen luovuuttaan ja vahvistanut hänen kykyään työskennellä saumattomasti monikulttuurisessa ympäristössä. Hän valmistui musiikin maisteriksi joulukuussa 2023.</p><p>Yli 10 vuoden opetuskokemuksella João on omistautunut myös musiikkikasvatukseen ja yhteisötyöhön. Tämä näkyy hänen työstään lyömäsoitinten opettajana Orquestra Geraçãossa (el Sistema Portugal) vuosina 2014–2016, TEMPO Orkesterissa (el Sistema Finland) vuosina 2016–2019 sekä rumpusetin opettajana Helsingin Kansainvälisessä Musiikkikoulussa (ISM) vuosina 2019–2022.</p><p>Hän on myös ollut mukana fasilitoimassa creative music making -työpajoja ja mestarikursseja yhteistyössä paikallisten yhteisöjen kanssa La Liguassa ja Petorcassa, Chilessä (Greenpeace Chilen tukemana), sekä Brasiliassa osana Global Music -tutkintoaan. João toimii tällä hetkellä lyömäsoittajana, improvisoijana ja globaalina muusikkona, kehittäen jatkuvasti esiintymis-, sävellys- ja tuotantotaitojaan.</p><p>Esiintyjänä hänen pääinstrumenttejaan ovat monipuolinen lyömäsoitinkokoonpano, vibrafoni sekä käsirummut ja kehärummut. Viime aikoina hän on kehittänyt suhdettaan elektroakustisiin instrumentteihin ja tutkinut ääntään uutena välineenä oman äänellisen identiteettinsä ilmaisussa.</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.</p>", "en": "<p>Born and raised in the city of Porto, Portugal, João Luís embarked on a journey of exploration and growth from a young age.</p><p>His educational background includes a foundation in arts and architecture (2008-2010). In 2010, he made a pivotal decision to pursue a musical career. In 2016, he relocated to Finland and is currently based in Helsinki. João studied at the Global Music Department, Sibelius Academy, University of the Arts Helsinki, where he has honed his musical talents and actively engaged in Helsinki's vibrant music scene.</p><p>Collaborating with diverse musical groups within the aesthetics of improvisation, circus, folk, classical, and global has expanded his creativity and fostered the ability to work cohesively within a multicultural environment. He graduated with a Master of Music degree in December 2023.</p><p>With more than 10 years of teaching experience, his commitment to music education and community outreach is further evidenced by his involvement as a percussion teacher at Orquestra Geração (el Sistema Portugal) from 2014 to 2016, TEMPO Orkesteri (el Sistema Finland) from 2016 to 2019, and as a drum set teacher at the International School of Music, Helsinki (ISM) from 2019 to 2022.</p><p>He has also co-facilitated workshops/masterclasses of ‘creative music making’, collaborating with local communities in La Ligua, Petorca, Chile (supported by Greenpeace Chile) and Brazil, as integrated parts of his Global Music degree studies. João is currently a percussionist, improviser and global musician continually developing his performance, composition, and production skills.</p><p>As a performer, his main instruments are multi-percussion set-up, vibraphone, and hand/frame drums. Lately, he has been developing his relationship with electro-acoustic prepared instruments and exploring using his voice as a new tool for expressing his sonic identity.</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.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64855", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-17T15:14:37.557503Z", "last_modified_time": "2024-12-17T15:14:37.557518Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760498.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153478/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T15:14:37.533387Z", "last_modified_time": "2024-12-20T01:14:31.432952Z", "date_published": null, "start_time": "2025-01-22T09:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Är du invandrare och vill lära dig finska? Kom och testa 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." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/287730D9E16C8993B029649FA32BE5DE/Opi_suomea_laulaen_", "sv": "http://www.stoa.fi/sv/evenemang/event/287730D9E16C8993B029649FA32BE5DE/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/287730D9E16C8993B029649FA32BE5DE/Learn_Finnish_by_Singing_" }, "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" }, "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</p><p>Ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p><b>Kevään laulupajakerrat:</b> <br>Ke 22.1. klo 10 ja 11.45<br>To 13.2. klo 10 ja 11.45<br>Ti 6.5. klo 10 ja 11.45</p>", "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa 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. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Höstens sångverkstäder:</b><br>On 22.1. kl. 10 ja 11.45<br>To 13.2. kl. 10 ja 11.45<br>Ti 6.5. kl. 10 ja 11.45</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. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi</p><p>Autumn song workshops:<br>Wed 22.1. at 10 ja 11.45<br>Thu 13.2. at 10 ja 11.45<br>Tue 6.5. at 10 ja 11.45</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64855/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65251", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153400, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T12:14:00.600094Z", "last_modified_time": "2024-12-12T12:14:00.600109Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760287.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153400/?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-12-12T12:14:00.575105Z", "last_modified_time": "2024-12-20T01:14:31.345977Z", "date_published": null, "start_time": "2025-01-22T08:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "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.", "en": "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." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9A8D490C1DC8D93CD360681072A56DCC/Skidikino_Muumien_maailma", "sv": "http://www.vuotalo.fi/sv/evenemang/event/9A8D490C1DC8D93CD360681072A56DCC/Skidikino_Muumien_maailma", "en": "http://www.vuotalo.fi/en/events/event/9A8D490C1DC8D93CD360681072A56DCC/Skidikino_Muumien_maailma" }, "name": { "fi": "Skidikino: Muumien maailma", "sv": "Skidikino: Muumien maailma", "en": "Skidikino: Muumien maailma" }, "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>Tänä keväänä Skidikinossa seikkailevat Tove Janssonin luomat iki-ihanat Muumit alkuperäisen, restauroidun nukkeanimaatiosarjan puitteissa.</p><p>Kieli: suomi <br>Kesto: n. 30 min<br>Ikäraja: S</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: https://kultus.fi/fi<br>Skidikino: Muumien maailma<br>Lisätietoja: salla.fornaro@hel.fi</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. https://www.vuotalo.fi/fi/taidekasvatus</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>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>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi<br>Mera info: salla.fornaro@hel.fi</p><p>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. https://www.vuotalo.fi/fi/taidekasvatus</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>Duration: 30 min<br>Language: Finnish<br>Registration for daycare groups at kultus.fi<br>More information: salla.fornaro@hel.fi</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. https://www.vuotalo.fi/fi/taidekasvatus</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65251/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64854", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153477, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-17T15:14:37.338679Z", "last_modified_time": "2024-12-17T15:14:37.338698Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760497.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153477/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T15:14:37.285637Z", "last_modified_time": "2024-12-20T01:14:31.254093Z", "date_published": null, "start_time": "2025-01-22T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Är du invandrare och vill lära dig finska? Kom och testa 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." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6F66B470DC15F10DA621C5D91D2FC822/Opi_suomea_laulaen_", "sv": "http://www.stoa.fi/sv/evenemang/event/6F66B470DC15F10DA621C5D91D2FC822/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/6F66B470DC15F10DA621C5D91D2FC822/Learn_Finnish_by_Singing_" }, "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" }, "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</p><p>Ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p><b>Kevään laulupajakerrat:</b> <br>Ke 22.1. klo 10 ja 11.45<br>To 13.2. klo 10 ja 11.45<br>Ti 6.5. klo 10 ja 11.45</p>", "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa 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. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Höstens sångverkstäder:</b><br>On 22.1. kl. 10 ja 11.45<br>To 13.2. kl. 10 ja 11.45<br>Ti 6.5. kl. 10 ja 11.45</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. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi</p><p>Autumn song workshops:<br>Wed 22.1. at 10 ja 11.45<br>Thu 13.2. at 10 ja 11.45<br>Tue 6.5. at 10 ja 11.45</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64854/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65250", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153399, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T12:14:00.340818Z", "last_modified_time": "2024-12-12T12:14:00.340840Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760286.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153399/?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-12-12T12:14:00.291608Z", "last_modified_time": "2024-12-20T01:14:31.085633Z", "date_published": null, "start_time": "2025-01-22T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "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.", "en": "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." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/01931AB33BF7B501A5E1CF49413F7396/Skidikino_Muumien_maailma", "sv": "http://www.vuotalo.fi/sv/evenemang/event/01931AB33BF7B501A5E1CF49413F7396/Skidikino_Muumien_maailma", "en": "http://www.vuotalo.fi/en/events/event/01931AB33BF7B501A5E1CF49413F7396/Skidikino_Muumien_maailma" }, "name": { "fi": "Skidikino: Muumien maailma", "sv": "Skidikino: Muumien maailma", "en": "Skidikino: Muumien maailma" }, "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>Tänä keväänä Skidikinossa seikkailevat Tove Janssonin luomat iki-ihanat Muumit alkuperäisen, restauroidun nukkeanimaatiosarjan puitteissa.</p><p>Kieli: suomi <br>Kesto: n. 30 min<br>Ikäraja: S</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: https://kultus.fi/fi<br>Skidikino: Muumien maailma<br>Lisätietoja: salla.fornaro@hel.fi</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. https://www.vuotalo.fi/fi/taidekasvatus</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>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>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi<br>Mera info: salla.fornaro@hel.fi</p><p>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. https://www.vuotalo.fi/fi/taidekasvatus</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>Duration: 30 min<br>Language: Finnish<br>Registration for daycare groups at kultus.fi<br>More information: salla.fornaro@hel.fi</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. https://www.vuotalo.fi/fi/taidekasvatus</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65250/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64847", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153214, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T15:14:39.201516Z", "last_modified_time": "2024-12-03T15:14:39.201534Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760480.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153214/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-03T15:14:39.175895Z", "last_modified_time": "2024-12-20T01:14:29.316732Z", "date_published": null, "start_time": "2025-01-15T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "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!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CB1216B53CC0304261514C1047C8AA46/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/CB1216B53CC0304261514C1047C8AA46/Stoas_kor", "en": "http://www.stoa.fi/en/events/event/CB1216B53CC0304261514C1047C8AA46/Stoa_Choir" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "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. <br>Lämpimästi tervetuloa! <br> <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Kevään 2025 kuorokerrat: <br>15.1., 22.1., 29.1., 5.2.,12.2., 5.3., 12.3., 26.3., 2.4.</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. <br> <br>Varmt välkommen! <br> <br>På onsdagar kl. 18–19.30. <br> <br>Datum: <br>15.1.<br>22.1.<br>29.1.<br>5.2.<br>12.2.<br>5.3.<br>12.3.<br>26.3.<br>2.4.<br> <br>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. <br> <br>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall. <br> <br>Spring season: <br>15.1.<br>22.1.<br>29.1.<br>5.2.<br>12.2.<br>5.3.<br>12.3.<br>26.3.<br>2.4.</p><p>Ask for more information and sign up: sanna.nuutinen@hel.fi</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64847/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65243", "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:205/?format=api" }, { "@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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153385, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-11T12:14:19.441240Z", "last_modified_time": "2024-12-11T12:14:19.441264Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759348.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153385/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-11T12:14:19.389863Z", "last_modified_time": "2024-12-20T01:14:29.126281Z", "date_published": null, "start_time": "2025-01-15T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Anna Dantchev on suomalais-bulgarialainen laulaja, säveltäjä ja muusikko.", "en": "Anna Dantchev, known also as \"Bulgarian Voice from Finland\" is a Finnish-Bulgarian vocalist, composer, and musician." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/6BA070329BCC5B2C8EA5B8DE6B59DC2F/HOW_radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/6BA070329BCC5B2C8EA5B8DE6B59DC2F/HOW_radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/6BA070329BCC5B2C8EA5B8DE6B59DC2F/HOW_radio_Global_Club_Nights" }, "name": { "fi": "HOW radio: Global Club Nights – Anna Dantchev", "sv": "HOW radio: Global Club Nights – Anna Dantchev", "en": "HOW radio: Global Club Nights – Anna Dantchev" }, "description": { "fi": "<p>Anna Dantchev on suomalais-bulgarialainen laulaja, säveltäjä ja muusikko.</p><p>Dantchev yhdistää perinteistä bulgarialaista kansanmusiikkia modernin jazzin ja maailmanmusiikin vaikutteisiin. Hänet tunnetaan myös nimellä \"Bulgarian Voice from Finland\" (Bulgarian ääni Suomesta). Suomalais-bulgarialaiseen perheeseen Suomessa syntynyt Dantchev kasvoi kahden maan eläväisten kulttuuriperinteiden keskellä, mikä on muovannut hänen ainutlaatuista musiikkityyliään, joka yhdistää vanhaa ja uutta.</p><p>Hänen syvät juurensa bulgarialaisessa musiikissa näkyvät erityisesti hänen laulutekniikoissaan ja sävellystensä teemoissa. Bulgarialaisen perheensä kautta hänellä on myös yhteys muinaiseen itkuvirsiperinteeseen.</p><p>Dantchev on suorittanut musiikkitieteen maisterin tutkinnon Jyväskylän yliopistossa sekä Global Music -maisterin tutkinnon Taideyliopistossa Helsingissä. Lisäksi hän on opiskellut Dublinin Trinity Collegessa ja Aarhusin Kuninkaallisessa Musiikkiakatemiassa.</p><p>Dantchev johtaa DANTCHEV:DOMAIN-yhtyettä, joka yhdistää bulgarialaisen kansanmusiikin rytmisen monimuotoisuuden ja modaaliset asteikot nykyaikaisiin sovituksiin ja afroamerikkalaisen juurimusiikin elementteihin. Yhtyeen musiikki on sekä innovatiivista että syvälle perinteeseen juurtunutta, ja se on saanut kansainvälistä huomiota tuoreella otteellaan maailmanmusiikkiin. Yhtyeen debyyttialbumi palkittiin Vuoden kansanmusiikkialbumina Suomessa vuonna 2020, ja toinen albumi oli ensimmäinen suomalainen Dolby Atmos -formaattiin julkaistu albumi. Yhtyeen kolmas albumi julkaistaan vuonna 2025. Yhtye valittiin myös osaksi MOST – the Bridge for Balkan Music -projektia.</p><p>Dantchevin musiikki käsittelee identiteettiä, perintöä ja kulttuurien yhdistymistä sekä arjen tarinoita, yhteiskunnallisia kysymyksiä ja ilmastonmuutosta. Hänen voimakkaat lauluesityksensä tunnetaan tunteellisesta intensiivisyydestään ja monipuolisuudestaan, joissa hän siirtyy vaivattomasti sielukkaiden perinteisten kansanmelodioiden ja monimutkaisten jazz-improvisaatioiden välillä. Hänen työnsä on osoitus hänen kyvystään yhdistää kulttuurisia ja musiikillisia rajoja, tuoden yhteen eri taustoista tulevia muusikoita ja yleisöjä.</p><p>Esiintyjän työnsä lisäksi Dantchev on intohimoinen puolestapuhuja läpinäkyvämmän, tasa-arvoisemman ja kestävämmän musiikkialan puolesta. Hän myös opettaa bulgarialaista laulua. Taiteensa kautta Anna Dantchev on vakiinnuttanut asemansa omaleimaisena äänenä nykymusiikin kentällä, seisoen perinteen ja innovaation risteyskohdassa.</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.</p>", "sv": "<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.</p>", "en": "<p>Anna Dantchev, known also as \"Bulgarian Voice from Finland\" is a Finnish-Bulgarian vocalist, composer, and musician.</p><p>She blends traditional Bulgarian folk music with modern jazz and world music influences. Born to a Finnish-Bulgarian family in Finland, Dantchev's upbringing was infused with the vibrant cultural traditions of both countries, shaping her unique musical style that bridges the old with the new.</p><p>Her deep roots in Bulgarian music are particularly reflected in her vocal techniques and the themes she explores in her compositions, while her training and experience have opened her to the expansive world of bounderless music. From her Bulgarian family she is also connected to the ancient lamenting tradition.<br>She has a Master of Arts degree in Musicology from the University of Jyväskylä, and Master of Global Music from the University of the Arts Helsinki. She has studied also in Trinity College of Dublin and the Royal Academy of Music in Aarhus.</p><p>Dantchev is the leader of the DANTCHEV:DOMAIN, the band that fuses the rhythmic complexity and modal scales of Bulgarian folk music with contemporary arrangements and elements of Afro-American roots music. The group creates a sound that is both innovative and deeply rooted in tradition, and has attracted international attention for its fresh approach to world music. The debut album of the band was awarded Finnish Folk Album 2020, while the second album was the first Finnish album that was released in Dolby Atmos. The band is releasing their third album in 2025. The band was selected to be part of MOST - the Bridge for Balkan Music project.</p><p>Dantchev’s music explores themes of identity, heritage, and the blending of cultures as well as the stories of everyday life, the social issues and the climate change. Her powerful vocal performances are noted for their emotional intensity and versatility, moving seamlessly between soulful, traditional folk melodies and complex jazz improvisations. Her work is a testament to her ability to bridge cultural and musical boundaries, bringing together musicians and audiences from different backgrounds.</p><p>Beyond her work as a performer, Dantchev is also a passionate advocate for the more transparent, equal and sustainable music scene. She is also teaching Bulgarian singing. Through her artistry, Anna Dantchev has established herself as a distinctive voice in the contemporary music scene, standing at the crossroads of tradition and innovation.</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.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65243/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65135", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-29T13:14:23.384937Z", "last_modified_time": "2024-11-29T13:14:23.384956Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764105.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153126/?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-11-29T13:14:23.355907Z", "last_modified_time": "2024-12-20T01:14:26.277764Z", "date_published": null, "start_time": "2024-12-21T11:00:00Z", "end_time": "2024-12-21T13: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa tutustumaan tähtitaivaaseen Ursan planetaariossa!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/313C08C7858C7521B501EECFC2D0F1C3/Ursan_planetaario_Yotaivaan_ihmeet_" }, "name": { "fi": "Ursan planetaario: Yötaivaan ihmeet" }, "description": { "fi": "<p>Tervetuloa tutustumaan tähtitaivaaseen Ursan planetaariossa!</p><p>Ursan liikkuva planetaario on puhallettava kangaskupu, jonka sisällä voi kokea tähtitaivaan ja avaruuden ihmeet. Planetaarion esityksissä tutustutaan muun muassa yötaivaan ilmiöihin, Kuun vaiheisiin ja tähtien liikkeisiin. Saat myös vinkkejä siihen, mitä taivaalta voit löytää itse, ilman kaukoputkea.</p><p>Yhteen esitykseen mahtuu noin 25 henkilöä, ja planetaarioon pääsee myös pyörätuolilla.<br><b>Esitykset</b><br>Esitys 1 klo 13–13.30<br>Esitys 2 klo 14–14.30<br>Esitys 3 klo 15–15.30</p><p>Vapaa pääsy. Ilmoittaudu mukaan ennen esityksiä musiikkisalin ovella oleviin nimilistoihin.</p><p>Kesto: 30 minuuttia<br>Kieli: suomi<br>Ikäsuositus: ei suositella alle 5-vuotiaille<br>Paikka: musiikkisali</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65135/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65146", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153384, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-11T11:14:11.839875Z", "last_modified_time": "2024-12-11T11:14:11.839891Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764110.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153384/?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-12-11T11:14:11.789880Z", "last_modified_time": "2024-12-20T01:14:25.802157Z", "date_published": null, "start_time": "2024-12-20T13:00:00Z", "end_time": "2024-12-20T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Vuoden pisintä yötä juhlistava Yalda kutsuu sinut, perheesi ja ystäväsi Stoaan!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FE8A3723A15459C58EBD51A7CFB2670A/Yalda_vuoden_pisin_yo", "sv": "http://www.stoa.fi/sv/evenemang/event/FE8A3723A15459C58EBD51A7CFB2670A/Yalda_vuoden_pisin_yo", "en": "http://www.stoa.fi/en/events/event/FE8A3723A15459C58EBD51A7CFB2670A/Yalda_vuoden_pisin_yo" }, "name": { "fi": "Yalda – vuoden pisin yö", "sv": "Yalda – vuoden pisin yö", "en": "Yalda – vuoden pisin yö" }, "description": { "fi": "<p>Vuoden pisintä yötä juhlistava Yalda kutsuu sinut, perheesi ja ystäväsi Stoaan!</p><p>Tapahtumassa esiintyy Road Ensemble, joka on erikoistunut iranilaiseen ja kurdilaiseen kansanmusiikkiin. Road Ensemblen lisäksi ohjelmassa on myös ruoka-, kirja- ja vaatemyyntiä, Ursan liikkuva planetaario ja askartelua.</p><p><b>klo 17.30 Road Ensemble</b></p><p>Jyväskylässä vuonna 2015 perustettu Road Ensemble on erikoistunut iranilaiseen ja kurdilaiseen kansanmusiikkiin. Yhtye on tehnyt tunnetuksi iranilaista musiikkia ja kurdimusiikin vanhoja sointukulkuja, rikkaita säveliä ja moninaisia rytmejä pitämällä konsertteja, työpajoja ja luentoja eri puolilla Suomea. Vuosien saatossa yhtye on myös soittanut yhdessä vierailevien muusikoiden kanssa, joita yhtyeeseen on saapunut Suomesta ja monesta muusta maasta.</p><p>Jäsenet:<br>Farshad Sanati: santur-kielisoitin ja laulu <br>Fardin Abbasi: daf-rumpu, tonbak-rumpu ja laulu <br>Farzad Mehdi Nia: laulu <br>Sheida Sanati: tar-rumpu <br>Lotta Maria Heiskanen: viulu</p><p><b>klo 17 ja 18.30 Ursan liikkuva planetaario</b> <br>Ursan liikkuva planetaario on puhallettava kangaskupu, jonka sisällä voi kokea tähtitaivaan ja avaruuden ihmeet. Planetaarion esityksissä tutustutaan muun muassa yötaivaan ilmiöihin, kuun vaiheisiin ja tähtien liikkeisiin. Saat myös vinkkejä siihen, mitä taivaalta voit löytää itse, ilman kaukoputkea. <br>Esitys pidetään suomeksi, ja sen kesto on 30 minuuttia. <br>Yhteen esitykseen mahtuu noin 25 henkilöä, ja planetaarioon pääsee myös pyörätuolilla. Huomioitavaa: Esityksiä ei suositella alle 5-vuotiaille.</p><p>Tapahtuma järjestävät Stoan kulttuuripalvelut ja Itäkeskuksen kirjasto</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65146/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64377", "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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152080, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T13:14:49.849603Z", "last_modified_time": "2024-08-12T13:14:49.849618Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750214.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152080/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-08-12T13:14:49.832853Z", "last_modified_time": "2024-12-20T01:14:25.195976Z", "date_published": null, "start_time": "2024-12-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9AC5D5DC27A4DBFCFDAAC3623D15A0FA/Kipina_x_Stoa" }, "name": { "fi": "Kipinä x Stoa" }, "description": { "fi": "<p>Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!</p><p>Lavalle nousevat mm. Helsinki Unity Musicin artistit ja muut Kipinän toimijat. Kipinä x Stoa -tapahtumien sisällöt ja aikataulut tarkentuvat myöhemmin.</p><p>Tsekkaa ajankohtaisin tieto Nuorten toimintatalo Kipinän Instagramissa @kipina_official sekä nettisivuilla https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64377/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64527", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152310, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-05T11:14:03.655171Z", "last_modified_time": "2024-09-05T11:14:03.655185Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749851.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152310/?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:14:03.637650Z", "last_modified_time": "2024-12-20T01:14:25.020070Z", "date_published": null, "start_time": "2024-12-18T08:00:00Z", "end_time": "2024-12-18T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "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." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/862840E1114184116E8A0B23F0A820D6/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/862840E1114184116E8A0B23F0A820D6/Knattebion", "en": "http://www.annantalo.fi/en/events/event/862840E1114184116E8A0B23F0A820D6/Toddler_cinema" }, "name": { "fi": "Naperokino", "sv": "Knattebion", "en": "Toddler cinema" }, "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>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64527/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64988", "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/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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153021, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-14T09:14:46.783427Z", "last_modified_time": "2024-11-14T09:14:46.783446Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763330.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153021/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-14T09:14:46.739779Z", "last_modified_time": "2024-12-20T01:14:24.766630Z", "date_published": null, "start_time": "2024-12-17T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.", "sv": "De vackraste julsångerna leder varsamt lyssnarna mot den glada jultiden.", "en": "The most beautiful Christmas songs smoothly propel their listeners towards an exhilarating Christmas." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E87D51B31900D779CE13C65B648EB31A/Kauneimmat_joululaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E87D51B31900D779CE13C65B648EB31A/De_vackraste_julsangerna", "en": "http://www.malmitalo.fi/en/events/event/E87D51B31900D779CE13C65B648EB31A/The_Most_Beautiful_Christmas_Songs" }, "name": { "fi": "Kauneimmat joululaulut", "sv": "De vackraste julsångerna – på finska", "en": "The Most Beautiful Christmas Songs – in Finnish" }, "description": { "fi": "<p>Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.</p><p>Yhteiseen jouluperinteeseen ja kauneimpiin joululauluihin johdattamassa Heidi Visa, laulu, Aino Hänninen, viulu, sekä kanttori Mari Torri-Tuominen ja pastori Kirsi Ojansuu-Kaunisto Malmin seurakunnasta.<br> <br>Vapaa pääsy!</p><p>Kesto 1 tunti.</p>", "sv": "<p>De vackraste julsångerna leder varsamt lyssnarna mot den glada jultiden.</p><p>Heidi Visa, sång, Aino Hänninen, violin, samt kantor Mari Torri-Tuominen och pastor Kirsi Ojansuu-Kaunisto från Malms församling leder den gemensamma jultraditionen och de vackraste julsångerna.<br> <br>Fritt inträde!</p><p>Längd 1 h</p>", "en": "<p>The most beautiful Christmas songs smoothly propel their listeners towards an exhilarating Christmas.</p><p>Heidi Visa, vocals, Aino Hänninen, violin, as well as chantress Mari Torri-Tuominen and pastor Kirsi Ojansuu-Kaunisto from the Malmi parish will guide everyone into our shared Christmas traditions and the most beautiful Christmas songs.<br> <br>Admission is free!</p><p>Duration: 1 h</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64988/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64164", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2433/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151624, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T13:13:24.653519Z", "last_modified_time": "2024-07-03T13:13:24.653532Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751055.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151624/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2024-07-03T13:13:24.639333Z", "last_modified_time": "2024-12-20T01:14:24.602561Z", "date_published": null, "start_time": "2024-12-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7094A89140E1EDA2CF3E7BF2668C50B0/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7094A89140E1EDA2CF3E7BF2668C50B0/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/7094A89140E1EDA2CF3E7BF2668C50B0/Let_us_sing_" }, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Kesto: 1 t<br>Vapaa pääsy</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Längd: 1 timme</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64164/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65145", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-119/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153125, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-29T13:14:22.239808Z", "last_modified_time": "2024-11-29T13:14:22.239826Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757722.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153125/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-29T13:14:22.214475Z", "last_modified_time": "2024-12-20T01:14:24.352925Z", "date_published": null, "start_time": "2024-12-15T10:00:00Z", "end_time": "2024-12-15T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tule kokeilemaan kudontaa kangaspuilla, olipa sinulla aiempaa kokemusta tai ei. Voit viihtyä niin pitkään kuin haluat ja nauttia käsillä tekemisen ilosta.", "en": "Come and try weaving at a time that suits you, for as long as you like – whether you have prior experience or not." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F96A62C6C1BF8D57F7F2F78C02D41B92/Kudontakioski", "en": "http://www.stoa.fi/en/events/event/F96A62C6C1BF8D57F7F2F78C02D41B92/Weaving_kiosk" }, "name": { "fi": "Kudontakioski", "en": "Weaving kiosk", "ar": "أهلاً وسهلاً بكم في ورشة حياكة النسيج" }, "description": { "fi": "<p>Tule kokeilemaan kudontaa kangaspuilla, olipa sinulla aiempaa kokemusta tai ei. Voit viihtyä niin pitkään kuin haluat ja nauttia käsillä tekemisen ilosta.</p><p>Kudonta on käsityötaito, joka yhdistää kulttuureja ja ihmisiä ympäri maailmaa. Kudontakioski on kaikille avoin ja tilapäinen julkinen tila, jossa kudontatyökalut ja -materiaalit ovat helposti saatavilla.</p><p><b>Työpajat pidetään kulttuuritalo Stoan Terraario-tilassa:</b><br>14.12.2024 klo 10–15<br>15.12.2024 klo 12–17</p><p>Kudontakioski on Suomessa asuvan tanskalaisen tekstiilitaiteilijan, <b>Rosa Tolnov Clausenin</b>, eri puolilla maailmaa kiertänyt projekti, jonka avulla hän tutkii kudontatiloja ja kudonnan tulevaisuutta.</p><p>Kieli: sopii monille eri kielille<br>Vapaa pääsy</p><p>Lämpimästi tervetuloa!</p>", "en": "<p>Come and try weaving at a time that suits you, for as long as you like – whether you have prior experience or not.</p><p>Hand-weaving is a craft that connects cultures and people across the world. The Weaving Kiosk is a temporary, open public space where weaving tools and materials are readily available and accessible to everyone. Enjoy the creative joy of working with your hands in a welcoming and open environment.<br> <br><b>Workshops will be held at the Stoa Cultural Center in the Terraario room:</b><br>14th December 2024, 10:00–15:00<br>15th December 2024, 12:00–17:00</p><p>The Weaving Kiosk is a project by Danish textile artist <b>Rosa Tolnov Clausen</b>, currently based in Finland. This traveling project explores weaving spaces and the future of the craft, bringing people together through this shared tradition.</p><p>We look forward to welcoming you!</p>", "ar": "<p>أهلاً وسهلاً بكم في ورشة حياكة النسيج <br>تعتبر حرفة النسيج تقليداً يربط بين الثقافات والشعوب حول العالم. ورشة حياكة النسيج هو مساحة عامة مؤقتة ومفتوحة للجميع، حيث تتوفر أدوات ومواد حياكة النسيج ليستمتع بها كل من يرغب. ندعوكم للانضمام إلينا وتجربة حياكة النسيج في الوقت الذي يناسبكم، سواء كانت لديكم خبرة سابقة أو لا. اقضوا الوقت الذي ترغبون به واستمتعوا بصنع شيء بأيديكم <br> <br>تُقام الورشات في المركز الثقافي ستوا <br>مواعيد الورشات <br>14/12/2024 من الساعة 10 إلى 15 <br>15/12/2024 من الساعة 12 إلى 17 <br> <br>كشك النسيج هو مشروع متنقل حول العالم أطلقته الفنانة الحرفية الدنماركية المقيمة في فنلندا، روزا تولنوف كلاوسن، بهدف استكشاف فضاءات النسيج واستشراف مستقبل هذه الحرفة <br>أهلاً بكم جميعاً</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65145/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24654, "next": "