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&is_free=true&page=42
{ "meta": { "count": 30686, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=43", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=41" }, "data": [ { "id": "kulke:69591", "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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385539, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:41.741002Z", "last_modified_time": "2026-07-07T13:14:41.741021Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791516.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385539/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:41.633497Z", "last_modified_time": "2026-07-07T13:14:41.884123Z", "date_published": null, "start_time": "2026-11-30T16:00:00Z", "end_time": "2026-11-30T18: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": "Malmitalon teehuone – Malmitalon yhteisömaanantait", "sv": "Malmitalon teehuone – Malmitalon yhteisömaanantait", "en": "Malmitalon teehuone – Malmitalon yhteisömaanantait" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D6F50B5C18A92B996AC4BEAB9FCBAAF4/Malmitalon_teehuone", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D6F50B5C18A92B996AC4BEAB9FCBAAF4/Malmitalon_teehuone", "en": "http://www.malmitalo.fi/en/events/event/D6F50B5C18A92B996AC4BEAB9FCBAAF4/Malmitalon_teehuone" }, "description": { "fi": "<p>Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella.</p><p>Teehuone on yhteisöllinen ja kaikille avoin tila hengähtämiseen, rentoutumiseen ja eri kulttuureista oppimiseen. Tarjolla teetä ja pieniä herkkuja. Tapahtuma on osa Malmitalon yhteisömaanantait-sarjaa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69591/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68928", "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": 2385538, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:41.318560Z", "last_modified_time": "2026-07-07T13:14:41.318576Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792274.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385538/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:41.163383Z", "last_modified_time": "2026-07-07T13:14:41.502660Z", "date_published": null, "start_time": "2026-11-30T16: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 Emmi Itäranta – Maksuttomat maanantait", "sv": "Kirjailijavieraana Emmi Itäranta – Maksuttomat maanantait", "en": "Kirjailijavieraana Emmi Itäranta – Maksuttomat maanantait" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Emmi Itäranta kertoo ja keskustelee teoksestaan Lumenlaulaja. Haastattelijana FM Kati-Annika Ansas. \"En ole koskaan paljastanut syntytarinaani kenellekään. En ennen kuin nyt.\"" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CEF9B758BC6E70C140823D7094AAE13C/Kirjailijavieraana_Emmi_Itaranta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CEF9B758BC6E70C140823D7094AAE13C/Kirjailijavieraana_Emmi_Itaranta", "en": "http://www.kanneltalo.fi/en/events/event/CEF9B758BC6E70C140823D7094AAE13C/Kirjailijavieraana_Emmi_Itaranta" }, "description": { "fi": "<p>Emmi Itäranta kertoo ja keskustelee teoksestaan Lumenlaulaja. Haastattelijana FM Kati-Annika Ansas. \"En ole koskaan paljastanut syntytarinaani kenellekään. En ennen kuin nyt.\"</p><p><i>Lumenlaulaja</i> (Teos 2025) on Emmi Itärannan uusin teos, jossa Louhen lumoava syntytarina vie meidät myyttiseen menneisyyteen, taikavoimien ja muodonmuutosten maailmaan. Vallitsee sopusointu ja kunnioitus ihmisen, luonnon ja eläinten välillä. Kunnes idylli rikkoutuu, ja elämään astuvat vallanhimo, kostonhalu ja ahneus.</p><p>Lauha elää lapsuuttaan Pohjolassa, jossa hallitsevat vahvat naiset, jokaisella heistä oma loitsuhahmonsa, eläinmuotonsa. Lauhan ollessa yhdeksänvuotias Pohjolaan hyökkää vieras heimo, joka surmaa suurimman osan hänen perheestään, ja Lauha pakenee äitinsä ja kahden pikkusisarensa kanssa. Kovien kokemusten jälkeen hän päätyy turvaan naistenyhteisöön, Metsänpeittoon, jossa elää hiljaiseloa vuosien ajan.</p><p>Traagisen tapahtuman jälkeen hän päättää kostaa Pohjolan valloittajille, ottaa kotinsa takaisin. Pohjolan puolustaminen ja oman perheen pitäminen turvassa muovaavat Lauhasta Louhen, naisen, jota moni pelkää. Pakomatkan kivuliaat muistot ajavat Louhea kohti valintoja, joilla on kohtalokkaita seurauksia koko Pohjolan väelle ja Louhelle itselleen.</p><p><b>Emmi Itäranta</b> on Tampereella asuva palkittu ja rakastettu spekulatiivisen fiktion kirjoittaja, jonka esikoisteos <i>Teemestarin kirja</i> (2012) on jo klassikko. <i>Teemestarin kirjasta</i> on tehty elokuva ja se on käännetty yli 20 kielelle. Itärannan suomenkielisen tekstin rinnalla kirjoittama englanninkielinen versio <i>Memory of Water</i> julkaistiin Yhdysvalloissa ja Isossa-Britanniassa vuonna 2014, ja se on saanut lukuisia englanninkielisen scifi- ja fantasiakirjallisuuden palkintoehdokkuuksia sekä The James Tiptree Jr. Award -raadin kunniamaininnan.</p><p>Itärannan toinen romaani <i>Kudottujen kujien kaupunki</i> ilmestyi vuonna 2015. Kolmannella kirjallaan <i>Kuunpäivän</i> kirjeet hän voitti arvostetun Tähtivaeltaja-palkinnon vuonna 2021.</p><p>Neljäs romaani <i>Lumenlaulaja</i> on scifi-romaanien jälkeen vahva paluu fantasian maailmaan.</p><p>Kieli: suomi<br>Vapaa pääsy</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Tapahtuman tuottavat yhteistyössä Kulttuuripalvelut, Helsingin työväenopisto ja Kannelmäen kirjasto.</p>", "sv": "<p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68928/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69269", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385528, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T12:13:56.777395Z", "last_modified_time": "2026-07-07T12:13:56.777410Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793695.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385528/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T12:13:56.714911Z", "last_modified_time": "2026-07-07T13:14:40.005374Z", "date_published": null, "start_time": "2026-11-27T16:30:00Z", "end_time": "2026-11-27T18: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": "Kantele- ja äänimaljarentoutus", "sv": "Kantele- ja äänimaljarentoutus", "en": "Kantele- ja äänimaljarentoutus" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rentoutushetkessä hellitään mieltä ja kehoa kanteleen ja äänimaljojen rauhoittavan lumoavien sointien tunnelmissa." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/ED277A7E6487CD81422E65B9BC64E8D1/Kantele-_ja_aanimaljarentoutus", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/ED277A7E6487CD81422E65B9BC64E8D1/Kantele-_ja_aanimaljarentoutus", "en": "http://www.kanneltalo.fi/en/events/event/ED277A7E6487CD81422E65B9BC64E8D1/Kantele-_ja_aanimaljarentoutus" }, "description": { "fi": "<p>Rentoutushetkessä hellitään mieltä ja kehoa kanteleen ja äänimaljojen rauhoittavan lumoavien sointien tunnelmissa.</p><p>Musiikin lisäksi ohjelma sisältää lempeää liikettä sekä ohjattua, meditatiivista läsnäoloharjoittelua. Pysähdy arjen keskellä oman kokemuksesi äärelle, levähdä ja kuulostele. Osallistuminen ei vaadi aiempaa kokemusta.</p><p>Ota mukaasi alusta makoilua varten, lämmintä vaatetta ja halutessasi viltti.</p><p>Ohjaajana toimii <b>Sarah Palu</b> (MuM, Sibelius-Akatemia), suomalaisranskalainen muusikko, säveltäjä, pedagogi ja hyvinvointikurssien ohjaaja. Hänen kiitetty esikoisalbuminsa <i>Ikivirta</i> oli EMMA-ehdokkaana ja sitä on kuunneltu Spotifyssa lähes 1,5 miljoonaa kertaa. Palun elokuvallisista äänimaisemista sekä suomalaisesta kansanmusiikista ammentava musiikki luo polkua tietoisen mielen reunoille.</p><p>Maksuton</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69269/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69283", "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: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 2385004, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:37.773293Z", "last_modified_time": "2026-06-09T07:13:37.773307Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791498.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385004/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:37.679763Z", "last_modified_time": "2026-07-07T13:14:39.616319Z", "date_published": null, "start_time": "2026-11-26T16:00:00Z", "end_time": "2026-11-26T18: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": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "Eco-art Thursday" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.", "sv": "I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.", "en": "In this workshop, we learn how to use eco-friendly materials in visual art." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D8A888431EBB43F4F45B350DB22E2991/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D8A888431EBB43F4F45B350DB22E2991/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/D8A888431EBB43F4F45B350DB22E2991/Eco-art_Thursday_" }, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>", "sv": "<p>I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.</p><p>Under bildkonstverkstäderna på torsdagar ligger tyngdpunkten på tecknings- och målningstekniker. Vi tillverkar bland annat naturliga bläck och veganska temperafärger, och använder olika återvunna material på ett kreativt sätt. Tidigare erfarenhet krävs inte och alla är välkomna att delta. <br> <br>Lärare på verkstäderna är bildkonstnären Satu Kalliokuusi, som är väl insatt i ekologiska metoder inom bildkonsten.</p><p><u><a href=\"https://harrastukset.hel.fi/sv/kurssit/helsinki:ago7zj6thi\">Du kan anmäla dig till alla eller vissa av tillfällena via den här länken (på finska)</u></a> från och med den 1 augusti kl. 9.00. Kursen riktar sig till ungdomar i åldern 16–20 år.</p>", "en": "<p>In this workshop, we learn how to use eco-friendly materials in visual art.</p><p>The main focus of the art workshops on Thursdays is on drawing and painting techniques. We make supplies such as natural inks and vegan tempera paints, and make creative use of various recycled materials. No prior experience is required, and everyone is welcome to join in. <br> <br>The workshops are led by visual artist Satu Kalliokuusi, who specialises in ecological methods in visual art.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">You can sign up for all or some of the sessions via this link (in Finnish)</u></a> from 1 August at 9.00 onwards. The course is aimed at young people aged 16–20.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69283/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69504", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": 2385535, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:39.152722Z", "last_modified_time": "2026-07-07T13:14:39.152737Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795720.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385535/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:39.048335Z", "last_modified_time": "2026-07-07T13:14:39.299936Z", "date_published": null, "start_time": "2026-11-26T16:00:00Z", "end_time": "2026-11-26T17:38: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": "Yleisön suosikit: Sydäntalvi", "sv": "Yleisön suosikit: Sydäntalvi", "en": "Yleisön suosikit: Sydäntalvi" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi", "en": "http://www.malmitalo.fi/en/events/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi" }, "description": { "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Suomen Kolilla kuvattu <i>Sydäntalvi</i> on toimintatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja <b>Emma Thompson</b>. Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut <b>Brian Kirk</b>, joka tunnetaan muun muassa <i>Game of Thrones</i> -sarjan jaksoista sekä elokuvasta <i>21 Bridges</i>. Muissa rooleissa <b>Marc Menchaca, Judy Greer</b> ja <b>Gaia Wise</b>, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Kesto: 1 t 36 min<br>Kieli: englanti, tekstitetty suomeksi<br>Ikäraja: 16<br>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69504/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69282", "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: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 2385003, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:36.922255Z", "last_modified_time": "2026-06-09T07:13:36.922270Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791497.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385003/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:36.823545Z", "last_modified_time": "2026-07-07T13:14:36.590567Z", "date_published": null, "start_time": "2026-11-19T16:00:00Z", "end_time": "2026-11-19T18: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": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "Eco-art Thursday" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.", "sv": "I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.", "en": "In this workshop, we learn how to use eco-friendly materials in visual art." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8008467A239AD9F2515EA8325810C845/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8008467A239AD9F2515EA8325810C845/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/8008467A239AD9F2515EA8325810C845/Eco-art_Thursday_" }, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>", "sv": "<p>I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.</p><p>Under bildkonstverkstäderna på torsdagar ligger tyngdpunkten på tecknings- och målningstekniker. Vi tillverkar bland annat naturliga bläck och veganska temperafärger, och använder olika återvunna material på ett kreativt sätt. Tidigare erfarenhet krävs inte och alla är välkomna att delta. <br> <br>Lärare på verkstäderna är bildkonstnären Satu Kalliokuusi, som är väl insatt i ekologiska metoder inom bildkonsten.</p><p><u><a href=\"https://harrastukset.hel.fi/sv/kurssit/helsinki:ago7zj6thi\">Du kan anmäla dig till alla eller vissa av tillfällena via den här länken (på finska)</u></a> från och med den 1 augusti kl. 9.00. Kursen riktar sig till ungdomar i åldern 16–20 år.</p>", "en": "<p>In this workshop, we learn how to use eco-friendly materials in visual art.</p><p>The main focus of the art workshops on Thursdays is on drawing and painting techniques. We make supplies such as natural inks and vegan tempera paints, and make creative use of various recycled materials. No prior experience is required, and everyone is welcome to join in. <br> <br>The workshops are led by visual artist Satu Kalliokuusi, who specialises in ecological methods in visual art.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">You can sign up for all or some of the sessions via this link (in Finnish)</u></a> from 1 August at 9.00 onwards. The course is aimed at young people aged 16–20.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69282/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69281", "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: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 2385002, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:36.165691Z", "last_modified_time": "2026-06-09T07:13:36.165708Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791496.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:36.073021Z", "last_modified_time": "2026-07-07T13:14:34.091391Z", "date_published": null, "start_time": "2026-11-12T16:00:00Z", "end_time": "2026-11-12T18: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": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "Eco-art Thursday" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.", "sv": "I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.", "en": "In this workshop, we learn how to use eco-friendly materials in visual art." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/09E6A912B75B57CB4B4F949D0765B2E2/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/09E6A912B75B57CB4B4F949D0765B2E2/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/09E6A912B75B57CB4B4F949D0765B2E2/Eco-art_Thursday_" }, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>", "sv": "<p>I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.</p><p>Under bildkonstverkstäderna på torsdagar ligger tyngdpunkten på tecknings- och målningstekniker. Vi tillverkar bland annat naturliga bläck och veganska temperafärger, och använder olika återvunna material på ett kreativt sätt. Tidigare erfarenhet krävs inte och alla är välkomna att delta. <br> <br>Lärare på verkstäderna är bildkonstnären Satu Kalliokuusi, som är väl insatt i ekologiska metoder inom bildkonsten.</p><p><u><a href=\"https://harrastukset.hel.fi/sv/kurssit/helsinki:ago7zj6thi\">Du kan anmäla dig till alla eller vissa av tillfällena via den här länken (på finska)</u></a> från och med den 1 augusti kl. 9.00. Kursen riktar sig till ungdomar i åldern 16–20 år.</p>", "en": "<p>In this workshop, we learn how to use eco-friendly materials in visual art.</p><p>The main focus of the art workshops on Thursdays is on drawing and painting techniques. We make supplies such as natural inks and vegan tempera paints, and make creative use of various recycled materials. No prior experience is required, and everyone is welcome to join in. <br> <br>The workshops are led by visual artist Satu Kalliokuusi, who specialises in ecological methods in visual art.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">You can sign up for all or some of the sessions via this link (in Finnish)</u></a> from 1 August at 9.00 onwards. The course is aimed at young people aged 16–20.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69281/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69590", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385525, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T12:13:53.688921Z", "last_modified_time": "2026-07-07T12:13:53.688938Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791166.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385525/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T12:13:53.591559Z", "last_modified_time": "2026-07-07T12:13:53.852902Z", "date_published": null, "start_time": "2026-11-25T15:00:00Z", "end_time": "2026-11-25T17: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": "Kantsun kahvit – Keskiviikkoklubi", "sv": "Kantsun kahvit", "en": "Coffee at Kantsu" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.", "sv": "Kantsun kahvit är en öppen mötesplats där vi tillsammans ordnar varierande program.", "en": "Coffee events at Kantsu are open meeting places, where a programme of events is organised together." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/64CF800E7997DB4844731ADCB45FD9F6/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/64CF800E7997DB4844731ADCB45FD9F6/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/64CF800E7997DB4844731ADCB45FD9F6/Coffee_at_Kantsu" }, "description": { "fi": "<p>Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.</p><p>Tule tapaamaan ihmisiä ja keskustelemaan ajankohtaisista asioista kahvittelun lomassa. Tarjoamme kahvia, teetä ja pientä syötävää. Lapset ovat tervetulleita vanhempiensa kanssa.</p><p>Kantsun kahvien sisällöt suunnitellaan yhdessä asukasaktiivien kanssa. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Osallistu keskusteluun Kantsun kahvit -Facebook-ryhmässä</u></a>.</p><p>Kantsun kahvit järjestävät yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.</p><p>Paikka: Kanneltalon kahvilan stage</p>", "sv": "<p>Kantsun kahvit är en öppen mötesplats där vi tillsammans ordnar varierande program.</p><p>Kom och träffa människor och diskutera aktuella frågor över en kopp kaffe. Vi bjuder på kaffe, te och något smått att äta. Barn är välkomna tillsammans med sina föräldrar.</p><p>Innehållet i kaffestunderna Kantsun kahvit planeras tillsammans med aktiva invånare. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Delta i diskussionen i Facebookgruppen Kantsun kahvit</u></a>.</p><p>Kantsun kahvit ordnas som ett samarbete mellan invånare i området, D-asema i Gamlas och Helsingfors stad</p><p>Du behöver inte anmäla dig till evenemanget på förhand och det är gratis.</p><p>Plats: Gamlasgården kafé stage</p>", "en": "<p>Coffee events at Kantsu are open meeting places, where a programme of events is organised together.</p><p>Come and meet people and discuss current issues over coffee. We offer coffee, tea and snacks. Children are welcome with their parents.</p><p>The content of Kantsu coffee events is planned together with resident activists. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Join the discussion in the ‘Kantsun kahvit’ Facebook group</u></a>.</p><p>Coffee at Kantsu is organised in cooperation by local residents, D-asema in Kannelmäki and the City of Helsinki.</p><p>No advance registration is required and the event is free of charge.</p><p>Location: Kanneltalo café stage</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69590/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69589", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T11:13:48.043481Z", "last_modified_time": "2026-07-07T11:13:48.043497Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794024.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385522/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T11:13:47.920993Z", "last_modified_time": "2026-07-07T11:13:48.184571Z", "date_published": null, "start_time": "2026-11-08T12:00:00Z", "end_time": "2026-11-08T15: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": "Isänpäivä Lasten Etnosoi!ssa: Kasvotusten", "sv": "Isänpäivä Lasten Etnosoi!ssa: Kasvotusten", "en": "Isänpäivä Lasten Etnosoi!ssa: Kasvotusten" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Isänpäivän iltapäivässä matkustamme maailman eri kolkkiin konserteissa sekä musiikin ja tanssin työpajoissa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0AF3A7A05523420D37AF96536269C19A/Isanpaiva_Lasten_Etnosoi_ssa_Kasvotusten", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0AF3A7A05523420D37AF96536269C19A/Isanpaiva_Lasten_Etnosoi_ssa_Kasvotusten", "en": "http://www.malmitalo.fi/en/events/event/0AF3A7A05523420D37AF96536269C19A/Isanpaiva_Lasten_Etnosoi_ssa_Kasvotusten" }, "description": { "fi": "<p>Isänpäivän iltapäivässä matkustamme maailman eri kolkkiin konserteissa sekä musiikin ja tanssin työpajoissa.</p><p><b>Javiera Mac-leanin</b> (CL) ’Kasvotusten’ on hauska, monikulttuurinen taidetyöpaja. Siinä luodaan ainutlaatuisia muotokuvia lasten kanssa käyttämällä leikkisiä silmien, nenien, suiden ja muiden hauskojen elementtien leimoja! Lopuksi kaikki muotokuvat kootaan yhteisnäyttelyksi, joka juhlistaa monimuotoisia kasvojamme ja kulttuurejamme.</p><p>Aulan hyvän mielen torilla voit auttaa maailman lapsia ja kuulla Unicefin toiminnasta</p><p>Maailman musiikin keskuksen myöntämän Risteys-palkinnon 2026 voitti ansiokasta ja merkityksellisestä työtä tekevä Kulttuurikeskus Ninho ry (NINHO). Juhlan kunniaksi Maailman musiikin keskus ja NINHO järjestävät lapsille suunnattuja työpajoja monikielisessä ympäristössä tällä kertaa yhdessä. Mukana maailmanympärysmatkalla ovat toki tänäkin vuonna Taideyliopiston Sibelius-Akatemian Global Music -osaston muusikot.</p><p>Tapahtuman tuottavat yhdessä Maailman musiikin keskus, Malmitalo, Taideyliopiston Global Music -osasto sekä NINHO. Yhteistyössä mukana Suomen Unicef.</p><p>Päivän ohjelmatiedot täydentyvät osoitteessa <u><a href=\"https://www.etnosoi.fi/\">etnosoi.fi.</u></a></p><p>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69589/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptyutkke", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385524, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:56:59.517586Z", "last_modified_time": "2026-07-07T10:56:59.517600Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b249c943-cf03-42f1-9251-a070a92a5b86.png", "name": "", "cropping": "128,0,896,768", "photographer_name": "Bengali Association of Finland (BAF)", "alt_text": "Joogaavia ihmisiä laiturilla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385524/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:57:36.511207Z", "last_modified_time": "2026-07-07T10:57:36.511223Z", "date_published": null, "start_time": "2026-07-12T12:00:00Z", "end_time": "2026-07-12T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Yoga Session | যোগ ব্যায়াম সেশন", "sv": "Yoga Session | যোগ ব্যায়াম সেশন", "en": "Yoga Session | যোগ ব্যায়াম সেশন" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Bengali Association of Finland (BAF)", "sv": "Bengali Association of Finland (BAF)", "en": "Bengali Association of Finland (BAF)" }, "short_description": { "fi": "Yoga Session | যোগ ব্যায়াম সেশন", "sv": "Yoga Session | যোগ ব্যায়াম সেশন", "en": "Yoga Session | যোগ ব্যায়াম সেশন" }, "info_url": null, "description": { "fi": "<p>Bengali Association of Finlandin järjestämä jooga. Ohjaus tapahtuu englanniksi, tilaisuus on maksuton ja kaikille avoin. Saavuthan ajoissa, 15 minuuttia enne tilaisuuden alkua.</p><p>Ota mukaan oma joogamatto, tai pyyhe.</p><p>---</p><p>Bengali Association of Finland (BAF) warmly invites you to a rejuvenating yoga session — an hour of mindful movement, breathing, and wellness for the whole community.</p><p><strong>Date</strong>: Saturday, 12th July 2026</p><p><strong>Time</strong>: 3:00 PM – 4:00 PM</p><p><strong>Venue</strong>: Lippulaiva Library, Salonki Room</p><p><strong>Please note:</strong></p><ul><li>This is an open event — everyone is welcome to join!</li><li>Participants are requested to bring their own yoga mat and wear clothes appropriate for yoga</li><li>Kindly arrive 15 minutes early (by 2:45 PM) for basic preparations</li><li>The session is completely free of cost</li><li>No certificate will be provided — this is purely for health, wellness, and community bonding</li></ul><p><br></p>", "sv": "<p>Yoga arrangerad av Bengali Association of Finland. Instruktionen ges på engelska, evenemanget är kostnadsfritt och öppet för alla. Vänligen kom i god tid, 15 minuter före evenemangets start.</p><p>Ta med egen yogamatta eller handduk.</p><p>---</p><p>Bengali Association of Finland (BAF) warmly invites you to a rejuvenating yoga session — an hour of mindful movement, breathing, and wellness for the whole community.</p><p><strong>Date</strong>: Saturday, 12th July 2026</p><p><strong>Time</strong>: 3:00 PM – 4:00 PM</p><p><strong>Venue</strong>: Lippulaiva Library, Salonki Room</p><p><strong>Please note:</strong></p><ul><li>This is an open event — everyone is welcome to join!</li><li>Participants are requested to bring their own yoga mat and wear clothes appropriate for yoga</li><li>Kindly arrive 15 minutes early (by 2:45 PM) for basic preparations</li><li>The session is completely free of cost</li><li>No certificate will be provided — this is purely for health, wellness, and community bonding</li></ul><p><br></p>", "en": "<p>Bengali Association of Finland (BAF) warmly invites you to a rejuvenating yoga session — an hour of mindful movement, breathing, and wellness for the whole community.</p><p><strong>Date</strong>: Saturday, 12th July 2026</p><p><strong>Time</strong>: 3:00 PM – 4:00 PM</p><p><strong>Venue</strong>: Lippulaiva Library, Salonki Room</p><p><strong>Please note:</strong></p><ul><li>This is an open event — everyone is welcome to join!</li><li>Participants are requested to bring their own yoga mat and wear clothes appropriate for yoga</li><li>Kindly arrive 15 minutes early (by 2:45 PM) for basic preparations</li><li>The session is completely free of cost</li><li>No certificate will be provided — this is purely for health, wellness, and community bonding</li></ul>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptyutkke/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68932", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 2385516, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:13:59.421191Z", "last_modified_time": "2026-07-07T10:13:59.421206Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792279.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385516/?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-07-07T10:13:59.327503Z", "last_modified_time": "2026-07-07T10:13:59.552109Z", "date_published": null, "start_time": "2026-11-21T11:00:00Z", "end_time": "2026-11-21T14: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": "Lasten lauantai – lapset ovat hyviä ihmettelemään!", "sv": "Lasten lauantai – lapset ovat hyviä ihmettelemään!", "en": "Lasten lauantai – lapset ovat hyviä ihmettelemään!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lasten lauantaissa tieteillään, taiteillaan, leikitään ja ihmetellään." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_", "en": "http://www.kanneltalo.fi/en/events/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_" }, "description": { "fi": "<p>Lasten lauantaissa tieteillään, taiteillaan, leikitään ja ihmetellään.</p><p><b>Klo 10–16 | Skidimarket</b><br>Gallerian Skidimarketissa saa leikkiä! Skidimarket kutsuu uusia hyllyttäjiä, kassahenkilökuntaa ja paistopistetyyppejä hommiin! Skidimarket on tila lasten omalle leikille ja mielikuvitusasiakkaille. Tilapäinen leikkikauppa valtaa galleriatilan, jonne muodostuu värikäs marketmaailma. Hyllyttämistä ja kassahommia tarjolla! Tuotanto: Skidit-kollektiivi.</p><p><b>Klo 13–16 | Lapset ovat hyviä ihmettelemään! -taidepaja</b> <br>Tässä kaikenikäisten taidepajassa leikitään luonnontieteilijöitä tutkimalla luonnon pieniä ihmeitä. Tarkastelemme luupeilla ja lasten mikroskoopilla huolellisesti erilaisia luonnonmateriaaleja. Piirrämme havainnoistamme leikkisiä ja värikkäitä taideteoksia erilaisilla piirustusvälineillä. Oletko valmis näkemään aivan uudella tavalla jäkälän, pikkukivet ja tammenterhot? Työpajan järjestää Seikkailutaidekoulu.</p><p><b>Klo 14 | Dinosauruksen hikka vai mehiläisen kakka?</b><br>33 kutkuttavaa lasten tiedekysymystä</p><p>Uusintaesitys yleisön pyynnöstä! Lasten tiedekysymyksistä kootussa musiikillisessa teatteriseikkailussa tiede tanssii sambaa ja mielikuvitus laukkaa. Varoitus: Esitys saattaa aiheuttaa kroonista kysymysripulia! Kesto: 50 min. Esityskieli: suomi. Liput: 15 / 12 / 6 € osoitteesta lippu.fi.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68932/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68937", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385515, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:13:59.009129Z", "last_modified_time": "2026-07-07T10:13:59.009148Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792283.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385515/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:13:58.865614Z", "last_modified_time": "2026-07-07T10:13:59.163419Z", "date_published": null, "start_time": "2026-11-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tell Your Birds & Manu Rosales – Global Club Nights", "sv": "Tell Your Birds & Manu Rosales – Global Club Nights", "en": "Tell Your Birds & Manu Rosales – Global Club Nights" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales", "en": "http://www.kanneltalo.fi/en/events/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales" }, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Kanneltalossa klubeja järjestetään syksyn 2026 aikana kahtena iltana. Ensimmäisessä klubi-illassa 2.10. esiintyvät Humphrey Mubba ja Trio Mandeng. Toinen klubi-ilta järjestetään 20.11. Lapsen oikeuksien päivänä ja esiintymässä ovat Tell Your Birds ja Manu Rosales.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoilee mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p><b>Manu Rosales</b> on säveltäjä, kitaristi ja laulaja Buenos Airesista, Argentiinasta. Hänen musiikkinsa juuret johtavat syvälle Buenos Airesin laulunkirjoitusperinteeseen ja heijastelevat tätä moninaista maailmankaupunkia kierteleviä vaikutteita. <i>Volver Siguiendo</i> -konsertti katsoo perinnettä ja identiteettiä elävänä ja keskeneräisenä prosessina, johon sekoittuu kaikki tätä uutta aluetta kiertävä, sekä esitykseen osallistuvat upeat muusikot.</p><p>Esitys kulkee läpi Argentiinan, Brasilian ja Andien vuoriston monimuotoisten musiikkityylien. Kutsumme sinut ainutlaatuiseen, akustiseen ja lämmintunnelmaiseen konserttiin, jossa Rosales yhtyeineen esittää omia ja vielä julkaisemattomia kappaleitaan – tutustumaan tähän nykyaikaiseen näkemykseen perinteestä, sävellyksestä ja laulusta.</p><p><b>Tell Your Birds</b> on nykykansanmusiikkiyhtye, jonka muodostavat <b>Vija Moore</b> (Latvia; lyömäsoittimet, balafon, laulu), <b>Kärt Tambet</b> (Viro; viulu ja laulu), <b>Simone Spampinato</b> (Italia; syntetisaattori ja live-elektroniikka) sekä <b> Kristīne Tukre (Latvia; konserttikokle).</p><p><b>Global Club Nights</b> -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>I Gamlasgården ordnas klubben två kvällar under hösten 2026. På den första klubbkvällen 2.10. framträder Humphrey Mubba ja Trio Mandeng. Den andra klubbkvällen ordnas 20.11. i Veckan för barnets rättigheter med Tell Your Birds och Manu Rosales.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p>The free club nights start early, so children are welcome when accompanied by an adult. In addition to exciting music, the club also offers other fun activities suitable for children. Let's start the weekend together!</p><p>Kanneltalo will host the club on two evenings during the autumn of 2026. The first club night on 2nd October will feature Humphrey Mubba and Trio Mandeng. The second club night will take place on 20th November during Children’s Rights Week with artists Tell Your Birds ja Manu Rosales.</p><p><b>Manu Rosales</b> is a composer, guitarist, and singer from Buenos Aires, Argentina. His music is deeply rooted in the song composition traditions of Buenos Aires, reflecting the multitude of influences that orbit within that diverse and cosmopolitan city. <i>Volver Siguiendo (Return in Continuation)</i> reveals a concert that consider both tradition and identity as an alive unfinished process – blending it with everything that orbits around this new territory and the astounding musicians who will take part in the performance.</p><p>The performance goes through diverse musical styles from Argentina, Brazil and the Andes mountains. You are invited to an unrepeatable, acoustic, and intimate concert featuring original and unpublished works – a contemporary vision of tradition, composition, and song.</p><p><b> Tell Your Birds</b> is a contemporary folk music band featuring <b>Vija Moore</b> (Latvia; percussion, balafon and voice), <b>Kärt Tambet</b> (Estonia; violin and voice), <b>Simone Spampinato</b> (Italy; synthesizer and live electronics) and <b>Kristīne Tukre</b> (Latvia; concert kokle).</p><p><b>Global Club Nights</b> aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68937/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69280", "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: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 2385001, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:35.209128Z", "last_modified_time": "2026-06-09T07:13:35.209146Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791495.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385001/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:35.114304Z", "last_modified_time": "2026-07-07T10:13:56.584472Z", "date_published": null, "start_time": "2026-11-05T16:00:00Z", "end_time": "2026-11-05T18: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": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "Eco-art Thursday" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.", "sv": "I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.", "en": "In this workshop, we learn how to use eco-friendly materials in visual art." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D76CCB19BAA5D42117F00FC3CC1C1408/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D76CCB19BAA5D42117F00FC3CC1C1408/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/D76CCB19BAA5D42117F00FC3CC1C1408/Eco-art_Thursday_" }, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>", "sv": "<p>I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.</p><p>Under bildkonstverkstäderna på torsdagar ligger tyngdpunkten på tecknings- och målningstekniker. Vi tillverkar bland annat naturliga bläck och veganska temperafärger, och använder olika återvunna material på ett kreativt sätt. Tidigare erfarenhet krävs inte och alla är välkomna att delta. <br> <br>Lärare på verkstäderna är bildkonstnären Satu Kalliokuusi, som är väl insatt i ekologiska metoder inom bildkonsten.</p><p><u><a href=\"https://harrastukset.hel.fi/sv/kurssit/helsinki:ago7zj6thi\">Du kan anmäla dig till alla eller vissa av tillfällena via den här länken (på finska)</u></a> från och med den 1 augusti kl. 9.00. Kursen riktar sig till ungdomar i åldern 16–20 år.</p>", "en": "<p>In this workshop, we learn how to use eco-friendly materials in visual art.</p><p>The main focus of the art workshops on Thursdays is on drawing and painting techniques. We make supplies such as natural inks and vegan tempera paints, and make creative use of various recycled materials. No prior experience is required, and everyone is welcome to join in. <br> <br>The workshops are led by visual artist Satu Kalliokuusi, who specialises in ecological methods in visual art.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">You can sign up for all or some of the sessions via this link (in Finnish)</u></a> from 1 August at 9.00 onwards. The course is aimed at young people aged 16–20.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69280/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68632", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385512, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:13:55.980648Z", "last_modified_time": "2026-07-07T10:13:55.980664Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791315.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385512/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:13:55.851791Z", "last_modified_time": "2026-07-07T10:13:56.138295Z", "date_published": null, "start_time": "2026-11-03T16:00:00Z", "end_time": "2026-11-03T17: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": "PHMOsta kajahtaa! -oppilaskonsertti", "sv": "PHMOsta kajahtaa! -oppilaskonsertti", "en": "PHMOsta kajahtaa! -oppilaskonsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti", "en": "http://www.malmitalo.fi/en/events/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti" }, "description": { "fi": "<p>PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa.</p><p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston eri ikäisten taitajien esityksiä – konsertteihin on vapaa pääsy!</p><p>Konsertit 2., 3. ja 17.11. klo 18.00 Malmitalossa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68632/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68927", "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": 2385506, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T09:13:54.327660Z", "last_modified_time": "2026-07-07T09:13:54.327675Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792273.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385506/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T09:13:54.234724Z", "last_modified_time": "2026-07-07T09:13:54.469130Z", "date_published": null, "start_time": "2026-11-09T16: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 professori Esko Valtaoja – Maksuttomat maanantait", "sv": "Författarbesök: Esko Valtaoja – Kostnadsfria måndagar", "en": "Guest Author Esko Valtaoja – Free Mondays" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tähtitieteilijä Esko Valtaoja ruotii aikamme ilmiöitä omaan jäljittelemättömään tyyliinsä. Haastattelijana FM Tuija Takala." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F6B2201A180752668CD9977BF9696771/Kirjailijavieraana_professori_Esko_Valtaoja", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F6B2201A180752668CD9977BF9696771/Forfattarbesok_Esko_Valtaoja", "en": "http://www.kanneltalo.fi/en/events/event/F6B2201A180752668CD9977BF9696771/Guest_Author_Esko_Valtaoja" }, "description": { "fi": "<p>Tähtitieteilijä Esko Valtaoja ruotii aikamme ilmiöitä omaan jäljittelemättömään tyyliinsä. Haastattelijana FM Tuija Takala.</p><p><i>\"Maailmamme koostuu lukemattomista pakahduttavan mielenkiintoisista asioista ja niiden välisistä yllättävistäkin yhteyksistä.</p><p>\"'Maailmaan virtaa tauotta jotain uutta, mutta silti siedämme uskomatonta tylsyyttä' surkutteli Henry Thoreau, jo sata vuotta ennen syntymääni. Minulla on uskomattoman huono tylsyyden sietokyky; se on yksi selitys tämänkin kirjan olemassaoloon. Jos nämä kirjoitukset onnistuvat lievittämään myös jonkun muun tylsistymistä, en ole nakutellut niitä ihan turhaan.</p><p>\"Minkään tekstin ei pitäisi olla viimeinen vaan ensimmäinen sana, uusien ajatusten alullepanija lukijassa.\"</i></p><p><b>Esko Valtaoja</b> on Turun yliopiston avaruustähtitieteen emeritusprofessori ja Tuorlan observatorion entinen johtaja. Valtaoja on myös tunnettu tieteen kansantajuistajana. Hänen teoksensa Kotona maailmankaikkeudessa sai Tieto-Finlandia-palkinnon vuonna 2002.</p><p>Keskustelun kieli: suomi</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68927/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68920", "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: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" } ], "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": 2385505, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T09:13:53.347738Z", "last_modified_time": "2026-07-07T09:13:53.347754Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792228.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385505/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T09:13:53.232526Z", "last_modified_time": "2026-07-07T09:13:53.541643Z", "date_published": null, "start_time": "2026-11-04", "end_time": "2026-11-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": "Skidimarket: nyt saa leikkiä!", "sv": "Skidimarket: nyt saa leikkiä!", "en": "Skidimarket: nyt saa leikkiä!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Nyt saa leikkiä! Skidimarket kutsuu uusia hyllyttäjiä, kassahenkilökuntaa ja paistopistetyyppejä hommiin!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/065215D7693E8E61E127865C51A957B4/Skidimarket_nyt_saa_leikkia_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/065215D7693E8E61E127865C51A957B4/Skidimarket_nyt_saa_leikkia_", "en": "http://www.kanneltalo.fi/en/events/event/065215D7693E8E61E127865C51A957B4/Skidimarket_nyt_saa_leikkia_" }, "description": { "fi": "<p>Nyt saa leikkiä! Skidimarket kutsuu uusia hyllyttäjiä, kassahenkilökuntaa ja paistopistetyyppejä hommiin!</p><p>Skidimarket on tila lasten omalle leikille ja mielikuvitusasiakkaille. Tilapäinen leikkikauppa valtaa galleriatilan, jonne muodostuu värikäs marketmaailma. Hyllyttämistä ja kassahommia tarjolla!<br> <br>Skidimarketin toteuttaa Skidit-kollektiivi, joka liputtaa leikkisän elämän puolesta. Kollektiivi järjestää suosittuja Skidit-tapahtumia, kuten diskot ja risteilyt, ja tekee hauskoja installaatioita ja performansseja.</p><p>Galleria<br>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68920/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68960", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": 2385500, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T08:13:50.225965Z", "last_modified_time": "2026-07-07T08:13:50.225981Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792381.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385500/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T08:13:50.081038Z", "last_modified_time": "2026-07-07T08:13:50.415197Z", "date_published": null, "start_time": "2026-11-02T15: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": "Aleksi Salmenperä: Isänpäivä – Kino Kuutamo | Maksuttomat maanantait", "sv": "Aleksi Salmenperä: Isänpäivä", "en": "Aleksi Salmenperä: Isänpäivä" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.", "sv": "Mångfaldigt prisbelönte Aleksi Salmenperäs (bl.a. Ett mansjobb, Jätten, Tomrum) nya film Fars dag är en ärlig tragikomedi om överlevnad.", "en": "The multi-award-winning director Aleksi Salmenperä (A Man’s Job, The Mine, Void) returns with Father’s Day, an honest tragicomedy about surviving life’s many challenges." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/46E706CE9605ECF08829141FE543DC0B/Aleksi_Salmenpera_Isanpaiva", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/46E706CE9605ECF08829141FE543DC0B/Aleksi_Salmenpera_Isanpaiva", "en": "http://www.kanneltalo.fi/en/events/event/46E706CE9605ECF08829141FE543DC0B/Aleksi_Salmenpera_Isanpaiva" }, "description": { "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p><b>Elokuvaluento klo 17–17.45<br>Elokuva klo 18–19.50</b></p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori. Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Ikäraja: 7<br>Pituus: 1 tunti 40 min<br>Ohjaus: Aleksi Salmenperä<br>Käsikirjoitus: Aleksi Salmenperä<br>Näyttelijät: Tommi Korpela, Tomi Lindfors, Laura Birn, Varpu Rintanen, Vilja Rintanen<br>Genre: Draama<br>Ensi-ilta: 6.3.2026</p><p>Syksyn <b>Kino Kuutamoissa</b> nähdään uusia kotimaisia elokuvia. Elokuvahistorian asiantuntija <b>FT Harri Kilpi</b> johdattaa illan elokuvaan klo 17–17.45. Elokuvan ilmaisnäytös alkaa klo 18.</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Mångfaldigt prisbelönte Aleksi Salmenperäs (bl.a. Ett mansjobb, Jätten, Tomrum) nya film Fars dag är en ärlig tragikomedi om överlevnad.</p><p>Veikko (Tommi Korpela) hjälper sin kompis Tinke (Tomi Lindfors) med vardagen på en serviceenhet. Tinke har supit bort sin hälsa, och livets dystra sidor pareras med hisnande humor. När den tidigare rockgroupien Saimis (Laura Birn) tonårstvillingdöttrar (Vilja och Varpu Rintanen) beslutar att försöka ta reda på vem deras pappa är, leder spåren till Tinke. Saimi tänker se till att tvillingarna inte träffar Tinke, men Veikko blir involverad och är av annan åsikt.</p><p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>The multi-award-winning director Aleksi Salmenperä (A Man’s Job, The Mine, Void) returns with Father’s Day, an honest tragicomedy about surviving life’s many challenges.</p><p>In the film, Veikko (Tommi Korpela) helps his friend Tinke (Tomi Lindfors) navigate daily life in a residential care home. Tinke has drunk his health away, and his life is held together by humour drawn from its grim side. When the teenage daughters (Vilja and Varpu Rintanen) of a former groupie (Laura Birn) set out to discover who their father is, the trail leads to Tinke. Saimi intends to prevent the twins from meeting Tinke, but Veikko, who gets drawn into the mess, thinks otherwise.</p><p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68960/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptxln4fe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln7du/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385503, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T08:07:46.281950Z", "last_modified_time": "2026-07-07T08:07:46.281964Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/de0665c2-47a9-42af-be85-cd8a62cc30ac.png", "name": "", "cropping": "114,0,482,369", "photographer_name": "Canva", "alt_text": "piirroskuvassa henkilöt rivissä kädet toistensa olkapäillä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385503/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T08:11:37.503151Z", "last_modified_time": "2026-07-07T08:11:37.503168Z", "date_published": null, "start_time": "2026-11-30T11:00:00Z", "end_time": "2026-11-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": "Hyvän mielen ryhmä - Luovuuden vuodenajat " }, "location_extra_info": { "fi": "Sininen huone" }, "provider": null, "short_description": { "fi": "Kirjaston ja Hyvä kodin yhteinen aikuisille suunnattu ryhmä" }, "info_url": null, "description": { "fi": "HYVÄN MIELEN RYHMÄ - Luovuuden vuodenajat<p><strong>Joka toinen maanan tai klo 13.00–14.30 </strong></p><p><strong>7.9.-30.11.2026 Entressen kirjasto I Sininen huone</strong></p><p>Rentoutumisharjoituksia, askartelua, innostavia tekstinpätkiä</p><p>tekemisen tueksi. Kahvi/teetarjoilu ja keksiä. Maksuton.</p><p>Voit vapaasti osallistua niille kerroille, joille haluat.</p><p>Ryhmä on tarkoitettu aikuisille.</p><p>Ohjaajina työntekijöitä Hyvä kodista ja kirjastolta.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln4fe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptxln42m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln7du/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385503, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T08:07:46.281950Z", "last_modified_time": "2026-07-07T08:07:46.281964Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/de0665c2-47a9-42af-be85-cd8a62cc30ac.png", "name": "", "cropping": "114,0,482,369", "photographer_name": "Canva", "alt_text": "piirroskuvassa henkilöt rivissä kädet toistensa olkapäillä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385503/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T08:11:37.386967Z", "last_modified_time": "2026-07-07T08:11:37.386983Z", "date_published": null, "start_time": "2026-11-16T11:00:00Z", "end_time": "2026-11-16T12: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": "Hyvän mielen ryhmä - Luovuuden vuodenajat " }, "location_extra_info": { "fi": "Sininen huone" }, "provider": null, "short_description": { "fi": "Kirjaston ja Hyvä kodin yhteinen aikuisille suunnattu ryhmä" }, "info_url": null, "description": { "fi": "HYVÄN MIELEN RYHMÄ - Luovuuden vuodenajat<p><strong>Joka toinen maanan tai klo 13.00–14.30 </strong></p><p><strong>7.9.-30.11.2026 Entressen kirjasto I Sininen huone</strong></p><p>Rentoutumisharjoituksia, askartelua, innostavia tekstinpätkiä</p><p>tekemisen tueksi. Kahvi/teetarjoilu ja keksiä. Maksuton.</p><p>Voit vapaasti osallistua niille kerroille, joille haluat.</p><p>Ryhmä on tarkoitettu aikuisille.</p><p>Ohjaajina työntekijöitä Hyvä kodista ja kirjastolta.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln42m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptxln5fe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln7du/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385503, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T08:07:46.281950Z", "last_modified_time": "2026-07-07T08:07:46.281964Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/de0665c2-47a9-42af-be85-cd8a62cc30ac.png", "name": "", "cropping": "114,0,482,369", "photographer_name": "Canva", "alt_text": "piirroskuvassa henkilöt rivissä kädet toistensa olkapäillä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385503/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T08:11:37.270688Z", "last_modified_time": "2026-07-07T08:11:37.270703Z", "date_published": null, "start_time": "2026-11-02T11:00:00Z", "end_time": "2026-11-02T12: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": "Hyvän mielen ryhmä - Luovuuden vuodenajat " }, "location_extra_info": { "fi": "Sininen huone" }, "provider": null, "short_description": { "fi": "Kirjaston ja Hyvä kodin yhteinen aikuisille suunnattu ryhmä" }, "info_url": null, "description": { "fi": "HYVÄN MIELEN RYHMÄ - Luovuuden vuodenajat<p><strong>Joka toinen maanan tai klo 13.00–14.30 </strong></p><p><strong>7.9.-30.11.2026 Entressen kirjasto I Sininen huone</strong></p><p>Rentoutumisharjoituksia, askartelua, innostavia tekstinpätkiä</p><p>tekemisen tueksi. Kahvi/teetarjoilu ja keksiä. Maksuton.</p><p>Voit vapaasti osallistua niille kerroille, joille haluat.</p><p>Ryhmä on tarkoitettu aikuisille.</p><p>Ohjaajina työntekijöitä Hyvä kodista ja kirjastolta.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln5fe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }