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_super_event=true&page=151
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=152", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=150" }, "data": [ { "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": [], "description": null, "price": null, "info_url": 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, "provider": 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>" }, "provider_contact_info": null, "short_description": { "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi", "en": "http://www.malmitalo.fi/en/events/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi" }, "@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": [], "description": null, "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/" } } ], "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, "provider": 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>" }, "provider_contact_info": null, "short_description": { "fi": "Kansainvälisesti arvostettu ja rakastettu Light in Babylon palaa konsertoimaan Suomeen, nyt täydellä kokoonpanolla viisihenkisenä!" }, "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_" }, "@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": [], "description": null, "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/" } } ], "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, "provider": 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>" }, "provider_contact_info": null, "short_description": { "fi": "Nothing for Money on taitava suomalainen yhtye, joka esittää Dire Straits -yhtyeen musiikkia" }, "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" }, "@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": [], "description": null, "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/" } } ], "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, "provider": 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>" }, "provider_contact_info": null, "short_description": { "fi": "Omaehtoisen vaihtoehtomusiikin konkaritekijöistä koostuvan joku iiris -yhtyeen musiikki on yhdistelmä samaistuttavaa alakuloa ja riemastuttavaa vallattomuutta." }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69073/?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": [], "description": null, "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/" } } ], "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, "provider": 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>" }, "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." }, "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" }, "@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": [], "description": null, "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/" } } ], "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, "provider": 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>" }, "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." }, "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_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69071/?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": [], "description": null, "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/" } } ], "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, "provider": 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>" }, "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." }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69247/?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": [], "description": null, "price": null, "info_url": 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, "provider": 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>" }, "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." }, "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" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69590/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69589", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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, "provider": 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>" }, "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." }, "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" }, "@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": [], "description": null, "price": null, "info_url": 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" }, "provider": { "fi": "Bengali Association of Finland (BAF)", "sv": "Bengali Association of Finland (BAF)", "en": "Bengali Association of Finland (BAF)" }, "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>" }, "provider_contact_info": null, "short_description": { "fi": "Yoga Session | যোগ ব্যায়াম সেশন", "sv": "Yoga Session | যোগ ব্যায়াম সেশন", "en": "Yoga Session | যোগ ব্যায়াম সেশন" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptyutkke/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68552", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 / 7 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385521, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:14:02.945844Z", "last_modified_time": "2026-07-07T10:14:02.945860Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790993.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385521/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:14:02.883713Z", "last_modified_time": "2026-07-07T10:14:03.051550Z", "date_published": null, "start_time": "2026-12-12T17:00:00Z", "end_time": "2026-12-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, "provider": null, "name": { "fi": "Amanda & Lydia: Traces of Your Skin" }, "description": { "fi": "<p>Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta.</p><p>Siskous ei ole annettu.</p><p>Se syntyy katseessa, joka tunnistaa. Kosketuksessa, joka jää. Päätöksessä olla toiselle lähellä, yhä uudelleen, vaikka läsnäolo ei ole koskaan yksiselitteistä.</p><p><i>Traces of Your Skin</i> on nykytanssiteos kahden transnaisen välisestä siskoudesta. Se tarkastelee valittua perhettä suhteena, joka syntyy tekemisessä: koskettamisessa, kannattelussa ja katseessa. Siskous ei perustu yhteiseen lapsuuteen, vaan jaettuihin kokemuksiin, samaistumiseen ja päätökseen olla toiselle olemassa.</p><p>Esityksessä kehot koskettavat, kannattelevat ja ohjaavat toisiaan. Ne silittävät, harovat, pitävät kiinni ja irrottavat. Liike rakentuu suhteesta, jossa toinen keho on samanaikaisesti tuttu ja muuttuva. Iho toimii pintana, johon muistot ja odotukset jättävät jäljen. Turva ja lohtu kietoutuvat pelkoon, kateuteen ja kipuun.</p><p>Feminiinisyys näyttäytyy jaettuna kokemuksena ja materiaalina, joka tuntuu omalta, mutta on muotoutunut muistojen ja odotusten kautta. Näyttämöllä se saa levätä ilman ulkopuolista määrittelyä, asettuen syliin ja lempeään läheisyyteen.</p><p>**</p><p>Teoksen koreografit ja esiintyjät <b>Amanda 007</b> ja <b>Lydia Ofi Teresia</b> ovat työskennelleet yhdessä yli 15 vuoden ajan ystävinä, siskoina ja taiteellisina kumppaneina Amanda & Lydia -duona. Heidän yhteinen liikekielensä on syntynyt pitkäkestoisessa vuoropuhelussa ja jaetuissa kokemuksissa transtaustaisina esiintyjinä. Teos liikkuu nykytanssin, performatiivisuuden ja ballroomin vaikutteiden risteyksessä, mutta rakentuu ennen kaikkea esiintyjien välisestä suhteesta.</p><p>Työryhmään kuuluvat lisäksi äänisuunnittelija <b>Olli Lautiola</b>, valosuunnittelija <b>Kristian Palmu</b>, pukusuunnittelija <b>Joona Huotari-Andreou</b> sekä skenografi <b>Landys Roimola</b>, joiden työ kytkeytyy osaksi teoksen liikettä, kehoa ja tilaa.</p><p><i>Traces of Your Skin</i> viipyy siinä, mitä kahden kehon välillä tapahtuu, kun ei tarvitse selittää tai esittää. <br> <br><b>Koreografia, tanssi</b>: Lydia Ofi Teresia <br><b>Koreografia, tanssi</b>: Amanda 007 <br><b>Äänisuunnittelu</b>: Olli Lautiola <br><b>Valosuunnittelu</b>: Kristian Palmu <br><b>Pukusuunnittelu</b>: Huotari-Andreou Joona <br><b>Skenografia</b>: Landys Roimola <br> <br>Sisältöhuomio: Esitys sisältää alastomuutta, kovaa ääntä, teatterisavua ja välkkyviä valoja. <br>Ikäraja: 18</p>" }, "provider_contact_info": null, "short_description": { "fi": "Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/79754E41C25D737589C8C258CEF0A53E/Amanda_Lydia_Traces_of_Your_Skin_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68552/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69588", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 / 7 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385520, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:14:02.666729Z", "last_modified_time": "2026-07-07T10:14:02.666745Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790994.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:14:02.583181Z", "last_modified_time": "2026-07-07T10:14:02.774525Z", "date_published": null, "start_time": "2026-12-12T13:00:00Z", "end_time": "2026-12-12T14: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, "provider": null, "name": { "fi": "Amanda & Lydia: Traces of Your Skin" }, "description": { "fi": "<p>Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta.</p><p>Siskous ei ole annettu.</p><p>Se syntyy katseessa, joka tunnistaa. Kosketuksessa, joka jää. Päätöksessä olla toiselle lähellä, yhä uudelleen, vaikka läsnäolo ei ole koskaan yksiselitteistä.</p><p><i>Traces of Your Skin</i> on nykytanssiteos kahden transnaisen välisestä siskoudesta. Se tarkastelee valittua perhettä suhteena, joka syntyy tekemisessä: koskettamisessa, kannattelussa ja katseessa. Siskous ei perustu yhteiseen lapsuuteen, vaan jaettuihin kokemuksiin, samaistumiseen ja päätökseen olla toiselle olemassa.</p><p>Esityksessä kehot koskettavat, kannattelevat ja ohjaavat toisiaan. Ne silittävät, harovat, pitävät kiinni ja irrottavat. Liike rakentuu suhteesta, jossa toinen keho on samanaikaisesti tuttu ja muuttuva. Iho toimii pintana, johon muistot ja odotukset jättävät jäljen. Turva ja lohtu kietoutuvat pelkoon, kateuteen ja kipuun.</p><p>Feminiinisyys näyttäytyy jaettuna kokemuksena ja materiaalina, joka tuntuu omalta, mutta on muotoutunut muistojen ja odotusten kautta. Näyttämöllä se saa levätä ilman ulkopuolista määrittelyä, asettuen syliin ja lempeään läheisyyteen.</p><p>**</p><p>Teoksen koreografit ja esiintyjät <b>Amanda 007</b> ja <b>Lydia Ofi Teresia</b> ovat työskennelleet yhdessä yli 15 vuoden ajan ystävinä, siskoina ja taiteellisina kumppaneina Amanda & Lydia -duona. Heidän yhteinen liikekielensä on syntynyt pitkäkestoisessa vuoropuhelussa ja jaetuissa kokemuksissa transtaustaisina esiintyjinä. Teos liikkuu nykytanssin, performatiivisuuden ja ballroomin vaikutteiden risteyksessä, mutta rakentuu ennen kaikkea esiintyjien välisestä suhteesta.</p><p>Työryhmään kuuluvat lisäksi äänisuunnittelija <b>Olli Lautiola</b>, valosuunnittelija <b>Kristian Palmu</b>, pukusuunnittelija <b>Joona Huotari-Andreou</b> sekä skenografi <b>Landys Roimola</b>, joiden työ kytkeytyy osaksi teoksen liikettä, kehoa ja tilaa.</p><p><i>Traces of Your Skin</i> viipyy siinä, mitä kahden kehon välillä tapahtuu, kun ei tarvitse selittää tai esittää. <br> <br><b>Koreografia, tanssi</b>: Lydia Ofi Teresia <br><b>Koreografia, tanssi</b>: Amanda 007 <br><b>Äänisuunnittelu</b>: Olli Lautiola <br><b>Valosuunnittelu</b>: Kristian Palmu <br><b>Pukusuunnittelu</b>: Huotari-Andreou Joona <br><b>Skenografia</b>: Landys Roimola <br> <br>Sisältöhuomio: Esitys sisältää alastomuutta, kovaa ääntä, teatterisavua ja välkkyviä valoja. <br>Ikäraja: 18</p>" }, "provider_contact_info": null, "short_description": { "fi": "Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BE29BF2F4806EE00BFD29DAD6D028362/Amanda_Lydia_Traces_of_Your_Skin_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69588/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68551", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 / 7 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:14:02.355736Z", "last_modified_time": "2026-07-07T10:14:02.355751Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790990.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:14:02.284800Z", "last_modified_time": "2026-07-07T10:14:02.451975Z", "date_published": null, "start_time": "2026-12-11T17:00:00Z", "end_time": "2026-12-11T18: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, "provider": null, "name": { "fi": "Amanda & Lydia: Traces of Your Skin" }, "description": { "fi": "<p>Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta.</p><p>Siskous ei ole annettu.</p><p>Se syntyy katseessa, joka tunnistaa. Kosketuksessa, joka jää. Päätöksessä olla toiselle lähellä, yhä uudelleen, vaikka läsnäolo ei ole koskaan yksiselitteistä.</p><p><i>Traces of Your Skin</i> on nykytanssiteos kahden transnaisen välisestä siskoudesta. Se tarkastelee valittua perhettä suhteena, joka syntyy tekemisessä: koskettamisessa, kannattelussa ja katseessa. Siskous ei perustu yhteiseen lapsuuteen, vaan jaettuihin kokemuksiin, samaistumiseen ja päätökseen olla toiselle olemassa.</p><p>Esityksessä kehot koskettavat, kannattelevat ja ohjaavat toisiaan. Ne silittävät, harovat, pitävät kiinni ja irrottavat. Liike rakentuu suhteesta, jossa toinen keho on samanaikaisesti tuttu ja muuttuva. Iho toimii pintana, johon muistot ja odotukset jättävät jäljen. Turva ja lohtu kietoutuvat pelkoon, kateuteen ja kipuun.</p><p>Feminiinisyys näyttäytyy jaettuna kokemuksena ja materiaalina, joka tuntuu omalta, mutta on muotoutunut muistojen ja odotusten kautta. Näyttämöllä se saa levätä ilman ulkopuolista määrittelyä, asettuen syliin ja lempeään läheisyyteen.</p><p>**</p><p>Teoksen koreografit ja esiintyjät <b>Amanda 007</b> ja <b>Lydia Ofi Teresia</b> ovat työskennelleet yhdessä yli 15 vuoden ajan ystävinä, siskoina ja taiteellisina kumppaneina Amanda & Lydia -duona. Heidän yhteinen liikekielensä on syntynyt pitkäkestoisessa vuoropuhelussa ja jaetuissa kokemuksissa transtaustaisina esiintyjinä. Teos liikkuu nykytanssin, performatiivisuuden ja ballroomin vaikutteiden risteyksessä, mutta rakentuu ennen kaikkea esiintyjien välisestä suhteesta.</p><p>Työryhmään kuuluvat lisäksi äänisuunnittelija <b>Olli Lautiola</b>, valosuunnittelija <b>Kristian Palmu</b>, pukusuunnittelija <b>Joona Huotari-Andreou</b> sekä skenografi <b>Landys Roimola</b>, joiden työ kytkeytyy osaksi teoksen liikettä, kehoa ja tilaa.</p><p><i>Traces of Your Skin</i> viipyy siinä, mitä kahden kehon välillä tapahtuu, kun ei tarvitse selittää tai esittää. <br> <br><b>Koreografia, tanssi</b>: Lydia Ofi Teresia <br><b>Koreografia, tanssi</b>: Amanda 007 <br><b>Äänisuunnittelu</b>: Olli Lautiola <br><b>Valosuunnittelu</b>: Kristian Palmu <br><b>Pukusuunnittelu</b>: Huotari-Andreou Joona <br><b>Skenografia</b>: Landys Roimola <br> <br>Sisältöhuomio: Esitys sisältää alastomuutta, kovaa ääntä, teatterisavua ja välkkyviä valoja. <br>Ikäraja: 18</p>" }, "provider_contact_info": null, "short_description": { "fi": "Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/1B6B327DCA7AE32A28B4398CA341ADA6/Amanda_Lydia_Traces_of_Your_Skin_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68551/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68932", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385516, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:13:59.421191Z", "last_modified_time": "2026-07-07T10:13:59.421206Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792279.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385516/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-07-07T10:13:59.327503Z", "last_modified_time": "2026-07-07T10:13:59.552109Z", "date_published": null, "start_time": "2026-11-21T11:00:00Z", "end_time": "2026-11-21T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Lasten lauantai – lapset ovat hyviä ihmettelemään!", "sv": "Lasten lauantai – lapset ovat hyviä ihmettelemään!", "en": "Lasten lauantai – lapset ovat hyviä ihmettelemään!" }, "description": { "fi": "<p>Lasten lauantaissa tieteillään, taiteillaan, leikitään ja ihmetellään.</p><p><b>Klo 10–16 | Skidimarket</b><br>Gallerian Skidimarketissa saa leikkiä! Skidimarket kutsuu uusia hyllyttäjiä, kassahenkilökuntaa ja paistopistetyyppejä hommiin! Skidimarket on tila lasten omalle leikille ja mielikuvitusasiakkaille. Tilapäinen leikkikauppa valtaa galleriatilan, jonne muodostuu värikäs marketmaailma. Hyllyttämistä ja kassahommia tarjolla! Tuotanto: Skidit-kollektiivi.</p><p><b>Klo 13–16 | Lapset ovat hyviä ihmettelemään! -taidepaja</b> <br>Tässä kaikenikäisten taidepajassa leikitään luonnontieteilijöitä tutkimalla luonnon pieniä ihmeitä. Tarkastelemme luupeilla ja lasten mikroskoopilla huolellisesti erilaisia luonnonmateriaaleja. Piirrämme havainnoistamme leikkisiä ja värikkäitä taideteoksia erilaisilla piirustusvälineillä. Oletko valmis näkemään aivan uudella tavalla jäkälän, pikkukivet ja tammenterhot? Työpajan järjestää Seikkailutaidekoulu.</p><p><b>Klo 14 | Dinosauruksen hikka vai mehiläisen kakka?</b><br>33 kutkuttavaa lasten tiedekysymystä</p><p>Uusintaesitys yleisön pyynnöstä! Lasten tiedekysymyksistä kootussa musiikillisessa teatteriseikkailussa tiede tanssii sambaa ja mielikuvitus laukkaa. Varoitus: Esitys saattaa aiheuttaa kroonista kysymysripulia! Kesto: 50 min. Esityskieli: suomi. Liput: 15 / 12 / 6 € osoitteesta lippu.fi.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten lauantaissa tieteillään, taiteillaan, leikitään ja ihmetellään." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_", "en": "http://www.kanneltalo.fi/en/events/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68932/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68937", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385515, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:13:59.009129Z", "last_modified_time": "2026-07-07T10:13:59.009148Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792283.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385515/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:13:58.865614Z", "last_modified_time": "2026-07-07T10:13:59.163419Z", "date_published": null, "start_time": "2026-11-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Tell Your Birds & Manu Rosales – Global Club Nights", "sv": "Tell Your Birds & Manu Rosales – Global Club Nights", "en": "Tell Your Birds & Manu Rosales – Global Club Nights" }, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Kanneltalossa klubeja järjestetään syksyn 2026 aikana kahtena iltana. Ensimmäisessä klubi-illassa 2.10. esiintyvät Humphrey Mubba ja Trio Mandeng. Toinen klubi-ilta järjestetään 20.11. Lapsen oikeuksien päivänä ja esiintymässä ovat Tell Your Birds ja Manu Rosales.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoilee mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p><b>Manu Rosales</b> on säveltäjä, kitaristi ja laulaja Buenos Airesista, Argentiinasta. Hänen musiikkinsa juuret johtavat syvälle Buenos Airesin laulunkirjoitusperinteeseen ja heijastelevat tätä moninaista maailmankaupunkia kierteleviä vaikutteita. <i>Volver Siguiendo</i> -konsertti katsoo perinnettä ja identiteettiä elävänä ja keskeneräisenä prosessina, johon sekoittuu kaikki tätä uutta aluetta kiertävä, sekä esitykseen osallistuvat upeat muusikot.</p><p>Esitys kulkee läpi Argentiinan, Brasilian ja Andien vuoriston monimuotoisten musiikkityylien. Kutsumme sinut ainutlaatuiseen, akustiseen ja lämmintunnelmaiseen konserttiin, jossa Rosales yhtyeineen esittää omia ja vielä julkaisemattomia kappaleitaan – tutustumaan tähän nykyaikaiseen näkemykseen perinteestä, sävellyksestä ja laulusta.</p><p><b>Tell Your Birds</b> on nykykansanmusiikkiyhtye, jonka muodostavat <b>Vija Moore</b> (Latvia; lyömäsoittimet, balafon, laulu), <b>Kärt Tambet</b> (Viro; viulu ja laulu), <b>Simone Spampinato</b> (Italia; syntetisaattori ja live-elektroniikka) sekä <b> Kristīne Tukre (Latvia; konserttikokle).</p><p><b>Global Club Nights</b> -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>I Gamlasgården ordnas klubben två kvällar under hösten 2026. På den första klubbkvällen 2.10. framträder Humphrey Mubba ja Trio Mandeng. Den andra klubbkvällen ordnas 20.11. i Veckan för barnets rättigheter med Tell Your Birds och Manu Rosales.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p>The free club nights start early, so children are welcome when accompanied by an adult. In addition to exciting music, the club also offers other fun activities suitable for children. Let's start the weekend together!</p><p>Kanneltalo will host the club on two evenings during the autumn of 2026. The first club night on 2nd October will feature Humphrey Mubba and Trio Mandeng. The second club night will take place on 20th November during Children’s Rights Week with artists Tell Your Birds ja Manu Rosales.</p><p><b>Manu Rosales</b> is a composer, guitarist, and singer from Buenos Aires, Argentina. His music is deeply rooted in the song composition traditions of Buenos Aires, reflecting the multitude of influences that orbit within that diverse and cosmopolitan city. <i>Volver Siguiendo (Return in Continuation)</i> reveals a concert that consider both tradition and identity as an alive unfinished process – blending it with everything that orbits around this new territory and the astounding musicians who will take part in the performance.</p><p>The performance goes through diverse musical styles from Argentina, Brazil and the Andes mountains. You are invited to an unrepeatable, acoustic, and intimate concert featuring original and unpublished works – a contemporary vision of tradition, composition, and song.</p><p><b> Tell Your Birds</b> is a contemporary folk music band featuring <b>Vija Moore</b> (Latvia; percussion, balafon and voice), <b>Kärt Tambet</b> (Estonia; violin and voice), <b>Simone Spampinato</b> (Italy; synthesizer and live electronics) and <b>Kristīne Tukre</b> (Latvia; concert kokle).</p><p><b>Global Club Nights</b> aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales", "en": "http://www.kanneltalo.fi/en/events/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68937/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69067", "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": [], "description": null, "price": { "fi": "34,90€ / 24,80€", "sv": "34,90€ / 24,80€", "en": "34,90€ / 24,80€" }, "info_url": { "fi": "https://www.lippu.fi/event/sari-schorr-usa-malmitalo-21583491/", "sv": "https://www.lippu.fi/event/sari-schorr-usa-malmitalo-21583491/", "en": "https://www.lippu.fi/event/sari-schorr-usa-malmitalo-21583491/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385514, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:13:57.273686Z", "last_modified_time": "2026-07-07T10:13:57.273702Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792656.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385514/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:13:57.192558Z", "last_modified_time": "2026-07-07T10:13:57.370554Z", "date_published": null, "start_time": "2026-11-06T17:00:00Z", "end_time": "2026-11-06T18: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, "provider": null, "name": { "fi": "Sari Schorr (USA)", "sv": "Sari Schorr (USA)", "en": "Sari Schorr (USA)" }, "description": { "fi": "<p>Laulaja-lauluntekijä Sari Schorr tunnetaan intensiivisestä tulkinnastaan, vahvasta lavapreesensistään ja syvältä kumpuavasta bluesrock-soundistaan.</p><p>New Yorkista lähtöisin oleva Schorr on noussut kansainväliseen tietoisuuteen tinkimättömällä tyylillään, jossa yhdistyvät bluesin perinne, rockin energia ja soulmusiikin tunnevoima. Schorrin musiikki ammentaa vaikutteita klassisesta bluesista, mutta tuo siihen modernin ja persoonallisen otteen. Hänen äänensä on tunnistettava – raaka, voimakas ja täynnä tunnetta – ja hänen esiintymisensä ovat keränneet kiitosta ympäri maailmaa.</p><p>Uransa aikana Schorr on tehnyt yhteistyötä arvostettujen muusikoiden ja tuottajien kanssa sekä esiintynyt merkittävillä festivaaleilla ja konserttilavoilla Euroopassa ja Yhdysvalloissa. Hänen kappaleensa käsittelevät usein elämän haasteita, voimaa ja selviytymistä, mikä tekee hänen musiikistaan samaistuttavaa ja vaikuttavaa.</p><p>Sari Schorrin live-esiintymiset ovat intensiivisiä ja tunteikkaita kokemuksia, joissa yhdistyvät vahva tulkinta ja energinen bändisoitto. Hän on artisti, joka ei jätä yleisöä kylmäksi. Schorr jatkaa vahvaa nousuaan kansainvälisellä musiikkikentällä ja vakiinnuttaa asemaansa yhtenä modernin bluesrockin kiinnostavimmista nimistä.</p><p>Kesto: 1 t 15 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Laulaja-lauluntekijä Sari Schorr tunnetaan intensiivisestä tulkinnastaan, vahvasta lavapreesensistään ja syvältä kumpuavasta bluesrock-soundistaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4A45BED72F6C7A967C045150B0EB0686/Sari_Schorr_USA_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4A45BED72F6C7A967C045150B0EB0686/Sari_Schorr_USA_", "en": "http://www.malmitalo.fi/en/events/event/4A45BED72F6C7A967C045150B0EB0686/Sari_Schorr_USA_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69067/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69066", "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": [], "description": null, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" }, "info_url": { "fi": "https://www.lippu.fi/event/wimme-rinne-malmitalo-21668982/", "sv": "https://www.lippu.fi/event/wimme-rinne-malmitalo-21668982/", "en": "https://www.lippu.fi/event/wimme-rinne-malmitalo-21668982/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385513, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:13:56.823755Z", "last_modified_time": "2026-07-07T10:13:56.823835Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792654.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385513/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:13:56.741630Z", "last_modified_time": "2026-07-07T10:13:56.958554Z", "date_published": null, "start_time": "2026-11-05T17:00:00Z", "end_time": "2026-11-05T18: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, "provider": null, "name": { "fi": "Wimme & Rinne", "sv": "Wimme & Rinne", "en": "Wimme & Rinne" }, "description": { "fi": "<p>Ikiaikainen joiku ja modernit äänimaailmat kohtaavat luoden universaalia, ajassa kiinni olevaa musiikkia.</p><p>Saamelainen <b>Wimme Saari</b> on kotoisin Käsivarren Kelottijärveltä. Traditionaalisen joiun suvereenina taitajana hän on kehittänyt myös täysin oman modernin joikaustyylinsä, jossa kuuluu vaikutteita aikamme musiikista – ja jopa äänitaiteesta.</p><p><b>Tapani Rinne</b> on asunut koko aikuisikänsä urbaanissa Helsingissä, mutta hänen juurensa löytyvät Länsi-Suomen Satakunnasta. Lapsuuden avarilla peltomaisemilla lienee vaikutuksensa siihen, että Rinteen puhaltamissa saksofoni- ja klarinettilinjoissa on aistittavissa vahva tilantunne, jonkinlainen \"pohjoismaisuus\".</p><p>Saari ja Rinne ovat tehneet musiikkia yhdessä yli neljännesvuosisadan ajan ja kiertäneet esittämässä sitä eri mantereilla. Ystävysten nykyinen kokoonpano on duo, Wimme & Rinne, jossa molempien persoonien taustat ja kokemus yhdistyvät. Tuloksena on herkkää ja voimakasta musiikkia, joka on läsnä tässä ja nyt.</p><p>Kesto: 1 t 15 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ikiaikainen joiku ja modernit äänimaailmat kohtaavat luoden universaalia, ajassa kiinni olevaa musiikkia." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FABA157A291924E15668080BF864BF7F/Wimme_Rinne", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FABA157A291924E15668080BF864BF7F/Wimme_Rinne", "en": "http://www.malmitalo.fi/en/events/event/FABA157A291924E15668080BF864BF7F/Wimme_Rinne" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69066/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68632", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385512, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:13:55.980648Z", "last_modified_time": "2026-07-07T10:13:55.980664Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791315.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385512/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:13:55.851791Z", "last_modified_time": "2026-07-07T10:13:56.138295Z", "date_published": null, "start_time": "2026-11-03T16:00:00Z", "end_time": "2026-11-03T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "PHMOsta kajahtaa! -oppilaskonsertti", "sv": "PHMOsta kajahtaa! -oppilaskonsertti", "en": "PHMOsta kajahtaa! -oppilaskonsertti" }, "description": { "fi": "<p>PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa.</p><p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston eri ikäisten taitajien esityksiä – konsertteihin on vapaa pääsy!</p><p>Konsertit 2., 3. ja 17.11. klo 18.00 Malmitalossa.</p>" }, "provider_contact_info": null, "short_description": { "fi": "PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti", "en": "http://www.malmitalo.fi/en/events/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68632/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69586", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:613/?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: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": false, "offer_price_groups": [], "description": null, "price": { "fi": "15 / 7 €" }, "info_url": { "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702291/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385511, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T09:13:57.906733Z", "last_modified_time": "2026-07-07T09:13:57.906747Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791980.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385511/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T09:13:57.809150Z", "last_modified_time": "2026-07-07T09:13:58.031784Z", "date_published": null, "start_time": "2026-12-04T17:00:00Z", "end_time": "2026-12-04T19: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, "provider": null, "name": { "fi": "Out 'n loud & HQFK: Queerly Yours! – Caisa 30 Club" }, "description": { "fi": "<p>Kahden helsinkiläisen sateenkaarikuoron yhteinen klubi-ilta tarjoaa yleisölle yhteenkuuluvuutta ja välittämistä kuoromusiikin, kirjeiden ja yhteislaulun muodossa.</p><p>Konsertin keskiössä on kirjoitettu, lähetetty, vastaanotettu kirje: kirjoitettuja sanoja, sanoitettuja kokemuksia ja jaettuja ajatuksia, joita kirjoittaja on halunnut jakaa vastaanottajan kanssa. Jokainen klubi-illan osallistuja saa illan aikana kirjeen, jonka joku esiintyjistä on kirjoittanut. Klubi-illan toteuttavat yhdessä gaykuoro Out ’n loud ja Helsingin queer-feministinen kuoro, HQFK.</p><p>Queerly Yours! on yhteisökokemus: lämmin halaus ja musiikillinen kirje “kaikilta meiltä, kaikille meille”. Tähän konserttiin jokainen on tervetullut juuri sellaisena omana itsenään kuin on!</p><p><b>Out ’n loud</b> on Suomen ensimmäinen gaykuoro, joka on vuodesta 2004 alkaen tuonut estradeille iloa, tunnetta ja yhteisöllistä voimaa. Viime vuonna 20-vuotista taivaltaan juhlinut kuoro tunnetaan energisistä esiintymisistään ja monipuolisesta ohjelmistostaan. Out ‘n loud herättää kappaleen kuin kappaleen eloon omalla karismallaan, kun lavalle nousee yli 30 gaykuorolaisen joukko.</p><p><b>Helsingin queer-feministinen kuoro, HQFK</b> on vuonna 2022 perustettu yhteisökuoro, joka pyrkii musiikissaan löytämään oman ainutlaatuisen äänensä sekä sävelten avulla murskaamaan patriarkaatin epätasa-arvoistavat rakenteet ja kankeat binääriset jaottelut – unohtamatta tietysti valoa ja iloa, joita yhteinen ja rakas sateenkaareva musiikkiharrastus tuo mukanaan!</p><p>Kesto: 1 t 40 min, sisältäen 20 minuutin väliajan<br>Tapahtuman kieli: laulut suomeksi, ruotsiksi ja englanniksi; juonnot suomeksi ja englanniksi.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kahden helsinkiläisen sateenkaarikuoron yhteinen klubi-ilta tarjoaa yleisölle yhteenkuuluvuutta ja välittämistä kuoromusiikin, kirjeiden ja yhteislaulun muodossa." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/19EF86BED2C9441EEE12D8464610DF21/Out_n_loud_HQFK_Queerly_Yours_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69586/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68927", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385506, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T09:13:54.327660Z", "last_modified_time": "2026-07-07T09:13:54.327675Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792273.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385506/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T09:13:54.234724Z", "last_modified_time": "2026-07-07T09:13:54.469130Z", "date_published": null, "start_time": "2026-11-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Kirjailijavieraana professori Esko Valtaoja – Maksuttomat maanantait", "sv": "Författarbesök: Esko Valtaoja – Kostnadsfria måndagar", "en": "Guest Author Esko Valtaoja – Free Mondays" }, "description": { "fi": "<p>Tähtitieteilijä Esko Valtaoja ruotii aikamme ilmiöitä omaan jäljittelemättömään tyyliinsä. Haastattelijana FM Tuija Takala.</p><p><i>\"Maailmamme koostuu lukemattomista pakahduttavan mielenkiintoisista asioista ja niiden välisistä yllättävistäkin yhteyksistä.</p><p>\"'Maailmaan virtaa tauotta jotain uutta, mutta silti siedämme uskomatonta tylsyyttä' surkutteli Henry Thoreau, jo sata vuotta ennen syntymääni. Minulla on uskomattoman huono tylsyyden sietokyky; se on yksi selitys tämänkin kirjan olemassaoloon. Jos nämä kirjoitukset onnistuvat lievittämään myös jonkun muun tylsistymistä, en ole nakutellut niitä ihan turhaan.</p><p>\"Minkään tekstin ei pitäisi olla viimeinen vaan ensimmäinen sana, uusien ajatusten alullepanija lukijassa.\"</i></p><p><b>Esko Valtaoja</b> on Turun yliopiston avaruustähtitieteen emeritusprofessori ja Tuorlan observatorion entinen johtaja. Valtaoja on myös tunnettu tieteen kansantajuistajana. Hänen teoksensa Kotona maailmankaikkeudessa sai Tieto-Finlandia-palkinnon vuonna 2002.</p><p>Keskustelun kieli: suomi</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tähtitieteilijä Esko Valtaoja ruotii aikamme ilmiöitä omaan jäljittelemättömään tyyliinsä. Haastattelijana FM Tuija Takala." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F6B2201A180752668CD9977BF9696771/Kirjailijavieraana_professori_Esko_Valtaoja", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F6B2201A180752668CD9977BF9696771/Forfattarbesok_Esko_Valtaoja", "en": "http://www.kanneltalo.fi/en/events/event/F6B2201A180752668CD9977BF9696771/Guest_Author_Esko_Valtaoja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68927/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }