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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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&include=location%2Ckeywords&page=38
{ "meta": { "count": 32780, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=39", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=37" }, "data": [ { "id": "kulke:68047", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 770, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 796, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 807, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2848, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-vuotalo-4036749/", "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-vuotalo-4036749/", "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-vuotalo-4036749/" }, "description": null, "price": { "fi": "23€/15€/10€", "sv": "23€/15€/10€", "en": "23€/15€/10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494676, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T16:13:09.416530Z", "last_modified_time": "2026-01-28T16:13:09.416572Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784207.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494676/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-28T16:13:09.308791Z", "last_modified_time": "2026-03-20T01:14:23.637383Z", "date_published": null, "start_time": "2026-05-22T10: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, "short_description": { "fi": "Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan.", "sv": "Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.", "en": "Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FF7E62746B8DFC0AA969AD2B199592EA/Susanna_Leinonen_Company_Rajatila", "sv": "http://www.vuotalo.fi/sv/evenemang/event/FF7E62746B8DFC0AA969AD2B199592EA/Susanna_Leinonen_Company_Rajatila", "en": "http://www.vuotalo.fi/en/events/event/FF7E62746B8DFC0AA969AD2B199592EA/Susanna_Leinonen_Company_Rajatila" }, "description": { "fi": "<p>Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan.</p><p>Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja. Teos jatkaa Susanna Leinonen Companyn ikäihmisten kanssa toteutettua teossarjaa ja muodostaa sen viidennen itsenäisen osan.</p><p>Teoksen koreografi Tatiana Urteva haluaa tutkia teoksessa elämää kokeneiden kehojen fyysistä ja emotionaalista voimaa – liikettä, rytmiä ja ilmaisua, joka kumpuaa vuosikymmenten kokemuksesta.<br>Rajatila kutsuu pohtimaan, miten psykologiset ja fyysiset rajat ohjaavat arkeamme, miten niitä koetellaan ja miten ne lopulta muovaavat identiteettiämme. Näyttämöllä kohtaavat ilmaisuvoimaiset ikäihmiset ja ammattitanssijat. Ikäihmisten elämänkokemus ja kehollinen viisaus kietoutuvat yhteen tanssijoiden fyysisyyden ja tarkkuuden kanssa, synnyttäen koskettavan ja voimakkaan kokonaisuuden.<br>Rajatila on teos ihmisyydestä, muutoksesta ja kestävyydestä. Se haastaa käsitykset siitä, miltä tanssi voi näyttää ja kuka saa olla sen tekijä.</p><p>Teos on osa Helsingin kaupungin iäkkäiden kulttuuritoiminnan edistämishanketta.<br>Koreografia Tatiana Urteva<br>Musiikki Kasperi Laine<br>Valot Tuomas Holopainen ja Jouka Valkama<br>Puvut Sari Nuttunen<br>Kesto: 45 min<br>Kieli: suomi</p>", "sv": "<p>Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.</p><p>Verket fortsätter den serie av verk som Susanna Leinonen Company genomfört tillsammans med äldre personer och utgör den femte självständiga delen av den.<br>Verkets koreograf Tatiana Urteva vill i verket undersöka den fysiska och emotionella styrkan i de kroppar som har upplevt livet – rörelsen, rytmen och uttrycket som väller fram på grund av årtionden av erfarenhet. Gränsområdet inbjuder oss att reflektera över hur psykologiska och fysiska gränser styr vår vardag, hur de prövas och hur de slutligen formar vår identitet.</p><p>På scenen möts uttryksfulla äldre och professionella dansare. De äldres livserfarenhet och fysiska visdom sveper sig samman med dansarnas fysik och precision samt skapar en gripande och kraftfull helhet.</p><p>Rajatila är ett verk om mänsklighet, förändring och hållbarhet. Den utmanar uppfattningar om hur dans kan se ut och vem som får skapa den.</p><p>Verket är en del av Helsingfors stads projekt för att främja kulturverksamhet för äldre.</p><p>Koreografi: Tatiana Urteva<br>Musik: Kasperi Laine<br>Ljus: Marianne Lagus<br>Kostymer: Sari Nuttunen</p><p>Längd: 45 min.</p>", "en": "<p>Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life.</p><p>The piece continues the Susanna Leinonen Company's series of works created together with older people and forms the fifth independent part of the series.<br>Through this work,Choreographer Tatiana Urteva wishes to explore the physical and emotional power of bodies that have experienced life – their movement, rhythm and expression that comes from decades of experience. Rajatila invites us to reflect on how psychological and physical borders guide our everyday lives, how they are tested and how they ultimately shape our identity.</p><p>On the stage, expressive elderly people come together with professional dancers. The life experience and physical wisdom of older people intertwine with the physicality and precision of the dancers, creating a moving and powerful ensemble.</p><p>Rajatila is a work about humanity, change and resilience. It challenges notions of what dance can look like and who can create dance.</p><p>The work is part of the City of Helsinki's project to promote cultural activities for older people.</p><p>Choreography Tatiana Urteva<br>Music Kasperi Laine<br>Lights Marianne Lagus<br>Costumes Sari Nuttunen</p><p>Duration: 45 min</p>" }, "name": { "fi": "Susanna Leinonen Company / Rajatila", "sv": "Susanna Leinonen Company / Rajatila", "en": "Susanna Leinonen Company / Rajatila" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68047/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67714", "has_user_editable_resources": false, "location": { "id": "tprek:7258", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna", "municipality": "Helsinki", "name": { "fi": "Ullanlinna", "sv": "Ulrikasborg" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } } ], "created_time": "2023-08-15T08:12:16.221655Z", "last_modified_time": "2024-02-06T13:09:51.033692Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00130", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 576, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.947306, 60.16663 ] }, "telephone": { "fi": "+358 9 310 36563" }, "street_address": { "fi": "Kasarmikatu 46-48", "sv": "Kaserngatan 46-48", "en": "Kasarmikatu 46-48" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.savoyteatteri.fi/", "sv": "http://www.savoyteatteri.fi/", "en": "http://www.savoyteatteri.fi/" }, "description": null, "name": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:33", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.509726Z", "last_modified_time": "2024-02-06T13:19:13.839978Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 762, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:351", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.568885Z", "last_modified_time": "2024-02-06T13:19:15.244248Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 652, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri ja sirkus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:49", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.697675Z", "last_modified_time": "2024-02-06T13:19:14.132899Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 576, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Savoy-teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6529", "has_user_editable_resources": false, "alt_labels": [ "noh-teatteri", "noo-teatteri", "noh theater" ], "created_time": "2023-08-16T05:16:17.404853Z", "last_modified_time": "2023-08-16T05:16:17.404870Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 544, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "no-teatteri", "sv": "no-teater", "en": "noh theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4045629", "en": "https://www.lippu.fi/eventseries/name-4045629" }, "description": null, "price": { "fi": "46,90 €", "en": "46,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494165, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T14:13:26.163113Z", "last_modified_time": "2025-12-09T14:13:26.163127Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782570.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494165/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-09T14:13:26.069728Z", "last_modified_time": "2026-03-20T01:14:23.536776Z", "date_published": null, "start_time": "2026-05-21T17: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, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F71D5B097E48010963870C261D1BEDDE/Laura_Ramoso_-_The_Calm_Down_Tour", "en": "http://www.savoyteatteri.fi/en/events/event/F71D5B097E48010963870C261D1BEDDE/Laura_Ramoso_-_The_Calm_Down_Tour" }, "description": { "fi": "<p>Sketch comedy sensation Laura Ramoso is back with a brand-new hour featuring all your favorites, German Mom, Chiara, Italian Dad, and more! Don't miss your chance to see her live, but please...remember to cahln dzaun.</p>", "en": "<p>Sketch comedy sensation Laura Ramoso is back with a brand-new hour featuring all your favorites, German Mom, Chiara, Italian Dad, and more! Don't miss your chance to see her live, but please...remember to cahln dzaun.</p>" }, "name": { "fi": "Laura Ramoso - The Calm Down Tour – Loppuunmyyty! / Sold out!", "en": "Laura Ramoso - The Calm Down Tour – A Comic Soul present" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Wickström & Thibblin Comedy Ab", "en": "Wickström & Thibblin Comedy Ab" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67714/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67599", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1361, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1349, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:755", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2024-05-30T11:10:09.697444Z", "last_modified_time": "2024-05-30T11:10:09.697496Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1117, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kaupunkiuudistusalueet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/lucasimbiriba/lucas-imbiriba-guitar-on-fire-4030160/", "sv": "https://www.lippu.fi/artist/lucasimbiriba/lucas-imbiriba-guitar-on-fire-4030160/", "en": "https://www.lippu.fi/artist/lucasimbiriba/lucas-imbiriba-guitar-on-fire-4030160/" }, "description": null, "price": { "fi": "29,90€-34,90€", "sv": "29,90€-34,90€", "en": "29,90€-34,90€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494113, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T07:13:02.596686Z", "last_modified_time": "2025-12-08T07:13:02.596702Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782004.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494113/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T07:13:02.451235Z", "last_modified_time": "2026-03-20T01:14:23.360521Z", "date_published": null, "start_time": "2026-05-21T16: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, "short_description": { "fi": "Taiturikitaristi Lucas Imbiriba saapuu taas Suomeen!", "sv": "Gitarrivirtuosen Lucas Imbiriba kommer till Finland igen!", "en": "Guitarist Lucas Imbiriba is coming back to Finland!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F2061ACE3C95AAC558D962B7A12E74C5/Lucas_Imbiriba_BR_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F2061ACE3C95AAC558D962B7A12E74C5/Lucas_Imbiriba_BR_", "en": "http://www.malmitalo.fi/en/events/event/F2061ACE3C95AAC558D962B7A12E74C5/Lucas_Imbiriba_BR_" }, "description": { "fi": "<p>Taiturikitaristi Lucas Imbiriba saapuu taas Suomeen!</p><p>Suomen kiertue ”Guitar on Fire” alkaa 21.5.2026 Malmitalosta.</p><p>Lucas Imbiriba on brasilialainen kitaristi ja lauluntekijä, joka tunnetaan ainutlaatuisista suosittujen kappaleiden sovituksista soolokitaralle. Lucas tunnetaan maailmanlaajuisesti näyttävistä ja henkeäsalpaavista kitaraesityksistään, jotka yhdistävät Flamenco-kitaran tulen, Latinalaisen Amerikan perkussiiviset rytmit, klassisen musiikin lyyriset melodiat ja rock’n’rollin voiman.</p><p>Vuonna 2020 Lucas Imbiriba tuli tunnetuksi Youtubessa, koska hänen Fingerstyleja akustiset versiot kappaleista, kuten Stairway to Heaven (Led Zeppelin), Desperado (Los Lobos) ja Hotel California (The Eagles) saavuttivat yli 20 miljoonaa katselukertaa alle vuodessa. Ja hänen Bohemian Rhapsodyn (The Queen) esitystä ei voi kutsua millään muulla kuin maagiseksi ja loistavaksi.</p><p>Äskettäin Lucas julkaisi uuden albuminsa \"Epic Journey\" Spotifyssa, joka sisältää 10 erinomaista sovitusta maailmanlaajuisesti kuuluisista elokuvateemoista, Classic Rock -kappaleesta ja alkuperäiskappaleista kitaralle.</p><p>Kesto: 1 t 50 min, sisältäen 20 min väliajan</p>", "sv": "<p>Gitarrivirtuosen Lucas Imbiriba kommer till Finland igen!</p><p>Finlandsturnén ”Guitar on Fire” startar 21.5.2026 från Malms kulturhus.</p><p>Lucas Imbiriba är en brasiliansk gitarrivirtuos och sångare känd för unika anpassningar av populära låtarrangemang för sologitarr. Lucas är känd runtom i världen för sina imponerande och hisnande gitarrföreställningar som förenar den eldiga Flamenco-gitarren med perkussiva rytmer från Latinamerika, den klassiska musikens lyriska melodier och rock’n’rollens kraft.</p><p>Lucas Imbiriba blev känd i Youtube 2020 då hans akustiska fingerstyle-versioner av låtar, såsom Stairway to Heaven (Led Zeppelin), Desperado (Los Lobos) och Hotel California (The Eagles), nådde över 20 miljoner visningar på mindre än ett år. Och hans framförande av Bohemia Rhapsody (Queen) kan inte beskrivas med andra ord än magiskt och lysande.</p><p>Lucas släppte nyligen sitt nya album ”Epic Journey” på Spotify. Albumet innehåller 10 utmärkta arrangemang av världsberömda filmteman, av en klassisk rocklåt och originallåtar för gitarr.</p><p>Längd: 1 h 50 min, inklusive en paus på 20 min.</p>", "en": "<p>Guitarist Lucas Imbiriba is coming back to Finland!</p><p>His Finnish tour ‘Guitar on Fire’ will start from Malmitalo on 21 May 2026.</p><p>Lucas Imbiriba is a Brazilian guitarist and songwriter known for his unique arrangements of popular songs for solo guitar. Lucas is known worldwide for his impressive and breathtaking guitar performances that combine the fire of flamenco guitar, the percussive rhythms of Latin America, the lyrical melodies of classical music and the power of rock'n'roll.</p><p>In 2020, Lucas Imbiriba became famous on YouTube when his fingerstyle acoustic versions of songs such as Stairway to Heaven (Led Zeppelin), Desperado (Los Lobos) and Hotel California (The Eagles) reached over 20 million views in less than a year. And his performance of Bohemian Rhapsody (Queen) can only be described as magical and brilliant.</p><p>Recently, Lucas released his new album ‘Epic Journey’ on Spotify, containing 10 excellent arrangements of world famous movie themes, classic rock songs and original songs for guitar.</p><p>Duration: 1 h 50 min, including a 20 min intermission</p>" }, "name": { "fi": "Lucas Imbiriba (BR)", "sv": "Lucas Imbiriba (BR)", "en": "Lucas Imbiriba (BR)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67599/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67694", "has_user_editable_resources": false, "location": { "id": "tprek:7258", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna", "municipality": "Helsinki", "name": { "fi": "Ullanlinna", "sv": "Ulrikasborg" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } } ], "created_time": "2023-08-15T08:12:16.221655Z", "last_modified_time": "2024-02-06T13:09:51.033692Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00130", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 576, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.947306, 60.16663 ] }, "telephone": { "fi": "+358 9 310 36563" }, "street_address": { "fi": "Kasarmikatu 46-48", "sv": "Kaserngatan 46-48", "en": "Kasarmikatu 46-48" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.savoyteatteri.fi/", "sv": "http://www.savoyteatteri.fi/", "en": "http://www.savoyteatteri.fi/" }, "description": null, "name": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:348", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.541371Z", "last_modified_time": "2024-02-06T13:19:15.204233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1063, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:49", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.697675Z", "last_modified_time": "2024-02-06T13:19:14.132899Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 576, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Savoy-teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-21042905", "sv": "https://www.lippu.fi/event/name-21042905", "en": "https://www.lippu.fi/event/name-21042905" }, "description": null, "price": { "fi": "48,90 €", "sv": "48,90 €", "en": "48,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494052, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T11:12:49.644773Z", "last_modified_time": "2025-12-04T11:12:49.644789Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782437.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494052/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T11:12:49.527671Z", "last_modified_time": "2026-03-20T01:14:23.059705Z", "date_published": null, "start_time": "2026-05-20T16: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, "short_description": { "fi": "Paula Koivuniemen laulujen kiertue keväällä ympäri Suomen!", "sv": "En vårturné med Paula Kouvuniemis sånger över hela Finland!", "en": "A tour featuring Paula Koivuniemi’s songs across Finland this spring!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D85825CA7096F91B03B32FB8CE6CBD12/Kiittaen_ja_kunnioittaen_-_Paula_Koivuniemi", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D85825CA7096F91B03B32FB8CE6CBD12/Kiittaen_ja_kunnioittaen_-_Paula_Koivuniemi", "en": "http://www.savoyteatteri.fi/en/events/event/D85825CA7096F91B03B32FB8CE6CBD12/Kiittaen_ja_kunnioittaen_-_Paula_Koivuniemi" }, "description": { "fi": "<p>Paula Koivuniemen laulujen kiertue keväällä ympäri Suomen!</p><p><b>Paula Koivuniemen</b> ensilevytyksestä, <i>Perhonen</i>, tulee kuluneeksi ensi vuonna 60 vuotta. Juhlavuoden kunniaksi järjestetään keväällä hänen lauluihinsa keskittyvä viiden konsertin <i>Kiittäen ja kunnioittaen – Paula Koivuniemi</i> -niminen juhlakiertue.</p><p>Kiertue alkaa Seinäjoelta 18. huhtikuuta ja päättyy Helsinkiin 20. toukokuuta. Muut paikkakunnat ovat Turku, Lahti ja Espoo. Helsingissä Savoy-teatterissa kuullaan Koivuniemen tunnetuimpia hittejä sekä harvemmin kuultuja lauluja, joita esittävät <b>Saija Tuupanen, Eija Kantola, Anneli Mattila, Jenna Bågeberg</b> ja <b>Pirita Niemimaa</b>. Artisteja säestää Paulan pojan, <b>Toni Lehden</b> juhlaorkesteri.</p><p>– Paula Koivuniemi on tehnyt huikean uran ja hänen laulunsa ovat kiinteä osa suomalaista iskelmähistoriaa. Ei ole sellaista iltaa, etteikö Aikuinen nainen soisi jossain päin Suomea karaokessa eikä sellaista päivää, etteikö joku hänen lauluistaan soisi jollain radiokanavalla. Nyt, kun hänen ensisinglestään tulee kuluneeksi 60 vuotta, on hyvä aika juhlistaa tätä huikeaa laulajaa, kertoo kiertueen järjestäjä <b>Joona Jalkanen</b>.</p><p>Seinäjoella kesäkuussa 1947 syntynyt Paula Koivuniemi on saanut urallaan 13 kultalevyä, yhden platinalevyn ja yhden tuplaplatinan. Hän on laulanut tiensä suomalaisten sydämiin lukuisilla hiteillään, kuten <i>Aikaan sinikellojen, Romantiikkaa, Sua vasten aina painautuisin, Tummat silmät, ruskea tukka, Aikuinen nainen, Kun kuuntelen Tomppaa</i> ja <i>Kuka pelkää Paulaa</i>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "sv": "<p>En vårturné med Paula Kouvuniemis sånger över hela Finland!</p><p>I år är det 60 år sedan Paula Koivuniemis första inspelning Perhonen kom ut. Jubileumsåret uppmärksammas med turnén Kiittäen ja kunnioittaen – Paula Koivuniemi med fem konserter, som kretsar kring hennes låtar.</p><p>Turnén börjar i Seinäjoki den 18 april och avslutas i Helsingfors den 20 maj. De övriga orterna är Åbo, Lahtis och Esbo. På Savoy-teatern i Helsingfors får vi höra några av Koivuniemis mest kända hits samt mera okända låtar, som framförs av Saija Tuupanen, Eija Kantola, Anneli Mattila, Jenna Bågeberg och Pirita Niemimaa. Artisterna ackompanjeras av en jubileumsorkester ledd av Paulas son Toni Lehti.</p><p>– Paula Koivuniemi har gjort en fantastisk karriär och hennes låtar är en viktig del av den finländska schlagerhistorien. Det går inte en kväll utan att Aikuinen nainen ljuder på karaoke någonstans i Finland eller en dag utan att någon av hennes låtar spelas på någon radiokanal. Nu när det har gått 60 år sedan hennes första singel är det hög tid att fira denna fantastiska sångerska, säger turnéns arrangör Joona Jalkanen.</p><p>Paula Koivuniemi föddes i Seinäjoki i juni 1947 och har under sin karriär fått 13 guldskivor, en platinaskiva och en dubbelplatina. Hon har sjungit sig in i finländarnas hjärtan med hittar som Aikaan sinikellojen, Romantiikkaa, Sua vasten aina painautuisin, Tummat silmät, ruskea tukka, Aikuinen nainen, Kun kuuntelen Tomppaa och Kuka pelkää Paulaa.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>A tour featuring Paula Koivuniemi’s songs across Finland this spring!</p><p>Paula Koivuniemi’s first recording, Perhonen, will be 60 years old this year. To mark the occasion, a five-concert celebratory tour focusing on her songs will take place this spring, entitled Kiittäen ja kunnioittaen (‘With Thanks and Respect’) – Paula Koivuniemi.</p><p>The tour will start in Seinäjoki on 18 April and end in Helsinki on 20 May. The other cities of the tour are Turku, Lahti and Espoo. The show at the Savoy Theatre in Helsinki will feature Koivuniemi’s best-known hits and less frequently heard songs performed by Saija Tuupanen, Eija Kantola, Anneli Mattila, Jenna Bågeberg and Pirita Niemimaa. The artists will be accompanied by the orchestra of Paula’s son, Toni Lehti.</p><p>“Paula Koivuniemi has had a remarkable career, and her songs are an integral part of Finnish popular music history. There is not a night without Aikuinen nainen being sung in karaoke somewhere in Finland, nor a day without one of her songs playing on a radio station. Now that 60 years have passed since her first single, it’s a good time to celebrate this fantastic singer,” comments tour organiser Joona Jalkanen.</p><p>Born in Seinäjoki in June 1947, Paula Koivuniemi has achieved 13 gold records, one platinum record and one double platinum over the course of her career. She has sung her way into the hearts of Finns with numerous hits, such as Aikaan sinikellojen, Romantiikkaa, Sua vasten aina painautuisin, Tummat silmät, ruskea tukka, Aikuinen nainen, Kun kuuntelen Tomppaa and Kuka pelkää Paulaa.</p><p>Duration: roughly 2 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>" }, "name": { "fi": "Kiittäen ja kunnioittaen - Paula Koivuniemi", "sv": "Kiittäen ja kunnioittaen - Paula Koivuniemi", "en": "Kiittäen ja kunnioittaen - Paula Koivuniemi" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67694/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67809", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 981, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 986, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:52", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.738883Z", "last_modified_time": "2024-02-06T13:19:14.199532Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 624, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:669", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.230765Z", "last_modified_time": "2024-02-06T13:19:17.537912Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 340, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut kulttuuritapahtumat (monitaide)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 679, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494917, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-20T12:13:09.880231Z", "last_modified_time": "2026-02-20T12:13:09.880244Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782919.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494917/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-20T12:13:09.759398Z", "last_modified_time": "2026-03-20T01:14:22.655597Z", "date_published": null, "start_time": "2026-05-20T09:00:00Z", "end_time": "2026-05-20T09:45: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, "short_description": { "fi": "Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä", "sv": "En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.", "en": "Performance and relaxation moment for day-care and school groups in the Karhukallio forest." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/816A12D892A0A124A49F6F1BEB61C463/Metsaan_laskeutumiset_Karhukalliolla_paivakodeille_", "sv": "http://www.stoa.fi/sv/evenemang/event/816A12D892A0A124A49F6F1BEB61C463/Metsaan_laskeutuminen_Landa_i_skogen_", "en": "http://www.stoa.fi/en/events/event/816A12D892A0A124A49F6F1BEB61C463/Metsaan_laskeutuminen_Descending_into_the_forest_" }, "description": { "fi": "<p>Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä</p><p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitettu satu metsässä asuvasta oravasta. Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 19.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu</p><p>Paikka: Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Kesto: n. 45 min</p><p>Ikäsuositus: 4–8-vuotiaat</p><p>Kieli: suomi</p><p>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset: kultus.hel.fi, 9.1. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.</p><p>Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en liveillustrerad saga om en ekorre som bor i skogen. Med hjälp av den landar vi i skogens frid och utnyttjar alla sinnen. Vi slappnar av i hängmattor och lyssnar på levande musik och skogens ljud. Vad viskar skogen om då vi stannar upp och lyssnar?</p><p>Det finns en egen hängmatta för varje barn, och därför är den maximala gruppstorleken 19.</p><p>Workshoppen är lämplig för 4–8-åringar. I händelse av stormigt väder försöker vi hitta ett nytt datum för evenemanget.</p><p>Handledare: Verna Kuntsi och Satu Sipilä, Seikkailutaidekoulu</p><p>Plats: Björnklippans skog i Kasåkern. Mötesplats vid korsningen mellan Viilarvägen och Hylsnyckelvägen. Spårjokerns hållplats (linje 15): Kauppamyllyntie.</p><p>Åldersrekommendation: 4–8-åringar <br>Längd: ca 45 min. <br>Språk: finska</p><p>Fritt inträde. Obligatorisk förhandsanmälan: kultus.hel.fi,</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Performance and relaxation moment for day-care and school groups in the Karhukallio forest.</p><p>Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in the forest. It allows you to descend into the peace of the forest using all your senses. You get to relax in a hammock, listen to live music and the sounds of the forest. What does the forest tell us, if we stop to listen?</p><p>Hammocks are provided for each child, which is why the maximum group size is 19.</p><p>The workshop is suitable for 4–8-year-olds. In the event of a storm, we will try to reschedule the event.</p><p>Instructors: Verna Kuntsi and Satu Sipilä, Seikkailutaidekoulu<br>Location: Karhukallio Forest in Roihupelto<br>Age recommendation: Ages 4–8 <br>Duration: approx. 45 min <br>Language: Finnish</p><p>Admission is free. Pre-registration required at kultus.hel.fi, from 9 January at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Metsään laskeutumiset Karhukalliolla (päiväkodeille)", "sv": "Metsään laskeutuminen (Landa i skogen)", "en": "Metsään laskeutuminen (Descending into the forest)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67809/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67808", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 981, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 986, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:52", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.738883Z", "last_modified_time": "2024-02-06T13:19:14.199532Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 624, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:669", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.230765Z", "last_modified_time": "2024-02-06T13:19:17.537912Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 340, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut kulttuuritapahtumat (monitaide)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 679, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494916, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-20T12:13:09.438408Z", "last_modified_time": "2026-02-20T12:13:09.438422Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782918.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494916/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-20T12:13:09.284888Z", "last_modified_time": "2026-03-20T01:14:22.516599Z", "date_published": null, "start_time": "2026-05-20T07:00:00Z", "end_time": "2026-05-20T07:45: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, "short_description": { "fi": "Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä", "sv": "En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.", "en": "Performance and relaxation moment for day-care and school groups in the Karhukallio forest." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9AA3E1F8FD0CAE867A87D554033F93F5/Metsaan_laskeutumiset_Karhukalliolla_paivakodeille_", "sv": "http://www.stoa.fi/sv/evenemang/event/9AA3E1F8FD0CAE867A87D554033F93F5/Metsaan_laskeutuminen_Landa_i_skogen_", "en": "http://www.stoa.fi/en/events/event/9AA3E1F8FD0CAE867A87D554033F93F5/Metsaan_laskeutuminen_Descending_into_the_forest_" }, "description": { "fi": "<p>Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä</p><p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitettu satu metsässä asuvasta oravasta. Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 19.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu</p><p>Paikka: Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Kesto: n. 45 min</p><p>Ikäsuositus: 4–8-vuotiaat</p><p>Kieli: suomi</p><p>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset: kultus.hel.fi, 9.1. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.</p><p>Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en liveillustrerad saga om en ekorre som bor i skogen. Med hjälp av den landar vi i skogens frid och utnyttjar alla sinnen. Vi slappnar av i hängmattor och lyssnar på levande musik och skogens ljud. Vad viskar skogen om då vi stannar upp och lyssnar?</p><p>Det finns en egen hängmatta för varje barn, och därför är den maximala gruppstorleken 19.</p><p>Workshoppen är lämplig för 4–8-åringar. I händelse av stormigt väder försöker vi hitta ett nytt datum för evenemanget.<br>Handledare: Verna Kuntsi och Satu Sipilä, Seikkailutaidekoulu</p><p>Plats: Björnklippans skog i Kasåkern. Mötesplats vid korsningen mellan Viilarvägen och Hylsnyckelvägen. Spårjokerns hållplats (linje 15): Kauppamyllyntie.<br>Åldersrekommendation: 4–8-åringar</p><p>Längd: ca 45 min. <br>Språk: finska</p><p>Fritt inträde. Obligatorisk förhandsanmälan: kultus.hel.fi,</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Performance and relaxation moment for day-care and school groups in the Karhukallio forest.</p><p>Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in the forest. It allows you to descend into the peace of the forest using all your senses. You get to relax in a hammock, listen to live music and the sounds of the forest. What does the forest tell us, if we stop to listen?</p><p>Hammocks are provided for each child, which is why the maximum group size is 19.</p><p>The workshop is suitable for 4–8-year-olds. In the event of a storm, we will try to reschedule the event.</p><p>Instructors: Verna Kuntsi and Satu Sipilä, Seikkailutaidekoulu<br>Location: Karhukallio Forest in Roihupelto<br>Age recommendation: Ages 4–8</p><p>Duration: approx. 45 min <br>Language: Finnish</p><p>Admission is free. Pre-registration required at kultus.hel.fi, from 9 January at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Metsään laskeutumiset Karhukalliolla (päiväkodeille)", "sv": "Metsään laskeutuminen (Landa i skogen)", "en": "Metsään laskeutuminen (Descending into the forest)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67808/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68139", "has_user_editable_resources": false, "location": { "id": "tprek:7255", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:12:15.976796Z", "last_modified_time": "2025-03-27T09:09:26.704708Z", "custom_data": null, "email": "kanneltalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 562, "image": 414654, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.876202, 60.23885 ] }, "telephone": { "fi": "+358 40 822 8918" }, "street_address": { "fi": "Klaneettitie 5", "sv": "Klarinettvägen 5", "en": "Klaneettitie 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.kanneltalo.fi/", "sv": "https://www.kanneltalo.fi/sv/framsidan", "en": "https://www.kanneltalo.fi/en/frontpage" }, "description": { "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.", "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.", "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre." }, "name": { "fi": "Kanneltalo", "sv": "Gamlasgården", "en": "Cultural Centre Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:41", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.583027Z", "last_modified_time": "2024-02-06T13:19:13.977719Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 557, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:52", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.738883Z", "last_modified_time": "2024-02-06T13:19:14.199532Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 624, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:596", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:59.781294Z", "last_modified_time": "2024-02-06T13:19:16.916968Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 326, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:734", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.481605Z", "last_modified_time": "2024-02-06T13:19:17.895814Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 254, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Nuorille" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:755", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2024-05-30T11:10:09.697444Z", "last_modified_time": "2024-05-30T11:10:09.697496Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1117, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kaupunkiuudistusalueet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 679, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494933, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-24T09:13:07.094548Z", "last_modified_time": "2026-02-24T09:13:07.094567Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785764.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494933/?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": "2026-02-24T09:13:06.984251Z", "last_modified_time": "2026-03-20T01:14:22.196395Z", "date_published": null, "start_time": "2026-05-19T11:00:00Z", "end_time": "2026-05-19T16: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, "short_description": { "fi": "Haluatko vinkkejä ekologisesti kestävämpään arkeen? Helsinki järjestää monipuolisen kiertotaloustapahtuman Kanneltalossa ja Sitratorilla.", "sv": "Vill du ha tips för en mer ekologiskt hållbar livsstil? Helsingfors ordnar ett mångsidigt evenemang för cirkulär ekonomi på Gamlasgården och Cittertorget.", "en": "Would you like some tips for a more ecologically sustainable lifestyle? Helsinki is organising a diverse circular economy event at Kanneltalo and Sitratori." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2044C7506A56FC313EE841241C37BCC3/Kaikki_kiertaa_Kanneltalossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2044C7506A56FC313EE841241C37BCC3/Allt_cirkulerar_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/2044C7506A56FC313EE841241C37BCC3/Recycling_at_Kanneltalo" }, "description": { "fi": "<p>Haluatko vinkkejä ekologisesti kestävämpään arkeen? Helsinki järjestää monipuolisen kiertotaloustapahtuman Kanneltalossa ja Sitratorilla.</p><p>Kaupungin omien toimijoiden ja yhteistyökumppaneiden työpajoissa opitaan hyödyllisiä taitoja vaatteiden korjaamisesta jätteiden lajitteluun, minkä lisäksi tutustutaan erilaisiin kiertotalouden palveluihin.</p><p>Tapahtumassa saadaan lisäksi nauttia musiikista, kiertotalousmuotinäytöksistä ja monenlaisesta yllättävästäkin tekemisestä.<br>Vapaa pääsy!</p>", "sv": "<p>Vill du ha tips för en mer ekologiskt hållbar livsstil? Helsingfors ordnar ett mångsidigt evenemang för cirkulär ekonomi på Gamlasgården och Cittertorget.</p><p>I verkstäder som ordnas av stadens egna aktörer och samarbetspartner kan du lära dig nyttiga färdigheter i allt från hur man lagar kläder till hur man sorterar skräp, och du kan också lära dig mer om olika tjänster för cirkulär ekonomi.</p><p>Evenemanget bjuder också på musik, modevisningar med fokus på cirkulär ekonomi och olika överraskningsaktiviteter.<br>Fritt inträde!</p>", "en": "<p>Would you like some tips for a more ecologically sustainable lifestyle? Helsinki is organising a diverse circular economy event at Kanneltalo and Sitratori.</p><p>Attend workshops held by the City's own actors and partners to learn useful skills from repairing clothes to sorting waste, as well as learning about different circular economy services.</p><p>The event will also feature music, circular economy fashion shows and all sorts of unexpected activities.<br>Free entry!</p>" }, "name": { "fi": "Kaikki kiertää Kanneltalossa – Pukeutumisen ja taiteen kiertotaloustapahtuma", "sv": "Allt cirkulerar på Gamlasgården", "en": "Recycling at Kanneltalo" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68139/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68084", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 770, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1321, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 807, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13453, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494804, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T12:13:55.943387Z", "last_modified_time": "2026-02-09T12:13:55.943402Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784528.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494804/?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": "2026-02-09T12:13:55.843920Z", "last_modified_time": "2026-03-20T01:14:22.076250Z", "date_published": null, "start_time": "2026-05-19T07: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, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8BC18318E85F9689273B9FB3F14FBA87/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8BC18318E85F9689273B9FB3F14FBA87/Skogssagostunder_med_Jussi_Ollila_", "en": "http://www.vuotalo.fi/en/events/event/8BC18318E85F9689273B9FB3F14FBA87/Jussi_Ollila_s_forest_fairy_tales_" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot", "sv": "Skogssagostunder med Jussi Ollila", "en": "Jussi Ollila's forest fairy tales" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68084/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68083", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 770, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1321, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 807, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13453, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494803, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T12:13:55.567981Z", "last_modified_time": "2026-02-09T12:13:55.568000Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784527.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494803/?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": "2026-02-09T12:13:55.440738Z", "last_modified_time": "2026-03-20T01:14:21.955597Z", "date_published": null, "start_time": "2026-05-19T06: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, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A6CD010052293AC80AF1F3D0753EE519/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A6CD010052293AC80AF1F3D0753EE519/Skogssagostunder_med_Jussi_Ollila_", "en": "http://www.vuotalo.fi/en/events/event/A6CD010052293AC80AF1F3D0753EE519/Jussi_Ollila_s_forest_fairy_tales_" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min <br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot", "sv": "Skogssagostunder med Jussi Ollila", "en": "Jussi Ollila's forest fairy tales" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67291", "has_user_editable_resources": false, "location": { "id": "tprek:7255", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:12:15.976796Z", "last_modified_time": "2025-03-27T09:09:26.704708Z", "custom_data": null, "email": "kanneltalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 562, "image": 414654, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.876202, 60.23885 ] }, "telephone": { "fi": "+358 40 822 8918" }, "street_address": { "fi": "Klaneettitie 5", "sv": "Klarinettvägen 5", "en": "Klaneettitie 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.kanneltalo.fi/", "sv": "https://www.kanneltalo.fi/sv/framsidan", "en": "https://www.kanneltalo.fi/en/frontpage" }, "description": { "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.", "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.", "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre." }, "name": { "fi": "Kanneltalo", "sv": "Gamlasgården", "en": "Cultural Centre Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:41", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.583027Z", "last_modified_time": "2024-02-06T13:19:13.977719Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 557, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:755", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2024-05-30T11:10:09.697444Z", "last_modified_time": "2024-05-30T11:10:09.697496Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1117, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kaupunkiuudistusalueet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:55.786888Z", "last_modified_time": "2025-12-04T12:12:55.786903Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780841.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:55.716304Z", "last_modified_time": "2026-03-20T01:14:21.852845Z", "date_published": null, "start_time": "2026-05-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, "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/783B218B5684279DF42BD6ACEA181C5D/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/783B218B5684279DF42BD6ACEA181C5D/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/783B218B5684279DF42BD6ACEA181C5D/Let_us_sing_" }, "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 Mari Kätkä.</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.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 h</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. Mari Kätkä 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><p>Längd: 1 h</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 Mari Kätkä.</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>" }, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67291/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67647", "has_user_editable_resources": false, "location": { "id": "tprek:7255", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:12:15.976796Z", "last_modified_time": "2025-03-27T09:09:26.704708Z", "custom_data": null, "email": "kanneltalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 562, "image": 414654, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.876202, 60.23885 ] }, "telephone": { "fi": "+358 40 822 8918" }, "street_address": { "fi": "Klaneettitie 5", "sv": "Klarinettvägen 5", "en": "Klaneettitie 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.kanneltalo.fi/", "sv": "https://www.kanneltalo.fi/sv/framsidan", "en": "https://www.kanneltalo.fi/en/frontpage" }, "description": { "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.", "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.", "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre." }, "name": { "fi": "Kanneltalo", "sv": "Gamlasgården", "en": "Cultural Centre Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 796, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:41", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.583027Z", "last_modified_time": "2024-02-06T13:19:13.977719Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 557, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:755", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2024-05-30T11:10:09.697444Z", "last_modified_time": "2024-05-30T11:10:09.697496Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1117, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kaupunkiuudistusalueet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2848, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/elina-robinson-suenos-flamencos-flamencounelmia-kanneltalo-20974288/", "sv": "https://www.lippu.fi/event/elina-robinson-suenos-flamencos-flamencounelmia-kanneltalo-20974288/", "en": "https://www.lippu.fi/event/elina-robinson-suenos-flamencos-flamencounelmia-kanneltalo-20974288/" }, "description": null, "price": { "fi": "24,80 € / 20,80 €", "sv": "24,80 € / 20,80 €", "en": "24,80 € / 20,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494044, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T09:12:55.499202Z", "last_modified_time": "2025-12-04T09:12:55.499213Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782264.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494044/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T09:12:55.433267Z", "last_modified_time": "2026-03-20T01:14:21.614809Z", "date_published": null, "start_time": "2026-05-16T15: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, "short_description": { "fi": "Elina Robinsonin flamenco-oppilaiden kevätnäytöksessä juhlistamme tanssivuoden päätöstä!", "sv": "I Elina Robinsons flamencoelevers våruppvisning firar vi dansårets slut!", "en": "In the spring recital of Elina Robinson's flamenco students, we celebrate the end of the dance year!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3A9A19127581E387AB603A6C94A22416/Sue_os_Flamencos_Flamencounelmia", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3A9A19127581E387AB603A6C94A22416/Sue_os_Flamencos_Flamencounelmia_Flamencodrommar_", "en": "http://www.kanneltalo.fi/en/events/event/3A9A19127581E387AB603A6C94A22416/Sue_os_Flamencos_Flamenco_dreams" }, "description": { "fi": "<p>Elina Robinsonin flamenco-oppilaiden kevätnäytöksessä juhlistamme tanssivuoden päätöstä!</p><p>Esityksessä yhdistyvät sielukas flamencomusiikki ja vangitseva tanssi ainutlaatuisella tavalla.</p><p>Lavalla nähdään tanssijoita lapsista aikuisryhmiin sekä huikea livebändi: <br>Tony de María (kitara)<br>Anna Murtola (laulu),<br>Ricardo Padilla (perkussiot),<br>Elina Robinson (koreografiat, palmas) <br>Camila Laine (koreografia ja palmas)</p><p>Kesto: 1h 45min (sisältää väliajan)</p><p>Tuotanto: Tmi Elina Robinson</p>", "sv": "<p>I Elina Robinsons flamencoelevers våruppvisning firar vi dansårets slut!</p><p>Föreställningen kombinerar själfull flamencomusik och fängslande dans på ett unikt sätt.</p><p>På scenen får vi se dansare i allt från barn- till vuxengrupper och ett fantastiskt liveband: <br>Tony de María (gitarr) <br>Anna Murtola (sång) <br>Ricardo Padilla (slagverk), <br>Elina Robinson (koreografi, palmas) <br>Camila Laine (koreografi och palmas) <br> <br>Längd: 1 h 45 min. (inklusive paus)</p><p>Produktion: Tmi Elina Robinson</p>", "en": "<p>In the spring recital of Elina Robinson's flamenco students, we celebrate the end of the dance year!</p><p>The performance combines soulful flamenco music and captivating dance in a unique way.</p><p>The stage will feature dancers from children to adult groups and a great live band: <br>Tony de María (guitar) <br>Anna Murtola (vocals) <br>Ricardo Padilla (percussion) <br>Elina Robinson (choreography, palmas) <br>Camila Laine (choreography, palmas)</p><p>Duration: 1 h 45 min (including intermission)</p><p>Production: Tmi Elina Robinson</p>" }, "name": { "fi": "Sueños Flamencos – Flamencounelmia", "sv": "Sueños Flamencos – Flamencounelmia (Flamencodrömmar)", "en": "Sueños Flamencos – Flamenco dreams" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67647/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67680", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 865, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 796, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:350", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.556582Z", "last_modified_time": "2024-02-06T13:19:15.225361Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 431, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:46", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.650020Z", "last_modified_time": "2024-02-06T13:19:14.062702Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 714, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2848, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493982, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:20.422610Z", "last_modified_time": "2025-12-01T13:14:20.422624Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782329.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493982/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:20.331787Z", "last_modified_time": "2026-03-20T01:14:21.391834Z", "date_published": null, "start_time": "2026-05-16T11: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, "short_description": { "fi": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!", "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!", "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/905324E06F71E2A4BAB34A2477A083D2/Kaikkien_lasten_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/905324E06F71E2A4BAB34A2477A083D2/Danslektion_for_alla_barn", "en": "http://www.annantalo.fi/en/events/event/905324E06F71E2A4BAB34A2477A083D2/All_children_s_dance_class" }, "description": { "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>", "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>", "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>" }, "name": { "fi": "Kaikkien lasten tanssitunti – kaikenikäisille", "sv": "Danslektion för alla barn – för alla åldrar", "en": "All children's dance class – for all ages" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67680/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67500", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 865, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1321, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:30", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.465653Z", "last_modified_time": "2024-02-06T13:19:13.772265Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 119, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kuvataide" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:46", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.650020Z", "last_modified_time": "2024-02-06T13:19:14.062702Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 714, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1177, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1141, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13453, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7266", "has_user_editable_resources": false, "alt_labels": [ "konkretismi (kuvataide)", "konkretism (konst)" ], "created_time": "2023-08-16T05:08:25.346620Z", "last_modified_time": "2023-08-16T05:08:25.346640Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 175, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "konkreettinen taide", "sv": "konkret konst", "en": "concrete art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494175, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T12:13:31.213517Z", "last_modified_time": "2025-12-10T12:13:31.213538Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781607.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494175/?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": "2025-12-10T12:13:31.123089Z", "last_modified_time": "2026-03-20T01:14:21.291332Z", "date_published": null, "start_time": "2026-05-16T08:00:00Z", "end_time": "2026-05-16T11: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, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalon_taidelauantai_Fragmentit_framille", "sv": "http://www.annantalo.fi/sv/evenemang/event/B4E81D44F4ED4BDACF091196616D6C87/Annegardens_konstlordagar_Fram_med_fragmenten", "en": "http://www.annantalo.fi/en/events/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalo_Art_Saturdays_Fragments_to_the_front" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b></p><p>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?</p><p>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Fragmentit framille", "sv": "Annegårdens konstlördagar: Fram med fragmenten", "en": "Annantalo Art Saturdays: Fragments to the front" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67500/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67646", "has_user_editable_resources": false, "location": { "id": "tprek:7255", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:12:15.976796Z", "last_modified_time": "2025-03-27T09:09:26.704708Z", "custom_data": null, "email": "kanneltalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 562, "image": 414654, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.876202, 60.23885 ] }, "telephone": { "fi": "+358 40 822 8918" }, "street_address": { "fi": "Klaneettitie 5", "sv": "Klarinettvägen 5", "en": "Klaneettitie 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.kanneltalo.fi/", "sv": "https://www.kanneltalo.fi/sv/framsidan", "en": "https://www.kanneltalo.fi/en/frontpage" }, "description": { "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.", "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.", "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre." }, "name": { "fi": "Kanneltalo", "sv": "Gamlasgården", "en": "Cultural Centre Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 796, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:41", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.583027Z", "last_modified_time": "2024-02-06T13:19:13.977719Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 557, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:755", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2024-05-30T11:10:09.697444Z", "last_modified_time": "2024-05-30T11:10:09.697496Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1117, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kaupunkiuudistusalueet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2848, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/juurevin-askelin-vakevin-savelin-vol-2-kanneltalo-21324296/", "sv": "https://www.lippu.fi/event/juurevin-askelin-vakevin-savelin-vol-2-kanneltalo-21324296/", "en": "https://www.lippu.fi/event/juurevin-askelin-vakevin-savelin-vol-2-kanneltalo-21324296/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494872, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-16T12:13:15.241059Z", "last_modified_time": "2026-02-16T12:13:15.241075Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782260.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494872/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-16T12:13:15.116881Z", "last_modified_time": "2026-03-20T01:14:21.128847Z", "date_published": null, "start_time": "2026-05-15T15: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, "short_description": { "fi": "Juurevin askelin, väkevin sävelin vol. 2 on Marja Rautakorven ja Taija Robaltan flamenco-oppilaiden tunnelmallinen kevätesitys, joka toteutetaan tänä keväänä Kanneltalossa.", "sv": "Juurevin askelin, väkevin sävelin vol. 2 är en stämningsfull vårföreställning med Marja Rautakorpis och Taija Robaltas flamencoelever, som denna vår hålls på Gamlasgården.", "en": "This spring, Kanneltalo will host the Juurevin askelin, väkevin sävelin vol. 2 (Rootsy steps and powerful tunes vol. 2), an atmospheric spring performance by Marja Rautakorpi and Taija Robalta's flamenco students." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1116CE931FFB642DB5957ACF50A4B6E4/Juurevin_askelin_vakevin_savelin_vol_2_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1116CE931FFB642DB5957ACF50A4B6E4/Juurevin_askelin_vakevin_savelin_vol_2_", "en": "http://www.kanneltalo.fi/en/events/event/1116CE931FFB642DB5957ACF50A4B6E4/Juurevin_askelin_vakevin_savelin_vol_2_" }, "description": { "fi": "<p>Juurevin askelin, väkevin sävelin vol. 2 on Marja Rautakorven ja Taija Robaltan flamenco-oppilaiden tunnelmallinen kevätesitys, joka toteutetaan tänä keväänä Kanneltalossa.</p><p>Tanssitaiteilija Marja Rautakorpi ja laulaja-laulunopettaja Taija Robalta yhdistävät jälleen voimansa tuoden laulu- ja tanssioppilaittensa kanssa työstämänsä ohjelmiston yhteiseen iltaan. Luvassa on ennennäkemätön kimara flamencolaulun lajeja usean laulajan voimin sekä puhuttelevia tanssinumeroita. Iltaa säestää kitaristi Tony de María. Rautakorven ryhmäkoreografioissa laulaa Taija Robalta.</p><p>Illassa ovat läsnä kaikki flamencon sävyt ilosta syvään suruun ja mietteliäisyydestä huumoriin. Tule mukaan kokemaan tämä tunnelmallinen kattaus suomalaisen flamenco-opetuksen hedelmiä!</p><p><b>Laulajat:</b></p><p>Inkeri Antikainen, Ilona Kallio, Terhi Ketolainen, Anna Palmio, Francesc Palomeras, Liisa Pekonen, Leena Pietilä, Niina Putkonen, Anja Tyrväinen, Timo Tyrväinen ja Taija Robalta</p><p><b>Tanssijat:</b></p><p>Carola Envall, Katia Geissler, Susanne Grönroos, Hilla Hanhela, Jonna Karoliina Huttunen, Meri Jalonen, Katjalina Jyllilä, Katariina Kankaanpää, Iida Kopra, Kukka-Maaria Kortesluoma, Inka Kovanen, Anita Laamanen, Camila Laine, Janna Lappalainen, Lauri Lehtimäki, Karoliina Leisti, Laura Leskelä, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Anu Mets, Leena Mustonen, Mari Mäkinen, Maria Paile-Hyvärinen, Tiina Partanen, Roosa Pietilä, Milla-Maija Saari, Liisa Sarén, Kristiina Taivalkoski-Shilov, Maria Talvitie, Assi Sten, Petra Valve ja Taina Välitalo</p><p><b>Tietoa opettajista: </b></p><p>Marja Rautakorpi on Suomessa ja Espanjassa kouluttautunut tanssialan ammattilainen (tanssitaiteen maisteri), joka etsii tuoreita ja kokeellisia näkökulmia flamencon tekemiseen. Hän työskentelee monipuolisesti taiteen vapaalla kentällä tanssija-koreografina, opettajana ja tuottajana niin flamencon parissa kuin taiteidenvälisissä produktioissa. Keväällä 2024 Marja palkittiin Pro Dance -stipendillä tunnustuksena hänen tähänastisesta ansiokkaasta tanssijan urastaan. Marja opettaa flamencotanssia tällä hetkellä vakituisesti Helsingissä Indictus Studiolla sekä kurssittaa aktiivisesti eri puolilla Suomea.</p><p>Taija Robalta on helsinkiläinen flamencolaulaja ja -laulunopettaja ja suomalaisen flamencolaulun kantava voima. Hän on asunut vuosia Sevillassa pääopettajanaan flamencolaulun elävä legenda, Esperanza Fernández. Sevillassa Taija on säestänyt laulullaan myös tanssitunteja (mm. Carmen Ledesma, Miguel Vargas) ja esiintynyt kaupungin tablaoissa niin laulajana kuin tanssijanakin. Suomessa Taija on tullut vuosituhannen vaihteen jälkeen laulajana tutuksi tanssiteoksissa, tablaokeikoilla ja oppilasnäytöksissä. Hän on toiminut flamencolaulun opettajana aina Taideyliopiston Sibelius-Akatemiaa myöten ja pitää vakituisia laulutunteja tällä hetkellä Helsingissä ja Tampereella. Tänä vuonna Taija viettää 20-vuotistaiteilijajuhlaa flamencolaulajana!</p><p>Kesto: 2h (sis. väliaika)</p>", "sv": "<p>Juurevin askelin, väkevin sävelin vol. 2 är en stämningsfull vårföreställning med Marja Rautakorpis och Taija Robaltas flamencoelever, som denna vår hålls på Gamlasgården.</p><p>Danskonstnären Marja Rautakorpi och sångerskan och sångläraren Taija Robalta förenar än en gång sina krafter och framför program som de arbetat med tillsammans med sina sång- och danselever under en gemensam kväll. Här utlovas en aldrig tidigare skådad cocktail av flamencosång av flera sångare och talande dansnummer. Kvällen ackompanjeras av gitarristen Tony de María. Taija Robalta sjunger i Rautakorpis gruppkoreografier.</p><p>Alla flamencons toner, från glädje till djup sorg och från tankfullhet till humor, är närvarande under kvällen. Kom med och upplev denna stämningsfulla dukning av frukter av den finländska flamencoundervisningen.</p><p>Sångare:<br>Inkeri Antikainen, Ilona Kallio, Terhi Ketolainen, Anna Palmio, Francesc Palomeras, Liisa Pekonen, Leena Pietilä, Niina Putkonen, Anja Tyrväinen, Timo Tyrväinen och Taija Robalta</p><p>Dansare:<br>Carola Envall, Katia Geissler, Susanne Grönroos, Hilla Hanhela, Jonna Karoliina Huttunen, Meri Jalonen, Katjalina Jyllilä, Katariina Kankaanpää, Iida Kopra, Kukka-Maaria Kortesluoma, Inka Kovanen, Anita Laamanen, Camila Laine, Janna Lappalainen, Lauri Lehtimäki, Karoliina Leisti, Laura Leskelä, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Anu Mets, Leena Mustonen, Mari Mäkinen, Maria Paile-Hyvärinen, Tiina Partanen, Roosa Pietilä, Milla-Maija Saari, Liisa Sarén, Kristiina Taivalkoski-Shilov, Maria Talvitie, Assi Sten, Petra Valve och Taina Välitalo</p><p>Information om lärarna:<br>Marja Rautakorpi är ett dansproffs (magister i danskonst), utbildad i Finland och Spanien, som letar efter fräscha och experimentella perspektiv på flamencon. Hon arbetar mångsidigt inom det fria konstfältet som dansare och koreograf, lärare och producent såväl inom flamencon som i tvärkonstnärliga produktioner. Våren 2024 tilldelades Marja ett Pro Dance-stipendium som ett erkännande för hennes framstående dansarkarriär hittills. Marja undervisar för närvarande regelbundet i flamencodans på Indictus Studio i Helsingfors och håller aktivt kurser på olika håll i Finland.</p><p>Taija Robalta är flamencosångerska och -sånglärare från Helsingfors och en bärande kraft i den finländska flamencosången. Hon har bott i Sevilla i åratal och haft den levande flamencosånglegenden Esperanza Fernández som sin huvudlärare. I Sevilla har Taija också ackompanjerat danslektioner (med bl.a. Carmen Ledesma, Miguel Vargas) med sin sång och uppträtt på stadens tablaoer som både sångerska och dansare. Sedan millennieskiftet har Taija blivit känd i Finland som sångerska i dansproduktioner, tablaospelningar och studerandeföreställningar. Hon har undervisat i flamencosång ända upp till Konstuniversitetets Sibelius-Akademi och håller för närvarande regelbundna sånglektioner i Helsingfors och Tammerfors. I år firar Taija sitt 20-årsjubileum som flamencosångerska!</p><p>Längd: 2 h (inkl. paus)</p>", "en": "<p>This spring, Kanneltalo will host the Juurevin askelin, väkevin sävelin vol. 2 (Rootsy steps and powerful tunes vol. 2), an atmospheric spring performance by Marja Rautakorpi and Taija Robalta's flamenco students.</p><p>Dance artist Marja Rautakorpi and singer and singing teacher Taija Robalta will once again join forces to bring the programme they have worked on with their singing and dancing students to the stage. The audience will be served an unprecedented cocktail of flamenco songs performed by several singers, as well as evocative dance numbers. The evening will be accompanied by guitarist Tony de María. Taija Robalta’s singing will accompany Rautakorpi's group choreographies.</p><p>The evening will include all the nuances of flamenco, from joy to deep sadness and from contemplation to humour. Come and experience this display of the fruits of Finnish flamenco teaching full of feeling!</p><p>Singers:<br>Inkeri Antikainen, Ilona Kallio, Terhi Ketolainen, Anna Palmio, Francesc Palomeras, Liisa Pekonen, Leena Pietilä, Niina Putkonen, Anja Tyrväinen, Timo Tyrväinen and Taija Robalta</p><p>Dancers:<br>Carola Envall, Katia Geissler, Susanne Grönroos, Hilla Hanhela, Jonna Karoliina Huttunen, Meri Jalonen, Katjalina Jyllilä, Katariina Kankaanpää, Iida Kopra, Kukka-Maaria Kortesluoma, Inka Kovanen, Anita Laamanen, Camila Laine, Janna Lappalainen, Lauri Lehtimäki, Karoliina Leisti, Laura Leskelä, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Anu Mets, Leena Mustonen, Mari Mäkinen, Maria Paile-Hyvärinen, Tiina Partanen, Roosa Pietilä, Milla-Maija Saari, Liisa Sarén, Kristiina Taivalkoski-Shilov, Maria Talvitie, Assi Sten, Petra Valve and Taina Välitalo</p><p>Information about the teachers:<br>Marja Rautakorpi is a dance professional (Master of Arts, Dance) trained in Finland and Spain, who is looking for fresh and experimental approaches to flamenco. She works in a variety of fields in the liberal arts as a dancer-choreographer, teacher and producer, both in flamenco and in inter-artistic productions. In spring 2024, Marja was awarded a Pro Dance scholarship in recognition of her distinguished dancing career to date. Marja currently teaches flamenco dance on a regular basis in Helsinki at Indictus Studio and she is active in providing dance courses in different parts of Finland.</p><p>Taija Robalta is a Helsinki-based flamenco singer and singing teacher and the driving force behind Finnish flamenco singing. She lived in Seville for years, where she was taught by the living legend of flamenco, Esperanza Fernández. In Seville, Taija also accompanied dance classes (Carmen Ledesma and Miguel Vargas, among others) and performed in the city's tablaos as a singer and dancer. Since the turn of the millennium, Taija has become known in Finland as a singer in dance productions, tablao performances and student concerts. She has been a teacher of flamenco singing in places such as the Sibelius Academy of the University of the Arts. She currently gives regular singing lessons in Helsinki and Tampere. This year, Taija celebrates her 20th anniversary as a flamenco singer!</p><p>Duration: 2 h (incl. intermission)</p>" }, "name": { "fi": "Juurevin askelin, väkevin sävelin vol. 2 – Marja Rautakorven ja Taija Robaltan flamenco-oppilaiden kevätesitys", "sv": "Juurevin askelin, väkevin sävelin vol. 2 – Vårföreställning med Marja Rautakorpis och Taija Robaltas flamencoelever", "en": "Juurevin askelin, väkevin sävelin vol. 2 – Spring performance by Marja Rautakorpi and Taija Robalta’s flamenco students" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67646/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68251", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 981, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 796, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 986, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2848, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/tanssin-juhlaa-helsingin-tanssikeskuksen-kevatnaytos-stoa-21463191/", "sv": "https://www.lippu.fi/event/tanssin-juhlaa-helsingin-tanssikeskuksen-kevatnaytos-stoa-21463191/", "en": "https://www.lippu.fi/event/tanssin-juhlaa-helsingin-tanssikeskuksen-kevatnaytos-stoa-21463191/" }, "description": null, "price": { "fi": "24,80€ / 19,80€", "sv": "24,80€ / 19,80€", "en": "24,80€ / 19,80€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1652170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-17T10:13:34.802746Z", "last_modified_time": "2026-03-17T10:13:34.802766Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780740.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1652170/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-17T10:13:34.660013Z", "last_modified_time": "2026-03-20T01:14:20.997498Z", "date_published": null, "start_time": "2026-05-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tanssin juhlaa – Helsingin Tanssikeskuksen vuoden 2026 kevätnäytös polkaisee kesän käyntiin ryminällä, kun lavan ottaa haltuun suuri joukko tanssijoita alkeista edistyneisiin ja ammattilaisiin.", "sv": "Helsingin Tanssikeskus våruppvisning sparkar igång våren när ett stort antal dansare, från nybörjare till längre hunna och proffs, intar scenen.", "en": "Helsingin Tanssikeskus’s spring performance will welcome summer with a bang, as a large number of dancers from beginners to advanced enthusiasts and professionals take over the stage." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/111C5A3FA92935E079F573D8BE44F0A5/Tanssin_juhlaa_Helsingin_Tanssikeskuksen_kevatnaytos_", "sv": "http://www.stoa.fi/sv/evenemang/event/111C5A3FA92935E079F573D8BE44F0A5/Dansfest_Helsingin_Tanssikeskus_varuppvisning", "en": "http://www.stoa.fi/en/events/event/111C5A3FA92935E079F573D8BE44F0A5/_A_celebration_of_dance_Helsingin_Tanssikeskus_s_spring_performance" }, "description": { "fi": "<p>Tanssin juhlaa – Helsingin Tanssikeskuksen vuoden 2026 kevätnäytös polkaisee kesän käyntiin ryminällä, kun lavan ottaa haltuun suuri joukko tanssijoita alkeista edistyneisiin ja ammattilaisiin.</p><p>Lavalla tullaan näkemään monipuolisesti flamencoa, balettia, nykytanssia ja irlantilaista tanssia.</p><p>Kolmen taidemuodon perinteet kohtaavat saman katon alla juhlistaen Helsingin Tanssikeskuksessa tarjottavaa tanssin opetusta. Luvassa on tanssin riemua, rytmistä ilotulitusta ja liikkeen herkkyyttä.</p><p>Illan aikana kuullaan myös elävää musiikkia aurinkoisen Mira que Mira -flamencokuoron sekä flamencoryhmiä säestämään saapuvien flamencomusiikin ammattilaisten esittämänä.</p><p>Esiintyjien ja ryhmien ohjaamisesta ja koreografioista vastaavat omien lajiensa ammattilaiset:</p><p>Anna Palmio</p><p>Anne Riikola-Sarkkila</p><p>Heidi Aaltonen</p><p>Laura Merisaari</p><p>Laura Vilhonen</p><p>Lyylia Koivuniemi</p><p>Marianna Stråhlmann</p><p>Minna Tervamäki</p><p>Terhi Spackstein</p><p>Vilma Kivinen</p><p>Flamencomuusikot:</p><p>Anna Murtola, laulu</p><p>Taija Tyrväinen, laulu</p><p>Niina Putkonen, laulu</p><p>Joonas Widenius, kitara</p><p>Tony de Maria, kitara</p><p>Juho Krouvi, kitara</p><p>Ricardo Padilla, lyömäsoittimet</p><p>Järjestäjä: Helsingin Tanssikeskus<br>Kesto n. 2 tuntia (sis. väliajan)</p>", "sv": "<p>Helsingin Tanssikeskus våruppvisning sparkar igång våren när ett stort antal dansare, från nybörjare till längre hunna och proffs, intar scenen.</p><p>På scenen bjuds det på en mångsidig mix av flamenco, balett och irländsk dans. Tre konstformers traditioner samlas under samma tak för att uppmärksamma Helsingin Tanssikeskus dansundervisning. Här utlovas dansglädje, ett rytmiskt fyrverkeri och känsliga rörelser.<br> <br>Under kvällen får vi också höra levande musik framförd av proffs inom flamencomusik, som kommer för att ackompanjera flamencokören Mira que Mira och flamencogrupperna.</p><p>Arrangör: Helsingin Tanssikeskus<br>Längd ca 2 h (inklusive paus)</p>", "en": "<p>Helsingin Tanssikeskus’s spring performance will welcome summer with a bang, as a large number of dancers from beginners to advanced enthusiasts and professionals take over the stage.</p><p>The programme will feature a variety of performances spanning flamenco, ballet and Irish dance.</p><p>The traditions of the three art forms meet under one roof to celebrate the dance education offered at Helsingin Tanssikeskus. The audience is in for the joy of dance, rhythmic fireworks and delicate movement.<br> <br>The evening will also feature live music performed by the sunny Mira que Mira flamenco choir and flamenco music professionals accompanying flamenco groups.</p><p>Organiser: Helsingin Tanssikeskus<br>Duration approx. 2 h, including intermission</p>" }, "name": { "fi": "Tanssin juhlaa – Helsingin Tanssikeskuksen kevätnäytös", "sv": "Dansfest – Helsingin Tanssikeskus våruppvisning", "en": "A celebration of dance – Helsingin Tanssikeskus’s spring performance" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68251/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67492", "has_user_editable_resources": false, "location": { "id": "tprek:7258", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna", "municipality": "Helsinki", "name": { "fi": "Ullanlinna", "sv": "Ulrikasborg" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } } ], "created_time": "2023-08-15T08:12:16.221655Z", "last_modified_time": "2024-02-06T13:09:51.033692Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00130", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 576, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.947306, 60.16663 ] }, "telephone": { "fi": "+358 9 310 36563" }, "street_address": { "fi": "Kasarmikatu 46-48", "sv": "Kaserngatan 46-48", "en": "Kasarmikatu 46-48" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.savoyteatteri.fi/", "sv": "http://www.savoyteatteri.fi/", "en": "http://www.savoyteatteri.fi/" }, "description": null, "name": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:348", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.541371Z", "last_modified_time": "2024-02-06T13:19:15.204233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1063, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:49", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.697675Z", "last_modified_time": "2024-02-06T13:19:14.132899Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 576, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Savoy-teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-20945085", "sv": "https://www.lippu.fi/event/name-20945085", "en": "https://www.lippu.fi/event/name-20945085" }, "description": null, "price": { "fi": "55-60 €", "sv": "55-60 €", "en": "55-60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493854, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-21T14:12:58.994302Z", "last_modified_time": "2025-11-21T14:12:58.994322Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781599.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493854/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-18T17:13:00.742472Z", "last_modified_time": "2026-03-20T01:14:20.817332Z", "date_published": null, "start_time": "2026-05-13", "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, "short_description": { "fi": "Ruotsalainen supertähti Peter Jöback Suomeen ensi keväänä", "sv": "Den svenska superstjärnan Peter Jöback kommer till Finland i vår", "en": "Swedish superstar Peter Jöback comes to Finland this spring" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E0E9DF45C8286D5A78C0CB3EC265AC11/Peter_Joback_SE_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/E0E9DF45C8286D5A78C0CB3EC265AC11/Peter_Joback_SE_", "en": "http://www.savoyteatteri.fi/en/events/event/E0E9DF45C8286D5A78C0CB3EC265AC11/Peter_Joback_SE_" }, "description": { "fi": "<p>Ruotsalainen supertähti Peter Jöback Suomeen ensi keväänä</p><p>Pohjoismaiden rakastetuimpiin ja monipuolisimpiin artisteihin lukeutuva <b>Peter Jöback</b> palaa Suomeen ensi keväänä. Ruotsalaisartisti esiintyy yhdessä pianisti <b>Nils-Petter Ankarblomin</b> kanssa En kväll med Jöback -konserttikiertueella, jonka päätöskonsertti nähdään Helsingin Savoy-teatterissa keskiviikkona 13. toukokuuta. Intiimin ja lämpimän konserttielämyksen lipunmyynti käynnistyy Lippu.fissä torstaina 20. marraskuuta klo 11. <br> <br>Uraansa yli genrerajojen rakentanut laulaja-lauluntekijä, näyttelijä ja musikaaliartisti Peter Jöback on moninkertaisesti platinaa myynyt artisti, jolla on useita Ruotsin Grammy-ehdokkuuksia sekä radioalan palkintoja. Läpimurtonsa vuonna 1995 Kristinä från Duvemåla-musikaalissa tehneen Jöbackin kappale <i>Guldet blev till sand</i> pysytteli Svensktoppen-musiikkilistalla 110 viikon ajan. Sittemmin hän on hurmannut yleisöjä voimakkailla ja tunnepitoisilla live-esiintymisillään ympäri Skandinaviaa, Lontoon West Endiä ja Broadwayta unohtamatta. <br> <br>Aiemmin kuluneena vuonna Jöback julkaisi kriitikoidenkin laajasti ylistämän 14. studioalbuminsa <i>Atlas</i>, jolla vierailee muun muassa brittiartistit Sophie Ellis Bextor sekä Ed Harcourt. Tuotteliaan artistin heinäkuussa ilmestynyt single <i>The Spectrum of Love</i> oli Stockholm Priden virallinen tunnuskappale. Syksyn ajan artisti on kiertänyt areenoita yhdessä Ola Salon kanssa, jonka kanssa yhteistyö jatkuu juuri julkaistulla singlellä <i>Two of a Kind</i>. <br> <br><b>PETER JÖBACK (SE) – EN KVÄLL MED JÖBACK</b></p><p>Ovet klo 18:00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Den svenska superstjärnan Peter Jöback kommer till Finland i vår</p><p>Peter Jöback, som är en av Nordens mest älskade och mångsidiga artister, återvänder till Finland i vår. Den svenske artisten uppträder tillsammans med pianisten Nils-Petter Ankarblom med konsertturnén En kväll med Jöback, vars sista konsert äger rum på Savoy-teatern i Helsingfors onsdagen den 13 maj. Biljetter till den intima och varma konsertupplevelsen släpps till försäljning på Lippu.f torsdagen den 20 november kl. 11.</p><p>Singer-songwritern, skådespelaren och musikalartisten Peter Jöback, som har byggt upp sin karriär över genregränserna, har sålt platina många gånger om och har flera Grammisnomineringar och radiopriser i bagaget. Jöbacks genombrott kom med musikalen Kristina från Duvemåla 1995, och låten Guldet blev till sand låg på Svensktoppen i 110 veckor. Sedan dess har han imponerat på publiken med kraftfulla och känslosamma liveframträdanden i hela Skandinavien och även i Londons West End och på Broadway.</p><p>Förra året släppte Jöback sitt kritikerrosade fjortonde studioalbum Atlas, som bland annat gästas av de brittiska artisterna Sophie Ellis Bextor och Ed Harcourt. Den produktiva artistens singel The Spectrum of Love, som släpptes i juli, var den officiella låten för Stockholm Pride. Under hösten har han turnerat på arenor tillsammans med Ola Salo, och samarbetet fortsätter med den nysläppta singeln Two of a Kind.</p><p>PETER JÖBACK (SE) – EN KVÄLL MED JÖBACK</p><p>Dörrarna öppnas kl. 18.00. Showtime bekräftas senare.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>Swedish superstar Peter Jöback comes to Finland this spring</p><p>One of the most beloved and versatile artists in the Nordic countries, Peter Jöback will return to Finland this spring. The Swedish artist will perform together with pianist Nils-Petter Ankarblom on the En kväll med Jöback concert tour, the final concert of which will take place at the Savoy Theatre in Helsinki on Wednesday 13 May. Tickets for the intimate and warm concert experience went on sale on Lippu.fi on Thursday 20 November at 11.00.</p><p>Having built a career across genres, singer-songwriter, actor and musical artist Peter Jöback is a multi-platinum selling artist with several Swedish Grammy nominations and radio awards to his name. Jöback had his breakthrough in 1995 when his song Guldet blev till sand, written for the musical Kristinä från Duvemåla, stayed in the Svensktoppen music charts for 110 weeks. He has since been wowing audiences with powerful and emotional live performances across Scandinavia, not forgetting London’s West End and Broadway.</p><p>Last year, Jöback released his critically acclaimed 14th studio album Atlas, which features guest appearances by artists such as Sophie Ellis Bextor and Ed Harcourt from the UK. The prolific artist’s single The Spectrum of Love, released in July, was the official theme song for Stockholm Pride. Throughout the autumn, the artist toured arenas together with Ola Salo, with whom Jöback continued collaborating on the single Two of a Kind.</p><p>PETER JÖBACK (SE) – EN KVÄLL MED JÖBACK</p><p>The doors will open at 18.00. Showtime to be confirmed later.</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>" }, "name": { "fi": "Peter Jöback (SE)", "sv": "Peter Jöback (SE)", "en": "Peter Jöback (SE)" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Fullsteam Agency Oy", "sv": "Fullsteam Agency Oy", "en": "Fullsteam Agency Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67492/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68088", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 770, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 807, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494817, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T14:13:22.000974Z", "last_modified_time": "2026-02-09T14:13:22.000992Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780515.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-09T14:13:21.778797Z", "last_modified_time": "2026-03-20T01:14:20.608536Z", "date_published": null, "start_time": "2026-05-13T15: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, "short_description": { "fi": "Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.", "sv": "Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.", "en": "Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki", "sv": "http://www.vuotalo.fi/sv/evenemang/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki", "en": "http://www.vuotalo.fi/en/events/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki" }, "description": { "fi": "<p>Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.</p><p>Jazz for Kids on korkeatasoisten jazzkonserttien sarja, johon ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä äänenvoimakkuudella <br>kulttuurikeskusten helposti saavutettavissa aulatiloissa.</p><p>Uunituoreen Luotsi-yhtyeen muusikot, alttosaksofonisti ja huilisti Oona Mattsson sekä pianisti Riitta Paakki, esittävät Jazz Suomi 100 -juhlavuoden kunniaksi kiehtovan kattauksen suomalaisia jazzoriginaaleja sekä omaa tuotantoaan. Luvassa on jazzyleisölle sekä tuttuja että harvemmin kuultuja helmiä tämän päivän tulkintoina, joten katse suuntautuu historian lisäksi vahvasti tulevaisuuteen.</p><p>Oona Mattsson on esiintynyt useiden tunnettujen kotimaisten jazzmuusikoiden kanssa, sekä big bandien että pienempien kokoonpanojen riveissä. Hänen soittoaan voi kuulla muun muassa Kanvas-yhtyeen ja Siina Suutarisen keväällä 2025 julkaistuilla albumeilla. Riitta Paakki on puolestaan arvostettu jazzmuusikko, säveltäjä ja yhtyeenjohtaja, joka sai Jazzliiton Yrjö-palkinnon vuonna 2019. Hän on julkaissut omien yhtyeidensä kanssa seitsemän albumia.</p><p>Tilaisuuden kesto on 45 min. Yhtye esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikoita ja soittimia.</p><p>Oona Mattsson – alttosaksofoni <br>Riitta Paakki – piano</p><p>Suomen Jazzliiton ja Helsingin kulttuurikeskusten Jazz for Kids -toimintamalli pohjautuu samannimiseen konserttisarjaan, jota on järjestetty Espoon kulttuurikeskuksessa vuodesta 2015 yhteistyössä Espoon musiikkiopiston pop/jazzlinja Ebelin kanssa. Konseptin kehittäjä on Espoon musiikkiopiston pop/jazzlinja Ebeli.</p><p>Vuonna 2026 tulee kuluneeksi 100 vuotta siitä, kun jazz symbolisesti rantautui Andania-laivan mukana Suomeen. Vuosi on siten historiallinen kotimaisen jazzin juhlavuosi: Jazz Suomi 100 -juhlavuosi. Juhlavuosi nostaa esiin kotimaista jazzia ja sen tekijöitä niin Suomessa kuin ulkomailla, ja juhlii jazzia osana suomalaista kulttuuriperintöä. Jazz Suomi 100 -kampanjaa koordinoi Suomen Jazzliitto.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>", "sv": "<p>Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.</p><p>Jazz for Kids är en serie jazzkonserter på hög nivå där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga lobbyutrymmen.</p><p>Musikerna i det färska bandet Luotsi, altsaxofonisten och flöjtisten Oona Mattsson och Pianisten Riitta Paakki, framför en fascinerande blandning av finländska jazzoriginal och egen produktion för att uppmärksamma Jazz Finland 100-jubileumsåret. På programmet står både låtar som är välkända bland jazzpubliken och mindre kända pärlor i moderna tolkningar, så blicken riktas såväl mot historien som starkt framåt.</p><p>Oona Mattsson har framträtt med många kända finska jazzmusiker, både i storband och mindre ensembler. Man kan höra henne spela bland annat på gruppen Kanvas och Siina Suutarinens album från våren 2025. Riitta Paakki är en hyllad jazzmusiker, tonsättare och bandledare som tilldelades jazzförbundets Yrjö-pris år 2019. Hon har gett ut sju album med sina egna band.</p><p>Evenemanget varar i 45 minuter. Bandet spelar i ca 35 minuter, varefter publiken kan hälsa på musikerna och instrumenten.</p><p>Oona Mattsson – altsaxofon <br>Riitta Paakki – piano</p><p>Suomen Jazzliittos och Helsingfors kulturcenters verksamhetsmodell Jazz for Kids baserar sig på en konsertserie med samma namn som har ordnats på kulturcentren i Esbo sedan 2015 i samarbete med pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto. Konceptet har utvecklats av pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto.</p><p>År 2026 blir det 100 år sedan jazzen symboliskt landsteg i Finland med fartyget Andania. Året är alltså ett historiskt jubileumsår för den inhemska jazzen: Jubileumsåret Jazz Finland 100. Under jubileumsåret lyfter vi fram den finländska jazzen och dess artister både i Finland och utomlands samt firar jazzen som en del av det finländska kulturarvet. Kampanjen Jazz Suomi 100 samordnas av Suomen Jazzliitto.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>", "en": "<p>Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby.</p><p>Jazz for Kids is a series of high-quality jazz concerts for everyone from babies to grandparents! Professional musicians perform their work at child-friendly volumes in the easily accessible lobbies of the City’s cultural centres.</p><p>The musicians of the newly formed Luotsi band, alto saxophonist and flutist Oona Mattsson and pianist Riitta Paakki, will perform a fascinating selection of Finnish jazz originals and their own compositions to celebrate the Jazz in Finland 100 anniversary year. With both familiar and less-heard gems for jazz audiences, interpreted in a contemporary way, the focus of the concert is not only on history but also on the future.</p><p>Oona Mattsson has performed with many well-known Finnish jazz musicians, both in big bands and smaller ensembles. Her playing can be heard on recordings such as the albums released by Kanvas and Siina Suutarinen in spring 2025. Riitta Paakki is an acclaimed jazz musician, composer and bandleader who received the Finnish Jazz Federation’s Yrjö Award in 2019. She has released seven albums with her own bands.</p><p>The duration of the event is 45 minutes. The band will perform for about 35 minutes, after which the audience can come greet the musicians and see the instruments.</p><p>Oona Mattsson – alto saxophone <br>Riitta Paakki – piano</p><p>The Jazz for Kids operating model of the Finnish Jazz Federation and City of Helsinki Cultural Centres is based on the concert series of the same name, which has been organised at the Espoo Cultural Centre since 2015 in cooperation with Espoo Music Institute’s pop/jazz line Ebeli. The concept was developed by Ebeli, the pop/jazz line at Espoo Music Institute.</p><p>2026 marks the 100th anniversary of jazz symbolically landing in Finland on the ship Andania. Thus, the year is a historic celebration of Finnish jazz: the Jazz in Finland 100 centenary. The centenary will highlight Finnish jazz and its artists both in Finland and abroad, and celebrate jazz as part of the Finnish cultural heritage. The Jazz in Finland 100 campaign is coordinated by the Finnish Jazz Federation.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>" }, "name": { "fi": "Jazz for Kids: Oona Mattsson & Riitta Paakki", "sv": "Jazz for Kids: Oona Mattsson & Riitta Paakki", "en": "Jazz for Kids: Oona Mattsson & Riitta Paakki" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68088/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68245", "has_user_editable_resources": false, "location": { "id": "tprek:8310", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:45.320764Z", "last_modified_time": "2024-02-06T13:09:57.096632Z", "custom_data": null, "email": "vuosaaren_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 600, "image": 7836, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.14392, 60.20868 ] }, "telephone": { "fi": "+358 9 310 85098" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/vuosaarenkirjasto", "sv": "http://www.helmet.fi/nordsjobibliotek", "en": "http://www.helmet.fi/vuosaarilibrary" }, "description": null, "name": { "fi": "Vuosaaren kirjasto", "sv": "Nordsjö bibliotek", "en": "Vuosaari Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 807, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 382, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 338, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1643197, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T13:13:58.489784Z", "last_modified_time": "2026-03-16T13:13:58.489800Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786458.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1643197/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T13:13:58.369761Z", "last_modified_time": "2026-03-20T01:14:20.488416Z", "date_published": null, "start_time": "2026-05-13", "end_time": "2026-06-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari_", "en": "http://www.vuotalo.fi/en/events/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari" }, "description": { "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita?</p><p>Vuosaarelaisten lahjoittamista tarpeettomista tavaroista on tehty koosteita kirjaston elämäkertaosastoille. Esinekoosteet näyttäytyvät alueen asukkaiden muotokuvina. Lahjoitetut esineet on skannattu ja tulostettu uuteen kokonaisuuteen 3D-tulostimella. Näin näyttelyn osaksi tuodaan paikallisten asukkaiden läsnäoloa ja mikrohistoriaa.</p><p>Alueen asukkailta kerätyt esineet ovat suurelta osin Kiinassa massatuotettuja tavaroita, joiden merkitys on hävinnyt uutuusarvon kadottua. Ehkä juuri tässä piilee nykyhetkessämme kytevä kriisi: maailma täyttyy muovista ja tavarasta, jota kukaan ei arvosta tai halua. Miten muuttaisimme suhteemme esineisiin vaalivaksi ja arvostavaksi? Miten oppisimme näkemään uutuusarvon ohi ja suosimaan kestäväksi suunniteltuja, korjattavissa olevia, tarinoiden kyllästämiä tavaroita?</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus. Lue lisää:https://anneroininen.com/</p><p>Löydät teokset Elämäkerta-hyllyistä, Vuosaaren kirjaston puolelta.</p>" }, "name": { "fi": "Made in Vuosaari – Vuosaaren kirjastossa", "sv": "Made in Vuosaari – Vuosaaren kirjastossa", "en": "Made in Vuosaari – Vuosaaren kirjastossa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68245/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67469", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1361, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1349, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:755", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2024-05-30T11:10:09.697444Z", "last_modified_time": "2024-05-30T11:10:09.697496Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1117, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kaupunkiuudistusalueet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494013, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:11.160660Z", "last_modified_time": "2025-12-03T08:13:11.160676Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781436.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494013/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:11.046257Z", "last_modified_time": "2026-03-20T01:14:20.239203Z", "date_published": null, "start_time": "2026-05-12T14: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, "short_description": { "fi": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!", "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!", "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Allsang", "en": "http://www.malmitalo.fi/en/events/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Singalongs" }, "description": { "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>", "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>", "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>" }, "name": { "fi": "Yhteislaulut", "sv": "Allsång", "en": "Singalongs" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67469/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68097", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 770, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 807, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5995, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4850, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1177, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1141, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494836, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T10:13:07.993790Z", "last_modified_time": "2026-02-10T10:13:07.993804Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784521.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T10:13:07.887828Z", "last_modified_time": "2026-03-20T01:14:19.610071Z", "date_published": null, "start_time": "2026-05-12T09:00:00Z", "end_time": "2026-05-12T10: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, "short_description": { "fi": "Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?", "sv": "Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?", "en": "What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Toisissa_tiloissa_-kollektiivi_METSIYDYTAAN_-tyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Toisissa_tiloissa-kollektivet_METSIYDYTAAN_-verkstader", "en": "http://www.vuotalo.fi/en/events/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Other_Spaces_collective_INTO_THE_FOREST_workshops" }, "description": { "fi": "<p>Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?</p><p>Metsiydytään! -työpajoissa tutkitaan metsäekosysteemin prosesseja taidetyöskentelyä ja luonnontiedettä yhdistäen. Työpajoissa alakoulun oppilaat tutustuvat kokemuksellisesti metsäekosysteemin eri ilmiöihin yhdessä tehtävien keholliseen oppimiseen perustuvien harjoitteiden kautta. Tutkimme metsän eri osasia sekä eläydyimme metsäeliöiden kiehtoviin vuorovaikutussuhteisiin ja kiertokulkuihin.</p><p>Työpaja metsäympäristöä lähestytään toisten lajien näkökulmasta käsin. Sen tavoitteena on syventää lasten luontosuhdetta myönteisten oivallusten ja elämysten kautta. Työpaja lisää tietoa metsäluonnosta ja sen merkityksestä sekä tarjoaa opettajille kehollisen oppimisen työkaluja metsäsuhteen ja metsän eri ilmiöiden käsittelemiseen.</p><p>Työpajojen suunnittelusta ja ohjauksesta vastaavat Toisissa tiloissa -esitystaiteen kollektiivin Kaisa-Liisa Logrén ja Heli Keto. Toisissa tiloissa -esitystaiteen kollektiivi on kehittänyt kehollisia harjoitteita ja osallistavia esityksiä jo yli 20 vuoden ajan. Työpajoissa käytettävä metodi: kehollinen samaistuminen luonnon prosesseihin tarjoaa poikkeuksellisen reitin ekologisen ymmärryksen kasvattamiseen.</p><p>Ryhmille pakollinen ilmoittautuminen etukäteen: kultus.hel.fi</p><p>Kieli: suomi<br>Kesto: noin 1,5 tuntia<br>Vapaa pääsy</p>", "sv": "<p>Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?</p><p>Metsiydytään!-verkstäderna utforskar vi processer i skogens ekosystem genom en kombination av konst och naturvetenskap. I verkstäderna får lågstadieelever genom upplevelser bekanta sig med olika fenomen i skogens ekosystem genom gemensamma övningar som baserar sig på kroppsligt lärande. Vi utforskar skogens olika delar och lever oss in i skogsvarelsernas fascinerande relationer och kretslopp.</p><p>I verkstaden närmar vi oss skogsmiljön ur andra arters perspektiv. Dess mål är att fördjupa barnens relation till naturen genom positiva insikter och upplevelser. Verkstaden ökar kunskapen om skogsnaturen och dess betydelse och erbjuder läraren verktyg för kroppsligt lärande för att behandla relationen till skogen och olika fenomen i den.</p><p>Verkstäderna planeras och leds av Kaisa-Liisa Logrén och Heli Keto från Toisissa tiloissa-kollektivet för performancekonst. Toisissa tiloissa-kollektivet för performancekonst har utvecklat kroppsliga övningar och inkluderande föreställningar i över 20 år. Metoden som används i verkstäderna: när man kroppsligen identifierar sig med naturens processer öppnar sig en exceptionell väg till en ökad ekologisk förståelse.</p><p>Grupper måste anmäla sig i förväg: kultus.hel.fi</p><p>Språk: finska<br>Längd: cirka 1,5 h<br>Fritt inträde</p>", "en": "<p>What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?</p><p>The Into the Forest! workshops explore forest ecosystem processes by combining art work and natural science. In the workshops, primary school pupils learn experientially about different phenomena in the forest ecosystem through collaborative exercises based on bodily learning. We will explore different parts of the forest and immerse ourselves in the fascinating interactions and cycles of forest organisms.</p><p>The workshop approaches the forest environment from the perspective of other species. The aim is to deepen children’s relationship with nature through positive discoveries and experiences. The workshop increases awareness of forest nature and its importance, and provides teachers with bodily learning tools for delving into the different phenomena of forest relations and forests.</p><p>The workshops will be planned and instructed by Kaisa-Liisa Logrén and Heli Keto from the performance art collective Other Spaces. The Other Spaces performance art collective has been developing bodily exercises and participatory performances for over 20 years. The method used in the workshops: bodily identification with natural processes provides an exceptional route to increasing ecological understanding.</p><p>Groups must register in advance: kultus.hel.fi</p><p>Language: Finnish<br>Duration: roughly 1.5 h<br>Free entry</p>" }, "name": { "fi": "Toisissa tiloissa -kollektiivi: METSIYDYTÄÄN! -työpajat – Luonnontiedettä ja taidetta yhdistävät työpajat 1.–2.-luokkalaisille", "sv": "Toisissa tiloissa-kollektivet: METSIYDYTÄÄN!-verkstäder – Verkstäder för barn i årskurs 1–2 som kombinerar naturvetenskap och konst", "en": "Other Spaces collective: INTO THE FOREST! workshops – Workshops combining natural science and art for 1st–2nd graders" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68097/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }