Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=30
{ "meta": { "count": 23145, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=31", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=29" }, "data": [ { "id": "kultus:agpqgpbyoa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:16/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:51/?format=api" } ], "created_time": "2026-06-26T09:21:46.146005Z", "last_modified_time": "2026-06-26T09:23:27.395836Z", "date_published": null, "start_time": "2026-06-30T09:00:00Z", "end_time": "2026-06-30T12: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": "2026-06-26T12:25:00+03:00", "enrolment_end_time": "2026-06-29T12:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "Testaus", "sv": "", "en": "" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Testing", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "<p>Testing</p>\n", "sv": "", "en": "" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpqgpbyoa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69109", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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:44/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385375, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T09:14:32.783039Z", "last_modified_time": "2026-06-26T09:14:32.783055Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793314.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385375/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T09:14:32.528348Z", "last_modified_time": "2026-06-26T09:14:33.102270Z", "date_published": null, "start_time": "2026-10-01T07:00:00Z", "end_time": "2026-10-01T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that makes use of the many opportunities offered by music to strengthen your learning." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/053AFA4B4C4F06E0C8B14798980DA5A8/Opi_suomea_laulaen_", "sv": "http://www.stoa.fi/sv/evenemang/event/053AFA4B4C4F06E0C8B14798980DA5A8/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/053AFA4B4C4F06E0C8B14798980DA5A8/Learn_Finnish_by_Singing_" }, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto: n. 80 min</p><p>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>Ti 22.9. klo 10 ja 11.45<br>To 1.10. klo 10 ja 11.45 <br>To 29.10. klo 10 ja 11.45 <br>Ti 10.12. klo 10 ja 11.45</p>", "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd: ca. 80 min.<br> <br>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p>Sångverkstäder: <br>Tis. 22.9 kl. 10 och 11.45<br>Tors. 1.10 kl. 10 och 11.45 <br>Tors. 29.10 kl. 10 och 11.45 <br>Tors. 10.12 kl. 10 och 11.45</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that makes use of the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi <br> <br>Autumn song workshops:<br>Tue 22.9. at 10 and 11.45 <br>Thu 1.10. at 10 and 11.45 <br>Thu 29.10. at 10 and 11.45 <br>Thu 10.12. at 10 and 11.45</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69109/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69518", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": { "fi": "https://www.lippu.fi/artist/asa/asa-duo-vastaanotin-4188918/", "sv": "https://www.lippu.fi/artist/asa/asa-duo-vastaanotin-4188918/", "en": "https://www.lippu.fi/artist/asa/asa-duo-vastaanotin-4188918/" }, "description": null, "price": { "fi": "15 € / 12 €", "sv": "15 € / 12 €", "en": "15 € / 12 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385369, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T06:14:13.820176Z", "last_modified_time": "2026-06-26T06:14:13.820192Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795650.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385369/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T06:14:13.702649Z", "last_modified_time": "2026-06-26T09:14:31.691009Z", "date_published": null, "start_time": "2026-09-26T16:00:00Z", "end_time": "2026-09-26T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Asa | Duo Vastaanotin – Idän kirjamessut", "sv": "Asa | Duo Vastaanotin – Idän kirjamessut", "en": "Asa | Duo Vastaanotin – Idän kirjamessut" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Idän kirjamessujen ilta kietoo kuulijat musiikin, lyriikoiden ja sanataiteen maailmaan." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3128C0949DAADCC1E971639EEF2DB121/Asa_Duo_Vastaanotin", "sv": "http://www.stoa.fi/sv/evenemang/event/3128C0949DAADCC1E971639EEF2DB121/Asa_Duo_Vastaanotin", "en": "http://www.stoa.fi/en/events/event/3128C0949DAADCC1E971639EEF2DB121/Asa_Duo_Vastaanotin" }, "description": { "fi": "<p>Idän kirjamessujen ilta kietoo kuulijat musiikin, lyriikoiden ja sanataiteen maailmaan.</p><p>klo 19 | Duo Vastaanotin<br>klo 20 | Asa</p><p><b>Asa</b>, Avain, Asamasa, Aatsipoppa, Mats Nyckelström on suomalainen pitkän linjan sanaseppo. Jo kaksikymmentäviisivuotisen uransa aikana Asa on julkaissut aktiivisesti albumeita ja saanut niistä tunnustusta niin kuuntelijoilta kuin kriitikoiltakin.</p><p>Artisti on alusta asti kulkenut omia polkujaan. Hän on aina levottomana etsinyt kiinnostavampaa ja koukeroisempaa tietä tällä matkalla ilman määränpäätä. Asaa on kutsuttu suomenkielisen räpin uudisraivaajaksi, jonka teksteissä hirtehinen huumori sekä folkrunous yhdistyvät yhteiskunnallisten teemojen alla.</p><p>Tämä omaehtoisesti alati uutta musiikillista ilmaisua etsivä räppäri kiertää ahkerasti pientareita ja pirttejä ympäri maan.</p><p>Illan avaa <b>Duo Vastaanotin</b> esityksellään <i>Kanavatyö</i>:</p><p>Vastaanottimet auki, taajuus on valittu puolestanne. Tervetuloa herkuttelemaan Itä-Helsingin toivotuimmilla tekstikappaleilla, luontoillalla ja toivemusiikilla. Seurananne on tajunnan siivouskomeroa pöyhivä Duo Vastaanotin eli kirjailijat <b>Eeva Turunen</b> ja <b>Marjo Niemi</b>. Kuin harvoin avattuun komeroon olisi pesiytynyt levoton henki.</p><p>Kesto n. 2 t</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69528", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385373, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T08:13:59.639410Z", "last_modified_time": "2026-06-26T08:13:59.639424Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781943.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385373/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T08:13:59.512517Z", "last_modified_time": "2026-06-26T08:13:59.775951Z", "date_published": null, "start_time": "2026-07-24T09:00:00Z", "end_time": "2026-07-24T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Soul of Helsinki: Tapaa taiteilija", "sv": "Soul of Helsinki - Träffa konstnären", "en": "Soul of Helsinki: Meet the artist" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa nauttimaan kaupungin arjen valokuvista ja keskustelemaan taiteilijan kanssa Helsingin sielukkuudesta, taiteesta ja kokemuksista.", "sv": "Välkommen att njuta av fotografier som fångar stadens vardag och att diskutera Helsingfors själ, konst och upplevelser med konstnären.", "en": "Come enjoy the photographs of everyday city life and chat with the artist about the soulfulness, art and experiences of Helsinki." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B546D3D014D89C960559E778A1D63081/Soul_of_Helsinki_Tapaa_taiteilija", "sv": "http://www.stoa.fi/sv/evenemang/event/B546D3D014D89C960559E778A1D63081/Soul_of_Helsinki_-_Traffa_konstnaren", "en": "http://www.stoa.fi/en/events/event/B546D3D014D89C960559E778A1D63081/Soul_of_Helsinki_Meet_the_artist" }, "description": { "fi": "<p>Tervetuloa nauttimaan kaupungin arjen valokuvista ja keskustelemaan taiteilijan kanssa Helsingin sielukkuudesta, taiteesta ja kokemuksista.</p><p>Soul of Helsinki -valokuvanäyttelyn taiteilija Mila pitää kesällä 2026 residenssin Stoalla. Tapaa taiteilija -tilaisuus on rento ja paikalle voi saapua milloin vaan.</p><p>Näyttely sopii kaikille: helsinkiläisille, Helsingissä ensimmäistä kertaa vieraileville sekä erinomaisesti lapsille ja nuorille.</p><p>Paikka: Stoan parvigalleria</p><p>Vapaa pääsy!</p>", "sv": "<p>Välkommen att njuta av fotografier som fångar stadens vardag och att diskutera Helsingfors själ, konst och upplevelser med konstnären.</p><p>Mila, konstnären bakom fotoutställningen Soul of Helsinki, kommer att vistas på Stoa under sommaren 2026. \"Träffa konstnären\" är en avslappnad tillställning och du kan komma när du vill.</p><p>Utställningen passar alla: Helsingforsbor, de som besöker Helsingfors för första gången samt barn och ungdomar.</p><p>Fri entré!</p>", "en": "<p>Come enjoy the photographs of everyday city life and chat with the artist about the soulfulness, art and experiences of Helsinki.</p><p>Mila, the artist behind the “Soul of Helsinki” photography exhibition, will be in residence at Stoa in the summer of 2026. The Meet the artist event has a relaxed atmosphere, and you’re welcome to drop by at any time.</p><p>The exhibition is perfectly suitable for all Helsinki residents, visitors, and especially children and young people.</p><p>Free admission!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69528/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69527", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T08:13:58.262324Z", "last_modified_time": "2026-06-26T08:13:58.262338Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781934.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T08:13:58.154672Z", "last_modified_time": "2026-06-26T08:13:58.423402Z", "date_published": null, "start_time": "2026-07-15T10:00:00Z", "end_time": "2026-07-15T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Soul of Helsinki: Tapaa taiteilija", "sv": "Soul of Helsinki - Träffa konstnären", "en": "Soul of Helsinki: Meet the artist" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa nauttimaan kaupungin arjen valokuvista ja keskustelemaan taiteilijan kanssa Helsingin sielukkuudesta, taiteesta ja kokemuksista.", "sv": "Välkommen att njuta av fotografier som fångar stadens vardag och att diskutera Helsingfors själ, konst och upplevelser med konstnären.", "en": "Come enjoy the photographs of everyday city life and chat with the artist about the soulfulness, art and experiences of Helsinki." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F61BD1B465B957DE5DAC4F15E2708C56/Soul_of_Helsinki_Tapaa_taiteilija", "sv": "http://www.stoa.fi/sv/evenemang/event/F61BD1B465B957DE5DAC4F15E2708C56/Soul_of_Helsinki_-_Traffa_konstnaren", "en": "http://www.stoa.fi/en/events/event/F61BD1B465B957DE5DAC4F15E2708C56/Soul_of_Helsinki_Meet_the_artist" }, "description": { "fi": "<p>Tervetuloa nauttimaan kaupungin arjen valokuvista ja keskustelemaan taiteilijan kanssa Helsingin sielukkuudesta, taiteesta ja kokemuksista.</p><p>Soul of Helsinki -valokuvanäyttelyn taiteilija Mila pitää kesällä 2026 residenssin Stoalla. Tapaa taiteilija -tilaisuus on rento ja paikalle voi saapua milloin vaan.</p><p>Näyttely sopii kaikille: helsinkiläisille, Helsingissä ensimmäistä kertaa vieraileville sekä erinomaisesti lapsille ja nuorille.</p><p>Paikka: Stoan parvigalleria</p><p>Vapaa pääsy!</p>", "sv": "<p>Välkommen att njuta av fotografier som fångar stadens vardag och att diskutera Helsingfors själ, konst och upplevelser med konstnären.</p><p>Mila, konstnären bakom fotoutställningen Soul of Helsinki, kommer att vistas på Stoa under sommaren 2026. \"Träffa konstnären\" är en avslappnad tillställning och du kan komma när du vill.</p><p>Utställningen passar alla: Helsingforsbor, de som besöker Helsingfors för första gången samt barn och ungdomar.</p><p>Fri entré!</p>", "en": "<p>Come enjoy the photographs of everyday city life and chat with the artist about the soulfulness, art and experiences of Helsinki.</p><p>Mila, the artist behind the “Soul of Helsinki” photography exhibition, will be in residence at Stoa in the summer of 2026. The Meet the artist event has a relaxed atmosphere, and you’re welcome to drop by at any time.</p><p>The exhibition is perfectly suitable for all Helsinki residents, visitors, and especially children and young people.</p><p>Free admission!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69527/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69526", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385371, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T08:13:56.941423Z", "last_modified_time": "2026-06-26T08:13:56.941439Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781923.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385371/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T08:13:56.781902Z", "last_modified_time": "2026-06-26T08:13:57.157787Z", "date_published": null, "start_time": "2026-07-04T08:00:00Z", "end_time": "2026-07-04T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Soul of Helsinki: Tapaa taiteilija", "sv": "Soul of Helsinki - Träffa konstnären", "en": "Soul of Helsinki: Meet the artist" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa nauttimaan kaupungin arjen valokuvista ja keskustelemaan taiteilijan kanssa Helsingin sielukkuudesta, taiteesta ja kokemuksista.", "sv": "Välkommen att njuta av fotografier som fångar stadens vardag och att diskutera Helsingfors själ, konst och upplevelser med konstnären.", "en": "Come enjoy the photographs of everyday city life and chat with the artist about the soulfulness, art and experiences of Helsinki." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/93FBBA2A699487FB01ACD593379EFA7B/Soul_of_Helsinki_Tapaa_taiteilija", "sv": "http://www.stoa.fi/sv/evenemang/event/93FBBA2A699487FB01ACD593379EFA7B/Soul_of_Helsinki_-_Traffa_konstnaren", "en": "http://www.stoa.fi/en/events/event/93FBBA2A699487FB01ACD593379EFA7B/Soul_of_Helsinki_Meet_the_artist" }, "description": { "fi": "<p>Tervetuloa nauttimaan kaupungin arjen valokuvista ja keskustelemaan taiteilijan kanssa Helsingin sielukkuudesta, taiteesta ja kokemuksista.</p><p>Soul of Helsinki -valokuvanäyttelyn taiteilija Mila pitää kesällä 2026 residenssin Stoalla. Tapaa taiteilija -tilaisuus on rento ja paikalle voi saapua milloin vaan.</p><p>Näyttely sopii kaikille: helsinkiläisille, Helsingissä ensimmäistä kertaa vieraileville sekä erinomaisesti lapsille ja nuorille.</p><p>Paikka: Stoan parvigalleria</p><p>Vapaa pääsy!</p>", "sv": "<p>Välkommen att njuta av fotografier som fångar stadens vardag och att diskutera Helsingfors själ, konst och upplevelser med konstnären.</p><p>Mila, konstnären bakom fotoutställningen Soul of Helsinki, kommer att vistas på Stoa under sommaren 2026. \"Träffa konstnären\" är en avslappnad tillställning och du kan komma när du vill.</p><p>Utställningen passar alla: Helsingforsbor, de som besöker Helsingfors för första gången samt barn och ungdomar.</p><p>Fri entré!</p>", "en": "<p>Come enjoy the photographs of everyday city life and chat with the artist about the soulfulness, art and experiences of Helsinki.</p><p>Mila, the artist behind the “Soul of Helsinki” photography exhibition, will be in residence at Stoa in the summer of 2026. The Meet the artist event has a relaxed atmosphere, and you’re welcome to drop by at any time.</p><p>The exhibition is perfectly suitable for all Helsinki residents, visitors, and especially children and young people.</p><p>Free admission!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69526/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpqfg2mcm", "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/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqfg2jlm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqfg2koi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqfg2lim/?format=api" } ], "images": [ { "id": 2385374, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T07:38:52.760562Z", "last_modified_time": "2026-06-26T07:38:52.760575Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d02798a5-98de-4982-b85d-0aac1a75e47f.jpg", "name": "", "cropping": "182,0,1050,867", "photographer_name": "", "alt_text": "Kuvassa on Muistiluotsin logo, jossa lukee \"Muistiluotsi, asiantuntija- ja tukikeskus, Uusimaa)", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385374/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T06:12:29.872613Z", "last_modified_time": "2026-06-26T07:39:04.447287Z", "date_published": null, "start_time": "2026-09-21T10:00:00Z", "end_time": "2026-11-23T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Muisti-info", "sv": "Minnes-info", "en": "Memory info" }, "location_extra_info": { "fi": "Kajuutta", "sv": "Kajuutta", "en": "Kajuutta" }, "provider": null, "short_description": { "fi": "Muisti-infot ovat kaikille muististaan, muistin huollosta ja aivoterveydestä kiinnostuneille avoimia luentotilaisuuksia. Tervetuloa!", "sv": "Minnesinfotillfällena är öppna för alla som är intresserade av minne, minnesvård och hjärnhälsa. Välkommen till oss!", "en": "The Memory Info sessions are open to anyone interested in their memory, memory care and brain health. Welcome!" }, "info_url": null, "description": { "fi": "<p>Tarjolla on ajankohtaista tietoa muistista ja siihen liittyvistä asioista sekä muistia virkistävää toimintaa. Tilaisuudet ovat maksuttomia ja avoimia kaikille.</p><p>Tulevat kerrat:</p><p>Ma 21.9. klo 13-14:30 Voimaa ruuasta, vierailijana Sini Närvä, Gery ry</p><p>Ma 26.10. Muisti ja ravinto klo 12:30 - 14:00 Muistiongelmia, milloin on syytä huolestua?</p><p>Ma 23.11. Muistisairaan kohtaaminen klo 12:30 - 14:00 Muistiystävällinen ympäristö</p><p><br></p><p>Tervetuloa kuuntelemaan ja keskustelemaan!</p><p><br></p><p>Tiedustelut:</p><p>Krista Asmala, muistiohjaaja</p><p>puh. 040 483 0139 /krista.asmala@espoonmuisti.fi</p>", "sv": "<p>Vi erbjuder aktuell information om minne och relaterade ämnen, samt aktiviteter som är utformade för att stimulera minnet. Evenemangen är kostnadsfria och öppna för alla.</p><p><br></p><p>Kommande tillfällen:</p><p><br></p><p>Måndag 21 september, kl. 13.00–14.30: ”Styrka från maten”, med gästföreläsaren Sini Närvä från Gery ry</p><p><br></p><p>Måndag 26 oktober: Minne och kost, kl. 12.30–14.00: Minneproblem: När bör man oroa sig?</p><p><br></p><p>Mån, 23 nov: Att umgås med personer med minnesstörningar, kl. 12.30–14.00. En minnesvänlig miljö</p><p><br></p><p>Kom och lyssna och delta i diskussionen!</p><p><br></p><p>För mer information:</p><p>Krista Asmala, minnescoach</p><p>Tel. 040 483 0139 /krista.asmala@espoonmuisti.fi</p>", "en": "<p>We offer up-to-date information on memory and related topics, as well as activities designed to stimulate memory. The events are free of charge and open to everyone.</p><p><br></p><p>Upcoming sessions:</p><p><br></p><p>Mon, Sept. 21, 1:00–2:30 p.m. “Strength from Food,” featuring guest speaker Sini Närvä from Gery ry</p><p><br></p><p>Mon, Oct. 26: Memory and Nutrition, 12:30–2:00 p.m. Memory Problems: When Should You Be Concerned?</p><p><br></p><p>Mon, Nov. 23: Interacting with People with Memory Disorders, 12:30–2:00 p.m. A Memory-Friendly Environment</p><p><br></p><p>Come listen and join the discussion!</p><p><br></p><p>For more information:</p><p>Krista Asmala, memory coach</p><p>Tel. 040 483 0139 /krista.asmala@espoonmuisti.fi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqfg2mcm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69525", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385368, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T06:14:06.063895Z", "last_modified_time": "2026-06-26T06:14:06.063917Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794407.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385368/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T06:14:05.887256Z", "last_modified_time": "2026-06-26T06:14:06.322633Z", "date_published": null, "start_time": "2026-09-06T10:00:00Z", "end_time": "2026-09-06T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano", "sv": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano", "en": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rauhanliikekannallepano on yhteisöllinen ja leikkisä esitystaidetapahtumien sarja, joka kysyy: Miltä rauha näyttää ja tuntuu?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3F779FDFA45F76DD00680A4093C8C268/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano", "sv": "http://www.stoa.fi/sv/evenemang/event/3F779FDFA45F76DD00680A4093C8C268/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano", "en": "http://www.stoa.fi/en/events/event/3F779FDFA45F76DD00680A4093C8C268/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano" }, "description": { "fi": "<p>Rauhanliikekannallepano on yhteisöllinen ja leikkisä esitystaidetapahtumien sarja, joka kysyy: Miltä rauha näyttää ja tuntuu?</p><p>Toisissa tiloissa -kollektiivi toteuttaa syyskuun kaksi yleisötyöpajaa yhteistyössä kulttuurikeskusten Kanneltalon ja Stoan kanssa. Työpajoissa osallistujat tekevät yhdessä Toisissa tiloissa -kollektiivin taiteilijoiden kanssa kollektiivisia ruumiillisia tekoja eli “rauhanliikkeitä”. Liikkeitä säestää ja tunnelmaa nostattaa elävä puhallinmusiikki.</p><p>Rauhanliikkeet ovat yhdessä ja samaan aikaan tehtäviä yksinkertaisia toimintoja ja tehtäviä, jotka avartavat havaintojamme ympäristöstä sekä ihmisten välisestä rauhanomaisesta yhdessäolosta, sen muodoista ja mahdollisuuksista. Rauha ei synny vain olemalla rauhallinen tai tekemättä mitään. Rauhantila pitää keksiä yhä uudestaan, yksin ja yhdessä.</p><p><b>Tule mukaan osallistumaan Rauhanliikekannallepanon työpajoihin Stoassa ja Kanneltalossa<(b></p><p>Työpajat järjestetään sunnuntaina 6.9. klo 13-15.30 Stoassa ja lauantaina 12.9. klo 13–15.30 Kannetalossa. Ilmoittaudu mukaan seuraavilla lomakkeilla:<br><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSckO54-iv8NS0gkEqqQjQtPH5dVEpsujTG0R52wB5ayDA-RwQ/viewform/\">Stoan ilmoittautuminen (3.9. saakka)</u></a><br><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLScwM49Omx_4Es3uUan5EiwKVEeqj8KlpsHjg7-guTXZeTvFVQ/viewform\">Kanneltalon ilmoittautuminen (9.9. saakka)</u></a></p><p>Kaikki yli 14-vuotiaat ovat tervetulleita työpajaan ja yli 10-vuotiaat voivat osallistua vanhemman seurassa.</p><p>Työpajat pidetään ulkona kulttuurikeskuksen läheisyydessä. Paikkatieto tarkennetaan myöhemmin. Tarvittaessa kulttuurikeskusten sisätilat ovat käytettävissämme. Varaudu työpajaan pukeutumalla sään mukaisesti liikkumisen ja maan rajassa oleskelun salliviin vaatteisiin ja jalkineisiin. Ota mukaan myös oma vesipullo ja tarvittaessa pientä syötävää.</p><p>Kokoonnumme Stoan aukiolla su 6.9. klo 13 osoitteessa Turunlinnantie 1, Itäkeskus, Helsinki. Kanneltalon tapahtuman yksityiskohdat päivittyvät <u><a href=\"httos://www.kanneltalo.fi/\">Kanneltalon verkkosivuille</u></a>.</p><p><b>Esitystaidetapahtumien sarja huipentuu Kansalaistorilla 19.9.</b></p><p>Kaikkia työpajoihin osallistuneita toivotaan mukaan toteuttamaan Kansalaistorin esitystaidetapahtumaa. Ilmoittautuminen Kansalaistorin tapahtumaan avataan myöhemmin.</p><p>Tule mukaan valmistautumaan rauhaan kanssamme!</p><p><b>Toisissa tiloissa</b> on helsinkiläinen kotimaassa ja kansainvälisesti toimiva esitystaiteen kollektiivi. Ryhmän toiminnan ytimenä ovat ruumiilliset harjoitteet, joiden avulla päästään kosketuksiin erilaisten elämänmuotojen ja ilmiöiden kanssa eli vierailemaan \"toisissa tiloissa\".</p><p><u><a href=\"https://toisissatiloissa.net/rauhanliikekannallepano/\">Lue lisää</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69525/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpp5b54xe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21431/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p2762/?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:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2201313, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-15T11:07:35.846027Z", "last_modified_time": "2026-05-15T11:07:35.846041Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e45f3a7-785b-47a8-ab29-4ba93a38ea0f.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "ikääntyneet ihmiset heiluttavat voimistelussa käytettävää nauhaa aurinkoisessa maisemassa. Kuvan taustalla näkyy metsää.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201313/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-05-15T11:08:12.915288Z", "last_modified_time": "2026-06-25T12:32:48.022847Z", "date_published": "2026-06-25T11:12:08.765000Z", "start_time": "2026-06-30T07:00:00Z", "end_time": "2026-06-30T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Senioripaku Välkky Järvenperässä", "sv": "Senioripaku Välkky i Träskenda", "en": "Senioripaku Välkky in Järvenperä" }, "location_extra_info": null, "provider": { "fi": "Espoon liikuntapalvelut | Espoon kulttuuripalvelut | Espoon kaupunginkirjasto | Lasten kulttuurikeskus Aurora", "sv": "Esbo stads idrotts- och motionstjänster | Esbo stads kulturtjänster | Esbo stadsbibliotek | Barnculturcentret Aurora", "en": "Espoo City Sport Services | Espoo City Cultural Services | Espoo City Library | Children's Cultural Centre Aurora" }, "short_description": { "fi": "Senioripaku Välkky tuo kulttuuria, liikuntaa ja neuvontaa lähellesi.", "sv": "Senioripaku Välkky kommer med kultur, motion och seniorrådgivning till platser nära dig.", "en": "Senioripaku Välkky (Elderly people’s van) brings culture, guided exercise and guidance near you." }, "info_url": { "fi": "http://www.espoo.fi/senioripaku", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/esbos-senioripaku-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/espoos-senioripaku-valkky" }, "description": { "fi": "<p>Ohjelmassa muun muassa liikunnanohjausta ja taikuri Kari.</p><p>Tapahtuma on maksuton.</p><p>Senioripaku Välkky tuo kulttuuria, liikuntaa ja neuvontaa lähellesi tiistaisin toukokuun lopusta syyskuun alkuun. Tule ja ota läheisesi mukaan!</p><p>Toiminta toteutetaan liikunta- ja kulttuuripalvelujen, kirjastopalveluiden, Omnia Espoon työväenopiston, Länsi-Uudenmaan hyvinvointialueen, sekä järjestöjen ja vapaaehtoistoimijoiden yhteistyönä.</p><p>Lisätietoja osoitteessa <a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/espoon-senioripaku-valkky\">espoo.fi/senioripaku</a>.</p>", "sv": "<p>Programmet innehåller bland annat ledd motionsstund och uppträdande av trollkarlen Kari.</p><p>Evenemanget är gratis.</p><p>Senioripaku Välkky kommer med kultur, motion och seniorrådgivning till platser nära dig på tisdagar från slut av maj till början av september. Kom och ta med dig dina anhöriga!</p><p>Verksamheten bedrivs i samarbete mellan idrotts- och kulturtjänsten, bibliotekstjänster, arbetarinstitutet Omnia Espoo, Västra Nylands välfärdsområde samt organisationer och frivilliga aktörer.</p><p>Mer information på webbsidan <a href=\"https://www.espoo.fi/sv/kultur-och-fritid/esbos-senioripaku-valkky\">esbo.fi/senioripaku</a>.</p>", "en": "<p>The program includes guided exercise and magician Kari.</p><p>Participation is free of charge.</p><p>Senioripaku Välkky (Elderly people’s van) brings culture, guided exercise and guidance near you every Tuesday from end of May to the beginning of September. Come for a visit and bring a friend with you!</p><p>The activities are coordinated by sports and culture services, library services, Omnia Espoo Adult Education Centre, Western Uusimaa Wellbeing Services County, as well as organisations and volunteer workers.</p><p>More information at <a href=\"https://www.espoo.fi/en/culture-and-leisure/espoos-senioripaku-valkky\">espoo.fi/en/senioripaku</a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpp5b54xe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpp5b55x4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385367, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T10:40:49.628162Z", "last_modified_time": "2026-06-25T10:40:49.628176Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/05a8b3f8-7440-4f29-a6fd-eca1d4b9cdbe.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Lilalla taustalla iloisen värisiä viirejä sekä vanhempi pariskunta tanssin pyörteissä. Teksti: Palvelutori 10v! Espoopäivänä Pe 28.8. Ohjelmaa kello 09:00-16:00", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385367/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T10:47:41.829323Z", "last_modified_time": "2026-06-25T10:47:41.829339Z", "date_published": null, "start_time": "2026-08-28T06:00:00Z", "end_time": "2026-08-28T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Palvelutori 10v!", "sv": "Service torgets 10‑årsjubileum ", "en": "Service Square 10th Anniversary" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Espoopäivänä perjantaina 28.8.", "sv": "På Esbodagen fredagen den 28.8.", "en": "On Espoo Day, Friday 28 August" }, "info_url": null, "description": { "fi": "<p>Ison Omenan Palvelutori täyttää 10 vuotta!</p><p>Haluamme juhlia merkkipaalua juuri sinun kanssasi yhdessä Palvelutorin </p><p>toimijoiden kanssa Espoopäivänä PE 28.8.. </p><p>Perheen pienimmät voivat aloittaa päivän neuvolasta ja tuoda mukanaan </p><p>lempi pehmonsa terveystarkastukseen. </p><p>Nalleneuvola klo 9–11 ja 13–15.</p><p>Kirjaston oma bändi Svengaavat Hirvet ilahduttaa lapsia Stagella klo 13:00-13:30</p><p>Iltapäivällä Stagella saa laittaa jalalla koreasti, kun päivätansseja tahdittaa Jarmo's band! klo 14:30-16:00.</p><p> Lisäksi luvassa on kaupunkivisailua, OmaEspoo-verkkosivujen & palvelutarjonnan esittelyä ja Hello Espoo -infon pop up -piste</p>", "sv": "<p>Ison Omena Servicepunkt fyller 10 år!</p><p>Vi vill fira denna milstolpe tillsammans med just dig och alla aktörer på Servicepunkten under Esbodagen fre 28.8.</p><p>De minsta i familjen kan börja dagen på rådgivningen och ta med sitt favoritgosedjur på hälsokontroll.</p><p>Nallehälsningen kl. 9–11 och 13–15.</p><p>Bibliotekets eget band Svängande Hjortarna uppträder på Stagen och gläder barnen kl. 13:00–13:30.</p><p>På eftermiddagen blir det dans på Stagen när Jarmo’s band står för musiken kl. 14:30–16:00.</p><p>Dessutom utlovas stadsquiz, presentation av OmaEspoo-webbplatsen och tjänsteutbudet samt en pop up‑punkt från Hello Espoo‑infot.</p>", "en": "<p>Iso Omena Service Square turns 10 years old!</p><p>We want to celebrate this milestone with you and all Service Square partners on Espoo Day, Fri 28 August.</p><p>The youngest family members can start the day at the child health clinic and bring their favourite plush toy for a check‑up.</p><p>Teddy Clinic from 9–11 and 13–15.</p><p>The library’s own band, The Swinging Moose, will delight children on the Stage from 13:00–13:30.</p><p>In the afternoon, it’s time to dance as Jarmo’s band takes over the Stage from 14:30–16:00.</p><p>There will also be a city quiz, a presentation of the OmaEspoo website and services, and a Hello Espoo info pop‑up point.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpp5b55x4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpbvw2vgy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385366, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-25T09:42:09.175038Z", "last_modified_time": "2026-06-25T09:42:09.175053Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e7bb49d4-1881-4edf-9ba9-1370bd663400.jpg", "name": "", "cropping": "435,0,1485,1050", "photographer_name": "Tea Tuominen", "alt_text": "Tea Tuomisen teos abstrakti akryylimaalaus teemalla Valon voima.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385366/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T05:44:55.000979Z", "last_modified_time": "2026-06-25T09:55:05.773182Z", "date_published": "2026-05-12T05:35:00Z", "start_time": "2026-06-29T05:00:00Z", "end_time": "2026-07-24T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Näyttely: Valon voima / Tea Tuominen", "sv": "Utställning: Valon voima / Tea Tuominen", "en": "Art exhibition: Valon voima / Tea Tuominen" }, "location_extra_info": { "fi": "Näyttelyseinä Kaija", "sv": "Utställningsväggen Kaija", "en": "Exhibition wall Kaija" }, "provider": { "fi": "Tea Tuominen", "sv": "Tea Tuominen", "en": "Tea Tuominen" }, "short_description": { "fi": "Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon.", "sv": "Välkommen att besöka utställning i Hagalund biblioteken.", "en": "Welcome to an art exhibition in Tapiola Library." }, "info_url": null, "description": { "fi": "<p><strong>Tapiolan kirjaston Näyttelyseinä Kaija 29.6.-24.7.2026.</strong></p><p><strong>Näyttelyn avajaiset järjestetään tiistaina 30.6.2026 klo 18-19:30.</strong></p><p>Valon voima kertoo hetkistä, joissa jokin alkaa hiljalleen kirkastua. Pienet oivallukset ja valo löytävät tiensä kerrosten läpi ja tuovat esiin uudenlaista selkeyttä ja rohkeutta.</p><p>Abstraktit akryylimaalaukseni syntyvät kerroksittain, harmonisten sävyjen vuoropuhelussa.</p><p>Tervetuloa katsomaan ja pysähtymään kesäpäivän keskellä.</p>", "sv": "<p>Välkommen att besöka utställning i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbvw2vgy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68929", "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:32/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/funky-fossils-forever-10-years-of-hip-hop-kanneltalo-21755617/", "sv": "https://www.lippu.fi/event/funky-fossils-forever-10-years-of-hip-hop-kanneltalo-21755617/", "en": "https://www.lippu.fi/event/funky-fossils-forever-10-years-of-hip-hop-kanneltalo-21755617/" }, "description": null, "price": { "fi": "10 € / 5 €", "sv": "10 € / 5 €", "en": "10 € / 5 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385365, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T09:14:10.900775Z", "last_modified_time": "2026-06-25T09:14:10.900793Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792277.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385365/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T09:14:10.760238Z", "last_modified_time": "2026-06-25T09:14:11.088375Z", "date_published": null, "start_time": "2026-10-10T15:00:00Z", "end_time": "2026-10-10T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Funky Fossils forever – 10 years of hip hop", "sv": "Funky Fossils forever – 10 years of hip hop", "en": "Funky Fossils forever – 10 years of hip hop" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Funky Fossils Collectiven 10-vuotisjuhlassa esitetään ryhmälle tehtyjä koreografioita ja yhteistyöproduktioita vuosien varrelta sekä uusi juhlakoreografia." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/90D23478DE87B9E23E8180D990F1D141/Funky_Fossils_forever_10_years_of_hip_hop_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/90D23478DE87B9E23E8180D990F1D141/Funky_Fossils_forever_10_years_of_hip_hop_", "en": "http://www.kanneltalo.fi/en/events/event/90D23478DE87B9E23E8180D990F1D141/Funky_Fossils_forever_10_years_of_hip_hop_" }, "description": { "fi": "<p>Funky Fossils Collectiven 10-vuotisjuhlassa esitetään ryhmälle tehtyjä koreografioita ja yhteistyöproduktioita vuosien varrelta sekä uusi juhlakoreografia.</p><p>Funky Fossils Collective juhlii tanssin moninaisuutta ja kutsuu kaikenikäisiä tanssimaan ja inspiroitumaan uudenlaiseen tanssitapahtumaan: Koskaan ei ole liian myöhäistä aloittaa!<br> <br>Funky Fossils sai alkunsa tanssija, koreografi Njara Rasolomananan tanssitunneilta vuonna 2016. Siitä lähtien hip hop -ryhmä on esiintynyt hänen tanssikoulunsa esityksissä erilaisissa tapahtumissa. Viime vuosina kausi on huipentunut tanssikoulun joulushow’n Tanssin talossa.</p><p>Vuonna 2024 Funky Fossils Crew itsenäistyi kollektiiviksi, joka on aikuisten hip hop -tanssin harrastajien verkosto. Sen tavoitteena on, että mahdollisimman moni katutanssien harrastaja pääsisi tanssimaan, osaksi yhteisöä luomaan omannäköisiään projekteja.</p><p>Fossiilit syttyvät erilaisten tanssilajien fuusioista ja ryhmä on yhdistänyt hip hopia esimerkiksi afrotanssiin, kansantanssiin ja jazztanssiin koreografien johdolla. Fossiili-ryhmän tanssijoiden liikekielessä voi nähdä vaikutteita hip hopin erilaisista lajeista: breakdancesta, lockingista, housesta tai poppingista. Kaiken ytimessä on kuitenkin hauskanpito ja yhdessäolo.</p><p>Ryhmä on tehnyt yhteistyötä Huffenin (Haga Ungdomsföreningen r.f.) kansantanssijoiden kanssa ja juhlatapahtumassa ryhmät esittävät yhteisen teoksen <i>Gemensam flamma/Yhteinen liekki</i>. Siinä yhdistyvät toisiinsa hip hopin ja kansantanssin liikekielet.</p><p>Ryhmä esitti vuonna 2023 teoksen, jossa yhdistyivät waacking ja afrotanssi, yhdessä MaDance-tanssikoulun DiAfron kanssa. Njara Rasolomananan lisäksi koreografioita ovat ryhmälle tehneet mm. Jérémy Gaudibert (Ranska), Mass (Ruotsi/Tansania), Samantha Tena Hernandez (Alankomaat) ja Augusto Rodriques (Brasilia). Lisäksi monissa tanssikilpailuissa palkittu tanssija, Will Funk for Food -ryhmästä tunnettu Akim Bakhtaoui, on tehnyt ryhmälle juhlakoreografian, joka esitetään ensimmäistä kertaa 10-vuotisjuhlassa.</p><p>Tapahtuma on suunnattu kaikenikäisille.</p><p>Funky Fossils Collectiven juhlavuoden tapahtumien työryhmän muodostavat Päivi Ahlroos, Minna ”Nana” Aro, Minna Pauliina Kataja, Marika Lahtivirta ja Virva Lehtola.</p><p>Kesto: 2 t sis. väliaika</p><p>Tapahtuman kieli suomi (ja englanti)</p><p>https://www.instagram.com/funkyfossilscollective/<br>https://www.facebook.com/fossilsdancecrew/</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68929/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69519", "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:32/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552789/?affiliate=HKK", "sv": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552789/?affiliate=HKK", "en": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552789/?affiliate=HKK" }, "description": null, "price": { "fi": "27,40 € / 24,30 € /18,30 €", "sv": "27,40 € / 24,30 € /18,30 €", "en": "27,40 € / 24,30 € /18,30 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385364, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T08:15:17.689677Z", "last_modified_time": "2026-06-25T08:15:17.689702Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787924.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385364/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T08:15:17.579436Z", "last_modified_time": "2026-06-25T08:15:17.899327Z", "date_published": null, "start_time": "2026-10-08T15:00:00Z", "end_time": "2026-10-08T16:10:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?", "sv": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?", "en": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "WHAT IS LOVE on tanssillinen tutkimusmatka antiikin rakkauskäsitykseen; katsaus rakkauden olemukseen ja ytimeen." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C32E24B0DE95DACD6E4F108FEB4307B2/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C32E24B0DE95DACD6E4F108FEB4307B2/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_", "en": "http://www.kanneltalo.fi/en/events/event/C32E24B0DE95DACD6E4F108FEB4307B2/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_" }, "description": { "fi": "<p>WHAT IS LOVE on tanssillinen tutkimusmatka antiikin rakkauskäsitykseen; katsaus rakkauden olemukseen ja ytimeen.</p><p>Mistä on kysymys, kun rakastetaan ja rakastutaan? Mihin pyritään? Mitä ihmisessä tapahtuu? Miltä tuntuu? Kuka ja mikä on Eros? Mitä on halu?</p><p>Rakkaus on latistettu, imelletty ja inflaation kärsinyt käsite ja sen nimissä on helppo myydä jos vaikka mitä. Teos pyrkii saamaan kiinni rakkauden filosofisesta ulottuvuudesta. Miksi rakkaus on alkuvoima ja mikä voisi olla sen perusta ja lopullinen tavoite.</p><p>Esityksen kieli on tanssia, liikettä, musiikkia, laulua, ääntä, puhetta ja hiljaisuutta.</p><p><b>Käsikirjoitus ja ohjaus</b>: Laura Jäntti <br><b>Dramaturgia</b>: Laura Jäntti ja Katja Lundén<br><b>Koreografia</b>: Katja Lundén<br><b>Musiikki</b>: Janne Halonen</p><p><b>Esiintyjät</b>: Janne Marja-aho, Katja Lundén, Senja Suvanto, Laura Viding, Janne Halonen</p><p><b>Valosuunnittelu</b>: Kalle Paasonen<br><b>Äänisuunnittelu</b>: Janne Halonen/Juho Suominen</p><p>Kesto: 1 t 10 min</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69519/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69517", "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:32/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552788/", "sv": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552788/", "en": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552788/" }, "description": null, "price": { "fi": "27,40 € / 24,30 € / 18,30 €", "sv": "27,40 € / 24,30 € / 18,30 €", "en": "27,40 € / 24,30 € / 18,30 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385363, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T08:15:17.036660Z", "last_modified_time": "2026-06-25T08:15:17.036685Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787922.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385363/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T08:15:16.882111Z", "last_modified_time": "2026-06-25T08:15:17.228595Z", "date_published": null, "start_time": "2026-10-07T15:00:00Z", "end_time": "2026-10-07T16:10:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?", "sv": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?", "en": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "WHAT IS LOVE on tanssillinen tutkimusmatka antiikin rakkauskäsitykseen; katsaus rakkauden olemukseen ja ytimeen." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9F375344B7ACDF695AA67090349B96B3/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9F375344B7ACDF695AA67090349B96B3/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_", "en": "http://www.kanneltalo.fi/en/events/event/9F375344B7ACDF695AA67090349B96B3/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_" }, "description": { "fi": "<p>WHAT IS LOVE on tanssillinen tutkimusmatka antiikin rakkauskäsitykseen; katsaus rakkauden olemukseen ja ytimeen.</p><p>Mistä on kysymys, kun rakastetaan ja rakastutaan? Mihin pyritään? Mitä ihmisessä tapahtuu? Miltä tuntuu? Kuka ja mikä on Eros? Mitä on halu?</p><p>Rakkaus on latistettu, imelletty ja inflaation kärsinyt käsite ja sen nimissä on helppo myydä jos vaikka mitä. Teos pyrkii saamaan kiinni rakkauden filosofisesta ulottuvuudesta. Miksi rakkaus on alkuvoima ja mikä voisi olla sen perusta ja lopullinen tavoite.</p><p>Esityksen kieli on tanssia, liikettä, musiikkia, laulua, ääntä, puhetta ja hiljaisuutta.</p><p><b>Käsikirjoitus ja ohjaus</b>: Laura Jäntti <br><b>Dramaturgia</b>: Laura Jäntti ja Katja Lundén<br><b>Koreografia</b>: Katja Lundén<br><b>Musiikki</b>: Janne Halonen</p><p><b>Esiintyjät</b>: Janne Marja-aho, Katja Lundén, Senja Suvanto, Laura Viding, Janne Halonen</p><p><b>Valosuunnittelu</b>: Kalle Paasonen<br><b>Äänisuunnittelu</b>: Janne Halonen/Juho Suominen</p><p>Kesto: 1 t 10 min</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69517/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69516", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/dizzy-queens-a-jazzy-christmas-affair-vuotalo-21849842/", "sv": "https://www.lippu.fi/event/dizzy-queens-a-jazzy-christmas-affair-vuotalo-21849842/", "en": "https://www.lippu.fi/event/dizzy-queens-a-jazzy-christmas-affair-vuotalo-21849842/" }, "description": null, "price": { "fi": "24 / 18 €", "sv": "24 / 18 €", "en": "24 / 18 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385361, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T07:14:50.622080Z", "last_modified_time": "2026-06-25T07:14:50.622095Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792332.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385361/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T07:14:50.500075Z", "last_modified_time": "2026-06-25T07:14:50.764528Z", "date_published": null, "start_time": "2026-12-17T17:00:00Z", "end_time": "2026-12-17T19:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "DizzyQueens and Grani Swing Sextet: A Christmas Affair!", "sv": "DizzyQueens and Grani Swing Sextet: A Christmas Affair!", "en": "DizzyQueens and Grani Swing Sextet: A Christmas Affair!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Upeat jazzyhtyeet DizzyQueens ja Grani Swing Sextet esittävät yhdessä ajattomia jazzklassikoita sekä rakastetuimpia joululauluja.", "sv": "DizzyQueens och Grani Swing Sextet presenterar en glittrande jazzkonsert.", "en": "DizzyQueens and Grani Swing Sextet present a sparkling jazz concert." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C84A2194B007E18073FBA6963E62DF34/DizzyQueens_and_Grani_Swing_Sextet_A_Christmas_Affair_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C84A2194B007E18073FBA6963E62DF34/DizzyQueens_and_Grani_Swing_Sextet_A_Christmas_Affair_", "en": "http://www.vuotalo.fi/en/events/event/C84A2194B007E18073FBA6963E62DF34/DizzyQueens_and_Grani_Swing_Sextet_A_Christmas_Affair_" }, "description": { "fi": "<p>Upeat jazzyhtyeet DizzyQueens ja Grani Swing Sextet esittävät yhdessä ajattomia jazzklassikoita sekä rakastetuimpia joululauluja.</p><p>DizzyQueensin laulajat:<br>Lidia Bäck<br>Daniela Fogelholm<br>Nora Grotenfelt</p><p>Grani Swing Sextet:<br>Kimmo Leppälä – tenori- ja alttosaksofoni, klarinetti<br>Risto Salmi – tenori- ja altto saksofoni, klarinetti<br>Mauri Saarikoski – viulu<br>Zhenia Gimer – piano, klarinetti<br>Fred Ahlberg – kitara<br>Wade Mikkola – kontrabasso<br>Rabbe Hjelt – rummut</p><p>Klubi-ilta, A-oikeudet, Café Pokkari huolehtii tarjoilusta, ovet avataan klo 17.30.<br>Konsertin kesto: noin 2 tuntia, sisältäen väliajan.<br>Liput à 24 / 18 € @ Lippu.fi tai lippuautomaatilta ovelta.</p>", "sv": "<p>DizzyQueens och Grani Swing Sextet presenterar en glittrande jazzkonsert.</p><p>DizzyQueens sångare:<br>Lidia Bäck<br>Daniela Fogelholm<br>Nora Grotenfelt</p><p>Grani Swing Sextet:<br>Kimmo Leppälä – tenor & altsaxofon, klarinett<br>Risto Salmi – tenor & altsaxofon, klarinett<br>Mauri Saarikoski – violin<br>Zhenia Gimer – piano, klarinett<br>Fred Ahlberg – gitarr<br>Wade Mikkola – kontrabas <br>Rabbe Hjelt – trummor</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.<br>Konsertens längd: är ca 2h inkl. paus.<br>Biljetter à 24 / 18 € via Lippu.fi eller från biljettautomaten vid dörren.</p>", "en": "<p>DizzyQueens and Grani Swing Sextet present a sparkling jazz concert.</p><p>DizzyQueens singers:<br>Lidia Bäck<br>Daniela Fogelholm<br>Nora Grotenfelt</p><p>Grani Swing Sextet:<br>Kimmo Leppälä – tenor & alto saxophone, clarinet <br>Risto Salmi – tenor & alto saxophone, clarinet <br>Mauri Saarikoski – violin<br>Zhenia Gimer – piano, clarinet <br>Fred Ahlberg – guitar<br>Wade Mikkola – kontrabass <br>Rabbe Hjelt – drums</p><p>Club night, refreshments by Café Pokkari, starting from 5:30 PM.<br>Duration: about 2 hours, including intermission.<br>Tickets à 24 / 18 € @ Lippu.fi or from the ticket machine at the door.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69516/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68653", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385360, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T07:14:44.280058Z", "last_modified_time": "2026-06-25T07:14:44.280073Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791506.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385360/?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-06-25T07:14:44.177119Z", "last_modified_time": "2026-06-25T07:14:44.428008Z", "date_published": null, "start_time": "2026-10-10T08:00:00Z", "end_time": "2026-10-10T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tarua vai totta – Avoin työpajapäivä", "sv": "Tarua vai totta – Avoin työpajapäivä", "en": "Tarua vai totta – Avoin työpajapäivä" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalon työpajapäivässä koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5D3B312B85B8F9D055B5324AF47A5F4D/Tarua_vai_totta_Avoin_tyopajapaiva", "sv": "http://www.annantalo.fi/sv/evenemang/event/5D3B312B85B8F9D055B5324AF47A5F4D/Tarua_vai_totta_Avoin_tyopajapaiva", "en": "http://www.annantalo.fi/en/events/event/5D3B312B85B8F9D055B5324AF47A5F4D/Tarua_vai_totta_Avoin_tyopajapaiva" }, "description": { "fi": "<p>Annantalon työpajapäivässä koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p>Työpajoissa sukelletaan tarinoihin ja satuihin – eikä kaikissa jutuissa ei aina ole päätä tai häntää! Pajoissa pääset tekemään satumaan asukkeja ja varjokuvia, kuuntelemaan tarinoita sekä kisailemaan Satutietäjän tittelistä!</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Älyvapaa-yhteisö.</p><p>Tapahtuma on maksuton eikä vaadi ennakkoilmoittautumista. Tarkempi ohjelma julkaistaan Annantalon verkkosivujen tapahtumakalenterissa lähempänä tapahtumaa.</p><p>Työpajat ovat käynnissä klo 11–14. Viimeiset osallistujat otetaan sisään pajoihin klo 13.30.</p><p>Työpajojen työskentelykieli on suomi ja ne sopivat kaiken ikäisille – alle 8-vuotiaat lapset aikuisen kanssa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68653/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69221", "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:354/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/jussu-poyhonen/", "sv": "https://www.lippu.fi/artist/jussu-poyhonen/", "en": "https://www.lippu.fi/artist/jussu-poyhonen/" }, "description": null, "price": { "fi": "15 € / 12 €", "sv": "15 € / 12 €", "en": "15 € / 12 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385359, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T07:14:43.195563Z", "last_modified_time": "2026-06-25T07:14:43.195579Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793525.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385359/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2026-06-25T07:14:43.096533Z", "last_modified_time": "2026-06-25T07:14:43.394295Z", "date_published": null, "start_time": "2026-10-05T15:00:00Z", "end_time": "2026-10-05T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jussu Pöyhönen – Juurilla-klubi", "sv": "Jussu Pöyhönen", "en": "Jussu Pöyhönen" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubin solistina Kannelsalissa Jussu Pöyhönen." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen", "en": "http://www.kanneltalo.fi/en/events/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen" }, "description": { "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubin solistina Kannelsalissa Jussu Pöyhönen.</p><p><b>Jussu Pöyhönen</b> on laulaja ja lauluntekijä, joka tunnetaan parhaiten 30-vuotisesta urastaan Suurlähettiläät-yhtyeen nokkamiehenä. Hän on tehnyt myös useita soololevyjä, sekä teatterimusiikkia ja esiintynyt teatterissa.</p><p>Viimeksi Jussu esiintyi Kanneltalon lavalla helmikuussa teatteriklovneriamusikaalissa <i>Täydellinen musikaali – matka manalaan</i>, johon hän teki myös musiikin. Juurilla-klubilla hän pääsee tulkitsemaan itselleen mieluisten artistien, kuten Leonard Cohenin, Tom Waitsin ja JJ Calen musiikkia, samoin kuin kappaleita hänen omalta englanninkieliseltä <i>Bel Vel</i> -albumiltaan (2013).</p><p>Edellisen kerran Jussu oli Juurilla-klubin vieraana korona-aikaan, jolloin keikka tehtiin striimaamalla. Nyt päätimme antaa Jussulle ja Kanneltalon yleisölle mahdollisuuden kohdata livenä!</p><p>Maanantai-illan suosikkiklubin <b>Juurilla</b> sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. <br> <br>Juurilla-klubia isännöivät tuttuun tapaan <b>Juki Välipakka ja The Rooty Toot Toot Band</b>:</p><p>Juki Välipakka – laulu & kitara <br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar <br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut <br> <br>Kesto: 1 tunti</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69221/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68936", "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/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T06:15:12.666325Z", "last_modified_time": "2026-06-25T06:15:12.666352Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792282.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385357/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T06:15:12.444200Z", "last_modified_time": "2026-06-25T07:14:42.482517Z", "date_published": null, "start_time": "2026-10-02T15:00:00Z", "end_time": "2026-10-02T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Humphrey Mubba | Trio Mandeng – Global Club Nights", "sv": "Humphrey Mubba | Trio Mandeng – Global Club Nights", "en": "Humphrey Mubba | Trio Mandeng – Global Club Nights" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Global Club Nights on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights 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/1BE1DCF3C4C9544F1D52895E1A556B20/Humphrey_Mubba_Trio_Mandeng", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1BE1DCF3C4C9544F1D52895E1A556B20/Humphrey_Mubba_Trio_Mandeng", "en": "http://www.kanneltalo.fi/en/events/event/1BE1DCF3C4C9544F1D52895E1A556B20/Humphrey_Mubba_Trio_Mandeng" }, "description": { "fi": "<p>Global Club Nights 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ä.</p><p>Maksuttomat klubi-illat alkavat aikaisin, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoaa mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p><b>Humphrey Mubba</b> on tansanialainen jazzbasisti, säveltäjä ja opettaja, joka asuu Suomessa. Hänen vanhempansa ovat kotoisin Tansanian Kilimanjaron alueelta, missä hän kasvoi monikulttuurisessa perheessä. Hänen musiikissaan syvät afrikkalaiset juuret yhdistyvät kansainvälisiin jazzvaikutteisiin. Soundissa tansanialaiset ja afrikkalaiset rytmit sulautuvat jazzimprovisaation vapauteen, luoden energistä, liikettä herättävää musiikkia, jossa tanssi ja musiikki ovat erottamattomia.</p><p>Richard Bonan, Etienne Mbappén ja Hugh Masekelan kaltaisten artistien vaikutteita saanut Mubba on kiertänyt kansainvälisesti ja esiintynyt muun muassa Sauti za Busara ja BC International Jazz Festival -festivaaleilla. Hänen debyyttialbumiansa <i>Time</i> voi kuunnella kaikilla suurimmilla suoratoistopalveluilla.</p><p><b>Trio Mandeng</b> soittaa bluesin, jazzin ja latinon juurilla. Tyylilajina on klassinen länsiafrikkalainen Mande-musiikkiperinne, jossa kora-harpun ja balafonin herkkiä melodiakudelmia ryydittävät akustiset perkussiorytmit.</p><p>Malilais-burkinalais-guinealais-suomalaisen trion soittajat ovat jokainen tahollaan genren kansainvälisesti noteerattuja virtuooseja. Lyriikat soivat usealla läntisen Afrikan kielellä, hetkittäin myös suomimaustein, ja viimeistään sävelkieltä ymmärtävät kaikki akustisen livegrooven ystävät kansallisuudesta riippumatta.</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 -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p>", "sv": "<p>Global Club Nights ä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.</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 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 2 October features Humphrey Mubba and Trio Mandeng. The second club night will take place on 20 November during Children’s Rights Week.</p><p><b>Humphrey Mubba</b> is a Tanzanian jazz bassist, composer, and educator based in Finland. Born to parents from Tanzania’s Kilimanjaro region and raised in a multicultural family, his music reflects deep African roots combined with global jazz influences. His sound blends Tanzanian and African rhythms with the freedom of jazz improvisation, creating energetic, movement-driven music where dance and music are inseparable.</p><p>Influenced by artists such as Richard Bona, Etienne Mbappé, and Hugh Masekela, Mubba has toured internationally and performed at festivals including Sauti za Busara and BC International Jazz Festival. His debut album <i>Time</i> is available on all major platforms.</p><p><b>Trio Mandeng's</b> sound embodies the origins of blues, jazz, and Latin music. The style represents the ancient Mandé tradition of West Africa, where the intricate melodies of the kora and balafon harmonise with acoustic percussion rhythms.</p><p>The members of this Malian-Burkinabé-Guinean-Finnish trio are all internationally renowned virtuosos of the genre. The lyrics are served in several West African languages, at times even spiced with a pinch of Finnish, and the tonal language will be understood by all lovers of acoustic live music, regardless of nationality.</p><p>Global Club Nights aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Global Club Nights has been produced in cooperation with the Sibelius Academy’s Global Music Department and Kanneltalo.</p><p>The events aim to build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68936/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69260", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?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/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384981, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T12:13:54.968738Z", "last_modified_time": "2026-06-05T12:13:54.968753Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793583.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384981/?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-06-05T12:13:54.783673Z", "last_modified_time": "2026-06-25T07:14:32.885320Z", "date_published": null, "start_time": "2026-08-25T07:30:00Z", "end_time": "2026-08-25T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "BUU-klubben LIVE", "sv": "BUU-klubben LIVE", "en": "BUU-klubben LIVE" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!", "sv": "Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!", "en": "Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A953A77C189A5CA2C5E9EF1ECAF63F73/BUU-klubben_LIVE", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A953A77C189A5CA2C5E9EF1ECAF63F73/BUU-klubben_LIVE", "en": "http://www.vuotalo.fi/en/events/event/A953A77C189A5CA2C5E9EF1ECAF63F73/BUU-klubben_LIVE" }, "description": { "fi": "<p>Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Tervetuloa BUU-klubbenin vauhdikkaaseen esitykseen BUU-klubben LIVE!</p><p>Esitys sisältää lauluja, leikkejä ja yllätyksiä. Se sopii 3–7-vuotiaille lapsille ja kestää noin puoli tuntia. Esityksen jälkeen sinulla on mahdollisuus halutessasi tavata ohjelman juontajat.</p><p>BUU-klubin kesäkiertue alkaa Vuotalosta maanantaina 24.8. klo 18. Tiistaina 25.8., järjestetään kaksi esitystä klo 9 ja 10.30, jotka on tarkoitettu erityisesti päiväkodeille ja esikouluille.</p><p>Esitys on ilmainen, mutta sinun on varattava paikkasi, jotta saat varmasti paikan. Nähdään Vuotalossa!</p><p>Varauslinkit (sivut avautuvat ruotsiksi):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Ilmoittautuminen, maanantai 24.8. klo 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Ilmoittautuminen, tiistai 25.8. klo 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Ilmoittautuminen, tiistai 25.8. klo 10.30</u></a><br>Tapahtumiin voi ilmoittaa päiväkoti- tai esikouluryhmän, tai pienemmänkin kokoonpanon.</p><p>Tapahtuma on ruotsinkielinen, ja suunnattu päiväkoti- ja esikouluikäisille lapsille sekä lapsiperheille.</p><p>Lisää tietoa BUU-klubbenista sekä muut esityspaikat ja -ajat löydät <u><a href=\"https://buu.yle.fi/\">BUU-klubbenin omilta sivuilta (ruotsiksi)</u></a>.</p><p><b>Esittelyteksti ruotsiksi:</b></p><p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p>", "sv": "<p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p><p>Bokningslänkar:<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Bokning, måndag 24.8 kl. 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Bokning, tisdag 25.8 kl. 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Bokning, tisdag 25.8 kl. 10.30</u></a><br>Man kan anmäla en daghem- eller förskolegrupp, eller en mindre grupp, till evenemangen.</p><p>Evenemanget hålls på svenska och är riktade till barn i daghems- och förskole-åldern samt barnfamiljer.</p><p>Mer information om BUU-klubben samt övriga spelplatser och tider hittar du <u><a href=\"https://buu.yle.fi/\">på BUU-klubbens egna sidor</u></a>.</p>", "en": "<p>Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Welcome to BUU-klubben's action-packed show, BUU-klubben LIVE!</p><p>The show consists of songs, games and surprises. It is suitable for children aged 3–7 and lasts about half an hour. After the show, you’ll have the chance to meet the presenters if you’d like.</p><p>BUU-klubben's summer tour kicks off at Vuosaari House on Monday 24 August at 18.00. Two additional shows are held the following day, Tuesday 25 August, at 9.00 and 10.30, aimed primarily at daycare and pre-school groups.</p><p>The show is free of charge, but you’ll need to book your seat. We hope to see you there!Booking links (in Swedish):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Booking, Monday 24 August 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Booking, tuesday 25 August 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Booking, Tuesday 25 August 10.30</u></a><br>You can register a daycare or preschool group, or a smaller group.</p><p>The event is held in Swedish and is targeted towards daycare and preschool-aged children, and families.</p><p>For more information about BUU-klubben, as well as other performance locations and times, visit <u><a href=\"https://buu.yle.fi/\">BUU-klubben’s website (in Swedish)</u></a>.</p><p><b>About the show in Swedish:</b></p><p><span lang=\"sv\">Välkommen på BUU-klubbens fartfyllda show BUU-klubben live!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</span></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69260/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69259", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?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/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384980, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T12:13:54.231985Z", "last_modified_time": "2026-06-05T12:13:54.231999Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793582.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384980/?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-06-05T12:13:54.038146Z", "last_modified_time": "2026-06-25T07:14:32.322711Z", "date_published": null, "start_time": "2026-08-25T06:00:00Z", "end_time": "2026-08-25T06:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "BUU-klubben LIVE", "sv": "BUU-klubben LIVE", "en": "BUU-klubben LIVE" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!", "sv": "Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!", "en": "Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE", "sv": "http://www.vuotalo.fi/sv/evenemang/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE", "en": "http://www.vuotalo.fi/en/events/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE" }, "description": { "fi": "<p>Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Tervetuloa BUU-klubbenin vauhdikkaaseen esitykseen BUU-klubben LIVE!</p><p>Esitys sisältää lauluja, leikkejä ja yllätyksiä. Se sopii 3–7-vuotiaille lapsille ja kestää noin puoli tuntia. Esityksen jälkeen sinulla on mahdollisuus halutessasi tavata ohjelman juontajat.</p><p>BUU-klubin kesäkiertue alkaa Vuotalosta maanantaina 24.8. klo 18. Tiistaina 25.8., järjestetään kaksi esitystä klo 9 ja 10.30, jotka on tarkoitettu erityisesti päiväkodeille ja esikouluille.</p><p>Esitys on ilmainen, mutta sinun on varattava paikkasi, jotta saat varmasti paikan. Nähdään Vuotalossa!</p><p>Varauslinkit (sivut avautuvat ruotsiksi):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Ilmoittautuminen, maanantai 24.8. klo 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Ilmoittautuminen, tiistai 25.8. klo 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Ilmoittautuminen, tiistai 25.8. klo 10.30</u></a><br>Tapahtumiin voi ilmoittaa päiväkoti- tai esikouluryhmän, tai pienemmänkin kokoonpanon.</p><p>Tapahtuma on ruotsinkielinen, ja suunnattu päiväkoti- ja esikouluikäisille lapsille sekä lapsiperheille.</p><p>Lisää tietoa BUU-klubbenista sekä muut esityspaikat ja -ajat löydät <u><a href=\"https://buu.yle.fi/\">BUU-klubbenin omilta sivuilta (ruotsiksi)</u></a>.</p><p><b>Esittelyteksti ruotsiksi:</b></p><p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p>", "sv": "<p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p><p>Bokningslänkar:<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Bokning, måndag 24.8 kl. 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Bokning, tisdag 25.8 kl. 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Bokning, tisdag 25.8 kl. 10.30</u></a><br>Man kan anmäla en daghem- eller förskolegrupp, eller en mindre grupp, till evenemangen.</p><p>Evenemanget hålls på svenska och är riktade till barn i daghems- och förskole-åldern samt barnfamiljer.</p><p>Mer information om BUU-klubben samt övriga spelplatser och tider hittar du <u><a href=\"https://buu.yle.fi/\">på BUU-klubbens egna sidor</u></a>.</p>", "en": "<p>Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Welcome to BUU-klubben's action-packed show, BUU-klubben LIVE!</p><p>The show consists of songs, games and surprises. It is suitable for children aged 3–7 and lasts about half an hour. After the show, you’ll have the chance to meet the presenters if you’d like.</p><p>BUU-klubben's summer tour kicks off at Vuosaari House on Monday 24 August at 18.00. Two additional shows are held the following day, Tuesday 25 August, at 9.00 and 10.30, aimed primarily at daycare and pre-school groups.</p><p>The show is free of charge, but you’ll need to book your seat. We hope to see you there!Booking links (in Swedish):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Booking, Monday 24 August 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Booking, tuesday 25 August 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Booking, Tuesday 25 August 10.30</u></a><br>You can register a daycare or preschool group, or a smaller group.</p><p>The event is held in Swedish and is targeted towards daycare and preschool-aged children, and families.</p><p>For more information about BUU-klubben, as well as other performance locations and times, visit <u><a href=\"https://buu.yle.fi/\">BUU-klubben’s website (in Swedish)</u></a>.</p><p><b>About the show in Swedish:</b></p><p><span lang=\"sv\">Välkommen på BUU-klubbens fartfyllda show BUU-klubben live!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</span></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69259/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }