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&hide_recurring_children=true&page=16
{ "meta": { "count": 23126, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=17", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=15" }, "data": [ { "id": "kulke:69591", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": 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, "location_extra_info": null, "name": { "fi": "Malmitalon teehuone – Malmitalon yhteisömaanantait", "sv": "Malmitalon teehuone – Malmitalon yhteisömaanantait", "en": "Malmitalon teehuone – Malmitalon yhteisömaanantait" }, "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>" }, "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" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella." }, "@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": [], "price": null, "info_url": null, "description": 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, "location_extra_info": null, "name": { "fi": "Kirjailijavieraana Emmi Itäranta – Maksuttomat maanantait", "sv": "Kirjailijavieraana Emmi Itäranta – Maksuttomat maanantait", "en": "Kirjailijavieraana Emmi Itäranta – Maksuttomat maanantait" }, "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>" }, "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" }, "provider": null, "provider_contact_info": 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.\"" }, "@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": [], "price": { "fi": "22,80€ / 13,80€", "sv": "22,80€ / 13,80€", "en": "22,80€ / 13,80€" }, "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 } ], "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, "location_extra_info": null, "name": { "fi": "Puhallinmusiikin Joulumanteli", "sv": "Puhallinmusiikin Joulumanteli", "en": "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>" }, "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" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Joulun musiikillista taikapölyä puhaltaa TIXIBAND sekä laulusolisti Hannu Lehtonen kapellimestari Markku Renkon tahdittamana." }, "@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": [], "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" }, "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 } ], "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, "location_extra_info": null, "name": { "fi": "Mikko Joensuu – A la Malmi", "sv": "Mikko Joensuu – A la Malmi", "en": "Mikko Joensuu – A la Malmi" }, "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>" }, "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" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Mikko Joensuu on hehkutettu laulaja-lauluntekijä, jonka tuorein albumi Long Ark ilmestyi seitsemän vuoden tauon jälkeen tammikuussa 2024." }, "@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": [], "price": null, "info_url": null, "description": 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, "location_extra_info": null, "name": { "fi": "Kantele- ja äänimaljarentoutus", "sv": "Kantele- ja äänimaljarentoutus", "en": "Kantele- ja äänimaljarentoutus" }, "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>" }, "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" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Rentoutushetkessä hellitään mieltä ja kehoa kanteleen ja äänimaljojen rauhoittavan lumoavien sointien tunnelmissa." }, "@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": [], "price": null, "info_url": null, "description": 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, "location_extra_info": null, "name": { "fi": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "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>" }, "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_" }, "provider": null, "provider_contact_info": 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." }, "@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": [], "price": null, "info_url": null, "description": 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, "location_extra_info": null, "name": { "fi": "Yleisön suosikit: Sydäntalvi", "sv": "Yleisön suosikit: Sydäntalvi", "en": "Yleisön suosikit: Sydäntalvi" }, "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>" }, "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" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69504/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69078", "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": [], "price": { "fi": "22€ / 11,10€", "sv": "22€ / 11,10€", "en": "22€ / 11,10€" }, "info_url": { "fi": "https://www.lippu.fi/event/light-in-babylon-istanbul-malmitalo-21650497/", "sv": "https://www.lippu.fi/event/light-in-babylon-istanbul-malmitalo-21650497/", "en": "https://www.lippu.fi/event/light-in-babylon-istanbul-malmitalo-21650497/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385534, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:38.705547Z", "last_modified_time": "2026-07-07T13:14:38.705562Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792680.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385534/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:38.595222Z", "last_modified_time": "2026-07-07T13:14:38.842353Z", "date_published": null, "start_time": "2026-11-25T17:00:00Z", "end_time": "2026-11-25T19: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, "location_extra_info": null, "name": { "fi": "Light in Babylon (Istanbul)", "sv": "Light in Babylon (Istanbul)", "en": "Light in Babylon (Istanbul)" }, "description": { "fi": "<p>Kansainvälisesti arvostettu ja rakastettu Light in Babylon palaa konsertoimaan Suomeen, nyt täydellä kokoonpanolla viisihenkisenä!</p><p>Bändi hurmasi suomalaiset viime vuonna loppuunmyydyssä Vuotalon konsertissa ja valloittavalla esiintymisellään Kaustinen Folk Music Festivaalin kahdella päälavalla.</p><p>Istanbulin monikulttuurisesta maaperästä yli 15 vuotta sitten syntynyt bändi tunnetaan leiskuvan energisistä live-esiintymisistään ja laulaja <b>Michal Elia Kamalin</b> syvältä kumpuavasta sielukkaasta äänestä. Yhdistämällä perinteisen santurin maagista sointia ja välimerellis-itämaisia äänimaisemia, yhtye luo musiikkia, joka ylittää rajoja ja kulttuureita. Heidän musiikkinsa liikkuu saumattomasti heidän omien alkuperäisten sävellysten ja perinteisten heprealaisten laulujen modernien tulkintojen välillä.</p><p>Light in Babylonin taustalla on syvä rakkaus yhdistää ihmisiä kaikista kulttuuritaustoista musiikin kautta. He näkevät itsensä maailmankansalaisina, joilla on globaali identiteetti ja jotka asettavat ihmisyyden uskonnon ja kansallisuuden edelle. He puolustavat naisten voimaannuttamista ja edistävät sukupuolten välistä kunnioitusta ja rehellisyyttä. Laulaja Michal haaveilee jonain päivänä esiintyvänsä vanhempiensa kotimaassa Iranissa, jossa naisten on tällä hetkellä kiellettyä laulaa julkisesti.</p><p>Neljän julkaistun albumin ja yli 35 miljoonan YouTube-katselukerran myötä yhtye on rakentanut nopeasti kasvavan maailmanlaajuisen fanikunnan. Heidän lumoava Istanbulin-soundinsa tarjoaa harvinaisen tilaisuuden kokea live-esitys, joka tuntuu samanaikaisesti henkilökohtaisen koskettavalta ja syvästi universaalilta.</p><p>www.lightinbabylon.com</p><p>Morenica:<br>https://youtu.be/DyMpqFT0vU8?si=RRLoQ_mmvoSuCjaw</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/924B7B12F1538AD806DD4A2381286A92/Light_in_Babylon_Istanbul_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/924B7B12F1538AD806DD4A2381286A92/Light_in_Babylon_Istanbul_", "en": "http://www.malmitalo.fi/en/events/event/924B7B12F1538AD806DD4A2381286A92/Light_in_Babylon_Istanbul_" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Kansainvälisesti arvostettu ja rakastettu Light in Babylon palaa konsertoimaan Suomeen, nyt täydellä kokoonpanolla viisihenkisenä!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69078/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69074", "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": [], "price": { "fi": "33,90€ / 28,90€", "sv": "33,90€ / 28,90€", "en": "33,90€ / 28,90€" }, "info_url": { "fi": "https://www.lippu.fi/event/nothing-for-money-plays-dire-straits-malmitalo-21636463/", "sv": "https://www.lippu.fi/event/nothing-for-money-plays-dire-straits-malmitalo-21636463/", "en": "https://www.lippu.fi/event/nothing-for-money-plays-dire-straits-malmitalo-21636463/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385533, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:37.843651Z", "last_modified_time": "2026-07-07T13:14:37.843668Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792674.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385533/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:37.709060Z", "last_modified_time": "2026-07-07T13:14:38.002360Z", "date_published": null, "start_time": "2026-11-21T17:00:00Z", "end_time": "2026-11-21T19: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, "location_extra_info": null, "name": { "fi": "Nothing for Money plays Dire Straits and Mark Knopfler – Nothing Is What It Is -kiertue 2026", "sv": "Nothing for Money plays Dire Straits and Mark Knopfler – Nothing Is What It Is -kiertue 2026", "en": "Nothing for Money plays Dire Straits and Mark Knopfler – Nothing Is What It Is -kiertue 2026" }, "description": { "fi": "<p>Nothing for Money on taitava suomalainen yhtye, joka esittää Dire Straits -yhtyeen musiikkia</p><p>Jo muutaman vuoden ajan orkesteri on esiintynyt tyytyväisille yleisöille eri puolilla Suomea. Vuoden 2026 Nothing Is What It Is -kiertue tuo jälleen kuultavaksi monipuolisesti Dire Straits -sävelmiä. Lisäksi yhtye esittää myös Mark Knopflerin soolouran kappaleita osoittaen näin arvostusta Knopflerille monipuolisena lauluntekijänä.</p><p><i>\"Huikea, hyvin soitettu ja laulettu. Tätä lähemmäs ei pääse kuin aikakoneella.\"</p><p>\"Tunnelma oli alkuperäistä kunnioittava, hyvä ja samalla uusia näkökulmia tuova.\"</p><p>\"Ihan järisyttävän hieno ilta. Klassikkokappaleita huikean taitavasti esitettyinä.\"</p><p>\"Tätä voi varauksetta suositella kaikille Dire Straitsin musan ystäville.</p><p>”Korkealla ammattitaidolla ja lämmöllä esitettyä musiikkia.\"</i></p><p><b>Juha Ahvenainen</b> – koskettimet<br><b>Mikko Huotari</b> – basso<br><b>Susan Jaser</b> – laulu, perkussiot<br><b>Ville \"Lefty\" Leppänen</b> – pedal steel, kielisoittimet<br><b>Joonas Metsäniemi</b> – kitara<br><b>Jukka Metsäniemi</b> – laulu, kitara<br><b>Tuomas Sipponen</b> – saksofoni, huilu<br><b>Nicke von Weissenberg</b> – rummut</p><p><b>Dire Straits ja Mark Knopfler</b></p><p>Dire Straits perustettiin Lontoossa 1970-luvun lopulla. Se kasvoi nopeasti pubeista stadioneille yhdeksi 80-luvun suurimmista yhtyeistä. Dire Straitsilla oli oma tunnistettava soundinsa, eikä vähiten keulakuvansa Mark Knopflerin ansiosta. Yhtye lopetti 1990-luvun alussa, mutta Knopfler tekee yhä hienoa musiikkia.</p><p>Kesto: 2 t 30 min, sis. 20 minuutin väliajan</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1AAF350461D23CF0B221FCFCAB20C74E/Nothing_for_Money_plays_Dire_Straits_and_Mark_Knopfler", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1AAF350461D23CF0B221FCFCAB20C74E/Nothing_for_Money_plays_Dire_Straits_and_Mark_Knopfler", "en": "http://www.malmitalo.fi/en/events/event/1AAF350461D23CF0B221FCFCAB20C74E/Nothing_for_Money_plays_Dire_Straits_and_Mark_Knopfler" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Nothing for Money on taitava suomalainen yhtye, joka esittää Dire Straits -yhtyeen musiikkia" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69074/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69073", "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": [], "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" }, "info_url": { "fi": "https://www.lippu.fi/event/a-la-malmi-joku-iiris-malmitalo-21628558/", "sv": "https://www.lippu.fi/event/a-la-malmi-joku-iiris-malmitalo-21628558/", "en": "https://www.lippu.fi/event/a-la-malmi-joku-iiris-malmitalo-21628558/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385532, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:37.105632Z", "last_modified_time": "2026-07-07T13:14:37.105648Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792672.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385532/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:37.002677Z", "last_modified_time": "2026-07-07T13:14:37.242002Z", "date_published": null, "start_time": "2026-11-20T17:00:00Z", "end_time": "2026-11-20T18: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, "location_extra_info": null, "name": { "fi": "joku iiris – A la Malmi", "sv": "joku iiris – A la Malmi", "en": "joku iiris – A la Malmi" }, "description": { "fi": "<p>Omaehtoisen vaihtoehtomusiikin konkaritekijöistä koostuvan joku iiris -yhtyeen musiikki on yhdistelmä samaistuttavaa alakuloa ja riemastuttavaa vallattomuutta.</p><p><b>Iiris Tuonosen</b> kynä viiltää yhtä kipeästi kuin ennenkin, mutta saattaa myös hymyilyttää. Tämä bändi laittaa sukat jalassasi haisemaan! Joko mennään?</p><p>Iiris Tuononen – laulu ja kitara<br>Sini Suvanto – rummut ja taustalaulu<br>Jukka Nousiainen – kosketinsoittimet, kitara ja taustalaulu<br>Tuomas Virtanen – basso ja taustalaulu</p><p>Kesto: 1 t 15 min</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CE60EBEE235C6E4FB8B66E3F7ADC83C9/joku_iiris", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CE60EBEE235C6E4FB8B66E3F7ADC83C9/joku_iiris", "en": "http://www.malmitalo.fi/en/events/event/CE60EBEE235C6E4FB8B66E3F7ADC83C9/joku_iiris" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Omaehtoisen vaihtoehtomusiikin konkaritekijöistä koostuvan joku iiris -yhtyeen musiikki on yhdistelmä samaistuttavaa alakuloa ja riemastuttavaa vallattomuutta." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69073/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69282", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385003, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:36.922255Z", "last_modified_time": "2026-06-09T07:13:36.922270Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791497.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385003/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:36.823545Z", "last_modified_time": "2026-07-07T13:14:36.590567Z", "date_published": null, "start_time": "2026-11-19T16:00:00Z", "end_time": "2026-11-19T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "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>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8008467A239AD9F2515EA8325810C845/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8008467A239AD9F2515EA8325810C845/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/8008467A239AD9F2515EA8325810C845/Eco-art_Thursday_" }, "provider": null, "provider_contact_info": 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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69282/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69072", "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": [], "price": { "fi": "24,80€ / 17,80€", "sv": "24,80€ / 17,80€", "en": "24,80€ / 17,80€" }, "info_url": { "fi": "https://www.lippu.fi/event/million-dollar-tones-malmitalo-21601098/", "sv": "https://www.lippu.fi/event/million-dollar-tones-malmitalo-21601098/", "en": "https://www.lippu.fi/event/million-dollar-tones-malmitalo-21601098/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385531, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:36.099435Z", "last_modified_time": "2026-07-07T13:14:36.099449Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792669.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385531/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:35.973129Z", "last_modified_time": "2026-07-07T13:14:36.231829Z", "date_published": null, "start_time": "2026-11-18T17:00:00Z", "end_time": "2026-11-18T18: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, "location_extra_info": null, "name": { "fi": "Million Dollar Tones", "sv": "Million Dollar Tones", "en": "Million Dollar Tones" }, "description": { "fi": "<p>Yli vuosikymmenen ajan toiminut Million Dollar Tones on juurevan rhythm-and-bluesin ja 50-luvun tyylisen rock'n'rollin nimeen vannova kahdeksanhenkinen yhtye.</p><p>Rumpujen, basson, kitaran, laulun ja pianon ohella bändin soundia on kasvattamassa kolmihenkinen torvisektio. Lavalta ja levyltä ei tämän bändin tapauksessa siis laaja-alaisuutta puutu!</p><p>Villeistä viidakkorytmeistä ja tanssittavasta groovesta huolimatta musiikki ei tingi juurevista elementeistään, joita löytyy muun muassa New Orleans -henkisestä pianosta ja saksofoneista. Joraamista tasapainotetaan myös bluesballadeilla. Kokoonpanon biisit ovat niin omaa tuotantoa kuin hyvällä maulla valikoituja lainaklassikoitakin.</p><p>Ahkeran Suomen keikkapaikkojen kiertämisen lisäksi yhtye on esiintynyt festivaaleilla ja klubeilla esimerkiksi Ruotsissa, Hollannissa, Virossa, Italiassa ja Espanjassa!</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/26664DDED253C980B83A4F74F79AD274/Million_Dollar_Tones", "sv": "http://www.malmitalo.fi/sv/evenemang/event/26664DDED253C980B83A4F74F79AD274/Million_Dollar_Tones", "en": "http://www.malmitalo.fi/en/events/event/26664DDED253C980B83A4F74F79AD274/Million_Dollar_Tones" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Yli vuosikymmenen ajan toiminut Million Dollar Tones on juurevan rhythm-and-bluesin ja 50-luvun tyylisen rock'n'rollin nimeen vannova kahdeksanhenkinen yhtye." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69072/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69071", "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": [], "price": { "fi": "34,90€ / 28,90€", "sv": "34,90€ / 28,90€", "en": "34,90€ / 28,90€" }, "info_url": { "fi": "https://www.lippu.fi/event/canyon-lights-usa-malmitalo-21636438/", "sv": "https://www.lippu.fi/event/canyon-lights-usa-malmitalo-21636438/", "en": "https://www.lippu.fi/event/canyon-lights-usa-malmitalo-21636438/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385530, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:35.711477Z", "last_modified_time": "2026-07-07T13:14:35.711489Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792667.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385530/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:35.586406Z", "last_modified_time": "2026-07-07T13:14:35.852738Z", "date_published": null, "start_time": "2026-11-17T17:00:00Z", "end_time": "2026-11-17T18: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, "location_extra_info": null, "name": { "fi": "Canyon Lights (USA)", "sv": "Canyon Lights (USA)", "en": "Canyon Lights (USA)" }, "description": { "fi": "<p>Modernia bluesrockia 70-luvun hengessä: ensimmäistä kertaa Suomeen saapuva Canyon Lights on yksi kiinnostavimmista uusista nimistä omalla kentällään.</p><p>Canyon Lightsin ytimessä ovat laulaja-kitaristi <b>Pat Faherty</b> ja rumpali <b>Tim Carman</b>, jotka tunnetaan aiemmin menestyksekkäästä bluesyhtyeestä GA-20. Kaksikko on kiertänyt maailmaa vuosien ajan ja kerännyt kokemusta tuhansilta keikoilta, mikä kuuluu yhtyeen tiiviissä yhteissoitossa ja vahvassa lavakarismassa.</p><p>Vuonna 2023 Faherty ja Carman alkoivat työstää uutta musiikkia inspiroituneina 70-luvun rockbändeistä, kuten Mountain, Thin Lizzy ja James Gang. Tämä johti uuden yhtyeen syntyyn, jossa bluesin juuret yhdistyvät vapaampaan ja genrejä rikkovaan ilmaisuun.</p><p>Yhtyeen debyyttialbumi <i>Breathe Easy</i> esittelee henkilökohtaisista kokemuksista kumpuavia kappaleita, joissa käsitellään elämää tien päällä, kaipuuta ja jatkuvaa liikkeessä olemista. Musiikki on yhtä aikaa raakaa, melodista ja voimakkaan tunnelmallista.</p><p>Livekokoonpanossa Canyon Lights toimii triona, jossa mukana on myös monipuolinen muusikko <b>Heather Gillis</b>. Yhtyeen keikat tunnetaan intensiivisestä energiasta, vahvasta groove-pohjasta ja ajattomasta rock-soundista.</p><p>Canyon Lightsin Suomen-debyytti tarjoaa yleisölle ainutlaatuisen mahdollisuuden kokea nouseva kansainvälinen bluesrock-yhtye, joka yhdistää menneen ja nykyhetken saumattomaksi kokonaisuudeksi.</p><p>Kesto: 1 t 15 min</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8EB7B9A2A64520847109768DBDED7B37/Canyon_Lights_USA_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8EB7B9A2A64520847109768DBDED7B37/Canyon_Lights_USA_", "en": "http://www.malmitalo.fi/en/events/event/8EB7B9A2A64520847109768DBDED7B37/Canyon_Lights_USA_" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Modernia bluesrockia 70-luvun hengessä: ensimmäistä kertaa Suomeen saapuva Canyon Lights on yksi kiinnostavimmista uusista nimistä omalla kentällään." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69071/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69281", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385002, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:36.165691Z", "last_modified_time": "2026-06-09T07:13:36.165708Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791496.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:36.073021Z", "last_modified_time": "2026-07-07T13:14:34.091391Z", "date_published": null, "start_time": "2026-11-12T16:00:00Z", "end_time": "2026-11-12T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "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>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/09E6A912B75B57CB4B4F949D0765B2E2/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/09E6A912B75B57CB4B4F949D0765B2E2/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/09E6A912B75B57CB4B4F949D0765B2E2/Eco-art_Thursday_" }, "provider": null, "provider_contact_info": 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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69281/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69247", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "26€ 16€", "sv": "26€ 16€", "en": "26€ 16€" }, "info_url": { "fi": "https://www.lippu.fi/event/baltic-circle-festivaali-baltic-circle-2026-tranceformer-kanneltalo-21847894/", "sv": "https://www.lippu.fi/event/baltic-circle-festivaali-baltic-circle-2026-tranceformer-kanneltalo-21847894/", "en": "https://www.lippu.fi/event/baltic-circle-festivaali-baltic-circle-2026-tranceformer-kanneltalo-21847894/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385527, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T12:13:54.419422Z", "last_modified_time": "2026-07-07T12:13:54.419439Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793575.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385527/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T12:13:54.348980Z", "last_modified_time": "2026-07-07T12:13:54.530342Z", "date_published": null, "start_time": "2026-11-27T16: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, "location_extra_info": null, "name": { "fi": "Tranceformer – Baltic Circle", "sv": "Tranceformer – Baltic Circle", "en": "Tranceformer – Baltic Circle" }, "description": { "fi": "<p>Tranceformer on esitys, jossa tutkitaan uusien teknologioiden kognitiivisia vaikutuksia hypnoosin keinoin. Baltic Circle -festivaaleilla nähdään teostrilogian kolmas ja viimeinen osa.</p><p>Teosta varten taiteilija <b>Aapo Nikkanen</b> on kouluttanut oman Tranceformer-tekoälyn, joka kykenee ohjaamaan yleisön hypnoottiseen transsitilaan. Spektaakkelin sijaan teos nojautuu huomion hienovaraisiin siirtymiin, joissa fokus liukuu pois näyttämöltä kohti yleisön sisäisiä maailmoja. <br> <br>Esityksen ytimessä on tekoälyn ja esiintyjän välille syntyvä vuoropuhelu, joka kuljettaa yleisön kokemaan eri tasoisia transseja. Samalla se luo uudenlaisen interaktiivisen tilan, jossa ihmisen ja koneen vuorovaikutus, tuntuu aidosti inhimilliseltä, tunteita herättävältä, ja henkilökohtaiselta. <br> <br>Miten ne vaikuttavat tapoihimme tulkita maailmaa, luottaa havaintoihimme ja reagoida ympäristöömme – ja missä vaiheessa ne alkavat ohittaa kriittisen pohdinnan niin, että niiden vaikutuksia on vaikea erottaa omasta ajattelustamme?<br> <br>Esitystä ovat tukeneet Baltic Circle, Koneen Säätiö, Suomen New Yorkin kulttuuri-instituutti (FCINY) ja Pioneer Works. <br> <br>Esityksen teemat ja metodit pureutuvat ihmispsyykeen ja tajunnan rajamaihin mm. hypnoosin ja transsin keinoin, ja voivat olla ahdistavia joillekin katsojista.</p><p>Kesto: 1 t</p>", "en": "<p>Tranceformer is the third instalment of a trilogy that uses hypnosis to examine the cognitive effects of new technologies.</p><p>For the piece, artist <b>Aapo Nikkanen</b> has trained his own AI — Tranceformer — capable of guiding the audience into hypnotic trance. Rather than relying on spectacle, the work operates through subtle shifts in attention that draw focus away from the stage and into the inner worlds of the audience.</p><p>The performance unfolds through a conversation between the AI and the performer, allowing the audience to move through different levels of trance. At the same time, it stages a new kind of interactive space, in which passive algorithmic feeds give way to personalised, dialogic exchanges that are human in tone and emotionally responsive.</p><p>Tranceformer asks what happens when contemporary systems increasingly operate at the level of cognition: how they shape the ways we interpret, trust, and respond to the world, often bypassing critical reflection, and at what point their influence becomes difficult to distinguish from our own thoughts.</p><p>The creation of Tranceformer has been made possible through the generous support of Baltic Circle, Kone Foundation, and FCINY & Pioneer Works.</p><p>The themes and methods of the performance deal with the liminal spaces of human psyche and consciousness using, for instance, hypnosis and trance, and as such may be distressing for some audiences.</p><p>Duration: 1 hour</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/43C14E99B97127392860D835BACBC2F0/Tranceformer", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/43C14E99B97127392860D835BACBC2F0/Tranceformer", "en": "http://www.kanneltalo.fi/en/events/event/43C14E99B97127392860D835BACBC2F0/Tranceformer" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Tranceformer on esitys, jossa tutkitaan uusien teknologioiden kognitiivisia vaikutuksia hypnoosin keinoin. Baltic Circle -festivaaleilla nähdään teostrilogian kolmas ja viimeinen osa.", "en": "Tranceformer is the third instalment of a trilogy that uses hypnosis to examine the cognitive effects of new technologies." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69247/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69246", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "26€ 16€", "sv": "26€ 16€", "en": "26€ 16€" }, "info_url": { "fi": "https://www.lippu.fi/event/baltic-circle-festivaali-baltic-circle-2026-tranceformer-kanneltalo-21847893/", "sv": "https://www.lippu.fi/event/baltic-circle-festivaali-baltic-circle-2026-tranceformer-kanneltalo-21847893/", "en": "https://www.lippu.fi/event/baltic-circle-festivaali-baltic-circle-2026-tranceformer-kanneltalo-21847893/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385526, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T12:13:54.117621Z", "last_modified_time": "2026-07-07T12:13:54.117637Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793574.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T12:13:54.031314Z", "last_modified_time": "2026-07-07T12:13:54.219942Z", "date_published": null, "start_time": "2026-11-26T16: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, "location_extra_info": null, "name": { "fi": "Tranceformer – Baltic Circle", "sv": "Tranceformer – Baltic Circle", "en": "Tranceformer – Baltic Circle" }, "description": { "fi": "<p>Tranceformer on esitys, jossa tutkitaan uusien teknologioiden kognitiivisia vaikutuksia hypnoosin keinoin. Baltic Circle -festivaaleilla nähdään teostrilogian kolmas ja viimeinen osa.</p><p>Teosta varten taiteilija <b>Aapo Nikkanen</b> on kouluttanut oman Tranceformer-tekoälyn, joka kykenee ohjaamaan yleisön hypnoottiseen transsitilaan. Spektaakkelin sijaan teos nojautuu huomion hienovaraisiin siirtymiin, joissa fokus liukuu pois näyttämöltä kohti yleisön sisäisiä maailmoja. <br> <br>Esityksen ytimessä on tekoälyn ja esiintyjän välille syntyvä vuoropuhelu, joka kuljettaa yleisön kokemaan eri tasoisia transseja. Samalla se luo uudenlaisen interaktiivisen tilan, jossa ihmisen ja koneen vuorovaikutus, tuntuu aidosti inhimilliseltä, tunteita herättävältä, ja henkilökohtaiselta. <br> <br>Miten ne vaikuttavat tapoihimme tulkita maailmaa, luottaa havaintoihimme ja reagoida ympäristöömme – ja missä vaiheessa ne alkavat ohittaa kriittisen pohdinnan niin, että niiden vaikutuksia on vaikea erottaa omasta ajattelustamme?<br> <br>Esitystä ovat tukeneet Baltic Circle, Koneen Säätiö, Suomen New Yorkin kulttuuri-instituutti (FCINY) ja Pioneer Works. <br> <br>Esityksen teemat ja metodit pureutuvat ihmispsyykeen ja tajunnan rajamaihin mm. hypnoosin ja transsin keinoin, ja voivat olla ahdistavia joillekin katsojista.</p><p>Kesto: 1 t</p>", "en": "<p>Tranceformer is the third instalment of a trilogy that uses hypnosis to examine the cognitive effects of new technologies.</p><p>For the piece, artist <b>Aapo Nikkanen</b> has trained his own AI — Tranceformer — capable of guiding the audience into hypnotic trance. Rather than relying on spectacle, the work operates through subtle shifts in attention that draw focus away from the stage and into the inner worlds of the audience.</p><p>The performance unfolds through a conversation between the AI and the performer, allowing the audience to move through different levels of trance. At the same time, it stages a new kind of interactive space, in which passive algorithmic feeds give way to personalised, dialogic exchanges that are human in tone and emotionally responsive.</p><p>Tranceformer asks what happens when contemporary systems increasingly operate at the level of cognition: how they shape the ways we interpret, trust, and respond to the world, often bypassing critical reflection, and at what point their influence becomes difficult to distinguish from our own thoughts.</p><p>The creation of Tranceformer has been made possible through the generous support of Baltic Circle, Kone Foundation, and FCINY & Pioneer Works.</p><p>The themes and methods of the performance deal with the liminal spaces of human psyche and consciousness using, for instance, hypnosis and trance, and as such may be distressing for some audiences.</p><p>Duration: 1 hour</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B23E0E6A3A230CE64D6D2CA3B174257D/Tranceformer", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B23E0E6A3A230CE64D6D2CA3B174257D/Tranceformer", "en": "http://www.kanneltalo.fi/en/events/event/B23E0E6A3A230CE64D6D2CA3B174257D/Tranceformer" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Tranceformer on esitys, jossa tutkitaan uusien teknologioiden kognitiivisia vaikutuksia hypnoosin keinoin. Baltic Circle -festivaaleilla nähdään teostrilogian kolmas ja viimeinen osa.", "en": "Tranceformer is the third instalment of a trilogy that uses hypnosis to examine the cognitive effects of new technologies." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69246/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69590", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385525, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T12:13:53.688921Z", "last_modified_time": "2026-07-07T12:13:53.688938Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791166.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385525/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T12:13:53.591559Z", "last_modified_time": "2026-07-07T12:13:53.852902Z", "date_published": null, "start_time": "2026-11-25T15:00:00Z", "end_time": "2026-11-25T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "Kantsun kahvit – Keskiviikkoklubi", "sv": "Kantsun kahvit", "en": "Coffee at Kantsu" }, "description": { "fi": "<p>Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.</p><p>Tule tapaamaan ihmisiä ja keskustelemaan ajankohtaisista asioista kahvittelun lomassa. Tarjoamme kahvia, teetä ja pientä syötävää. Lapset ovat tervetulleita vanhempiensa kanssa.</p><p>Kantsun kahvien sisällöt suunnitellaan yhdessä asukasaktiivien kanssa. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Osallistu keskusteluun Kantsun kahvit -Facebook-ryhmässä</u></a>.</p><p>Kantsun kahvit järjestävät yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.</p><p>Paikka: Kanneltalon kahvilan stage</p>", "sv": "<p>Kantsun kahvit är en öppen mötesplats där vi tillsammans ordnar varierande program.</p><p>Kom och träffa människor och diskutera aktuella frågor över en kopp kaffe. Vi bjuder på kaffe, te och något smått att äta. Barn är välkomna tillsammans med sina föräldrar.</p><p>Innehållet i kaffestunderna Kantsun kahvit planeras tillsammans med aktiva invånare. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Delta i diskussionen i Facebookgruppen Kantsun kahvit</u></a>.</p><p>Kantsun kahvit ordnas som ett samarbete mellan invånare i området, D-asema i Gamlas och Helsingfors stad</p><p>Du behöver inte anmäla dig till evenemanget på förhand och det är gratis.</p><p>Plats: Gamlasgården kafé stage</p>", "en": "<p>Coffee events at Kantsu are open meeting places, where a programme of events is organised together.</p><p>Come and meet people and discuss current issues over coffee. We offer coffee, tea and snacks. Children are welcome with their parents.</p><p>The content of Kantsu coffee events is planned together with resident activists. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Join the discussion in the ‘Kantsun kahvit’ Facebook group</u></a>.</p><p>Coffee at Kantsu is organised in cooperation by local residents, D-asema in Kannelmäki and the City of Helsinki.</p><p>No advance registration is required and the event is free of charge.</p><p>Location: Kanneltalo café stage</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/64CF800E7997DB4844731ADCB45FD9F6/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/64CF800E7997DB4844731ADCB45FD9F6/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/64CF800E7997DB4844731ADCB45FD9F6/Coffee_at_Kantsu" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.", "sv": "Kantsun kahvit är en öppen mötesplats där vi tillsammans ordnar varierande program.", "en": "Coffee events at Kantsu are open meeting places, where a programme of events is organised together." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69590/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69337", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15€ 12€ 6€", "sv": "15€ 12€ 6€", "en": "15€ 12€ 6€" }, "info_url": { "fi": "https://www.lippu.fi/event/laulavat-tiedekysymykset-dinosauruksen-hikka-vai-mehilaisen-kakka-kanneltalo-21752000/", "sv": "https://www.lippu.fi/event/laulavat-tiedekysymykset-dinosauruksen-hikka-vai-mehilaisen-kakka-kanneltalo-21752000/", "en": "https://www.lippu.fi/event/laulavat-tiedekysymykset-dinosauruksen-hikka-vai-mehilaisen-kakka-kanneltalo-21752000/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385523, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T11:13:49.706598Z", "last_modified_time": "2026-07-07T11:13:49.706614Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793985.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385523/?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-07T11:13:49.456620Z", "last_modified_time": "2026-07-07T11:13:49.968529Z", "date_published": null, "start_time": "2026-11-21T12: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, "location_extra_info": null, "name": { "fi": "Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä", "sv": "Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä", "en": "Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä" }, "description": { "fi": "<p>Uusintaesitys yleisön pyynnöstä! Lasten tiedekysymyksistä kootussa musiikillisessa teatteriseikkailussa tiede tanssii sambaa ja mielikuvitus laukkaa!</p><p>Esitys on oodi lapsen uteliaisuudelle, ihmettelylle ja kysymisen taidolle. Miksi aikuinen sanoo hieno, vaikka ei edes katso? Kuorsaako kalat? Mistä voi tietää mikä on totta?</p><p>Näihin ja muihin kiperiin kysymyksiin etsitään vastauksia musiikillisessa ja vauhdikkaassa seikkailussa, joka lennättää katsojan someampparin siivin yli Atlantin, paljastaa puiden salaiset keskustelut ja johdattaa misinformaation villiin viidakkoon. Kun pienet reportterit Solmu ja Silmu tunkeutuvat Äärimmäisen tiedon konferenssiin, syntyy kaaos, jossa tiede kohtaa mielikuvituksen ja faktat tanssivat samban tahdissa.</p><p><i>Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä</i> -esitys pohjaa Helsingin Sanomien palstaan ja sen pohjalta toimitettuihin kirjoihin: <i>Ovatko kaikki esineet joskus olleet märkiä?</i> (2015), <i>Tietääkö karhu että se on karhu?</i> (2018) ja <i>Miksi linnut heräävät niin aikaisin?</i> (2020). Nämä <b>Tuomas Kasevan</b> toimittavat kirjat sisältävät yhteensä yli 400 visaista kysymystä, joita lapset ovat HS:n palstalla eri alojen asiantuntijoille esittäneet.</p><p>Lasten tiedekysymykset ovat itsessään oivaltavia, mielikuvituksekkaita ja asiantuntijavastauksineen yleissivistäviä ihan kaikille. Ne käsittelevät monia eri tieteen aloja aina biologiasta astrologiaan, filosofisia pohdintoja unohtamatta. Esitys on suunnattu 5─9-vuotiaille, mutta se sopii mainiosti koko perheelle.</p><p>Esitys on visuaalisesti näyttävä, musiikillisesti runsas, oivaltava, leikkisä ja ajatuksia herättävä teos, jonka tavoite on yllyttää lapsia kysymään, tutkimaan ja ihmettelemään maailmaa sekä pohtimaan syvemmin tiedon olemusta. Se on oodi lapsen uteliaisuudelle, ihmettelylle ja kysymisen taidolle. Esitys kunnioittaa lapsia ja heidän tapaansa katsoa maailmaa. On vaikeaa kuvitella, että aikuiset keksisivat ihmetellä yhtä monialaisesti ja luovasti. Tässä esityksessä ajattelussaan jäykille aikuisille ja pieruvitseille on lupa nauraa.</p><p>Esitys tarkastelee myös tietoa itsessään ja tiedon olemusta mediakriittisyyden näkökulmasta. Monilukutaitoa ja mediakriittisyyttä opetetaan nykyään yhä nuoremmille. Jo varhaiskasvatuksen piirissä olevien lasten on hyvä osata tunnistaa, mikä tieto on luotettavaa ja mistä tietoa voi etsiä.</p><p>Esityksen työryhmään kuuluvat näyttelijä-käsikirjoittajat <b>Pinja Hahtola</b> ja <b>Iida-Maaria Lindstedt</b> sekä muusikko <b>Suvi Isotalo</b>. Teoksen visuaalisesta ilmeestä vastaavat skenografi ja nukketaiteilija <b>Tua Hautamäki</b> ja valosuunnittelija <b>Mirkka Saari</b>.</p><p>Esityksen ensi-ilta oli huhtikuussa 2026 ja se toteutettiin yhteistyössä Q-teatterin ja Kanneltalon kanssa. Kanneltalon ensi-illan jälkeen esitys on jatkanut Q-teatterin ohjelmistossa 8.5.2026 alkaen.</p><p><i>Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä</i> on myös osa <u><a href=\"https://kummilapset.hel.fi/fi/\">Kulttuurin kummilapset</u></a> -hanketta. Esitys on tilattavissa syksystä 2026 eteenpäin ympäri Suomen.</p><p>Kesto: maks. 1 t<br>Esityskieli: suomi</p><p>Varoitus: Esitys saattaa aiheuttaa kroonista kysymysripulia!</p>", "sv": "<p>I detta musikaliska teateräventyr som byggts upp av frågor från barn om vetenskap får vetenskapen dansa samba och fantasin flöda!</p><p>Föreställningen är en hyllning till barnets nyfikenhet, förundran och förmåga att ställa frågor. Varför säger vuxna att något är bra fast de inte ens tittat efter? Snarkar fiskar? Hur kan man veta vad som är sant?</p><p>Svaren på dessa och andra kvistiga frågor söks i ett fartfyllt musikaliskt äventyr, där publiken får flyga över Atlanten på some-getingens vingar, upptäcka trädens hemliga samtal och dyka in i missinformationens vilda djungel. När de små reportrarna Solmu och Silmu invaderar en konferens för extrem kunskap blir det kaos, där vetenskapen möter fantasin och fakta dansar i sambatakt.</p><p>Föreställningen <i>Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä</i> baserar sig på en spalt i Helsingin Sanomat och böcker som sammanställts utifrån den: <i>Ovatko kaikki esineet joskus olleet märkiä?</i> (2015), <i>Tietääkö karhu että se on karhu?</i> (2018) och <i>Miksi linnut heräävät niin aikaisin?</i> (2020). Dessa böcker, som <b>Tuomas Kaseva</b> fungerat som redaktör för, innehåller sammanlagt mer än 400 knepiga frågor som barn har ställt till experter inom olika områden i HS-spalten.</p><p>Barnens vetenskapsfrågor är i sig insiktsfulla, fantasifulla och med expertsvaren allmänbildande för oss alla. De berör många olika områden inom vetenskaper, från biologi till astronomi, filosofiska funderingar icke att förglömma. Föreställningen riktar sig till barn i åldern 5–9 år men passar utmärkt för hela familjen.</p><p>Föreställningen är visuellt slående, musikaliskt rik, insiktsfull, lekfull och tankeväckande, och dess mål är att uppmuntra barn att ifrågasätta, utforska och förundras över världen och att reflektera djupare över kunskapens natur. Den är en hyllning till barnets nyfikenhet, förundran och förmåga att ställa frågor. Programmet respekterar barnen och deras sätt att se på världen. Det är svårt att föreställa sig att vuxna skulle komma på att fundera lika mångsidigt och kreativt. I den här föreställningen får man skratta åt vuxnas stela tänkande och åt pruttskämt.</p><p>Föreställningen utforskar också kunskapen i sig och dess väsen ur ett mediekritiskt perspektiv. Multilitteracitet och mediekritik lärs numera ut till allt yngre barn. Redan för barn i småbarnspedagogiken är det bra att känna till vilken information som är tillförlitlig och var man kan leta efter information.</p><p>Arbetsgruppen för föreställningen består av skådespelarna och manusförfattarna <b>Pinja Hahtola</b> och <b>Iida-Maaria Lindstedt</b> samt musikern <b>Suvi Isotalo</b>. För det visuella uttrycket ansvarar scenografen och dockartisten <b>Tua Hautamäki</b> samt ljusdesignern <b>Mirkka Saari</b>.</p><p>Premiären blir i april 2026 och är ett samarbete mellan Q-teatteri och Gamlasgården. <i>Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä</i> är också en del av <u><a href=\"https://kummilapset.hel.fi/sv\">projektet Kulturens fadderbarn</u></a>. Efter föreställningarna i Helsingfors kan föreställningen beställas till andra orter i Finland från hösten 2026 och framåt.</p><p>Längd: max 1 h <br>Föreställningens språk är finska.</p><p>Varning: Föreställningen kan orsaka en störtflod av frågor!</p>", "en": "<p>Science dances the samba and imagination runs wild in this musical theatre adventure about science questions from children!</p><p>The performance is an ode to a child's curiosity and ability to wonder and question. Why does an adult say that something looks good when they don't even look? Do fish snore? How can you know what is true?</p><p>Answers to these and other tricky questions are sought in a musical and fast-paced adventure that takes the viewer across the Atlantic on the wings of a social media bee, revealing the secret conversations of the trees and leading the travellers into the wild jungle of misinformation. When little reporters Solmu and Silmu invade the Extreme Knowledge Conference (Äärimmäisen tiedon konferenssi), chaos ensues as science meets imagination and facts dance the samba.</p><p><i>Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä</i> – is based on a Helsingin Sanomat column and the books edited based on it: <i>Ovatko kaikki esineet joskus olleet märkiä?</i> (2015), <i>Tietääkö karhu että se on karhu?</i> (2018) ja <i>Miksi linnut heräävät niin aikaisin?</i> (2020). These books, edited by <b>Tuomas Kaseva</b>, contain a total of more than 400 tough questions that children have asked experts in various fields in the Helsingin Sanomat column.</p><p>Children's science questions are themselves insightful, imaginative and, with expert answers, educational for everyone. They cover a wide range of scientific disciplines, from biology to astrology, not forgetting philosophical reflections. The show is aimed at children aged 5–9, but the whole family will probably enjoy it.</p><p>The performance is visually striking, musically rich, insightful, playful and thought-provoking, with the aim of encouraging children to question, explore and wonder about the world and to reflect more deeply on the nature of knowledge. It is an ode to a child's curiosity, wonder and questioning. The show respects children and the way they look at the world. It's hard to imagine adults being able to look at things in such a multidisciplinary and creative way. In this performance, you are allowed to laugh at fart jokes and adults with their rigid thoughts.</p><p>The presentation will also examine knowledge itself and the nature of knowledge from the perspective of media criticism. Multi-literacy and media literacy are now taught to younger and younger people. Children already in early childhood education should be able to identify reliable information and where to look for it.</p><p>The production team consists of actor-writers <b>Pinja Hahtola</b> and <b>Iida-Maaria Lindstedt</b> and musician <b>Suvi Isotalo</b>. The visuals of the work are the responsibility of the scenographer and puppeteer <b>Tua Hautamäki</b> and the lighting designer <b>Mirkka Saari</b>.</p><p>The premiere of the show will take place in April 2026, and it will be produced in collaboration with Q-teatteri and Kanneltalo. <i>Dinosauruksen hikka vai mehiläisen kakka? – 33 kutkuttavaa lasten tiedekysymystä</i> is also part of the <u><a href=\"https://kummilapset.hel.fi/en\">Culture Kids project</u></a>. After the performances in Helsinki, the show will be available to order from autumn 2026 onwards throughout Finland.</p><p>Duration: max. 1 h. <br>The performance language is Finnish.</p><p>Warning: The performance may cause chronic questionitis!</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7E6199D461CD0EDF2496D907F256E0B3/Dinosauruksen_hikka_vai_mehilaisen_kakka_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7E6199D461CD0EDF2496D907F256E0B3/Dinosauruksen_hikka_vai_mehilaisen_kakka_", "en": "http://www.kanneltalo.fi/en/events/event/7E6199D461CD0EDF2496D907F256E0B3/Dinosauruksen_hikka_vai_mehilaisen_kakka_" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Uusintaesitys yleisön pyynnöstä! Lasten tiedekysymyksistä kootussa musiikillisessa teatteriseikkailussa tiede tanssii sambaa ja mielikuvitus laukkaa!", "sv": "I detta musikaliska teateräventyr som byggts upp av frågor från barn om vetenskap får vetenskapen dansa samba och fantasin flöda!", "en": "Science dances the samba and imagination runs wild in this musical theatre adventure about science questions from children!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69337/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69589", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T11:13:48.043481Z", "last_modified_time": "2026-07-07T11:13:48.043497Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794024.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385522/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T11:13:47.920993Z", "last_modified_time": "2026-07-07T11:13:48.184571Z", "date_published": null, "start_time": "2026-11-08T12:00:00Z", "end_time": "2026-11-08T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "Isänpäivä Lasten Etnosoi!ssa: Kasvotusten", "sv": "Isänpäivä Lasten Etnosoi!ssa: Kasvotusten", "en": "Isänpäivä Lasten Etnosoi!ssa: Kasvotusten" }, "description": { "fi": "<p>Isänpäivän iltapäivässä matkustamme maailman eri kolkkiin konserteissa sekä musiikin ja tanssin työpajoissa.</p><p><b>Javiera Mac-leanin</b> (CL) ’Kasvotusten’ on hauska, monikulttuurinen taidetyöpaja. Siinä luodaan ainutlaatuisia muotokuvia lasten kanssa käyttämällä leikkisiä silmien, nenien, suiden ja muiden hauskojen elementtien leimoja! Lopuksi kaikki muotokuvat kootaan yhteisnäyttelyksi, joka juhlistaa monimuotoisia kasvojamme ja kulttuurejamme.</p><p>Aulan hyvän mielen torilla voit auttaa maailman lapsia ja kuulla Unicefin toiminnasta</p><p>Maailman musiikin keskuksen myöntämän Risteys-palkinnon 2026 voitti ansiokasta ja merkityksellisestä työtä tekevä Kulttuurikeskus Ninho ry (NINHO). Juhlan kunniaksi Maailman musiikin keskus ja NINHO järjestävät lapsille suunnattuja työpajoja monikielisessä ympäristössä tällä kertaa yhdessä. Mukana maailmanympärysmatkalla ovat toki tänäkin vuonna Taideyliopiston Sibelius-Akatemian Global Music -osaston muusikot.</p><p>Tapahtuman tuottavat yhdessä Maailman musiikin keskus, Malmitalo, Taideyliopiston Global Music -osasto sekä NINHO. Yhteistyössä mukana Suomen Unicef.</p><p>Päivän ohjelmatiedot täydentyvät osoitteessa <u><a href=\"https://www.etnosoi.fi/\">etnosoi.fi.</u></a></p><p>Vapaa pääsy</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0AF3A7A05523420D37AF96536269C19A/Isanpaiva_Lasten_Etnosoi_ssa_Kasvotusten", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0AF3A7A05523420D37AF96536269C19A/Isanpaiva_Lasten_Etnosoi_ssa_Kasvotusten", "en": "http://www.malmitalo.fi/en/events/event/0AF3A7A05523420D37AF96536269C19A/Isanpaiva_Lasten_Etnosoi_ssa_Kasvotusten" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Isänpäivän iltapäivässä matkustamme maailman eri kolkkiin konserteissa sekä musiikin ja tanssin työpajoissa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69589/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptyutkke", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385524, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:56:59.517586Z", "last_modified_time": "2026-07-07T10:56:59.517600Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b249c943-cf03-42f1-9251-a070a92a5b86.png", "name": "", "cropping": "128,0,896,768", "photographer_name": "Bengali Association of Finland (BAF)", "alt_text": "Joogaavia ihmisiä laiturilla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385524/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:57:36.511207Z", "last_modified_time": "2026-07-07T10:57:36.511223Z", "date_published": null, "start_time": "2026-07-12T12:00:00Z", "end_time": "2026-07-12T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "name": { "fi": "Yoga Session | যোগ ব্যায়াম সেশন", "sv": "Yoga Session | যোগ ব্যায়াম সেশন", "en": "Yoga Session | যোগ ব্যায়াম সেশন" }, "description": { "fi": "<p>Bengali Association of Finlandin järjestämä jooga. Ohjaus tapahtuu englanniksi, tilaisuus on maksuton ja kaikille avoin. Saavuthan ajoissa, 15 minuuttia enne tilaisuuden alkua.</p><p>Ota mukaan oma joogamatto, tai pyyhe.</p><p>---</p><p>Bengali Association of Finland (BAF) warmly invites you to a rejuvenating yoga session — an hour of mindful movement, breathing, and wellness for the whole community.</p><p><strong>Date</strong>: Saturday, 12th July 2026</p><p><strong>Time</strong>: 3:00 PM – 4:00 PM</p><p><strong>Venue</strong>: Lippulaiva Library, Salonki Room</p><p><strong>Please note:</strong></p><ul><li>This is an open event — everyone is welcome to join!</li><li>Participants are requested to bring their own yoga mat and wear clothes appropriate for yoga</li><li>Kindly arrive 15 minutes early (by 2:45 PM) for basic preparations</li><li>The session is completely free of cost</li><li>No certificate will be provided — this is purely for health, wellness, and community bonding</li></ul><p><br></p>", "sv": "<p>Yoga arrangerad av Bengali Association of Finland. Instruktionen ges på engelska, evenemanget är kostnadsfritt och öppet för alla. Vänligen kom i god tid, 15 minuter före evenemangets start.</p><p>Ta med egen yogamatta eller handduk.</p><p>---</p><p>Bengali Association of Finland (BAF) warmly invites you to a rejuvenating yoga session — an hour of mindful movement, breathing, and wellness for the whole community.</p><p><strong>Date</strong>: Saturday, 12th July 2026</p><p><strong>Time</strong>: 3:00 PM – 4:00 PM</p><p><strong>Venue</strong>: Lippulaiva Library, Salonki Room</p><p><strong>Please note:</strong></p><ul><li>This is an open event — everyone is welcome to join!</li><li>Participants are requested to bring their own yoga mat and wear clothes appropriate for yoga</li><li>Kindly arrive 15 minutes early (by 2:45 PM) for basic preparations</li><li>The session is completely free of cost</li><li>No certificate will be provided — this is purely for health, wellness, and community bonding</li></ul><p><br></p>", "en": "<p>Bengali Association of Finland (BAF) warmly invites you to a rejuvenating yoga session — an hour of mindful movement, breathing, and wellness for the whole community.</p><p><strong>Date</strong>: Saturday, 12th July 2026</p><p><strong>Time</strong>: 3:00 PM – 4:00 PM</p><p><strong>Venue</strong>: Lippulaiva Library, Salonki Room</p><p><strong>Please note:</strong></p><ul><li>This is an open event — everyone is welcome to join!</li><li>Participants are requested to bring their own yoga mat and wear clothes appropriate for yoga</li><li>Kindly arrive 15 minutes early (by 2:45 PM) for basic preparations</li><li>The session is completely free of cost</li><li>No certificate will be provided — this is purely for health, wellness, and community bonding</li></ul>" }, "info_url": null, "provider": { "fi": "Bengali Association of Finland (BAF)", "sv": "Bengali Association of Finland (BAF)", "en": "Bengali Association of Finland (BAF)" }, "provider_contact_info": null, "short_description": { "fi": "Yoga Session | যোগ ব্যায়াম সেশন", "sv": "Yoga Session | যোগ ব্যায়াম সেশন", "en": "Yoga Session | যোগ ব্যায়াম সেশন" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptyutkke/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }