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&page=27&show_all=true
{ "meta": { "count": 34806, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=28&show_all=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=26&show_all=true" }, "data": [ { "id": "kulke:69443", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385223, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:59.517281Z", "last_modified_time": "2026-06-17T08:14:59.517297Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792267.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385223/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:59.408775Z", "last_modified_time": "2026-06-17T08:14:59.672548Z", "date_published": null, "start_time": "2026-12-10T11:00:00Z", "end_time": "2026-12-10T11:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/73C6E1D3CBC05AAC4AD2BB2E62E76EDD/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/73C6E1D3CBC05AAC4AD2BB2E62E76EDD/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/73C6E1D3CBC05AAC4AD2BB2E62E76EDD/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69443/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69442", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385222, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:58.176056Z", "last_modified_time": "2026-06-17T08:14:58.176072Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792266.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385222/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:58.080606Z", "last_modified_time": "2026-06-17T08:14:58.303289Z", "date_published": null, "start_time": "2026-12-03T11:00:00Z", "end_time": "2026-12-03T11:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/319EEA173B1CC3EF699EBF911183FA47/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/319EEA173B1CC3EF699EBF911183FA47/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/319EEA173B1CC3EF699EBF911183FA47/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69442/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69441", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385221, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:57.027484Z", "last_modified_time": "2026-06-17T08:14:57.027500Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792265.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385221/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:56.905687Z", "last_modified_time": "2026-06-17T08:14:57.168731Z", "date_published": null, "start_time": "2026-11-26T11:00:00Z", "end_time": "2026-11-26T11:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/422D7D8E90CD5F093886929013E564F3/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/422D7D8E90CD5F093886929013E564F3/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/422D7D8E90CD5F093886929013E564F3/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69441/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69440", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385220, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:55.753299Z", "last_modified_time": "2026-06-17T08:14:55.753314Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792264.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385220/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:55.648238Z", "last_modified_time": "2026-06-17T08:14:55.890762Z", "date_published": null, "start_time": "2026-11-19T11:00:00Z", "end_time": "2026-11-19T11:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/71DB66C38C2E1EE0C7BB73BAE29A3B81/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/71DB66C38C2E1EE0C7BB73BAE29A3B81/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/71DB66C38C2E1EE0C7BB73BAE29A3B81/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69440/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69439", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385219, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:54.739663Z", "last_modified_time": "2026-06-17T08:14:54.739679Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792263.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385219/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:54.638127Z", "last_modified_time": "2026-06-17T08:14:54.881972Z", "date_published": null, "start_time": "2026-11-12T11:00:00Z", "end_time": "2026-11-12T11:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F25BB76F6A327F8B7B1C1F5F77D4E54D/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F25BB76F6A327F8B7B1C1F5F77D4E54D/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/F25BB76F6A327F8B7B1C1F5F77D4E54D/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69439/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69438", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385218, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:53.225264Z", "last_modified_time": "2026-06-17T08:14:53.225280Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792262.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385218/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:53.109440Z", "last_modified_time": "2026-06-17T08:14:53.385662Z", "date_published": null, "start_time": "2026-11-05T11:00:00Z", "end_time": "2026-11-05T11:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9F62EC99FD7F0205D7ADC91CFCE63CAD/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9F62EC99FD7F0205D7ADC91CFCE63CAD/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/9F62EC99FD7F0205D7ADC91CFCE63CAD/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69437", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:51.924024Z", "last_modified_time": "2026-06-17T08:14:51.924040Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792261.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385217/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:51.797131Z", "last_modified_time": "2026-06-17T08:14:52.068506Z", "date_published": null, "start_time": "2026-10-29T11:00:00Z", "end_time": "2026-10-29T11:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/62F1C35F0C86003A799C697175171AB8/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/62F1C35F0C86003A799C697175171AB8/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/62F1C35F0C86003A799C697175171AB8/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69437/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69436", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:50.372446Z", "last_modified_time": "2026-06-17T08:14:50.372461Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792260.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:50.246141Z", "last_modified_time": "2026-06-17T08:14:50.512834Z", "date_published": null, "start_time": "2026-10-22T10:00:00Z", "end_time": "2026-10-22T10:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A4C848139C61C47A7891A6EA43BB1C18/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A4C848139C61C47A7891A6EA43BB1C18/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/A4C848139C61C47A7891A6EA43BB1C18/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69436/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69435", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385215, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:48.513556Z", "last_modified_time": "2026-06-17T08:14:48.513572Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792259.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385215/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:48.406897Z", "last_modified_time": "2026-06-17T08:14:48.665899Z", "date_published": null, "start_time": "2026-10-08T10:00:00Z", "end_time": "2026-10-08T10:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0FFC129C1F426224EB941600D71B6D87/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0FFC129C1F426224EB941600D71B6D87/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/0FFC129C1F426224EB941600D71B6D87/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69434", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385214, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:46.977137Z", "last_modified_time": "2026-06-17T08:14:46.977155Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792258.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385214/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:46.860418Z", "last_modified_time": "2026-06-17T08:14:47.156754Z", "date_published": null, "start_time": "2026-10-01T10:00:00Z", "end_time": "2026-10-01T10:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8863B965517FCBBC2E54C1F7A8D4E597/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8863B965517FCBBC2E54C1F7A8D4E597/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/8863B965517FCBBC2E54C1F7A8D4E597/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69434/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68253", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-elama-on-taikaa-kanneltalo-21472096/", "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-elama-on-taikaa-kanneltalo-21472096/", "en": "https://www.lippu.fi/event/jokeri-pokeri-box-elama-on-taikaa-kanneltalo-21472096/" }, "price": { "fi": "19,80 €", "sv": "19,80 €", "en": "19,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385213, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:45.951154Z", "last_modified_time": "2026-06-17T08:14:45.951169Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786496.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385213/?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-06-17T08:14:45.816786Z", "last_modified_time": "2026-06-17T08:14:46.144358Z", "date_published": null, "start_time": "2026-09-26T12:00:00Z", "end_time": "2026-09-26T13: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, "name": { "fi": "Jokeri Pokeri Box – Elämä on taikaa! – Taikuri Simo Aallon 50-vuotisjuhlakiertue", "sv": "Jokeri Pokeri Box – Elämä on taikaa!", "en": "Jokeri Pokeri Box – Elämä on taikaa!" }, "short_description": { "fi": "Simon pitkää ja menestyksekästä taikurin uraa on seurannut jo kaksi sukupolvea ja meno vaan paranee!" }, "description": { "fi": "<p>Simon pitkää ja menestyksekästä taikurin uraa on seurannut jo kaksi sukupolvea ja meno vaan paranee!</p><p>Juhlakiertueellaan Simo ja avustajavaimonsa Kirsti tarjoavat korkeatasoista, iloista ja hämmästyttävää taikuutta paketoituna sopivaksi koko perheelle ja kaikenikäisille katsojille. Show yhdistää klassisen taikuuden, visuaaliset efektit ja vuorovaikutteisuuden upeaksi kokemukseksi. Mukana ovat tietysti kivat eläinystävät!</p><p>Lasten apua toki tempuissa tarvitaan ja tällä kertaa mukaan otetaan myös aikuiset avustamaan taikuria.</p><p>Luvassa on siis taattua Jokeri Pokeri Box -laatua ja riemukasta taikuutta!</p><p>Kesto: 1 t, ei väliaikaa<br>Liput: 19,80 €, maks. 4 hengen ryhmälippu 69,6 €, alle 2-vuotiaat maksutta</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/74806463FABA7B736E311ED61B549E23/Jokeri_Pokeri_Box_Elama_on_taikaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/74806463FABA7B736E311ED61B549E23/Jokeri_Pokeri_Box_Elama_on_taikaa_", "en": "http://www.kanneltalo.fi/en/events/event/74806463FABA7B736E311ED61B549E23/Jokeri_Pokeri_Box_Elama_on_taikaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68253/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69433", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:44.995797Z", "last_modified_time": "2026-06-17T08:14:44.995813Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792257.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:44.890317Z", "last_modified_time": "2026-06-17T08:14:45.147613Z", "date_published": null, "start_time": "2026-09-24T10:00:00Z", "end_time": "2026-09-24T10:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69433/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68445", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "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/kinetic-orchestra/", "sv": "https://www.lippu.fi/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/artist/kinetic-orchestra/" }, "price": { "fi": "24 / 14 €", "sv": "24 / 14 €", "en": "24 / 14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385211, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:44.516758Z", "last_modified_time": "2026-06-17T08:14:44.516775Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789561.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385211/?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-06-17T08:14:44.378572Z", "last_modified_time": "2026-06-17T08:14:44.712241Z", "date_published": null, "start_time": "2026-09-23T15:00:00Z", "end_time": "2026-09-23T16: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, "name": { "fi": "Oskari Turpeinen & Kinetic Orchestra: Block – Maybe We Go Out", "sv": "Oskari Turpeinen & Kinetic Orchestra: Block – Maybe We Go Out", "en": "Oskari Turpeinen & Kinetic Orchestra: Block – Maybe We Go Out" }, "short_description": { "fi": "Tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen ja kuvaavat, kuinka pelottavaa ja epävarmaa elämä onkaan ilman kodin ja ystävien turvaa?" }, "description": { "fi": "<p>Tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen ja kuvaavat, kuinka pelottavaa ja epävarmaa elämä onkaan ilman kodin ja ystävien turvaa?</p><p>Mitä tapahtuu kolmelle ystävykselle, joiden elämä on jämähtänyt kotiin? On suuria visioita tulevaisuudesta, mutta kodin luoma turva ja huoli elämän muutoksesta naulaavat takapuolen tiukasti kotisohvalle.</p><p>Haaveet, pelot ja kärsimättömyys myllertävät jatkuvasti kotona notkuvien ystävysten takaraivoissa. Aika valuu ja venyy ja koti, huonekalut, haaveet ja asukkaat laitetaan moneen kertaan uuteen järjestykseen, ja aina tuntuu löytyvän jotain parempaa tekemistä kuin tulevaisuuden kohtaaminen. Ulos olisi joskus päästävä, vaan kun se ei vain tunnu onnistuvan.</p><p>Esityksen pääteemoja ovat aikuistuminen ja epätietoisuus tulevaisuudesta ja se on suunnattu erityisesti nuorille ja nuorille aikuisille. Teos yhdistää tanssia, sirkusta, live-musiikkia ja teatteria.</p><p>Lavalla nähdään tanssija/koreografi Oskari Turpeinen, tanssija Mikko Makkonen ja muusikko Eetu Hölttä. Lisäksi työryhmään kuuluvat äänisuunnittelija Josu Mämmi, valosuunnittelija Lauri Hietanen, tanssija Iiro Näkki ja koreografin assistentti Sanni Giordani.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/29C1C3280B4BF276A756CB5DDB24ADC5/Oskari_Turpeinen_Kinetic_Orchestra_Block_Maybe_We_Go_Out", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/29C1C3280B4BF276A756CB5DDB24ADC5/Oskari_Turpeinen_Kinetic_Orchestra_Block_Maybe_We_Go_Out", "en": "http://www.kanneltalo.fi/en/events/event/29C1C3280B4BF276A756CB5DDB24ADC5/Oskari_Turpeinen_Kinetic_Orchestra_Block_Maybe_We_Go_Out" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68445/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68923", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:41.684479Z", "last_modified_time": "2026-06-17T08:14:41.684500Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792256.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385210/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:41.560434Z", "last_modified_time": "2026-06-17T08:14:41.862953Z", "date_published": null, "start_time": "2026-09-17T10:00:00Z", "end_time": "2026-09-17T10:50: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Taidejumppa – anna taiteen liikuttaa!", "en": "Taidejumppa – anna taiteen liikuttaa!" }, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon." }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E72C8D9248440DC9BDEE27EB11324FE3/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E72C8D9248440DC9BDEE27EB11324FE3/Taidejumppa_anna_taiteen_liikuttaa_", "en": "http://www.kanneltalo.fi/en/events/event/E72C8D9248440DC9BDEE27EB11324FE3/Taidejumppa_anna_taiteen_liikuttaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68923/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68608", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385205, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T06:14:03.717676Z", "last_modified_time": "2026-06-17T06:14:03.717698Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791156.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385205/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T06:14:03.545126Z", "last_modified_time": "2026-06-17T08:14:41.108133Z", "date_published": null, "start_time": "2026-09-16T13:00:00Z", "end_time": "2026-09-16T16: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, "name": { "fi": "WelcomeDay – Naapurustotapahtuma Kanneltalolla", "sv": "WelcomeDay", "en": "WelcomeDay" }, "short_description": { "fi": "Welcome Day toivottaa Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin! Ja kutsuu juhlaan mukaan myös kaikki kannelmäkeläiset." }, "description": { "fi": "<p>Welcome Day toivottaa Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin! Ja kutsuu juhlaan mukaan myös kaikki kannelmäkeläiset.</p><p>Kanneltalon Welcome Day -tapahtumassa kaupunkilaiset pääsevät tutustumaan Kulttuurikeskus Kanneltaloon sekä oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Dayssa nautitaan musiikista ja päästään osallistumaan mukaviin työpajoihin. Kaupungin palvelut ja harrastustoimintaa järjestävät yhdistykset esittelevät toimintaansa ja vastaavat asukkaiden kysymyksiin.</p><p>Ohjelmaa järjestetään Kanneltalon eri tiloissa – kahvilasta kirjastoon – ja päivä huipentuu Grande Mahoganyn konserttiin Kannelsalissa.</p><p>Welcome Dayssa puhumme englantia. Tapahtuma on maksuton, eikä siihen tarvitse ilmoittautua.</p><p><b>Aikataulu:</p><p>16.00 | Tilaisuus alkaa</b><br>• Vastaanotto aulassa: nuoret ottavat vieraat vastaan<br>• 250 ensimmäiselle kävijälle on jaossa tarjoilulipukkeita klo 16–18: lipukkeella saa Kanneltalon kahvilasta karjalanpiirakan ja mehun, kahvin tai teen.</p><p><b>16–19 | Tapahtumatori | Aula</b><br>Alueen eri toimijat esittelevät toimintaansa aulassa.</p><p><b>16–19 | Klovni Täpätä | Aula</b><br>Klovni Täpätä viihdyttää kävijöitä aulassa läpi illan!</p><p><b>16–19 | Mun Kantsu -työpaja | Kirjaston Rotunda</b><br>Mun Kantsu -työpaja avoinna koko illan. Opettajina valokuvaaja Anna Autio ja toimittaja Kaisa Viitanen.</p><p><b>16–19 | Pohjois-Helsingin kuvataidekoulun pinssipaja | Kirjaston lukusali</b><br>Tule tekemään oma pinssi Pohjois-Helsingin kuvataidekoulun opastamana.</p><p><b>16.15–17.30 | Lajiesittelyt | Aula</b><br>• 16.15–16.30: Taekwondo<br>• 17.00–17.15: Capoeira<br>• 17.15–17.30: Kannelmäen voimistelijat</p><p><b>16.30–17 | Laulamme suomeksi | Kahvilan lava</b><br>Tule kurkistamaan Työväenopiston Laulamme suomeksi -kurssin sisältöön kaikille avoimen esityksen merkeissä. Opettajana Satu Luomanjoki.</p><p><b>17–18 | Tuu laulamaan suomeksi -työpajat | Kirjaston Tempo</b><br>Tule koko perheen kanssa laulamaan Mari Kätkän johdolla tuttuja ja helppoja suomenkielisiä lauluja ja katsomaan, kuinka laulujen sanat heräävät eloon Sari Airolan livepiirrosten ja kuvitusten kautta. Ensimmäinen työpaja pidetään klo 17–17.30, toinen työpaja klo 17.30–18.</p><p><b>17–18 | Taiteilijavieraana Tiina Hallakorpi | Galleria</b><br>Kanneltalon gallerian Oma koti kullan kallis -näyttelyn taiteilija Tiina Hallakorpi kertoo näyttelystä.</p><p><b>17–21 | Streetzone football / HNMKY | Sitratori</b><br>Sitratorilla 12–18-vuotiaille nuorille suunnattu Streetzone football 3 vs. 3 -turnaus ja DJ:t. Turnaus toteutuu säävarauksella.</p><p><b>18–19 | Grande Mahogany | Kannelsali</b><br>Welcome Dayn pääesiintyjä Grande Mahogany esiintyy Kannelsalissa.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1BE24D6C08D08454CD9DADD33D118FD3/WelcomeDay", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1BE24D6C08D08454CD9DADD33D118FD3/WelcomeDay", "en": "http://www.kanneltalo.fi/en/events/event/1BE24D6C08D08454CD9DADD33D118FD3/WelcomeDay" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68608/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68444", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "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/kinetic-orchestra/", "sv": "https://www.lippu.fi/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/artist/kinetic-orchestra/" }, "price": { "fi": "24 / 14 €", "sv": "24 / 14 €", "en": "24 / 14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385208, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T07:14:22.193060Z", "last_modified_time": "2026-06-17T07:14:22.193076Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789559.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385208/?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-06-17T07:14:22.100270Z", "last_modified_time": "2026-06-17T07:14:22.338261Z", "date_published": null, "start_time": "2026-09-22T15:00:00Z", "end_time": "2026-09-22T16: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, "name": { "fi": "Oskari Turpeinen & Kinetic Orchestra: Block – Maybe We Go Out", "sv": "Oskari Turpeinen & Kinetic Orchestra: Block – Maybe We Go Out", "en": "Oskari Turpeinen & Kinetic Orchestra: Block – Maybe We Go Out" }, "short_description": { "fi": "Tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen ja kuvaavat, kuinka pelottavaa ja epävarmaa elämä onkaan ilman kodin ja ystävien turvaa?" }, "description": { "fi": "<p>Tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen ja kuvaavat, kuinka pelottavaa ja epävarmaa elämä onkaan ilman kodin ja ystävien turvaa?</p><p>Mitä tapahtuu kolmelle ystävykselle, joiden elämä on jämähtänyt kotiin? On suuria visioita tulevaisuudesta, mutta kodin luoma turva ja huoli elämän muutoksesta naulaavat takapuolen tiukasti kotisohvalle.</p><p>Haaveet, pelot ja kärsimättömyys myllertävät jatkuvasti kotona notkuvien ystävysten takaraivoissa. Aika valuu ja venyy ja koti, huonekalut, haaveet ja asukkaat laitetaan moneen kertaan uuteen järjestykseen, ja aina tuntuu löytyvän jotain parempaa tekemistä kuin tulevaisuuden kohtaaminen. Ulos olisi joskus päästävä, vaan kun se ei vain tunnu onnistuvan.</p><p>Esityksen pääteemoja ovat aikuistuminen ja epätietoisuus tulevaisuudesta ja se on suunnattu erityisesti nuorille ja nuorille aikuisille. Teos yhdistää tanssia, sirkusta, live-musiikkia ja teatteria.</p><p>Lavalla nähdään tanssija/koreografi Oskari Turpeinen, tanssija Mikko Makkonen ja muusikko Eetu Hölttä. Lisäksi työryhmään kuuluvat äänisuunnittelija Josu Mämmi, valosuunnittelija Lauri Hietanen, tanssija Iiro Näkki ja koreografin assistentti Sanni Giordani.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E8EC408CAAEF7EE2A8E9EFC20E547C4F/Oskari_Turpeinen_Kinetic_Orchestra_Block_Maybe_We_Go_Out", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E8EC408CAAEF7EE2A8E9EFC20E547C4F/Oskari_Turpeinen_Kinetic_Orchestra_Block_Maybe_We_Go_Out", "en": "http://www.kanneltalo.fi/en/events/event/E8EC408CAAEF7EE2A8E9EFC20E547C4F/Oskari_Turpeinen_Kinetic_Orchestra_Block_Maybe_We_Go_Out" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68444/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69094", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/", "sv": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/", "en": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/" }, "price": { "fi": "19 / 15 €", "sv": "19 / 15 €", "en": "19 / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T07:14:21.337411Z", "last_modified_time": "2026-06-17T07:14:21.337426Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793203.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T07:14:21.223595Z", "last_modified_time": "2026-06-17T07:14:21.469906Z", "date_published": null, "start_time": "2026-09-19T14:00:00Z", "end_time": "2026-09-19T16:10: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, "name": { "fi": "Laulun virta – Inkeristä Karjalaan – DuoCasten & Rinne feat. Artemius | Sattuma Duo | Anne-Mari Kivimäki", "sv": "Laulun virta – Inkeristä Karjalaan", "en": "Laulun virta – Inkeristä Karjalaan" }, "short_description": { "fi": "Inkeriläis-karjalainen teemakonsertti tarjoaa kuulijoilleen itäisen rajaseudun harvinaisia helmiä kolmelta eri artistiryhmältä." }, "description": { "fi": "<p>Inkeriläis-karjalainen teemakonsertti tarjoaa kuulijoilleen itäisen rajaseudun harvinaisia helmiä kolmelta eri artistiryhmältä.</p><p>Inkeriläis-karjalainen teemakonsertti tarjoaa kuulijoilleen itäisen rajaseudun harvinaisia helmiä. Konsertti tuo lavalle kolme eri artistikokoonpanoa – DuoCasten & Rinne feat. Artemius, Sattuma Duo ja Anne-Mari Kivimäki – sekä tanssijat Minna Karttusen ja Jyrki Haapalan. Osassa lauluista artistit yhdistävät voimansa, joten konsertista ei tunnelmaa puutu!</p><p>Illan esiintyjiä yhdistää into välittää karjalaista ja inkeriläistä henkistä pääomaa yleisöilleen sekä seuraaville sukupolville. Esitettävät laulut kumpuavat sekä perinteestä että nykyajasta.</p><p>Konsertti yhdistää tekijöitä niin samoista kuin eri taustoista – mm. Nina Castén, Arto ja Eila Rinne ovat kotoisin Itä-Karjalasta. Laulun virta – Inkeristä Karjalaan tarjoaa lämminhenkisen illan, jossa kuulijat voivat tuntea yhteyttä juuriinsa, tarinaansa ja toisiinsa. Konsertti se on mahtava tilaisuus tutustua inkeriläis- ja karjalaismusiikkiin sekä harvemmin esitettävään kansanperinteeseen.</p><p>***</p><p>Muusikko, säveltäjä <b>Anne-Mari Kivimäki</b> on mainittu yhdeksi tämän hetken kiinnostavimmaksi kansanmusiikin tekijäksi, joka on kehittänyt oman soittotyylin, haitaritrancen. Kivimäki esiintyy ja kiertää soolona sekä Suistamon Sähkön kanssa Suomessa ja kansainvälisillä estradeilla.</p><p>Konsertissa Kivimäki esittää Emma-ehdokkuuden saaneen <i>Kotiin</i>-albumin kappaleita ja maistiaisia myös uudesta musiikista. Yleisöllä on lupa tanssia, laittaa silmät kiinni ja lähteä mukaan hypnoottiseen haitaritranceen ja arkistonauhojen rahiseviin tunnelmiin.</p><p>Konsertissa kahdessa eri kokoonpanossa esiintyvä folk-rock-muusikkona tunnettu Arto Rinne on levittänyt karjalaismusiikin ilosanomaa jo yli 40 vuoden ajan. <b>Sattuma duo (Arto ja Eila Rinne)</b> perustuu Rinteen ja hänen tyttärensä yhteistyöhön, jossa he esittävät karjalaista ja suomalaista kansanmusiikkia sekä omia, perinteeseen pohjautuvia kappaleitaan laulukielinään karjalan eri murteet ja suomi.</p><p>Duo on osa jo vuonna 2003 Petroskoissa perustettua Sattuma-yhtyettä, ja sen ohjelmistossa on poimintoja yhtyeen laajasta repertuaarista. Mukana on mm. jouhikkosäveliä, vienalaisia loitsuja sekä inkerinsuomalaisia röntysköjä.</p><p>Laulaja muusikot Arto Rinne ja Nina Castén perustivat vuonna 2025 Kouvolassa <b>Duo Casten & Rinne -kokoonpanon</b>, joka esiintyy myös Triona muiden muusikkojen kanssa. Artistit esittävät karjalaista, inkeriläistä ja suomenkielistä kansanmusiikkia, jonka juuret ulottuvat heidän synnyinseudulleen Venäjän Karjalaan. Inkeriläistaustainen Castén on profiloitunut maailmanmusiikin tummaäänisenä ja vivahteikkaana esittäjänä.</p><p>Viulisti-monitaituri <b>Artemius</b> tuo yhtyeeseen oman virtuoottisen panoksensa. Luvassa on sekä uudelleensovitettua perinnettä että omia sävellyksiä; niin räiskyvää iloa kuin kaihon sävyjä. Konsertissa esitetään myös yhtyeen uutuusteos: Duon upouusi musiikkivideo!</p><p>Yleisöä viihdyttävät myös tanssijat <b>Minna Karttunen</b> ja <b>Jyrki Haapala</b>, jotka ovat vuosikymmenten ajan toteuttaneet kansainvälisiä esittävän taiteen teoksia ja työskennelleet karjalaisen kulttuuriperinnön parissa.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CA710C9D59613A3BC342BB8253912A2D/Laulun_virta_Inkerista_Karjalaan", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CA710C9D59613A3BC342BB8253912A2D/Laulun_virta_Inkerista_Karjalaan", "en": "http://www.kanneltalo.fi/en/events/event/CA710C9D59613A3BC342BB8253912A2D/Laulun_virta_Inkerista_Karjalaan" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69094/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68468", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816578, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T12:14:04.262263Z", "last_modified_time": "2026-04-14T12:14:04.262277Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786159.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816578/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T12:14:04.107786Z", "last_modified_time": "2026-06-17T07:14:14.128815Z", "date_published": null, "start_time": "2026-08-21T14:00:00Z", "end_time": "2026-08-21T17: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, "name": { "fi": "Antti Paalanen, Aili Järvelä – Malmin tapahtumakesä 2026", "sv": "Antti Paalanen, Aili Järvelä – Malms evenemangssommar 2026", "en": "Antti Paalanen, Aili Järvelä – Malmi Summer of Events 2026" }, "short_description": { "fi": "Konttilavalla villitsee monialainen Aili Järvelä ja UMK:sta tuttu hanuristi Antti Paalanen!", "sv": "Multidisciplinära musikern Aili Järvelä och dragspelaren Antti Paalanen, som är bekant från UMK, gör publiken vild på containerscenen!", "en": "Diverse musician Aili Järvelä and accordionist Antti Paalanen of UMK fame take over the Container Stage!" }, "description": { "fi": "<p>Konttilavalla villitsee monialainen Aili Järvelä ja UMK:sta tuttu hanuristi Antti Paalanen!</p><p><b>Aikataulu</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen</p><p><b>Päivän ohjelma</p><p>klo 17.00–18.00 Aili Järvelä</b><br>Monialaisena muusikkona ja musiikintekijänä tunnettu Aili Järvelä on hurmannut yleisöjä ja kriitikoita kyvyllään liikkua luontevasti tyylilajien ja kokoonpanojen välillä. Hänet tunnetaan myös terävästä ja koskettavasta biisinkirjoituksestaan. Järvelän soolotuotanto on palkittu ja noteerattu laajasti: albumi VUORI toi mukanaan Teosto ja Emma ehdokkuuksia sekä Indie Awards palkinnon vuoden albumina. Järvelän vahva lavakarisma ja lyriikka tekevät live esiintymisistä unohtumattomia elämyksiä.<br>Malmin Tapahtumakesässä Järvelä esiintyy nelihenkisen yhtyeensä kanssa.</p><p><b>klo 19.00–20.00 Antti Paalanen</b><br>Antti Paalanen on omaleimainen hanuristi, joka yhdistää kaksirivisen haitarin, teknon ja kurkkulaulun hurmokselliseksi kokonaisuudeksi. Suomessa ja ympäri maailmaakin keikkaillut hanuristi nousi koko Suomen kansan tietoisuuteen viimeistään UMK-finaalissa, jossa hän kilpaili omalaatuisella Takatukka-kappaleella sijoittuen toiseksi. Paalanen on tullut tunnetuksi myös sosiaalisessa mediassa miljoonia katsojia keränneistä yllättävistä covervideoistaan.</p><p>Lavalla Paalasen yhden miehen yhtye synnyttää valtavan kokoisen basson, harmonian ja rytmin yhdistelmän, joka tempaa yleisön mukaansa. Keikat päättyvät usein siihen, että hypnoottiset melodiat jäävät soimaan yleisön lauluun vielä pitkään musiikin päätyttyä.</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Multidisciplinära musikern Aili Järvelä och dragspelaren Antti Paalanen, som är bekant från UMK, gör publiken vild på containerscenen!</p><p><b>Tidtabell</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen</p><p><b>Dagens program</p><p>kl. 17.00–18.00 Aili Järvelä</b><br>Multidisciplinära musikern och musikskaparen Aili Järvelä har fängslat publiker och kritiker med sin förmåga att röra sig naturligt mellan genrer och kompositioner. Hon är också känd för sitt skarpa och rörande låtskrivande. Järveläs soloproduktion har prisbelönts och noterats omfattande: albumet VUORI fick Teosto- och Emma-nomineringar och utsågs till årets album i Indie Awards. Järveläs starka scennärvaro och lyrik gör live-uppträdandena till oförglömliga upplevelser.<br>Järvelä uppträder med sitt fyrmannaband på Malms evenemangssommar.</p><p><b>kl. 19.00–20.00 Antti Paalanen</b><br>Antti Paalanen är en särpräglad dragspelare som förenar det tvåradiga dragspelet, techno och strupsång till en charmig helhet. Dragspelaren som haft spelningar i Finland och runtom i världen blev känd för hela finska folket senast i UMK-finalen, där han tävlade med den egenartade låten Takatukka, och placerade sig på andra plats. Paalanen har också blivit känd i sociala medier för sina överraskande covervideor som har fått miljontals visningar.</p><p>På scenen skapar Paalanens enmansband en enorm kombination av bas, harmoni och rytm som fängslar publiken. Spelningarna slutar ofta med att hypnotiska melodier blir kvar i publikens sång ännu länge efter att musiken slutat.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>Diverse musician Aili Järvelä and accordionist Antti Paalanen of UMK fame take over the Container Stage!</p><p><b>Schedule</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen</p><p><b>Programme of the day</p><p>17.00–18.00 Aili Järvelä</b><br>Aili Järvelä, a multidisciplinary musician and music maker, has captivated audiences and critics alike with her ability to fluidly move between genres and ensembles. She is also known for her insightful and moving song lyrics. Järvelä's solo work has been widely awarded and recognised: the album VUORI brought her Teosto and Emma nominations and the Album of the Year title from the Indie Awards. Järvelä's strong stage charisma and lyricism make her live performances unforgettable experiences.<br>At Malmi Summer of Events, Järvelä will perform with her four-person ensemble.</p><p><b>19.00–20.00 Antti Paalanen</b><br>Antti Paalanen is a unique accordionist who combines two-row accordion melodies, techno and throat singing into a rapturous experience. The accordionist has toured in Finland and around the world, but rose to the attention of the wider Finnish public at the latest in the finale of Uuden Musiikin Kilpailu with his distinctive song, Takatukka, placing second in the competition. Paalanen has also become known on social media for his surprising cover videos, which have attracted millions of views.</p><p>On stage, Paalanen's one-man band creates a massive mix of bass, harmony and rhythm that captivates the audience. His gigs often end with his hypnotic melodies remaining in the audience’s minds and on their lips long after the music has ceased.</p><p>Entry to the events is free of charge!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen_Aili_Jarvela_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen_Aili_Jarvela_", "en": "http://www.malmitalo.fi/en/events/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen_Aili_Jarvela_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68468/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68466", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816475, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:37.121476Z", "last_modified_time": "2026-04-14T11:25:37.121504Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786151.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816475/?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-04-14T11:25:36.894687Z", "last_modified_time": "2026-06-17T07:14:12.242236Z", "date_published": null, "start_time": "2026-08-15T08:00:00Z", "end_time": "2026-08-15T11: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, "name": { "fi": "Lasten lauantai: Aarne Alligaattori & Viidakkorumpu, Riemukas perhemuskari ja muuta puuhaa – Malmin tapahtumakesä 2026", "sv": "Barnens lördag: Arne Alligator, Den Glada familjmusiklekisen och annan sysselsättning – Malms evenemangssommar 2026", "en": "Children’s Saturday: Arnie Alligator, Joyful family music playschool and other activities – Malmi Summer of Events 2026" }, "short_description": { "fi": "Lasten lauantai kutsuu perheet puuhastelemaan! Luvassa luontoaiheista tekemistä, kirjoja, muskaria, työpajoja ja lasten lemppari: Aarne Alligaattori & Viidakkorumpu!", "sv": "Barnens lördag bjuder in familjerna till sysselsättning! Sysselsättning med naturtema, böcker, musiklekis, verkstäder och barnens favorit: Arne Alligator & Viidakkorumpu!", "en": "Children's Saturday invites families to have fun! The programme of the day offers nature-themed activities, books, music playschool, workshops and the children's absolute favourite: Arnie Alligator & Viidakkorumpu!" }, "description": { "fi": "<p>Lasten lauantai kutsuu perheet puuhastelemaan! Luvassa luontoaiheista tekemistä, kirjoja, muskaria, työpajoja ja lasten lemppari: Aarne Alligaattori & Viidakkorumpu!</p><p><b>Aikataulu</b><br>11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle<br>11.00-15.00 Lasten uimataidon edistäminen<br>Klo 11–14.45 Hyvän arjen rakentajat: Mitä kivaa syksyn perhearkeen?<br>klo 12.30–12.45 Just Dance -katutanssishow <br>12.00–14.00 Yksin hanke: Minikirjoja ja matariki-tähtien punontaa <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Aarne Alligaattori & Viidakkorumpu</p><p><b>Päivän ohjelma</p><p>klo 11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle</b><br>Luontopiste kutsuu perheen pienimmät tutkimaan ja ihmettelemään luontoa monipuolisten tehtävien ja materiaalien parissa.</p><p><b> klo 11.00–15.00 Lasten uimataidon edistäminen</b><br>Lasten uimataidon edistäminen<br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.</p><p><b> klo 11–14.45 Hyvän arjen rakentajat: Mitä kivaa syksyn perhearkeen?</b><br>Kuka on teidän perheen maalikuningas tai tuleva taiteilija? Tutustu Hyvän arjen rakentajien toimintaan ja löydä uusia ideoita syksyn arkeen ja harrastuksiin!<br>Luvassa liikunnan iloa, luovaa tekemistä sekä hattaraa isoille ja pienille arjen sankareille.</p><p><b>klo 12.30–12.45 Just Dance -katutanssishow</b><br>Tule mukaan ja anna rytmin viedä!</p><p><b>klo 12.00–14.00 Yksin-hanke: Minikirjoja ja matariki tähtien punontaa</b><br>Työpajassa askarrellaan omia minikirjoja ja punotaan matariki tähtiä yhdessä luovan tekemisen hengessä.</p><p><b>klo 13.00–13.30 Riemukas perhemuskari</b><br>”Pyöri kuin pyörre veden pinnalla!<br>Leiju kuin pilvi taivaan kannella!”</p><p>Riemukkaassa perhemuskarissa lauletaan, leikitään ja musisoidaan yhdessä kesäisissä tunnelmissa. Muskarin ohjaa musiikin maisteri ja lastenmuusikko Henna-Maija Kuki, tuttu Henna ja Supersankarit yhtyeestä.</p><p><b>klo 14.00–14.45 Aarne Alligaattori & Viidakkorumpu</b><br>Ihastuttava ja halattava Aarne Alligaattori saapuu lavalle yhdessä safariasuisten ystäviensä Tobben ja Jocken kanssa. Aarne hassuttelee, keksii kepposia ja soittaa viidakkorumpuja ratkiriemukkaassa esityksessä koko perheelle.</p><p>Aarne Alligaattoria on katsottu YouTubessa yli 400 miljoonaa kertaa, ja hänen musiikkinsa on myynyt useita platina ja kultalevyjä eri maissa.</p><p>Kaikkiin tapahtumiin on vapaa pääsy, tervetuloa koko perhe!</p>", "sv": "<p>Barnens lördag bjuder in familjerna till sysselsättning! Sysselsättning med naturtema, böcker, musiklekis, verkstäder och barnens favorit: Arne Alligator & Viidakkorumpu!</p><p><b>Tidtabell</b><br>11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta<br>11.00–15.00 Främjande av barns simkunskaper<br>12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor <br>13.00–13.30 Glatt familjemusiklekis<br>14.00–14.45 Arne Alligator & Viidakkorumpu</p><p><b>Dagens program</p><p>kl. 11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta</b><br>Naturpunkten bjuder in familjens minsta att undersöka och beundra naturen med hjälp av mångsidiga uppgifter och material.</p><p><b> kl. 11.00–15.00 Främjande av barns simkunskaper</b><br>Kom och diskutera barns simkunskaper medan de minsta i familjen får hoppa i bollhavet.<br>Medverkar gör Helsingfors stads fostrans- och utbildningssektorn, Fimu ry och Monaliiku ry.</p><p><b>klo 12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor</b><br>I verkstaden pysslar vi egna miniböcker och flätar matariki-stjärnor tillsammans i en kreativ anda.</p><p><b>klo 13.00–13.30 Glatt musiklekis</b><br>”Snurra som en virvel på vattenytan!<br>Sväva som ett moln på himlen!”</p><p>I det glada familjemusiklekiset får vi sjunga, leka och musicera i somrig stämning. Musiklekiset leds av Henna-Maija Kuki, barnmusiker med magisterexamen i musik, som är känd från bandet Henna ja Supersankarit.</p><p><b>klo 14.00–14.45 Arne Alligator& Viidakkorumpu</b><br>Bedårande och kramgoa Arne Arne Alligator intar scenen tillsammans med sina safariklädda vänner Tobbe och Jocke. Aarne skämtar, busar och spelar djungeltrummor i en hysteriskt rolig show för hela familjen.</p><p>Arne Alligator har setts på YouTube mer än 400 miljoner gånger och hans musik har sålt flera platina- och guldskivor i olika länder.</p><p>Alla evenemang har fritt inträde, vi önskar hela familjen välkommen!</p>", "en": "<p>Children's Saturday invites families to have fun! The programme of the day offers nature-themed activities, books, music playschool, workshops and the children's absolute favourite: Arnie Alligator & Viidakkorumpu!</p><p><b>Schedule</b><br>11.00–14.00 Malmin Varustamo parish: Nature activity point for young ones<br>11.00–15.00 Promoting children's swimming skills<br>12.00–14.00: The Yksin (‘Alone’) project: Miniature books and weaving matariki stars <br>13.00–13.30 Joyful family music playschool<br>14.00–14.45 Arnie Alligator & Viidakkorumpu</p><p><b>Programme of the day</p><p>11.00–14.00 Malmin Varustamo: Nature activity point for young ones</b><br>The nature activity point invites the youngest in the family to explore and wonder at nature through a range of activities and materials.</p><p><b>11.00–15.00 Promoting children's swimming skills</b><br>Come discuss children’s swimming skills while the little ones take a dip in the ball pit.<br>Together with the Education Division of the City of Helsinki, Fimu ry, and Monaliiku ry.</p><p><b>12.00–14.00: Yksin (‘Alone’) project: Miniature books and weaving matariki stars</b><br>In this workshop you get to craft your own miniature books and weave matariki stars, letting your creativity fly together.</p><p><b>13.00–13.30: Joyful family music playschool</b><br>“Spin like a whirlpool – on the surface of the water!<br>Float like a cloud – up in the sky!\"</p><p>This joyful family music playschool will involve singing, play and making music together in a summery atmosphere. The music playschool will be led byChildren’s Musician Henna-Maija Kuki, who has a master’s degree in music and is best known from her Henna ja Supersankarit band.</p><p><b>14.00–14.45 Arnie Alligator & Viidakkorumpu</b><br>The adorable and huggable Arnie Alligator will be taking to the stage with his friends Tobbe and Jocke, who are always dressed for a safari. Arnie will play jokes, pranks and jungle drums in this hilarious performance for the whole family.</p><p>Arnie Alligator has received over 400 million views on YouTube and his music has sold platinum and gold records in several countries.</p><p>Free entry to all events, the whole family is welcome!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/09855A8A174C6429C6717B077141CD98/Lasten_lauantai_Aarne_Alligaattori_Viidakkorumpu_Riemukas_perhemuskari_ja_muuta_puuhaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/09855A8A174C6429C6717B077141CD98/Barnens_lordag_Arne_Alligator_Den_Glada_familjmusiklekisen_och_annan_sysselsattning", "en": "http://www.malmitalo.fi/en/events/event/09855A8A174C6429C6717B077141CD98/Children_s_Saturday_Arnie_Alligator_Joyful_family_music_playschool_and_other_activities" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68466/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68464", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816473, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:35.406086Z", "last_modified_time": "2026-04-14T11:25:35.406103Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786318.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816473/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T11:25:35.157992Z", "last_modified_time": "2026-06-17T07:14:11.402568Z", "date_published": null, "start_time": "2026-08-13T14:30:00Z", "end_time": "2026-08-13T17: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, "name": { "fi": "Teini-Pää ja pilvet pilvet – Malmin tapahtumakesä 2026", "sv": "Teini-Pää ja pilvet pilvet – Malms evenemangssommar 2026", "en": "Teini-Pää ja pilvet pilvet – Malmi Summer of Events 2026" }, "short_description": { "fi": "Elokuun tapahtumakesä käynnistyy jyrisevästi herkkien melodioiden ja omaehtoisen indierockin parissa Ala Malmin torilla!", "sv": "Evenemangssommaren i augusti startar med buller på Nedre Malms torg med känsliga melodier och spontan indierock!", "en": "The August of the Summer of Events will start with a bang, offering vulnerable melodies and uncompromising indie rock at Ala-Malmi Square!" }, "description": { "fi": "<p>Elokuun tapahtumakesä käynnistyy jyrisevästi herkkien melodioiden ja omaehtoisen indierockin parissa Ala Malmin torilla!</p><p><b>Aikataulu</b><br>17.30–18.20 pilvet pilvet <br>19.00–20.00 Teini-Pää</p><p><b>Päivän ohjelma</p><p>klo 17.30–18.20 pilvet pilvet</b><br>Pilvet pilvet on kerännyt ympärilleen kasvavan ja sitoutuneen fanipohjan ja keikkaillut ahkerasti klubeilla, tapahtumissa ja festivaaleilla. Marraskuussa yhtye otti suuren harppauksen lämmitellessään KUUMAAn Maasta kuuhun -areenakiertuetta.<br>Johanna Kustannukselle kiinnitetyn yhtyeen muodostavat Kosti Koskinen, Touko Koivusaari, Onni Lehtinen, Milan Marttiini ja Kalle Karimo. Yhtyeen runsaat stemmat ja orgaaninen soundi tekevät popmusiikista ilmavaa ja koskettavaa. Vuonna 2025 pilvet pilvet julkaisee uutta musiikkia ja esiintyy aktiivisesti.</p><p><b>klo 19.00–20.00 Teini Pää</b><br>Teini Pää soittaa suloisen riipivää indierockia, jonka ytimessä ovat herkkyys ja omaehtoisuus. Yhtyeen odotettu kolmas albumi julkaistaan tammikuussa 2026.<br>Vuonna 2018 perustetun bändin debyyttialbumi Maailma kyllä odottaa oli ehdolla Emma Gaalan Kriitikoiden valinta kategoriassa, ja myöhemmät julkaisut ovat saaneet ylistävän vastaanoton. Teini Pään kappaleet käsittelevät yhteyttä, yksinäisyyttä ja yhteiskunnallisia teemoja – ja yhtyeen vahva live energia käy suoraan kuulijoiden sydämiin.</p><p>Tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Evenemangssommaren i augusti startar med buller på Nedre Malms torg med känsliga melodier och spontan indierock!</p><p><b>Tidtabell</b><br>17.30–18.20 pilvet pilvet <br>19.00–20.00 Teini-Pää</p><p><b>Dagens program</p><p>kl. 17.30–18.20 pilvet pilvet</b><br>Pilvet pilvet har samlat runtom sig en växande och engagerad fanskara och spelat flitigt på klubbar, evenemang och festivaler. I november gjorde bandet ett stort framsteg genom att värma upp publiken inför KUUMAA:s Maasta kuuhun-arenaturné.<br>Bandet som kopplas samman med Johanna Kustannus utgörs av Kosti Koskinen, Touko Koivusaari, Onni Lehtinen, Milan Marttiini och Kalle Karimo. Bandets fylliga stämmor och organiska sound gör popmusiken luftig och rörande. År 2025 publicerar pilvet pilvet ny musik och uppträder aktivt.<br>Plats: Containerscenen, Nedre Malms torg</p><p><b>kl. 19.00–20.00 Teini Pää</b><br>Teini-Pää spelar sött skärande indierock med fokus på känslighet och spontanitet. Bandets efterlängtade tredje album släpps i januari 2026.<br>Bandets, som grundades 2018, debutalbum Maailma kyllä odottaa nominerades på Emma-galan i kategorin Kritikernas val, och senare utgåvor har fått beröm. Teini-Pääs låtar behandlar samhörighet, ensamhet och samhälleliga teman – och bandets starka liveenergi går rakt in i lyssnarnas hjärtan.<br>Plats: Containerscenen, Nedre Malms torg</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>The August of the Summer of Events will start with a bang, offering vulnerable melodies and uncompromising indie rock at Ala-Malmi Square!</p><p><b>Schedule</b><br>17.30–18.20 pilvet pilvet <br>19.00–20.00 Teini-Pää</p><p><b>Programme of the day</p><p>17.30–18.20 pilvet pilvet</b><br>Pilvet pilvet has built a growing and dedicated fan base and has been performing non-stop at clubs, events and festivals. In November, the band took a big leap forward as the warm-up act for KUUMAA’s Maasta kuuhun arena tour.<br>The ensemble, which has been signed to Johanna Kustannus, comprises Kosti Koskinen, Touko Koivusaari, Onni Lehtinen, Milan Marttiini and Kalle Karimo. The band's rich harmonies and organic sound make their pop music airy and touching. In 2026, pilvet pilvet will be releasing new music and performing actively.<br>Place: Container Stage, Ala-Malmi Square</p><p><b>19.00–20.00 Teini-Pää</b><br>Teini-Pää plays sweetly torturous indie rock that is both vulnerable and uncompromising. The band's highly anticipated third album will be released in January 2026.<br>Formed in 2018, the band's debut album Maailma kyllä odottaa was nominated in the Critics' Choice category at the Emma Gala, and later releases have also been very well received. Teini-Pää's songs deal with themes such as connection, loneliness and social issues, and the band’s strong energy when playing live goes straight to the listeners’ hearts.<br>Place: Container Stage, Ala-Malmi Square</p><p>Entry to the events is free of charge.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F37BE84A4CCE43A58278904A8575886A/Teini-Paa_ja_pilvet_pilvet", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F37BE84A4CCE43A58278904A8575886A/Teini-Paa_ja_pilvet_pilvet", "en": "http://www.malmitalo.fi/en/events/event/F37BE84A4CCE43A58278904A8575886A/Teini-Paa_ja_pilvet_pilvet" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }