Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=11&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 12736, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=12&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=10&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "jiiri:65c0a087-eea1-4568-8550-89ab3b9e1a7c", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "1" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:026cc54e-b17a-f111-ab0f-0022489d0839/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cb296040-b17a-f111-ab0e-70a8a52df8e9/?format=api" } ], "images": [ { "id": 2385562, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-08T10:09:54.576570Z", "last_modified_time": "2026-07-08T10:09:54.576583Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/8b35bcdc-c0d5-f011-8544-7ced8d2e6e81", "name": "testikuva", "cropping": "", "photographer_name": "Testihenkilö", "alt_text": "testikuva", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "created_time": "2026-07-08T09:58:32.061802Z", "last_modified_time": "2026-07-08T10:09:55.081197Z", "date_published": "2026-07-08T09:41:29Z", "start_time": "2026-07-10T07:00:00Z", "end_time": "2026-07-10T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "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": "Testitapahtuma katto" }, "location_extra_info": null, "provider": { "fi": "Millat Ry" }, "short_description": { "fi": "Tapahtuman lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tapahtuman kuvaus suomeksi</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:65c0a087-eea1-4568-8550-89ab3b9e1a7c/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:026cc54e-b17a-f111-ab0f-0022489d0839", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:65c0a087-eea1-4568-8550-89ab3b9e1a7c/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "1" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2385561, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-08T10:09:34.218662Z", "last_modified_time": "2026-07-08T10:09:34.218678Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/8b35bcdc-c0d5-f011-8544-7ced8d2e6e81", "name": "testikuva", "cropping": "", "photographer_name": "Testihenkilö", "alt_text": "testikuva", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "created_time": "2026-07-08T09:59:12.047258Z", "last_modified_time": "2026-07-08T10:09:34.693213Z", "date_published": "2026-07-08T09:42:18Z", "start_time": "2026-07-11T04:00:00Z", "end_time": "2026-07-11T12: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": "Testitapahtuma 2" }, "location_extra_info": null, "provider": { "fi": "Millat Ry" }, "short_description": { "fi": "Tapahtuman lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tapahtuman kuvaus suomeksi</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:026cc54e-b17a-f111-ab0f-0022489d0839/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69083", "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": 2385549, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:05.369717Z", "last_modified_time": "2026-07-08T08:14:05.369739Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792691.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385549/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T08:14:05.287481Z", "last_modified_time": "2026-07-08T08:14:05.460933Z", "date_published": null, "start_time": "2026-12-09T15:30:00Z", "end_time": "2026-12-09T16: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": "PHMO: Muskarilaisten konsertti", "sv": "PHMO: Muskarilaisten konsertti", "en": "PHMO: Muskarilaisten konsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti", "en": "http://www.malmitalo.fi/en/events/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti" }, "description": { "fi": "<p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68657", "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:32/?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:p1278/?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": 2385548, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:04.964875Z", "last_modified_time": "2026-07-08T08:14:04.964894Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791518.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385548/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T08:14:04.883716Z", "last_modified_time": "2026-07-08T08:14:05.069454Z", "date_published": null, "start_time": "2026-12-07T16:00:00Z", "end_time": "2026-12-07T18: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": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantait", "sv": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantait", "en": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantaitj" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kuun ensimmäinen maanantai tanssitaan Malmitalolla!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa", "en": "http://www.malmitalo.fi/en/events/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa" }, "description": { "fi": "<p>Kuun ensimmäinen maanantai tanssitaan Malmitalolla!</p><p>Ilmaiset ja kaikille avoimet yhteisötanssit alkavat tanssiopetuksella, jonka jälkeen oppeja pääsee harjoittelemaan livebändin säestyksellä. Tanssittava tyyli vaihtuu joka kuukausi. Tervetuloa tanssimaan!<br> <br>Aikataulu:<br>18–19 Império do Papagaio: samba<br>19–20 Samba Online<br> <br>Império do Papagaion tunnilla pääset tutustumaan brasilialaiseen karnevaalisambaan.</p><p>Samba Online on brasilialainen yhtye, joka tuo lavalle Brasilian perinteiset ja energiset rytmit, kuten samban ja pagoden. Asuttuaan Suomessa useiden vuosien ajan ryhmä brasilialaisia muusikoita sai idean vahvistaa sambakulttuuria Suomessa ja koko Pohjoismaissa.</p><p>Yhtye on jakanut lavan tunnettujen samba-artistien kanssa, kuten Arlindinho Cruzin, joka on Arlindo Cruzin – yhden samban historian merkittävimmistä nimistä – poika sekä Juninho Thybau, joka on Zeca Pagodinhon sukulainen.</p><p>Samba Online on esiintynyt suurilla lavoilla, kuten Apollo Live Clubissa, Biblioteket Livessa, Brazilian Day Stockholmissa sekä Helsinki Samba Carnavalissa Senaatintorilla, sekä esiintymällä Viking Linen aluksilla. Yhtye on esiintynyt kansainvälisesti muun muassa Suomessa, Ruotsissa, Norjassa ja Virossa.</p><p>Kappaleet “Passada de Jogador” ja “Pause e Play” ovat saatavilla kaikilla digitaalisilla alustoilla, ja lisää julkaisuja on tulossa pian. Samba Onlinen suurin vahvuus on sen iloinen ja tarttuva energia sekä tanssittava rytmi, joka saa yleisön liikkumaan ja nauttimaan musiikista alusta loppuun.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68657/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69321", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706084/", "sv": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706084/", "en": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706084/" }, "description": null, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385547, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:04.494572Z", "last_modified_time": "2026-07-08T08:14:04.494590Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793864.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385547/?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-08T08:14:04.412527Z", "last_modified_time": "2026-07-08T08:14:04.610255Z", "date_published": null, "start_time": "2026-12-05T12:00:00Z", "end_time": "2026-12-05T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Mutaveijarit: Joulutouhotus -konsertti", "sv": "Mutaveijarit: Joulutouhotus -konsertti", "en": "Mutaveijarit: Joulutouhotus -konsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Joulua, joulua odotellaan, odotellessa touhutaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B9B7354C18834F13AD0B812E9F56C9BF/Mutaveijarit_Joulutouhotus_-konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B9B7354C18834F13AD0B812E9F56C9BF/Mutaveijarit_Joulutouhotus_-konsertti", "en": "http://www.malmitalo.fi/en/events/event/B9B7354C18834F13AD0B812E9F56C9BF/Mutaveijarit_Joulutouhotus_-konsertti" }, "description": { "fi": "<p>Joulua, joulua odotellaan, odotellessa touhutaan!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis!</p><p>Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule mukaan talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet Mutaveijareiden omia jouluisia sekä talveen sopivia lauluja, sekä tapaat tuttuja hahmoja Mutaveijarilasta ja ehkäpä jostain pohjoisempaakin!</p><p>Mutaveijarit on riemukas lastenmusiikkiyhtye, joka on tunnettu valloittavasta lavaesiintymisestä ja mukaansatempaavista lauluista. Yhtye yhdistelee kappaleissaan rohkeasti ja monipuolisesti eri musiikkityylejä aina kansanmusiikista skahan ja popista tuutulauluun. Yhtyeen jäsenet ovat musiikin ja musiikkikasvatuksen ammattilaisia ja työskentelevät yhtyeen lisäksi monipuolisesti erilaisissa musiikkipedagogisissa tehtävissä.</p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p><p>Kesto: n. 45 min<br>Ikäsuositus: 0–10 v.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69321/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69320", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706083/", "sv": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706083/", "en": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706083/" }, "description": null, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385546, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:04.098934Z", "last_modified_time": "2026-07-08T08:14:04.098951Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793863.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385546/?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-08T08:14:03.998973Z", "last_modified_time": "2026-07-08T08:14:04.279270Z", "date_published": null, "start_time": "2026-12-05T08:30:00Z", "end_time": "2026-12-05T09:15: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": "Mutaveijarit: Joulutouhotus -konsertti", "sv": "Mutaveijarit: Joulutouhotus -konsertti", "en": "Mutaveijarit: Joulutouhotus -konsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Joulua, joulua odotellaan, odotellessa touhutaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/546FEC61D6FF1D67223BFD5C4C903793/Mutaveijarit_Joulutouhotus_-konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/546FEC61D6FF1D67223BFD5C4C903793/Mutaveijarit_Joulutouhotus_-konsertti", "en": "http://www.malmitalo.fi/en/events/event/546FEC61D6FF1D67223BFD5C4C903793/Mutaveijarit_Joulutouhotus_-konsertti" }, "description": { "fi": "<p>Joulua, joulua odotellaan, odotellessa touhutaan!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis!</p><p>Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule mukaan talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet Mutaveijareiden omia jouluisia sekä talveen sopivia lauluja, sekä tapaat tuttuja hahmoja Mutaveijarilasta ja ehkäpä jostain pohjoisempaakin!</p><p>Mutaveijarit on riemukas lastenmusiikkiyhtye, joka on tunnettu valloittavasta lavaesiintymisestä ja mukaansatempaavista lauluista. Yhtye yhdistelee kappaleissaan rohkeasti ja monipuolisesti eri musiikkityylejä aina kansanmusiikista skahan ja popista tuutulauluun. Yhtyeen jäsenet ovat musiikin ja musiikkikasvatuksen ammattilaisia ja työskentelevät yhtyeen lisäksi monipuolisesti erilaisissa musiikkipedagogisissa tehtävissä.</p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p><p>Kesto: n. 45 min<br>Ikäsuositus: 0–10 v.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69320/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68962", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-797/?format=api" }, "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": 2201268, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T06:14:28.340574Z", "last_modified_time": "2026-05-13T06:14:28.340588Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735440.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201268/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-13T06:14:28.121486Z", "last_modified_time": "2026-07-08T08:13:42.170316Z", "date_published": null, "start_time": "2026-07-27T13:00:00Z", "end_time": "2026-07-27T15: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": "Jazz Suomi 100 -keskustelu: Jazz ja rauha | Lauri Kallion yhtye – Jazz-Espa", "sv": "Jazz i Finland 100 -diskussion: “Jazz och fred” | Lauri Kallion yhtye – Jazz-Espa", "en": "Jazz in Finland 100 discussion: “Jazz and peace” | Lauri Kallion yhtye – Jazz-Espa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Jazz-Espan avaa paneelikeskustelu jazzin roolista rauhan rakentajana sekä eri musiikkigenrejä yhteen sulauttava Lauri Kallion yhtye.", "sv": "Jazz-Espa öppnas av en paneldiskussion om jazzens roll som fredsskapare samt av Lauri Kallios band, som förenar olika musikgenrer.", "en": "Jazz-Espa will be opened by a panel discussion on the role of jazz as a peacebuilder and by Lauri Kallio’s ensemble, which blends various musical genres." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1A0E0C19E91449A26E5A452F64F59DA9/Jazz_Suomi_100_-keskustelu_Jazz_ja_rauha_Lauri_Kallion_yhtye_", "sv": "http://www.espanlava.fi/sv/evenemang/event/1A0E0C19E91449A26E5A452F64F59DA9/Jazz_i_Finland_100_-diskussion_Jazz_och_fred_Lauri_Kallion_yhtye", "en": "http://www.espanlava.fi/en/events/event/1A0E0C19E91449A26E5A452F64F59DA9/Jazz_in_Finland_100_discussion_Jazz_and_peace_Lauri_Kallion_yhtye" }, "description": { "fi": "<p>Jazz-Espan avaa paneelikeskustelu jazzin roolista rauhan rakentajana sekä eri musiikkigenrejä yhteen sulauttava Lauri Kallion yhtye.</p><p>Klo 16.00 Jazz Suomi 100 -keskustelu: Jazz ja rauha<br>Klo 17.15 Lauri Kallion yhtye</p><p>**</p><p><b>Jazz Suomi 100 -keskustelu: Jazz ja rauha</b></p><p>Elämme aikaa, jota varjostavat sodat ja epävarmuuden kasvaminen. Taiteella ja kulttuurilla on tärkeä rooli demokratian vahvistamisessa sekä kulttuurien välisen vuoropuhelun ja resilienssin rakentamisessa. Jazz on taidemuotona tunnustettu rauhan, monimuotoisuuden sekä ihmisoikeuksien ja ihmisarvon edistäjänä.</p><p>Paneelissa tarkastellaan, miten aktivismi ja rauhan teemat näkyvät tämän päivän jazzmuusikoiden taiteessa ja tavassa hahmottaa omaa artistiuttaan.</p><p><b>Keskustelijat:</b><br>Linda Fredriksson, muusikko, säveltäjä<br>Joakim Berghäll, muusikko, säveltäjä<br>Heli Reimann, jazzin tutkija</p><p>Moderaattori:<br>Kim Emil Ramstedt, tutkija, Helsingin yliopisto</p><p>Paneelissa puhutaan englantia.</p><p>Vuonna 2026 tulee kuluneeksi 100 vuotta siitä, kun jazz symbolisesti rantautui Andania-laivan mukana Suomeen. Vuosi on siten historiallinen kotimaisen jazzin juhlavuosi: Jazz Suomi 100 -juhlavuosi. Juhlavuosi nostaa esiin kotimaista jazzia ja sen tekijöitä niin Suomessa kuin ulkomailla, ja juhlii jazzia osana suomalaista kulttuuriperintöä. Jazz Suomi 100 -kampanjaa koordinoi Suomen Jazzliitto.</p><p>**</p><p><b>Lauri Kallio</b> on moneen venyvä musiikin ammattilainen, jonka työn jälkiä voi löytää noin neljältäkymmeneltä julkaisulta: äänittäjänä, miksaajana ja tuottajana, säveltäjänä, sovittajana sekä luonnollisesti myös soittajana, ennen kaikkea kitaristina. Kallio on viime vuosina tullut tutuksi mm. yhtyeistä <b>Pambikallio </b>ja <b>Jimi Tenor Band</b>. Kallion toinen levy <i>Turtles, Cats and Other Creatures</i> julkaistiin 2025.</p><p><b>Lauri Kallion yhtye</b> soittaa musiikkia, jonka “tulkinnoille avoin maisema jättää kuulijalle vastuuta ja vapautta etsiä tarinat sekä niille merkitykset. Sitäkään ei tosin tarvitse tehdä, voi vain olla ja nauttia.” (Pekka Laine)</p><p><b>Lauri Kallio</b> – kitara<br><b>Adele Sauros </b>– saksofonit & poikkihuilu<br><b>Natalia Castrillón</b> – harppu<br><b>Ville Rauhala</b> – basso<br><b>Joonas Leppänen</b> – rummut</p><p><i>Suomen Jazzliiton järjestämä Jazz-Espa esittelee kotimaan ajankohtaisimpia jazzyhtyeitä 27.7.–1.8.2026 Espan lavalla. Konsertit ovat ilmaisia, esteettömiä ja koko perheelle sopivia. Tapahtumilla on säävaraus. Seuraa tiedotusta osoitteessa jazzespa.fi sekä somessa @suomenjazzliitto.</i></p><p>Kuva:<br>Vasemmalla – Linda Fredriksson (c) Iiris Heikka / Joakim Berghäll (c) Dorit Salutskij / Kim Ramstedt (c) Emmi Suominen / Heli Reimann (c) ei tiedossa<br>Oikealla – Lauri Kallio (c) Jimi Tenor<br>Graafiset elementit: Suomen Jazzliitto</p>", "sv": "<p>Jazz-Espa öppnas av en paneldiskussion om jazzens roll som fredsskapare samt av Lauri Kallios band, som förenar olika musikgenrer.</p><p>Kl. 16.00 Jazz i Finland 100 -diskussion: Jazz och fred<br>Kl. 17.15 Lauri Kallion yhtye</p><p>**</p><p><b>Jazz i Finland 100 -diskussion: Jazz och fred</b></p><p>Vi lever i en tid som överskuggas av krig och växande osäkerhet. Konst och kultur har en viktig roll i att stärka demokratin samt i att bygga upp dialog mellan kulturer och resiliens. Jazzen är erkänd som en konstform som främjar fred, mångfald samt mänskliga rättigheter och människovärde.</p><p>Panelen undersöker hur aktivism och fredsteman syns i dagens jazzmusikers konst och i sättet de uppfattar sitt eget konstnärskap.</p><p><b>Deltagare:</b><br>Linda Fredriksson, musiker, kompositör<br>Joakim Berghäll, musiker, kompositör<br>Heli Reimann, jazz forskare</p><p>Moderator:<br>Kim Emil Ramstedt, forskare, Helsingfors universitetet</p><p>Panelen hållas på engelska.</p><p>År 2026 har det gått 100 år sedan jazzen symboliskt anlände till Finland med fartyget Andania. Året är därför ett historiskt jubileumsår för den finländska jazzen: jubileumsåret Jazz i Finland 100. Jubileumsåret lyfter fram finländsk jazz och dess utövare både i Finland och utomlands, och firar jazzen som en del av det finländska kulturarvet. Kampanjen Jazz i Finland 100 koordineras av Finlands Jazzförbund.</p><p>**</p><p><b>Lauri Kallio</b> är ett mångsidigt musikproffs vars arbete återfinns på ett fyrtiotal utgåvor. Han har verkat som inspelningstekniker, mixare, producent, kompositör och arrangör – samt naturligtvis som musiker, främst gitarrist. Under de senaste åren har Kallio blivit känd genom bland annat banden <b>Pambikallio</b> och <b>Jimi Tenor Band</b>. Kallios andra album, <i>Turtles, Cats and Other Creatures</i>, gavs ut 2025.</p><p><b>Lauri Kallion yhtye</b> spelar musik vars \"landskap, öppet för tolkningar, ger lyssnaren ansvar och frihet att söka efter berättelserna och deras betydelser. Det behöver man dock inte heller göra, man kan bara vara och njuta.\" (Pekka Laine)</p><p><b>Lauri Kallio</b> – gitarr<br><b>Adele Sauros</b> – saxofoner & tvärflöjt<br><b>Natalia Castrillón</b> – harpa<br><b>Ville Rauhala</b> – bas<br><b>Joonas Leppänen</b> – trummor</p><p><i>Jazz-Espa, som arrangeras av Finlands Jazzförbund, presenterar landets mest aktuella jazzgrupper den 27.7–1.8.2026 på Esplanadestraden. Konserterna är gratis, tillgängliga och passar för hela familjen. Evenemangen har väderreservation. Följ informationen på jazzespa.fi och i sociala medier @suomenjazzliitto.</i></p><p>Foto:<br>Till vänster – Linda Fredriksson (c) Iiris Heikka / Joakim Berghäll (c) Dorit Salutskij / Kim Ramstedt (c) Emmi Suominen / Heli Reimann (c) okänd<br>Till höger – Lauri Kallio (c) Jimi Tenor<br>Grafiska element: Suomen Jazzliitto</p>", "en": "<p>Jazz-Espa will be opened by a panel discussion on the role of jazz as a peacebuilder and by Lauri Kallio’s ensemble, which blends various musical genres.</p><p>16:00 Jazz in Finland 100 discussion: Jazz and peace<br>17:15 Lauri Kallion yhtye</p><p>**</p><p><b>Jazz in Finland 100 discussion: Jazz and peace</b></p><p>We live in a time overshadowed by war and growing uncertainty. Art and culture play a vital role in strengthening democracy, as well as in building intercultural dialogue and resilience. As an art form, jazz is recognized for promoting peace, diversity, human rights, and human dignity.</p><p>The panel examines how activism and themes of peace are reflected in the work of today's jazz musicians and in the way they perceive their own artistry.</p><p><b>Panelists:</b><br>Linda Fredriksson, musician, composer<br>Joakim Berghäll, musician, composer<br>Heli Reimann, jazz researcher</p><p>Moderator:<br>Kim Emil Ramstedt, researcher, University of Helsinki</p><p>The panel will be held in English.</p><p>The year 2026 marks 100 years since jazz symbolically arrived in Finland aboard the Andania ship. The centenary celebration, Jazz in Finland 100, will highlight Finnish jazz and its artists at home and abroad, recognising jazz as an integral part of Finland's cultural heritage. The Jazz in Finland 100 campaign is coordinated by the Finnish Jazz Federation.</p><p>**</p><p><b>Lauri Kallio</b> is a versatile music professional whose work can be found on approximately forty releases. He has contributed as a recording engineer, mixer, producer, composer, and arranger—and naturally as a performer, primarily a guitarist. In recent years, Kallio has become well-known for his work with bands such as <b>Pambikallio</b> and the <b>Jimi Tenor Band</b>. His second album, <i>Turtles, Cats and Other Creatures</i>, was released in 2025.</p><p>Lauri Kallio’s ensemble plays music where the \"landscape, open to interpretation, leaves the listener with the responsibility and freedom to seek out stories and their meanings. Then again, you don’t have to do that either; you can just be and enjoy.\" (Pekka Laine)</p><p><b>Lauri Kallio</b> – guitar<br><b>Adele Sauros</b> – saxophones & flute<br><b>Natalia Castrillón</b> – harp<br><b>Ville Rauhala</b> – bass<br><b>Joonas Leppänen</b> – drums</p><p><i>Jazz-Espa, organized by the Finnish Jazz Federation, presents the most current domestic jazz ensembles from July 27 to August 1, 2026, at the Espa Stage. The concerts are free of charge, accessible, and suitable for the whole family. Events are subject to weather conditions. Follow our updates at jazzespa.fi and on social media @suomenjazzliitto.</i></p><p>Photo credits:<br>On the left – Linda Fredriksson (c) Iiris Heikka / Joakim Berghäll (c) Dorit Salutskij / Kim Ramstedt (c) Emmi Suominen / Heli Reimann (c) unknown<br>On the right – Lauri Kallio (c) Jimi Tenor<br>Graphic elements: Suomen Jazzliitto</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68962/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69082", "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": 2385545, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T07:13:56.065016Z", "last_modified_time": "2026-07-08T07:13:56.065032Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792688.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T07:13:55.937821Z", "last_modified_time": "2026-07-08T07:13:56.211535Z", "date_published": null, "start_time": "2026-12-03T16:00:00Z", "end_time": "2026-12-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": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti", "sv": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti", "en": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti", "en": "http://www.malmitalo.fi/en/events/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti" }, "description": { "fi": "<p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69082/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69225", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385544, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T06:14:36.968686Z", "last_modified_time": "2026-07-08T06:14:36.968704Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793532.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385544/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T06:14:36.899826Z", "last_modified_time": "2026-07-08T06:14:37.057051Z", "date_published": null, "start_time": "2026-12-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kauneimmat joululaulut", "sv": "Kauneimmat joululaulut", "en": "Kauneimmat joululaulut" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Laula yhdessä ja tee hyvää!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_", "en": "http://www.kanneltalo.fi/en/events/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_" }, "description": { "fi": "<p>Laula yhdessä ja tee hyvää!</p><p>Suomen Lähetysseuran Kauneimmat Joululaulut kaikuvat jälleen maailman lasten puolesta. Tule laulamaan yhdessä – yksin, kaksin tai isommallakin porukalla!</p><p>Kannelmäen seurakunnan järjestämässä tilaisuudessa joulun tunnelmaan vievät sekä perinteiset tutut joululaulut että viime vuosina suosioon nousseet kappaleet. Samalla kun laulat itsellesi joulutunnelmaa, voit lahjoittaa maailman lasten hyväksi Suomen Lähetysseuran kautta.</p><p><u><a href=\"https://kauneimmatjoululaulut.fi/\">Lue lisää Kauneimmista Joululauluista</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69225/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69224", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@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": 2385543, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T06:14:36.592609Z", "last_modified_time": "2026-07-08T06:14:36.592626Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793531.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385543/?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-08T06:14:36.458970Z", "last_modified_time": "2026-07-08T06:14:36.781023Z", "date_published": null, "start_time": "2026-12-13T13: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": "Lasten kauneimmat joululaulut", "sv": "Lasten kauneimmat joululaulut", "en": "Lasten kauneimmat joululaulut" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa laulamaan yhdessä kaikenikäisille pienille ja isoille sopivia joululauluja!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut", "en": "http://www.kanneltalo.fi/en/events/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut" }, "description": { "fi": "<p>Tervetuloa laulamaan yhdessä kaikenikäisille pienille ja isoille sopivia joululauluja!</p><p>Kanssasi laulamassa ja joulun tunnelmaa tuomassa on muun muassa lapsikuoro Kannelkellot johtajanaan kanttori Sirkku Rintamäki.</p><p>Kannelmäen seurakunnan järjestämässä yhteislaulutilaisuudessa otetaan huomioon erityisesti perheen pienimmät. Samalla kun laulat itsellesi joulutunnelmaa, voit lahjoittaa maailman lasten hyväksi Suomen Lähetysseuran kautta.</p><p><u><a href=\"https://kauneimmatjoululaulut.fi/\">Lue lisää Kauneimmista Joululauluista</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69224/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68961", "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": 2385542, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T05:13:57.696930Z", "last_modified_time": "2026-07-08T05:13:57.696946Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792384.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385542/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T05:13:57.546065Z", "last_modified_time": "2026-07-08T05:13:57.956462Z", "date_published": null, "start_time": "2026-12-07T15:00:00Z", "end_time": "2026-12-07T17:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait", "sv": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait", "en": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa", "en": "http://www.kanneltalo.fi/en/events/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa" }, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p><b>Elokuvaluento klo 17–17.45<br>Elokuva klo 18–19.50</b></p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.<br> <br>Ikäraja: 7<br>Pituus: 108 min<br>Ohjaus: Pamela Tola<br>Käsikirjoitus: Pamela Tola, Karoliina Lindgren ja Aleksi Bardy<br>Näyttelijät: Muun muassa Leena Uotila, Seela Sella, Sanna-Kaisa Palo, Eero Saarinen, Pirjo Lonka, Jani Volanen, Linnea Skog, Noa Tola ja Heikki Nousiainen<br>Genre: Komedia<br>Ensi-ilta: 25.12.2025</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><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:68961/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69226", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/hos-big-band-swingin-christmas-with-hos-big-band-kanneltalo-21755508/", "sv": "https://www.lippu.fi/event/hos-big-band-swingin-christmas-with-hos-big-band-kanneltalo-21755508/", "en": "https://www.lippu.fi/event/hos-big-band-swingin-christmas-with-hos-big-band-kanneltalo-21755508/" }, "description": null, "price": { "fi": "20€ 15€ 10€", "sv": "20€ 15€ 10€", "en": "20€ 15€ 10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385541, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:43.915743Z", "last_modified_time": "2026-07-07T13:14:43.915759Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793534.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385541/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:43.807846Z", "last_modified_time": "2026-07-07T13:14:44.051818Z", "date_published": null, "start_time": "2026-12-10T17: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": "HOS Big Band: Swingin’ Christmas with HOS Big Band", "sv": "HOS Big Band: Swingin’ Christmas with HOS Big Band", "en": "HOS Big Band: Swingin’ Christmas with HOS Big Band" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Perinteikkäästä otteestaan tunnettu HOS Big Band laulusolisteineen esittää joulumusiikkia laajoina big band sovituksina." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9F4097E9D3B3CFFA887B15A59AEA6B2E/HOS_Big_Band_Swingin_Christmas_with_HOS_Big_Band", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9F4097E9D3B3CFFA887B15A59AEA6B2E/HOS_Big_Band_Swingin_Christmas_with_HOS_Big_Band", "en": "http://www.kanneltalo.fi/en/events/event/9F4097E9D3B3CFFA887B15A59AEA6B2E/HOS_Big_Band_Swingin_Christmas_with_HOS_Big_Band" }, "description": { "fi": "<p>Perinteikkäästä otteestaan tunnettu HOS Big Band laulusolisteineen esittää joulumusiikkia laajoina big band sovituksina.</p><p>Illan mittaan kuullaan tuttuja jouluisia klassikoita ja harvinaisempia swing-helmiä. Virittäydy joulun tunnelmaan HOSsin seurassa!</p><p><b>HOS Big Band</b> (Hämäläis-Osakunnan Soittajat) on 20-henkinen yhtye, jonka riveissä soittaa ja laulaa joukko lahjakkaita musiikin aktiiviharrastajia ja opiskelijoita Helsingistä. Kapellimestarinamme toimii <b>Viljami Heikkinen</b>.</p><p>Ohjelmistomme perustan luovat swing-klassikot, joiden rinnalle on tuotu modernimpia lattari- ja funk-rytmejä. Näiden lisäksi taidamme myös perinteisen tanssimusiikin, kuten valssit, tangot ja humpat. HOSsin historia ulottuu aina perustamisvuoteen 1932, mutta nykyiseen big band -muotoonsa bändi on muovautunut 1980-luvulla.</p><p>Kesto noin 90 min, ei väliaikaa<br>Kieli suomi ja englanti</p><p>Nettisivu: https://hamalais-osakunta.fi/toiminta/valiokunnat-ja-kerhot/kerhot/hamalais-osakunnan-soittajat-hos-big-band</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68611", "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: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: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: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": 2385540, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:43.026928Z", "last_modified_time": "2026-07-07T13:14:43.026943Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791185.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:42.922435Z", "last_modified_time": "2026-07-07T13:14:43.154592Z", "date_published": null, "start_time": "2026-12-06T13:00:00Z", "end_time": "2026-12-06T15: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": "Kannelmäen Itsenäisyyspäiväjuhla", "sv": "Kannelmäen Itsenäisyyspäiväjuhla", "en": "Kannelmäen Itsenäisyyspäiväjuhla" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa juhlistamaan itsenäisyyspäivää Sitratorille!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla", "en": "http://www.kanneltalo.fi/en/events/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla" }, "description": { "fi": "<p>Tervetuloa juhlistamaan itsenäisyyspäivää Sitratorille!</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68611/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "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:69081", "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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/tixiband-hannu-lehtonen-puhallinmusiikin-joulumanteli-malmitalo-21630371/", "sv": "https://www.lippu.fi/event/tixiband-hannu-lehtonen-puhallinmusiikin-joulumanteli-malmitalo-21630371/", "en": "https://www.lippu.fi/event/tixiband-hannu-lehtonen-puhallinmusiikin-joulumanteli-malmitalo-21630371/" }, "description": null, "price": { "fi": "22,80€ / 13,80€", "sv": "22,80€ / 13,80€", "en": "22,80€ / 13,80€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385537, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:40.848970Z", "last_modified_time": "2026-07-07T13:14:40.848985Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792686.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385537/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:40.759193Z", "last_modified_time": "2026-07-07T13:14:40.961833Z", "date_published": null, "start_time": "2026-11-28T16:00:00Z", "end_time": "2026-11-28T17:15: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": "Puhallinmusiikin Joulumanteli", "sv": "Puhallinmusiikin Joulumanteli", "en": "Puhallinmusiikin Joulumanteli" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Joulun musiikillista taikapölyä puhaltaa TIXIBAND sekä laulusolisti Hannu Lehtonen kapellimestari Markku Renkon tahdittamana." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A8DF8C43AFD431DB4DB066E8E5DAFE29/Puhallinmusiikin_Joulumanteli", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A8DF8C43AFD431DB4DB066E8E5DAFE29/Puhallinmusiikin_Joulumanteli", "en": "http://www.malmitalo.fi/en/events/event/A8DF8C43AFD431DB4DB066E8E5DAFE29/Puhallinmusiikin_Joulumanteli" }, "description": { "fi": "<p>Joulun musiikillista taikapölyä puhaltaa TIXIBAND sekä laulusolisti Hannu Lehtonen kapellimestari Markku Renkon tahdittamana.</p><p>Tervetuloa nauttimaan joulun makeimmat sävelmät Joulumanteli-konserttiin!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69080", "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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/a-la-malmi-mikko-joensuu-malmitalo-21628522/", "sv": "https://www.lippu.fi/event/a-la-malmi-mikko-joensuu-malmitalo-21628522/", "en": "https://www.lippu.fi/event/a-la-malmi-mikko-joensuu-malmitalo-21628522/" }, "description": null, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385536, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:40.304621Z", "last_modified_time": "2026-07-07T13:14:40.304636Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792684.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385536/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:40.178628Z", "last_modified_time": "2026-07-07T13:14:40.462740Z", "date_published": null, "start_time": "2026-11-27T17:00:00Z", "end_time": "2026-11-27T18:15: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": "Mikko Joensuu – A la Malmi", "sv": "Mikko Joensuu – A la Malmi", "en": "Mikko Joensuu – A la Malmi" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Mikko Joensuu on hehkutettu laulaja-lauluntekijä, jonka tuorein albumi Long Ark ilmestyi seitsemän vuoden tauon jälkeen tammikuussa 2024." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D832318ECCE6E960A684DD9206427A3D/Mikko_Joensuu", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D832318ECCE6E960A684DD9206427A3D/Mikko_Joensuu", "en": "http://www.malmitalo.fi/en/events/event/D832318ECCE6E960A684DD9206427A3D/Mikko_Joensuu" }, "description": { "fi": "<p>Mikko Joensuu on hehkutettu laulaja-lauluntekijä, jonka tuorein albumi Long Ark ilmestyi seitsemän vuoden tauon jälkeen tammikuussa 2024.</p><p>Kymmenen kappaletta sisältävä 82-minuuttinen albumi sisältää jousisoittimilla ja puhaltimilla orkestroitua kamarifolkia. Pianolla ja kitaralla itseään säestävä Joensuu on mieltynyt eeppiseen ilmaisuun, ja albumi onkin kerännyt ylistystä ulkomaita myöden. Albumin julkaisukonsertti Helsingin Musiikkitalolla oli loppuunmyyty.</p><p><i>“Long Ark -teema tarkoittaa minulle kahta asiaa; ihmisen tietoisuuden isoa kaarta tai venettä, jossa jokainen ihminen voi pienen hetken olla tietoisena olentona ja käydä läpi yhteyttä ja merkitystä ja omaa olemassaoloansa.”</i><br>Mikko Joensuu<br>Mikko Joensuun 2015–2017 vuosina ilmestynyt albumitrilogia <i>Amen</i> oli ainutlaatuinen kokonaistaideteos, joka poiki tekijälleen mm. Teosto-palkinnon. Artisti tunnetaan myös Joensuu 1685 -yhtyeen laulajana.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69080/?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" } ] }