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=34&show_all=true
{ "meta": { "count": 34920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=35&show_all=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=33&show_all=true" }, "data": [ { "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, "description": null, "price": 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" }, "location_extra_info": null, "provider": null, "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!" }, "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_" }, "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, "@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, "description": null, "price": 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" }, "location_extra_info": null, "provider": null, "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!" }, "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" }, "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, "@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, "description": null, "price": 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" }, "location_extra_info": null, "provider": null, "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!" }, "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" }, "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, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68606", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:17.698779Z", "last_modified_time": "2026-06-09T13:14:17.698793Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791154.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:53.574198Z", "last_modified_time": "2026-06-17T06:14:14.570091Z", "date_published": null, "start_time": "2026-12-18T10:30:00Z", "end_time": "2026-12-18T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/615E1E082F863CFE3D014FDE06D07229/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/615E1E082F863CFE3D014FDE06D07229/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/615E1E082F863CFE3D014FDE06D07229/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68606/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68605", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:16.609043Z", "last_modified_time": "2026-06-09T13:14:16.609058Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791153.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385030/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:53.079263Z", "last_modified_time": "2026-06-17T06:14:14.000127Z", "date_published": null, "start_time": "2026-12-11T10:30:00Z", "end_time": "2026-12-11T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/09937A9E0E73348345425A13AB438743/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/09937A9E0E73348345425A13AB438743/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/09937A9E0E73348345425A13AB438743/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68605/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68604", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:15.680597Z", "last_modified_time": "2026-06-09T13:14:15.680613Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791152.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:52.494713Z", "last_modified_time": "2026-06-17T06:14:13.263225Z", "date_published": null, "start_time": "2026-12-04T10:30:00Z", "end_time": "2026-12-04T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1E6D3CE42EFBF2F7D8581185F1211FFB/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1E6D3CE42EFBF2F7D8581185F1211FFB/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/1E6D3CE42EFBF2F7D8581185F1211FFB/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68604/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68603", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385028, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:14.836617Z", "last_modified_time": "2026-06-09T13:14:14.836632Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791151.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385028/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:52.149197Z", "last_modified_time": "2026-06-17T06:14:12.616229Z", "date_published": null, "start_time": "2026-11-27T10:30:00Z", "end_time": "2026-11-27T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0EBEE6D145A68E3962D542C194EED1FB/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0EBEE6D145A68E3962D542C194EED1FB/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/0EBEE6D145A68E3962D542C194EED1FB/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68602", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385027, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:14.038645Z", "last_modified_time": "2026-06-09T13:14:14.038661Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791150.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385027/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:51.790052Z", "last_modified_time": "2026-06-17T06:14:11.963101Z", "date_published": null, "start_time": "2026-11-20T10:30:00Z", "end_time": "2026-11-20T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/669467F3F19C5501C5CAC0469888B0A4/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/669467F3F19C5501C5CAC0469888B0A4/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/669467F3F19C5501C5CAC0469888B0A4/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68602/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68601", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385026, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:13.380690Z", "last_modified_time": "2026-06-09T13:14:13.380705Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791149.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385026/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:51.334400Z", "last_modified_time": "2026-06-17T06:14:11.394011Z", "date_published": null, "start_time": "2026-11-13T10:30:00Z", "end_time": "2026-11-13T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F64BFDFDFF77487DA3B9E58199CFDA0B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F64BFDFDFF77487DA3B9E58199CFDA0B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/F64BFDFDFF77487DA3B9E58199CFDA0B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68601/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68600", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385025, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:12.536340Z", "last_modified_time": "2026-06-09T13:14:12.536356Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791148.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385025/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:51.060934Z", "last_modified_time": "2026-06-17T06:14:10.547143Z", "date_published": null, "start_time": "2026-11-06T10:30:00Z", "end_time": "2026-11-06T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8BD47B3F70139ECEEB5940625E09A9E7/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8BD47B3F70139ECEEB5940625E09A9E7/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/8BD47B3F70139ECEEB5940625E09A9E7/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68600/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68599", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385024, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:11.752173Z", "last_modified_time": "2026-06-09T13:14:11.752188Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791147.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385024/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:50.619042Z", "last_modified_time": "2026-06-17T06:14:09.813270Z", "date_published": null, "start_time": "2026-10-30T10:30:00Z", "end_time": "2026-10-30T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/03BDCBDFC75E7AE741CD6B3538FB0095/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/03BDCBDFC75E7AE741CD6B3538FB0095/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/03BDCBDFC75E7AE741CD6B3538FB0095/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68599/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68598", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385022, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:10.434145Z", "last_modified_time": "2026-06-09T13:14:10.434162Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791146.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385022/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:50.313345Z", "last_modified_time": "2026-06-17T06:14:08.931907Z", "date_published": null, "start_time": "2026-10-23T09:30:00Z", "end_time": "2026-10-23T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AFEF41AB93CFBB899D2DFCC1C125DA0B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AFEF41AB93CFBB899D2DFCC1C125DA0B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/AFEF41AB93CFBB899D2DFCC1C125DA0B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68597", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385021, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:09.567827Z", "last_modified_time": "2026-06-09T13:14:09.567842Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791145.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385021/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:49.743920Z", "last_modified_time": "2026-06-17T06:14:08.112555Z", "date_published": null, "start_time": "2026-10-16T09:30:00Z", "end_time": "2026-10-16T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/722E45CBB3448229D9DA441CB3C9932A/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/722E45CBB3448229D9DA441CB3C9932A/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/722E45CBB3448229D9DA441CB3C9932A/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68597/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68596", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385020, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:09.135206Z", "last_modified_time": "2026-06-09T13:14:09.135224Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791144.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385020/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:49.282788Z", "last_modified_time": "2026-06-17T06:14:07.728699Z", "date_published": null, "start_time": "2026-10-09T09:30:00Z", "end_time": "2026-10-09T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9E74000AEF33C9BF154CAB27666E1589/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9E74000AEF33C9BF154CAB27666E1589/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/9E74000AEF33C9BF154CAB27666E1589/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68596/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68595", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385019, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:08.247842Z", "last_modified_time": "2026-06-09T13:14:08.247858Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791143.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385019/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:48.905542Z", "last_modified_time": "2026-06-17T06:14:06.881915Z", "date_published": null, "start_time": "2026-10-02T09:30:00Z", "end_time": "2026-10-02T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/78FC061C170B2BFA19C74F8A476C02E4/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/78FC061C170B2BFA19C74F8A476C02E4/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/78FC061C170B2BFA19C74F8A476C02E4/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68595/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68594", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385018, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:07.384315Z", "last_modified_time": "2026-06-09T13:14:07.384331Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791142.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385018/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:48.612811Z", "last_modified_time": "2026-06-17T06:14:06.098215Z", "date_published": null, "start_time": "2026-09-25T09:30:00Z", "end_time": "2026-09-25T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/710A7910A889346AD39DBE118490E819/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/710A7910A889346AD39DBE118490E819/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/710A7910A889346AD39DBE118490E819/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68594/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68593", "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: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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385017, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T13:14:06.344443Z", "last_modified_time": "2026-06-09T13:14:06.344460Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791141.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385017/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-30T07:13:48.214502Z", "last_modified_time": "2026-06-17T06:14:04.474007Z", "date_published": null, "start_time": "2026-09-18T09:30:00Z", "end_time": "2026-09-18T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa", "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5852D83ED50D420C6395566B0F28D06A/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5852D83ED50D420C6395566B0F28D06A/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa", "en": "http://www.kanneltalo.fi/en/events/event/5852D83ED50D420C6395566B0F28D06A/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa" }, "description": { "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68593/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68926", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385204, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T06:14:03.165608Z", "last_modified_time": "2026-06-17T06:14:03.165624Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792272.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385204/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T06:14:03.077022Z", "last_modified_time": "2026-06-17T06:14:03.268053Z", "date_published": null, "start_time": "2026-09-14T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjailijavieraana Monika Fagerholm – Maksuttomat maanantait", "sv": "Kirjailijavieraana Monika Fagerholm", "en": "Kirjailijavieraana Monika Fagerholm" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Eristystila / Kapinoivia naisia -teoksen kirjoittaja Monika Fagerholm ja suomentaja Hannimari Heino keskustelevat Finlandia- ja Runeberg-palkitusta teoksesta." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/30700904FEEE15D33C0238818019D446/Kirjailijavieraana_Monika_Fagerholm", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/30700904FEEE15D33C0238818019D446/Kirjailijavieraana_Monika_Fagerholm", "en": "http://www.kanneltalo.fi/en/events/event/30700904FEEE15D33C0238818019D446/Kirjailijavieraana_Monika_Fagerholm" }, "description": { "fi": "<p>Eristystila / Kapinoivia naisia -teoksen kirjoittaja Monika Fagerholm ja suomentaja Hannimari Heino keskustelevat Finlandia- ja Runeberg-palkitusta teoksesta.</p><p>Monika Fagerholm, <i>Döda trakten/Kvinnor i revolt</i>, Förlaget 2025,<br><i>Eristystila / Kapinoivia naisia</i>, Teos 2025, suomentanut Hannimari Heino</p><p>Juuri aikuistunut Alice muuttaa maalta isänsä luo esikaupunkiin tämän taiteellisesti virittyneeseen uusperheeseen, jossa äitipuoli on valovoimainen naisasianainen. Alkaa Alicen etsikkoaika: hän käy iltaoppikoulua, avointa yliopistoa, istuu elokuva-arkistossa ja on paikalla siellä, missä parhaat juhlat pidetään.</p><p>Hän kohtaa ihmisiä: Pellen, josta tulee hänen poikaystävänsä, Evelynin, runoilijan ja tanssijan, sekä Veronican, joka opettaa hänet kirjoittamaan kuin pieni eläin. Vanhemmat ihmiset muistelevat aikaa rauhan tyyssijana, mutta Alicen sukupolvi näkee toisin: kuuluu uutisia Saksan levottomuuksista, huhuja taisteluista, jotka lannistetaan säälittä ja kapinallisesta naisesta, joka kuolee selliinsä. Alicen turvallisen nukkekodin seinät romahtavat maailmanpalon paineesta.<br> <br><i>Eristystila / Kapinoivia naisia</i> on kolmiosaisen romaanisarjan ensimmäinen osa. Se kertoo ajasta, jolloin ihminen on niin nuori, että maailma avautuu mahdollisuuksien ja vastarinnan horisonttina ja siitä, mitä taiteilijaksi kasvaminen vaatii. Millaisia tarinoita kertoa silloin, kun mitään ei ole vielä ehtinyt tapahtua?</p><p>Yhteistyössä Kulttuuripalvelut, Helsingin työväenopisto ja Kannelmäen kirjasto</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Keskustelun kieli on suomi.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68926/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69222", "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/rajaton/rajaton-lempilauluja-4171708/", "sv": "https://www.lippu.fi/artist/rajaton/rajaton-lempilauluja-4171708/", "en": "https://www.lippu.fi/artist/rajaton/rajaton-lempilauluja-4171708/" }, "description": null, "price": { "fi": "28 / 24,80 €", "sv": "28 / 24,80 €", "en": "28 / 24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385203, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T06:14:02.698557Z", "last_modified_time": "2026-06-17T06:14:02.698573Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793528.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385203/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T06:14:02.621372Z", "last_modified_time": "2026-06-17T06:14:02.792544Z", "date_published": null, "start_time": "2026-09-12T15:00:00Z", "end_time": "2026-09-12T17: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": "Rajaton: Lempilauluja", "sv": "Rajaton: Lempilauluja", "en": "Rajaton: Lempilauluja" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa kuulemaan Rajattoman lempilauluja ja lauluja lemmestä!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/EB36594AA1C62726F8F62EAEE9FC339C/Rajaton_Lempilauluja", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EB36594AA1C62726F8F62EAEE9FC339C/Rajaton_Lempilauluja", "en": "http://www.kanneltalo.fi/en/events/event/EB36594AA1C62726F8F62EAEE9FC339C/Rajaton_Lempilauluja" }, "description": { "fi": "<p>Tervetuloa kuulemaan Rajattoman lempilauluja ja lauluja lemmestä!</p><p>Tässä rakkaudentäyteisessä konsertissa Lauluyhtye Rajaton tarttuu lempilauluihinsa. Konserttiin on koottu yhtyeen lähes 30-vuotisen uran aikana kertyneet suosikkilaulut ja teokset, joihin Rajattoman jäsenillä on erityinen suhde. Myös yleisöllä on ollut mahdollisuus vaikuttaa konsertin ohjelmistoon, ja Rajaton on valinnut mukaan yleisön äänestämiä suosikkikappaleita. Konsertin teema – rakkaus ja ystävyys – heijastuu monipuolisesti sekä ohjelman sisältöön että konsertin tunnelmaan. <br> <br>Suomalaisen a cappella -musiikin kruununjalokivi, lauluyhtye Rajaton tunnetaan taidokkaista sovituksistaan, omaleimaisesta soinnistaan ja musiikillisesta taituruudestaan. Yhtye esiintyy säännöllisesti ulkomailla ja on saavuttanut vankan aseman kansainvälisillä konserttilavoilla.<br> <br>Tervetuloa konserttiin – ääni on Rajaton!<br> <br>Rajaton:<br>Essi Wuorela<br>Aili Ikonen<br>Soila Sariola<br>Antti Annola<br>Ahti Paunu<br>Jussi Chydenius</p><p>Kesto: 2 t (sis. väliaika)</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69432", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385202, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T06:14:02.377657Z", "last_modified_time": "2026-06-17T06:14:02.377673Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792187.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385202/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T06:14:02.281397Z", "last_modified_time": "2026-06-17T06:14:02.473527Z", "date_published": null, "start_time": "2026-09-12", "end_time": "2026-10-27", "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": "Tiina Hallakorpi ja Minna Raskinen: Oma koti kullan kallis – Näyttely ja ääniteos", "sv": "Tiina Hallakorpi ja Minna Raskinen: Oma koti kullan kallis", "en": "Tiina Hallakorpi ja Minna Raskinen: Oma koti kullan kallis" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Yhteisötaideprojektissa rinnastuvat pakolaisten ja evakkojen kokemukset: millaista on lähteä pakon edessä omasta kodista perustamaan uusi koti uuteen paikkaan." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/511BE76F41C93C122822F24C2F706EBA/Tiina_Hallakorpi_ja_Minna_Raskinen_Oma_koti_kullan_kallis", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/511BE76F41C93C122822F24C2F706EBA/Tiina_Hallakorpi_ja_Minna_Raskinen_Oma_koti_kullan_kallis", "en": "http://www.kanneltalo.fi/en/events/event/511BE76F41C93C122822F24C2F706EBA/Tiina_Hallakorpi_ja_Minna_Raskinen_Oma_koti_kullan_kallis" }, "description": { "fi": "<p>Yhteisötaideprojektissa rinnastuvat pakolaisten ja evakkojen kokemukset: millaista on lähteä pakon edessä omasta kodista perustamaan uusi koti uuteen paikkaan.</p><p>Lähtö tulee yllättäen, matka on vaikea, uudessa paikassa saatetaan kohdata syrjintää ja koti-ikävä kalvaa. Mutta sitten kotiudutaan.</p><p>Projektissa on haastateltu Karjalan evakkoja ja pakolaisia sekä heidän jälkeläisiään. Mukana on myös maahanmuuttajia, jotka eivät ole saapuneet tänne pakolaisina, mutta jotka hekään eivät voi sodan tai konfliktin vuoksi palata kotiin.</p><p>Näyttelyssä on esillä osallistujien tarinoita tekstiä ja kuvaa yhdistelevien teosten muodossa, erilaisin tekniikoin. Osa osallistujista on myös osallistunut teoksiin ompelemalla tai kirjailemalla. Riipaisevien tarinoiden vastapainoksi näyttelyssä on tuttua ja turvallista kodin esineistöä ja kodin tekstiilejä.</p><p>Suurin osa suomalaisista asuu kerrostaloissa. Tästä syystä näyttelykokonaisuus muistuttaa kerrostalon käytävää, josta on kulku näyttelyn eri teemoihin huoneisto-ovien kautta. Minkälaisia tarinoita ovien taa kätkeytyykään? Mukana on myös Missä juuresi ovat -teos, johon yleisö saa osallistua.</p><p>Ääniteoksen musiikki on sävelletty tähän näyttelyyn joitakin olemassa olevia teemoja lukuun ottamatta. Kanteleet, oud-luuttu, huilut ja perkussiot kutovat monikulttuurista äänimaisemaa. Kodin ja ympäristön äänet täydentävät kokonaisuuden ja ruokkivat kuulijan omia mielikuvia. Ääniteos on toteutettu osittain myös musiikkityöpajojen kautta.</p><p>Näyttelyn idea, suunnittelu ja toteutus: kuva- ja yhteisötaiteilja Tiina Hallakorpi<br>Ääniteoksen suunnittelu, sävellys, äänitys ja editointi: muusikko ja säveltäjä Minna Raskinen</p><p>Koneen Säätiö on tukenut projektia.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69432/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }