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&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 11838, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=2&publisher_ancestor=ahjo%3A00001", "previous": null }, "data": [ { "id": "kulke:68374", "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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1792306, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T14:13:15.236210Z", "last_modified_time": "2026-04-02T14:13:15.236226Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780005.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792306/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-02T14:13:15.167882Z", "last_modified_time": "2026-04-02T14:13:15.350762Z", "date_published": null, "start_time": "2026-06-11T10:00:00Z", "end_time": "2026-06-11T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2954B82828D52F7AE05F75EAE7D6F450/Kesan_taidepajat_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2954B82828D52F7AE05F75EAE7D6F450/Kesan_taidepajat_Vuotalossa", "en": "http://www.vuotalo.fi/en/events/event/2954B82828D52F7AE05F75EAE7D6F450/Kesan_taidepajat_Vuotalossa" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Taidepajat järjestetään Vuotalon pihalla maanantaista perjantaihin 8.-11.6.2026. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>to 11.6. klo 13–15 Tup, tup, tuputus!</b><br>Tuputtamalla maalia itsetekemiin sabluunoihin ja toistamalla niiden kuvioita saamme upean maalauksen.</p><p>Työpajojen ohjaaja: Chloé Mahy-Hulkko <br>Ohjauskielet: suomi, englanti ja ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p>" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille." }, "provider": null, "name": { "fi": "Kesän taidepajat Vuotalossa – Tup, tup, tuputus!", "sv": "Kesän taidepajat Vuotalossa", "en": "Kesän taidepajat Vuotalossa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68374/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68373", "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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1792305, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T14:13:14.867065Z", "last_modified_time": "2026-04-02T14:13:14.867078Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780004.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792305/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-02T14:13:14.778608Z", "last_modified_time": "2026-04-02T14:13:14.979633Z", "date_published": null, "start_time": "2026-06-10T07:00:00Z", "end_time": "2026-06-10T09: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DE3CDCAA7E1A2517838B06C36E16267B/Kesan_taidepajat_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DE3CDCAA7E1A2517838B06C36E16267B/Kesan_taidepajat_Vuotalossa", "en": "http://www.vuotalo.fi/en/events/event/DE3CDCAA7E1A2517838B06C36E16267B/Kesan_taidepajat_Vuotalossa" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Taidepajat järjestetään Vuotalon pihalla maanantaista perjantaihin 8.-11.6.2026. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>ke 10.6. klo 10–12 Valo herättää värit eloon</b><br>Silkkipaperista ja liisteristä luodaan kaunis läpikuultava ikkunakoriste.</p><p>Työpajojen ohjaaja: Chloé Mahy-Hulkko <br>Ohjauskielet: suomi, englanti ja ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p>" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille." }, "provider": null, "name": { "fi": "Kesän taidepajat Vuotalossa – Valo herättää värit eloon", "sv": "Kesän taidepajat Vuotalossa", "en": "Kesän taidepajat Vuotalossa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68373/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68371", "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:734/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1792304, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T14:13:14.535019Z", "last_modified_time": "2026-04-02T14:13:14.535034Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780003.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792304/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-02T14:13:14.460413Z", "last_modified_time": "2026-04-02T14:13:14.635290Z", "date_published": null, "start_time": "2026-06-09T10:00:00Z", "end_time": "2026-06-09T12: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/73BC25D27961289F043C167DA6DB3CFB/Kesan_taidepajat_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/73BC25D27961289F043C167DA6DB3CFB/Kesan_taidepajat_Vuotalossa", "en": "http://www.vuotalo.fi/en/events/event/73BC25D27961289F043C167DA6DB3CFB/Kesan_taidepajat_Vuotalossa" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Taidepajat järjestetään Vuotalon pihalla maanantaista perjantaihin 8.-11.6.2026. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>ti 9.6. klo 13–15 Toisen roska on toiselle aarre</b><br>Sommitellaan kierrätysmateriaaleista pienikokoinen kullattu taideteos.</p><p>Työpajojen ohjaaja: Chloé Mahy-Hulkko <br>Ohjauskielet: suomi, englanti ja ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p>" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille." }, "provider": null, "name": { "fi": "Kesän taidepajat Vuotalossa – Toisen roska on toiselle aarre", "sv": "Kesän taidepajat Vuotalossa", "en": "Kesän taidepajat Vuotalossa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68371/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68368", "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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1792303, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T14:13:14.164406Z", "last_modified_time": "2026-04-02T14:13:14.164422Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779993.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792303/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-02T14:13:14.052066Z", "last_modified_time": "2026-04-02T14:13:14.323429Z", "date_published": null, "start_time": "2026-06-08T07:00:00Z", "end_time": "2026-06-08T09: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/21FCBB844FA8D20CF08EC7B1DDD024E3/Kesan_taidepajat_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/21FCBB844FA8D20CF08EC7B1DDD024E3/Kesan_taidepajat_Vuotalossa", "en": "http://www.vuotalo.fi/en/events/event/21FCBB844FA8D20CF08EC7B1DDD024E3/Kesan_taidepajat_Vuotalossa" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin. Taidepajat järjestetään Vuotalon pihalla maanantaista perjantaihin 8.-11.6.2026.</p><p><b>ma 8.6. klo 10–12 Kuplamaalaus</b><br>Tänään maalataan hassulla tavalla: saippuakuplilla!</p><p>Työpajojen ohjaaja: Chloé Mahy-Hulkko <br>Ohjauskielet: suomi, englanti ja ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p>" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja pihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille." }, "provider": null, "name": { "fi": "Kesän taidepajat Vuotalossa – Kuplamaalaus", "sv": "Kesän taidepajat Vuotalossa", "en": "Kesän taidepajat Vuotalossa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68368/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68118", "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:32/?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: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494887, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T13:13:40.748552Z", "last_modified_time": "2026-02-17T13:13:40.748570Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780771.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494887/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-17T13:13:40.625436Z", "last_modified_time": "2026-04-02T12:13:02.072077Z", "date_published": null, "start_time": "2026-06-13", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_", "sv": "http://www.stoa.fi/sv/evenemang/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_", "en": "http://www.stoa.fi/en/events/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_" }, "description": { "fi": "<p>Stoan sisätilat ja aukio täyttyvät katukulttuurilla lauantaina 13.6!</p><p>Stoa Hip Hop Saturday on nuorille ja nuorille aikuisille suunnattu katukulttuuritapahtuma. Tapahtumassa voit sukeltaa Hip Hopin saloihin, oppia uutta, hikoilla, nauttia muiden tekemisestä, fiilistellä hyvää meininkiä tai tehdä katumuotilöytöjä.</p><p>Tapahtuma toteutetaan yhteistyössä useiden Hip Hop- ja katukulttuuritoimijoiden kanssa. Mukana mm. musiikkia, tanssia, graffitia ja muotia.</p><p>Ohjelma tarkentuu myöhemmin. Saralta saa lisätietoja. Ohjelmarunko saadaan toivottavasti valmiiksi maaliskuun aikana ja viimeistään huhtikuun puoliväliin mennessä.</p><p>Toteutetaan yhteistyössä Stoan palveluiden kesken.</p>", "sv": "<p>Stoas lokaler och Stoaplatsen fylls av gatukultur lördagen den 13 juni!</p><p>Stoa Hip Hop Saturday är ett gatukulturevenemang för unga och unga vuxna. Under evenemanget kan du dyka ner i hiphopens hemligheter, lära dig nya saker, svettas, njuta av det som andra gör, ta del av den goda stämningen och göra gatumodefynd.</p><p>Evenemanget ordnas i samarbete med flera aktörer inom hiphop och gatukultur. Det blir bland annat musik, dans, graffiti och mode.</p><p>Programmet preciseras senare.</p><p>Genomförs som ett samarbete mellan Stoas tjänster.</p>", "en": "<p>Stoa's interior spaces and Stoa square will be filled with street culture on Saturday 13 June!</p><p>Stoa Hip Hop Saturday is a street culture event for young people and young adults. At the event, you can delve into the world of hip hop, learn something new, sweat, enjoy what others are doing, savour the atmosphere or discover street fashion pieces.</p><p>The event is organised in collaboration with several hip hop and street culture operators. The event will feature music, dance, graffiti and fashion.</p><p>The programme will be specified later.</p><p>Implemented in collaboration by Stoa services.</p>" }, "location_extra_info": null, "short_description": { "fi": "Stoan sisätilat ja aukio täyttyvät katukulttuurilla lauantaina 13.6!", "sv": "Stoas lokaler och Stoaplatsen fylls av gatukultur lördagen den 13 juni!", "en": "Stoa's interior spaces and Stoa square will be filled with street culture on Saturday 13 June!" }, "provider": null, "name": { "fi": "Stoa Hip Hop Saturday", "sv": "Stoa Hip Hop Saturday", "en": "Stoa Hip Hop Saturday" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68118/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68367", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:732/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1792145, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T12:12:54.212097Z", "last_modified_time": "2026-04-02T12:12:54.212114Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784219.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792145/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T12:12:54.108770Z", "last_modified_time": "2026-04-02T12:12:54.353027Z", "date_published": null, "start_time": "2026-04-16T13:30:00Z", "end_time": "2026-04-16T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B56942EA31E808DF6DDA1EFEFB88EDDB/Salsaa_Vuotalon_aulassa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B56942EA31E808DF6DDA1EFEFB88EDDB/Salsaa_Vuotalon_aulassa", "en": "http://www.vuotalo.fi/en/events/event/B56942EA31E808DF6DDA1EFEFB88EDDB/Salsaa_Vuotalon_aulassa" }, "description": { "fi": "<p>Tervetuloa tanssimaan salsaa sekä nauttimaan musiikista ja kahvitarjoiluista Vuotalon aulaan!</p><p>Vipattaako tanssijalkaa tai tekeekö mieli vain nauttia salsamusiikista ja hyvistä tarjoiluista?</p><p>Vuotalon aulassa tarjoillaan avoimen salsatanssitunnin lisäksi kahvia, pientä purtavaa sekä musiikkia latinalaisesta Amerikasta.</p><p>Olet tervetullut hengailemaan sekä pelaamaan shakkia ja muita pöytäpelejä, eli tanssimaan ei ketään pakoteta.</p><p>Kahvi- ja muut tarjoilut järjestetään Vuosaaren nuorten toimesta.</p><p>Tanssituntiin osallistumista varten et tarvitse aiempaa kokemusta. <br>Tapahtuma on maksuton, ei ennakkoilmoittautumista.</p><p>Aikataulu:<br>16.30–17.00: Salsa-musiikkia ja kahvitarjoilut (DJ Lucho Helsinki vastaa musiikista)<br>17.00–18.00: Avoin salsatanssitunti (ohjaajana Yusleyby Stoker Hernandez)<br>18.00–18.30: Salsa-musiikkia ja kahvitarjoilut</p>" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa tanssimaan salsaa sekä nauttimaan musiikista ja kahvitarjoiluista Vuotalon aulaan!" }, "provider": null, "name": { "fi": "Salsaa Vuotalon aulassa – Äfter Vuokki klubi", "sv": "Salsaa Vuotalon aulassa – Äfter Vuokki klubi", "en": "Salsaa Vuotalon aulassa – Äfter Vuokki klubi" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68367/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68185", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1586459, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T09:13:03.464813Z", "last_modified_time": "2026-03-10T09:13:03.464827Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786067.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586459/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-03-10T09:13:03.291753Z", "last_modified_time": "2026-04-02T12:12:49.579699Z", "date_published": null, "start_time": "2026-03-24", "end_time": "2026-04-26", "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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita", "sv": "http://www.stoa.fi/sv/evenemang/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita", "en": "http://www.stoa.fi/en/events/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita" }, "description": { "fi": "<p>Yksi Stadin suurimmista kaupunginosajuhlista, Kontufestarit 2025, rakentui talkoovoimalla.</p><p>Iiris Laurikaisen valokuvanäyttely vie keskelle kesäistä festaritunnelmaa: pääset seikkailemaan yleisön seassa, jännittämään bäkkärillä, rakentamaan lavaa ja näkemään kuinka kessa tyhjenee juhlahumusta.</p><p>Talkoolaisia alkoi tulla ovista ja ikkunoista; järjestyshenkilöiksi, ensiapuryhmään, rakentajiksi, siivoukseen, tiedotukseen, spiikkereiksi, esiintyjien huoltoon, alueen koristeluun ja moneen muuhun. Yhtäkkiä kasassa oli osaava porukka, jolla oli tekemisen meininkiä ja reilua asennetta.</p><p>Syntyi juhlien juhla, rauhallinen ja iloinen kaiken kansan festari talkoilla ja yhdessä, asukkaiden, esiintyjien ja yritysten yhteistyöllä.</p><p>Kelkkapuisto, josta kaikki alkoi vuonna 2003, keräsi viime vuonna ennätyksellisen määrän yleisöä.</p><p>Tästä olemme erittäin ylpeitä ja haluamme esitellä tapahtumaa ja erityisesti sen tekijöitä valokuvaaja Iiris Laurikaisen kuvin. Hän oli yhtenä vapaaehtoisista valokuvaamassa tapahtumaa.</p><p>Eläköön Kontula, Kontufestarit sekä sen tekijät ja kokijat, jotka yhdessä saivat aikaan juhlan!</p>" }, "location_extra_info": null, "short_description": null, "provider": null, "name": { "fi": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita", "sv": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita", "en": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68185/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68366", "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:32/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1792067, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T11:13:32.303847Z", "last_modified_time": "2026-04-02T11:13:32.303859Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785893.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1792067/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T11:13:32.150315Z", "last_modified_time": "2026-04-02T11:13:32.494672Z", "date_published": null, "start_time": "2026-06-24T14:30:00Z", "end_time": "2026-08-05T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5FC809166894B73E4F1F367244DA072A/Kaupunkitanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/5FC809166894B73E4F1F367244DA072A/Kaupunkitanssit", "en": "http://www.stoa.fi/en/events/event/5FC809166894B73E4F1F367244DA072A/Kaupunkitanssit" }, "description": { "fi": "<p>Tervetuloa tanssimaan paritansseja Stoan aukiolle!</p><p>Kaupunkitanssit tarjoaa maksutonta paritanssiopetusta kesäaikaan eri puolilla pääkaupunkiseutua.</p><p>Kaupunkitanssit sopivat niin aloittelijoille kuin kokeneimmillekin tanssijoille, opetus mukautetaan aina osallistujien taitotasoon. Tanssimaan voi tulla yksin tai parin kanssa, eikä ennakkoilmoittautumista tarvita. Opetuksesta vastaavat koulutetut tanssinopettajat.</p><p>\"Kaupunkitanssien kaltaiset matalan kynnyksen tapahtumat tuovat tanssin ilon kaikkien ulottuville!\"<br>– Kävijäpalaute</p><p>Sadesäällä tanssitaan Stoan aulassa.</p><p>Opetusohjelma<br>Opetus aina keskiviikkoisin klo 17.30-18.15</p><p>ke 24.6.<br>ke 1.7.<br>ke 8.7.<br>ke 15.7.<br>ke 22.7. <br>ke 29.7. <br>ke 5.8.</p><p>Tanssilajit päivitetään myöhemmin.</p><p>Opetuspaikka:<br>Stoan aukio, Turunlinnantie 1</p><p>Kaupunkitanssit järjestää Tanssiteatteri Tsuumi yhteistyössä Stoan kanssa.</p><p>Koko kesän opetusohjelma päivitetään Tanssiteatteri Tsuumin nettisivuille: https://www.tsuumi.com/kaupunkitanssit/</p><p>Seuraa myös kuulumisia Kaupunkitansseista: https://www.facebook.com/Kaupunkitanssit/</p><p>Yhteydenotot: info@tsuumi.com</p><p>Maksuton</p>" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa tanssimaan paritansseja Stoan aukiolle!" }, "provider": null, "name": { "fi": "Kaupunkitanssit – ke klo 17.30–18.15", "sv": "Kaupunkitanssit – ke klo 17.30–18.15", "en": "Kaupunkitanssit – ke klo 17.30–18.15" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68366/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68351", "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:32/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:732/?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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1788283, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-31T10:13:22.847183Z", "last_modified_time": "2026-03-31T10:13:22.847203Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787772.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1788283/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-31T10:13:22.688970Z", "last_modified_time": "2026-04-02T11:13:24.384034Z", "date_published": null, "start_time": "2026-04-30T13:00:00Z", "end_time": "2026-04-30T16: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0F30CE93CC8ED982A80C14492063BDD6/AnnanHouse_Vappudisko" }, "description": { "fi": "<p>Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!</p><p>AnnanHouse on koko perheen elektronisen tanssimusiikin erikoistapahtuma, joka tutustuttaa kävijät diskokulttuurin tunnelmiin. Disko on täynnä valoa, rytmiä ja hyvää mieltä kutsuu kaikki mukaan – juuri sellaisina kuin olette.</p><p>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin, vierailla teemaan sopivissa työpajoissa ja tutustua näyttelyihimme. Illan päättävät Sirkus Helsingin hahmot Annantalon etupihalla.</p><p><b>Aikataulu</b> <br> <br>klo 16.00 Pukulainaamo STOORI avautuu ja työpajat alkavat <br>klo 16.30 Diskon ovet auki <br>klo 16.45 & klo 18.00 Fiona Fiouh’n tanssituokio ja kotkottava vieras tanssilattialla <br>klo 19.00 Diskon ja työpajojen päätös <br>klo 18.55-19.20 Sirkus Helsingin sirkushahmot Annantalon etupihalla <br> <br><b>Työpajat 16–19</b><br>Viimeiset osallistujat otetaan sisään klo 18.45</p><p><b>Spin me a Story – työpaja</b><br>Tässä työpajassa pääset tekemään tarinakiekon, jota pyörittämällä muodostuu sattumanvaraisia lauseita ja eriskummallisia hahmoja.</p><p><b>Satumaan asukit – työpaja</b><br>Velho tai prinsessa, keiju tai peikko… Tehdään pieniä sadun hahmoja puutikuista ja langoista.</p><p><b>Uhanalaiset perhoset ja muita metsän olentoja – työpaja</b><br>Tässä työpajassa saat loihtia kierrätysmateriaaleista oman naamiosi diskoon.</p><p><b>Värikkäät tarinamajat</b><br>Tarinamaja tarjoaa lapsille ja aikuisille leppoisan hetken keskelle vappuvilskettä.</p><p><b>Klovni Täpätä ja ilmapalloystävät</b><br>Klovni Täpätä taikoo toivomasi eläimen ilmapallosta!</p><p><b>Kimaltavat kasvoglitterit</b><br>Tule hakemaan vappuusi kimallusta glittertatuoinnilla!</p>" }, "location_extra_info": null, "short_description": { "fi": "Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!" }, "provider": null, "name": { "fi": "AnnanHouse Vappudisko – Hauskat hahmot ja tarinat" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68351/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67598", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4028248", "sv": "https://www.lippu.fi/eventseries/name-4028248", "en": "https://www.lippu.fi/eventseries/name-4028248" }, "price": { "fi": "35€/38€", "sv": "35€/38€", "en": "35€/38€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494112, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T06:12:57.287938Z", "last_modified_time": "2025-12-08T06:12:57.287955Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781999.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494112/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T06:12:57.065048Z", "last_modified_time": "2026-04-02T11:13:23.932923Z", "date_published": null, "start_time": "2026-04-29T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0C35CFE7F2EF8556D44875338058C8DF/TOPMOST_For_Your_Love", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0C35CFE7F2EF8556D44875338058C8DF/TOPMOST_For_Your_Love", "en": "http://www.malmitalo.fi/en/events/event/0C35CFE7F2EF8556D44875338058C8DF/TOPMOST_For_Your_Love" }, "description": { "fi": "<p>TOPMOST on yksi Suomen pophistorian merkittävimmistä yhtyeistä!</p><p>Topmostin perustamisesta on kulunut 60 vuotta. Kyseessä on Suomen oloissa ja jopa koko maailmassa ainutlaatuinen kokoonpano – bändi soittaa edelleen lähes originaalikokoonpanossa (4/6). Montako alkuperäistä on Rollareissa?</p><p>Topmost oli Suomen suosituin bändi vuosina 1966–67. Se oli myös erittäin tunnettu Pohjoismaissa. ”Mitään näin fantastista ei ole kuultu sitten Beatlesin”, hehkutti Expressen-lehti vuonna 1966.</p><p>Topmostin juhlavuosi 2024 oli ikimuistoinen. Salit täyttyivät kiitettävästi ja tunnelma on ollut paikoin lähes hurmoksellinen.</p><p>HS:n Pertti Avola kirjoitti erittäin hienon arvostelun Topmostin 20.8.2024 Savoy-teatterin juhlakonsertista. Topmost 60 Forever -juhlavuosi päättyi arvokkaasti ke 11.12. Tavastia-klubin pyhäkköön.</p><p>Maaliskuun 7. päivänä 2025 Gugi Kokljuschkin, Topmostin perustajajäsen ja yhtyeen toinen laulusolisti, poistui keskuudestamme nopeasti edenneen sairauden vuoksi. Isosta surusta ja menetyksestä huolimatta Topmost on päättänyt jatkaa ilman Gugia hieman päivitetyllä kokoonpanolla.</p><p>Topmostissa soittaa edelleen neljä alkuperäistä jäsentä: Harri Saksala, Kisu Jernström, Holle Holopainen ja Eero Lupari. Koskettimissa soittaa mm. Remun, Hectorin, Kirkan ja Wigwamin riveistä tuttu kosketinsoittaja, kitaristi ja laulaja Mikko Rintanen.</p><p>Kesto: 2 t, sis. 15 min väliajan</p>", "sv": "<p>TOPMOST är ett av de betydelsefullaste banden i den finska pophistorien!</p><p>Det har gått 60 år sedan Topmost grundades. Det är fråga om en unik sammansättning i Finland och till och med i hela världen – bandet spelar fortfarande, och nästan med orginalsammansättningen (4/6). Hur många originalspelare finns det i The Rolling Stones?</p><p>Topmost var det mest populära bandet i Finland 1966–67. Bandet var också mycket känt i de nordiska länderna. ”Något så här fantastiskt har man inte hört sedan Beatles”, skrev tidningen Expressen 1966.</p><p>Topmosts jubileumsår 2024 blev minnesvärt. Salarna fylldes utomordentligt och stämningen har ställvis varit nästan extatisk.</p><p>Pertti Avola från HS skrev en mycket fin recension av Topmosts jubileumskonsert den 20 augusti 2024 på Savoy-teatern. Topmost 60 Forever-jubileumsåret avslutades på ett värdigt sätt onsdagen den 11 decemberi Tavastia-klubbens helgedom.</p><p>Den 7 mars 2025 avled Gugi Kokljuschkin, grundare av och den andra sångaren i Topmost, till följd av en snabbt framskridande sjukdom. Trots den stora sorgen och förlusten har Topmost beslutat att fortsätta utan Gugi med en något uppdaterad sammansättning.</p><p>Topmost omfattar fortfarande fyra originalmedlemmar: Harri Saksala, Kisu Jernström, Holle Holopainen och Eero Lupari. Keyboardisten, gitarristen och sångaren Mikko Rintanen, känd från att ha spelat med Remu, Hector, Kirka och Wigwam, spelar keyboard.</p><p>Längd: 2 h, inklusive en paus på 15 min.</p>", "en": "<p>TOPMOST is one of the most important bands in Finnish pop history!</p><p>It's now been 60 years since Topmost was founded. The band has a unique line-up for Finland and even the world, still boasting an almost fully original line-up of members (4/6). How many original members still play in the Rolling Stones?</p><p>Topmost was the most popular band in Finland in 1966–1967. It was also very well known in other Nordic countries. “Nothing this fantastic had been heard since the Beatles,” enthused Expressen magazine in 1966.</p><p>Topmost's anniversary year 2024 was a memorable one. The venues were crowded, filled with sometimes near-ecstatic audiences.</p><p>Pertti Avola of Helsingin Sanomat wrote a very positive review of Topmost's anniversary concert at the Savoy Theatre on 20 August 2024. The Topmost 60 Forever anniversary year received a dignified farewell at the famous Tavastia-klubi on 11 December.</p><p>On 7 March 2025, Gugi Koklyushkin, a founding member and co-vocalist of Topmost, passed away due to a rapidly progressing illness. Despite this great loss and the grief, Topmost has decided to continue on without Gugi, with a slightly updated line-up.</p><p>Topmost still features four of its original members: Harri Saksala, Kisu Jernström, Holle Holopainen and Eero Lupari. Keyboardist, guitarist and singer Mikko Rintanen, known for performing with stars such as Remu, Hector, Kirka and Wigwam, will play the keyboards.</p><p>Duration: 2 hours, incl. a 15-min intermission</p>" }, "location_extra_info": null, "short_description": { "fi": "TOPMOST on yksi Suomen pophistorian merkittävimmistä yhtyeistä!", "sv": "TOPMOST är ett av de betydelsefullaste banden i den finska pophistorien!", "en": "TOPMOST is one of the most important bands in Finnish pop history!" }, "provider": null, "name": { "fi": "TOPMOST: For Your Love", "sv": "TOPMOST. For Your Love", "en": "TOPMOST. For Your Love" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68357", "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: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:602/?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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1791990, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T10:12:54.836565Z", "last_modified_time": "2026-04-02T10:12:54.836581Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787786.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T10:12:54.575454Z", "last_modified_time": "2026-04-02T11:13:20.695590Z", "date_published": null, "start_time": "2026-04-20T05:00:00Z", "end_time": "2026-04-25T13: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7AFF5B936612D61141DB97449A18399D/Vuotalon_Ekoviikko" }, "description": { "fi": "<p>Rakenna linnunpönttö, tee löytöjä kulttuurikirppiksessä tai osallistu muihin Vuotalon Ekoviikon työpajoihin ja tapahtumiin!</p><p>Vuotalon Ekoviikolla voit osallistua linturetkelle, huoltaa polkupyöräsi sekä tutustua Helsingin jätteiden historiaan. Maanantaista lauantaihin jatkuva Ekoviikko tarjoilee monenlaisia työpajoja ja tapahtumia lapsille, nuorille ja aikuisille ympäri kulttuurikeskusta. Lisätietoja yksittäisistä tapahtumista löydät Vuotalo.fi-tapahtumakalenterista hakusanalla Vuotalon Ekoviikko. Kaikki tapahtumat ovat maksuttomia pois lukien Mimmit & Luonnonsuojelun supersankarit -konsertit.<br>EKOVIIKON TAPAHTUMAT:<br>Ma 20.4. klo 16–18 Nuorten suunnittelema ekoaiheinen Kierrätyskeskuksesta hankittujen ruukkujen koristelutyöpaja (Vuotalon aula)<br>Ma 20.4. klo 18–20 Linturetki Broändan purolaaksoon <br>Keväisellä retkellä bongataan lintuja ja kuullaan alueen historiallisista muinaisjäännöksistä, kuten vanhasta rajakivestä sekä Vartioharjun linnavuoresta. Lähtö ja paluu Kallvikintien ja Broändan puron risteyksestä. Ei ennakkoilmoittautumista. <br>Ti 21.4. klo 15–18.15 Kierrätä pitsejä (Vuotalon aula)<br>Työpajassa pohditaan käyttöä kierrätyspitseille kirjoen ja askarrellen. Tule kokeilemaan mahdollisuuksia ja ideoimaan käyttökohteita. Ei ennakkoilmoittautumista. <br>ti 21.4. klo 16–20 ja ke 22.4. klo 16–20 Ympäristöviikon linnunpönttöpajat (Vuotalon K-kerroksen puupaja)<br>Tule auttamaan lintuja ja rakentamaan linnunpönttö oman lapsen tai nuoren, kaverin kersan tai vaikka lapsenlapsen kanssa!<br>Ti 21.4. klo 17–20 Helsingin Pyöräpajan mobiilipaja <br>Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi Helsingin pyöräpajan järjestämässä maksuttomassa tee se itse työpajassa. <br>Ke 22.4. klo 15–16 Ekoteemainen koululaiskeskiviikko, kirjaston lastenalue <br>Ke 22.4. klo 15–19 Neuvontaa ja vinkkejä ympäristöystävällisempään arkeen (Vuosaaren kirjaston aula)<br>Ke 22.4. klo 16–16.45 Opastus Roskaa! -näyttelyyn sekä uusittuihin kirjastotiloihin <br>Yleisöopastuksella tutustutaan yhdessä oppaan johdolla Roskaa! -näyttelyyn. Näyttelyopastuksen jälkeen teemme kierroksen kirjaston uusituissa tiloissa. <br>Ke 22.4. klo 17–18 Luento: Kuopat, kummut ja roskispalot – Helsingin jätteiden historiaa (Vuosaaren kirjaston stage)<br>Miten Helsingin kaupungissa käsiteltiin ja käsitellään jätettä ennen ja nyt? Aiheesta puhuu Helsingin kaupunginmuseon Roskaa!-näyttelyn tuottaja, museolehtori Magnus Rask. <br>Pe 24.4. klo 10–11.30 Kirjaston pienten aamu luontoteemalla <br>La 25.5. klo 10–16 Vuotalon Ekolauantai (Vuotalon aula ja yläpiha)<br>klo 10–13.30 Kulttuurikirpputori <br>klo 10–15 Vuosaaren yhteiset roskatalkoot <br>klo 10–13.30 Nuorten suunnittelemat työpajat (taimien istutus ja ympäristöaiheinen visa)<br>klo 10 – 13:30 Mainiot materiaalit: askartelumassaa hedelmänkuorista <br>klo 10–13 MLL Vuosaaren yhdistyksen Kierrätysonnenpyörä ja vohvelien paistamista (Vuotalon yläpiha)<br>klo 15–16 Mimmit & Luonnonsuojelun supersankarit LOPPUUNMYYTY ja klo 17–18 Mimmit på svenska -konsertit Vuosalissa <br> <br>Näiden Ekoviikon tapahtumien lisäksi voit koko viikon ajan tutustua kirjastossa ekoaiheiseen kirjanäyttelyyn. Vuotalon aulassa Roskaa! – mitä jätämme jälkeemme Helsingin kaupunginmuseon kierrätysaiheinen näyttely 23.5.2026 asti. <br>Tapahtuma on osa Week17 / Viikko17 ekoviikkoa. Viikko17 on kansainvälinen kirjastojen teemaviikko, jonka aikana nostetaan esille YK:n kestävän kehityksen 17 globaalia tavoitetta.</p>" }, "location_extra_info": null, "short_description": { "fi": "Rakenna linnunpönttö, tee löytöjä kulttuurikirppiksessä tai osallistu muihin Vuotalon Ekoviikon työpajoihin ja tapahtumiin!" }, "provider": null, "name": { "fi": "Vuotalon Ekoviikko" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68357/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68229", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1611075, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-13T12:13:36.170084Z", "last_modified_time": "2026-03-13T12:13:36.170104Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786441.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1611075/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-13T12:13:36.044318Z", "last_modified_time": "2026-04-02T10:12:55.300358Z", "date_published": null, "start_time": "2026-04-20", "end_time": "2026-04-23", "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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/0ADA46660E83311FC7654416EA9ED996/CaisaKallio_", "sv": "http://www.caisa.fi/sv/evenemang/event/0ADA46660E83311FC7654416EA9ED996/CaisaKallio_", "en": "http://www.caisa.fi/en/events/event/0ADA46660E83311FC7654416EA9ED996/CaisaKallio_" }, "description": { "fi": "<p>Caisan ja Kallion ilmaisutaidon lukion yhteinen taidefestivaali on täällä taas!</p><p>CaisaKalliossa päästään kokemaan monipuolisesti kalliolaista taidetta elokuvien, tanssin, puhetaiteen sekä kirjallisen ilmaisun muodossa.<br> <br>Ma 20.4. klo 18 Elokuvia<br>Ti 21.4. klo 18 Tanssia<br>Ke 22.4. klo 18 Puhetaidetta<br>To 23.4. klo 18 Kirjallisen ilmaisun lopputöitä<br> <br>Vapaa pääsy</p>" }, "location_extra_info": null, "short_description": { "fi": "Caisan ja Kallion ilmaisutaidon lukion yhteinen taidefestivaali on täällä taas!" }, "provider": null, "name": { "fi": "CaisaKallio – Caisan ja Kallion lukion yhteinen taidefestivaali", "sv": "CaisaKallio", "en": "CaisaKallio" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68229/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67588", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/franck-goldwasser/", "sv": "https://www.lippu.fi/artist/franck-goldwasser/", "en": "https://www.lippu.fi/artist/franck-goldwasser/" }, "price": { "fi": "21,80€/27,80€", "sv": "21,80€/27,80€", "en": "21,80€/27,80€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494101, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-05T09:12:54.218508Z", "last_modified_time": "2025-12-05T09:12:54.218524Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781979.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494101/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-05T09:12:54.116796Z", "last_modified_time": "2026-04-02T10:12:52.498877Z", "date_published": null, "start_time": "2026-04-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/29984A77E8037BB8BC1F2EAA396043AB/Franck_Goldwasser_USA_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/29984A77E8037BB8BC1F2EAA396043AB/Franck_Goldwasser_USA_", "en": "http://www.malmitalo.fi/en/events/event/29984A77E8037BB8BC1F2EAA396043AB/_Franck_Goldwasser_USA_" }, "description": { "fi": "<p>Kalifornian kitaralegenda Franck Goldwasser esiintyy Malmitalolla keväällä 2026!</p><p>Franck Goldwasser on kansainvälisesti arvostettu ja karismaattinen blueskitaristi, laulaja ja lauluntekijä. Ranskassa syntynyt mutta Yhdysvalloissa uransa luonut Goldwasser tunnetaan aitona ja sielukkaan tulkitsijana, jolla on vahva yhteys bluesin juuriin. Hänen soundinsa yhdistää klassisen Chicagon ja West Coastin bluesin moderniin, omaleimaiseen ilmaisuun – tuloksena on musiikkia, joka on yhtä aikaa juurevaa, vahvaa ja elävää. Hän on vahvalla lavapreesensillään ja energisillä keikoillaan hurmannut yleisöjä ja kriitikoita ympäri maailmaa.</p><p>Goldwasser, joka on aiemmin tunnettu myös nimellä \"Paris Slim\" synnyinkaupunkinsa mukaan, aloitti uransa bluesmuusikkona 80-luvulla Oaklandissa. Hän saavutti nopeasti jalansijaa Kalifornian blues-scenessä haluttuna kitaristina sekä kiertueilla että studiossa. Pian hän olikin soittamassa mm. sellaisten nimien kanssa kuin Sugar Blue, Sonny Rhodes, Lowell Fulson, Percy Mayfield ja Jimmy McCracklin. Samaan aikaan hän alkoi esiintyä myös oman bändinsä kanssa.</p><p>Goldwasser julkaisi ensimmäisen oman levynsä \"Blues For Esther\" v. 1989 Blue Sting -levymerkille, saavuttaen heti W.C.Handy -ehdokkuuden vuoden parhaasta blues-levystä. Samaan aikaan Goldwasser alkoi esiintyä myös kiertueilla Euroopassa. Seuraavina vuosina hän teki kiertueita, festivaaliesiintymisiä ja levytyksiä oman yhtyeensä lisäksi myös mm. Charlie Musselwhiten, Sunnyland Slimin, A.C.Reedin, Jerry McCainin, Philip Walkerin, Big Jack Johnsonin ja James Harmanin kanssa.</p><p>2000-luvun alussa hän levytti juuri toimintansa aloittaneelle Delta Groove -levymerkille. Yhteistyö Delta Grooven kanssa johti kiertueisiin Billy Boy Arnoldin ja Jody Williamsin kanssa, ja pian myös superkokoonpano The Mannish Boysin perustamiseen. Mannish Boysin riveissä vaikuttivat Goldwasserin lisäksi mm. kitaristit Kirk Fletcher ja Kid Ramos, laulaja Finis Tasby, huuliharpisti Johnny Dyer sekä rytmiryhmä Richard Innes ja Ronnie James. Yhtye kiersi menestyksekkäästi festivaaleja Pohjois- ja Etelä-Amerikassa sekä Euroopassa.</p><p>Franck Goldwasserin levytysura ja keikkailu on jatkunut tiiviinä läpi 2000-luvun sekä Amerikassa että Euroopassa. Hän esiintyy edelleen aktiivisesti ja työskentelee uusien projektien parissa, tuoden bluesin tarinaa elävästi nykypäivään. Hänen viimeisin soololevynsä, maailman tapahtumia kriittisesti tarkasteleva Crosscut Recordsin julkaisu “Who Needs This Mess!!??” on vuodelta 2023.</p><p>Suomen keikoilla Franck Goldwasser esiintyy yhdessä suomalaisen bluesin erikoismiehistä koostuvan rytmiryhmän kanssa. Jaska Prepula (basso, kitara) ja Mikko Peltola (rummut) ovat aiemmin tehneet Franckin kanssa festivaaliesiintymisiä mm. Belgiassa ja Tanskassa.</p><p>“Franck Goldwasser is one of the most underrated blues artists working today” — Kim Wilson</p><p>Kesto: 2 t, sis. 20 min väliajan</p>", "sv": "<p>Den kaliforniska gitarrlegenden Franck Goldwasser kommer att uppträda i Malms kulturhus våren 2026!</p><p>Franck Goldwasser är en internationellt uppskattad och karismatisk bluesgitarrist, sångare och låtskrivare. Goldwasser, som är född i Frankrike men har gjort karriär i USA, är känd som en autentisk och själfull uttolkare med en stark koppling till bluesmusikens rötter. Hans sound kombinerar klassisk Chicago- och Westcoastblues med modern, säregen framställning – vilket resulterar i musik som samtidigt är rotfast, stark och levande. Han har förtjusat publik och kritiker runt om i världen med sin starka scennärvaro och sina energiska spelningar.</p><p>Goldwasser, som tidigare kallades ”Paris Slim” efter sin hemstad, började sin karriär som bluesmusiker på 80-talet i Oakland. Han fick snabbt fotfäste på den kaliforniska bluesscenen som en eftertraktad gitarrist både på turnéer och i studion. Snart spelade han med namn som Sugar Blue, Sonny Rhodes, Lowell Fulson, Percy Mayfield och Jimmy McCracklin. Samtidigt började han också uppträda med sitt eget band.</p><p>Goldwasser släppte sitt första album ”Blues For Esther” 1989 på skivbolaget Blue Sting och fick omedelbart en W.C. Handy-nominering för årets bästa bluesalbum. Samtidigt började Goldwasser också uppträda på turnéer i Europa. Under de följande åren turnerade han, uppträdde på festivaler och spelade in album med sitt eget band samt med Charlie Musselwhite, Sunnyland Slim, A.C. Reed, Jerry McCain, Philip Walker, Big Jack Johnson och James Harman.</p><p>I början av 2000-talet spelade han in skivor för det nystartade skivbolaget Delta Groove. Samarbetet med Delta Groove ledde till turnéer med Billy Boy Arnold och Jody Williams, och snart även till bildandet av superensemblen The Mannish Boys. Utöver Goldwasser bestod The Mannish Boys av bland annat gitarristerna Kirk Fletcher och Kid Ramos, sångaren Finis Tasby, munspelaren Johnny Dyer och rytmsektionerna Richard Innes och Ronnie James. Bandet turnerade framgångsrikt på festivaler i Nord- och Sydamerika samt i Europa.</p><p>Franck Goldwassers skiv- och turnékarriär har varit fortsatt intensiv under hela 2000-talet såväl i Amerika som Europa. Han uppträder fortfarande aktivt och arbetar med nya projekt genom att göra blueshistorien levande. Hans senaste soloalbum, ”Who Needs This Mess!!!??”, som utgavs 2023 av Crosscut Records, granskar världshändelserna kritiskt.</p><p>På spelningarna i Finland uppträder Franck Goldwasser med en rytmsektion bestående av finska bluesspecialister. Jaska Prepula (bas, gitarr) och Mikko Peltola (trummor) har tidigare uppträtt med Franck på festivaler i bland annat Belgien och Danmark.</p><p>Längd: 2 h, inklusive en paus på 20 min.</p>", "en": "<p>Californian guitar legend Franck Goldwasser at Malmitalo in spring 2026!</p><p>Franck Goldwasser is an internationally acclaimed, charismatic blues guitarist, singer and songwriter. Born in France, Goldwasser built his career in the United States and is known as an authentic and soulful performer with a strong connection to the roots of blues. His sound combines classic Chicago and West Coast blues with modern, characteristic expression, resulting in music that is at once earthy, powerful and vibrant. He has wowed audiences and critics around the world with his strong stage presence and energetic performances.</p><p>Goldwasser, formerly also known as ‘Paris Slim’ after his birth place, began his career as a blues musician in Oakland in the 80s. He quickly gained a foothold in the California blues scene as a sought-after guitarist both on tours and in the studio. Soon he was playing with names such as Sugar Blue, Sonny Rhodes, Lowell Fulson, Percy Mayfield and Jimmy McCracklin. He also started performing with his own band around the same time.</p><p>Goldwasser released his first album ‘Blues For Esther’ in 1989 on the label Blue Sting, immediately winning a W.C.Handy nomination for best blues album of the year. At the same time, Goldwasser also started to tour Europe. In the following years he toured, played at festivals and recorded albums with his own band and also with names such as Charlie Musselwhite, Sunnyland Slim, A. C. Reed, Jerry McCain, Phillip Walker, Big Jack Johnson and James Harman.</p><p>In the early 2000s, he recorded for the newly launched label Delta Groove. This collaboration with Delta Groove led to tours with Billy Boy Arnold and Jody Williams, and soon after to the formation of the supergroup The Mannish Boys. In addition to Goldwasser, the Mannish Boys ensemble included guitarists Kirk Fletcher and Kid Ramos, singer Finis Tasby, harmonica player Johnny Dyer and the rhythm section Richard Innes and Ronnie James, among others. The band successfully toured festivals in both North and South America and in Europe.</p><p>Franck Goldwasser has continued his quick-paced recording and touring career throughout the 2000s, both in America and Europe. He is still actively performing and working on new projects, bringing the story of blues to the modern day in a vibrant way. His latest solo album, ‘Who Needs This Mess!!!??’, a Crosscut Records release that critically examines world events, was released in 2023.</p><p>In Finland, Franck Goldwasser will perform with a rhythm section comprising Finnish blues specialists. Jaska Prepula (bass, guitar) and Mikko Peltola (drums) have previously performed with Franck at festivals in Belgium and Denmark, for example.</p><p>Duration: 2 h, incl. a 20-min intermission</p>" }, "location_extra_info": null, "short_description": { "fi": "Kalifornian kitaralegenda Franck Goldwasser esiintyy Malmitalolla keväällä 2026!", "sv": "Den kaliforniska gitarrlegenden Franck Goldwasser kommer att uppträda i Malms kulturhus våren 2026!", "en": "Californian guitar legend Franck Goldwasser at Malmitalo in spring 2026!" }, "provider": null, "name": { "fi": "Franck Goldwasser (USA)", "sv": "Franck Goldwasser (USA)", "en": "Franck Goldwasser (USA)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67588/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68089", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3873721", "sv": "https://www.lippu.fi/eventseries/name-3873721", "en": "https://www.lippu.fi/eventseries/name-3873721" }, "price": { "fi": "22,80-38,90 €", "sv": "22,80-38,90 €", "en": "22,80-38,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494846, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-11T10:12:55.002712Z", "last_modified_time": "2026-02-11T10:12:55.002726Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785481.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494846/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-11T10:12:54.846447Z", "last_modified_time": "2026-04-02T09:12:55.944229Z", "date_published": null, "start_time": "2026-04-12T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/06970AD0DCFF4E15C48076F7330AA007/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/06970AD0DCFF4E15C48076F7330AA007/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki", "en": "http://www.savoyteatteri.fi/en/events/event/06970AD0DCFF4E15C48076F7330AA007/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki" }, "description": { "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”</p><p>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>", "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>", "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>" }, "location_extra_info": null, "short_description": { "fi": "Jumppatytöt on esitys joukkuevoimistelusta.", "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.", "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics." }, "provider": { "fi": "Jumppatytöt ry", "sv": "Jumppatytöt ry", "en": "Jumppatytöt ry" }, "name": { "fi": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Loppuunmyyty! / Sold out!", "sv": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Slutsåld!", "en": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Sold out!" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68089/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68361", "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:32/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1791837, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T08:13:52.525293Z", "last_modified_time": "2026-04-02T08:13:52.525312Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785915.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791837/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T08:13:52.366671Z", "last_modified_time": "2026-04-02T08:13:52.693725Z", "date_published": null, "start_time": "2026-08-13T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/468A2280F632A1643BEA63AE8E027A25/Re-Charge", "sv": "http://www.stoa.fi/sv/evenemang/event/468A2280F632A1643BEA63AE8E027A25/Re-Charge", "en": "http://www.stoa.fi/en/events/event/468A2280F632A1643BEA63AE8E027A25/Re-Charge" }, "description": { "fi": "<p>Re-Charge on kihelmöivä ja räjähtelevä ruumiillinen katalogi vaihtoehtoiselle energiantuotannolle. Re-Charge latautuu rakkaudesta ja rakkaudelle.</p><p>Teos on osa laajempaa Charge-hanketta, joka tapahtuu teoksina ja työpajoina julkisissa tiloissa ja paikallisissa yhteisöissä.</p><p>Hankkeen keskiössä on tanssin riemu ja kansainvälinen yhteistyö.<br>Stoan aukiolle teos rantautuu elokuussa 13.8. klo 17.<br>Re-Charge tutkii fyysisesti eri latautumisen tapoja, ja ruumiillistuu ihmisparistoiksi. Se saa inspiraationsa supersankareista, biittikkään musiikin juhlasta /tekno/elektrodance/amapiano/nollypiano/disko/pop/ dubstep/trance/ you name it/, ruumiin ja mielen uupumuksesta, tanssin euforiasta, Formula 1:stä ja kiihdyttämisestä, videopeleistä ja transsimaisesta toistosta – energiaa tuottavasta energiasta.</p><p>Hanke tutkii länsimaisen yhteiskunnan totaalista riippuvuutta kestämättömästä energiantuotannosta, ja etsii leikkimielisiä vaihtoehtoja olla oma bioninen valonsa ja lihallinen paristonsa.<br>Re-Charge latautuu erityisesti rakkaudesta. Rakkaus ihmisten aitona supervoimana toimii teoksen liimana eri muodoissa, intensiteeteissä ja eri tavoin suodattuneena. Supersankareiden ruumiissa rakkaus väräjää, roihuaa, kaipaa, muuttaa radikaalisti jotain syvällä sisuksissa, sykkii.</p><p>Teoksessa monta eri polkua elää eloaan samanaikaisesti, kaaoksessa on sisäinen järjestys, ja sykkivät sydämet eivät lähde pesemälläkään. Tule latautumaan monikerroksisessa lämmittävien tunteiden kylvyssä, ja tanssimaan väristykset kaakkoon!</p><p>Re-Charge on teoksen Charge 2025 jatko-osa. Se on kollektiivisuuden juhlaa ja tanssin humua.</p><p>Hanketta toteuttaa kansainvälinen tanssiryhmä Muddiverse.</p><p>Muddiverse</p><p>Koreografia, tuotanto, puvut: Karoliina Loimaala<br>Tanssi ja kanssakoreografia: Krista-Julia Arppo, Anika Edström Kawaji, Maurice Bessanh, Anni Kaila, Louis Nam Le Van Ho, Karoliina Loimaala, Maya Oliva<br>Äänisuunnittelu ja musiikki: Iida Hägglund<br>Live-musiikki ja perkussiot: Hedson Agbogladja</p><p>Teoksen kesto: 45min</p><p>Tukemassa: Koneen säätiö, Stoan Kulttuurikeskus, Friskis & Svettis Helsinki, Myrskyryhmä</p><p>Ensi-ilta: 4.8.2026, Parrulaituri</p><p>Maksuton</p>" }, "location_extra_info": null, "short_description": { "fi": "Re-Charge on kihelmöivä ja räjähtelevä ruumiillinen katalogi vaihtoehtoiselle energiantuotannolle. Re-Charge latautuu rakkaudesta ja rakkaudelle." }, "provider": null, "name": { "fi": "Re-Charge", "sv": "Re-Charge", "en": "Re-Charge" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68361/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67952", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/topmost-for-your-love-vuotalo-21104711/", "sv": "https://www.lippu.fi/event/topmost-for-your-love-vuotalo-21104711/", "en": "https://www.lippu.fi/event/topmost-for-your-love-vuotalo-21104711/" }, "price": { "fi": "38 € / 30 €", "sv": "38 € / 30 €", "en": "38 € / 30 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494430, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-09T11:13:05.776437Z", "last_modified_time": "2026-01-09T11:13:05.776449Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780465.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494430/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-09T11:13:05.646462Z", "last_modified_time": "2026-04-02T07:12:55.562650Z", "date_published": null, "start_time": "2026-04-02T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3AD30803316692D7F92073FDE4645D4F/LOPPUUNMYYTY_Klubi-ilta_TOPMOST", "sv": "http://www.vuotalo.fi/sv/evenemang/event/3AD30803316692D7F92073FDE4645D4F/SLUTSALT_Klubi-ilta_TOPMOST", "en": "http://www.vuotalo.fi/en/events/event/3AD30803316692D7F92073FDE4645D4F/SOLDOUT_Klubi-ilta_TOPMOST" }, "description": { "fi": "<p>TOPMOST on yksi Suomen pop-historian merkittävimmistä yhtyeistä!</p><p>Topmostin perustamisesta on kulunut 60 vuotta. Kyseessä on Suomen oloissa ja jopa koko maailmassa ainutlaatuinen kokoonpano, sillä bändi soittaa edelleen lähes originaali kokoonpanossa (4/6). Montako alkuperäistä on Rollareissa?<br> <br>Topmost oli Suomen suosituin bändi vuonna 1966-67. Se oli myös erittäin tunnettu Pohjoismaissa. ”Mitään näin fantastista ei ole kuultu sitten Beatlesin”, hehkutti Expressen-lehti 1966.<br> <br>Topmostin juhlavuosi 2024 oli ikimuistoinen. Salit täyttyivät kiitettävästi ja tunnelma on ollut paikoin lähes ”hurmoksellinen”. <br>Pertti Avola (HS) kirjoitti erittäin hienon arvostelun Topmostin 20.8.2024 Savoy-teatterin juhlakonsertista. Juhlavuosi päättyi arvokkaasti 11.12. Tavastia-klubin pyhäkköön. <br> <br>7.3.2025 Gugi Kokljuschkin, Topmostin perustajajäsen ja yhtyeen toinen laulusolisti, poistui keskuudestamme nopeasti edenneen sairauden vuoksi. Isosta surusta ja menetyksestä huolimatta Topmost on päättänyt jatkaa ilman Gugia hieman päivitetyllä kokoonpanolla. <br> <br>Topmostissa soittaa edelleen neljä alkuperäistä jäsentä: Harri Saksala, Kisu Jernström, Holle Holopainen ja Eero Lupari. Koskettimissa soittaa mm. Remun, Hectorin, Kirkan ja Wigwamin riveistä tuttu kosketinsoittaja, kitaristi, laulaja Mikko Rintanen.</p><p>Kesto: 2 t<br>K18<br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p>", "sv": "<p>TOPMOST är ett av de viktigaste banden i den finska pophistorien!</p><p>Det har gått 60 år sedan Topmost grundades. Det är fråga om en unik grupp i Finland och hela världen, eftersom bandet fortfarande har de flesta originalmedlemmar kvar (4/6). Hur många av originalmedlemmarna finns kvar i The Rolling Stones?<br> <br>Topmost var Finlands populäraste band år 1966–67. Det var också väldigt känt i Norden. ”Något så här fantastiskt har man inte hört sedan Beatles”, skrev tidningen Expressen 1966.<br> <br>Topmosts jubileumsår 2024 blev oförglömligt. Salarna fylldes och stämningen var ställvis nästan ”extatisk”. <br>Pertti Avola (HS) skrev en väldigt fin recension av Topmosts jubileumskonsert på Savoy-teatern den 20 augusti 2024. Jubileumsåret avslutades på ett värdigt sätt den 11 december i helgedomen Tavastia. <br> <br>Gugi Kokljuschkin, grundande medlem i Topmost och en av gruppens sångsolister, lämnade oss den 7 mars 2025 efter en hastigt framskriden sjukdom. Trots den stora sorgen och förlusten har Topmost beslutat att fortsätta utan Gugi, med en uppdaterad sammansättning. <br> <br>Topmost har fortfarande fyra originalmedlemmar: Harri Saksala, Kisu Jernström, Holle Holopainen och Eero Lupari. Keyboarden sköts av keyboardisten, gitarristen och sångaren Mikko Rintanen, som är känd bland annat från Remus, Hectors, Kirkas och Wigwams led.</p><p>Längd: 2 h<br>Klubbkväll: Café Pokkari står för serveringen, A-rättigheter.<br>K18<br>Dörrarna till salen öppnas kl. 17.30.</p>", "en": "<p>TOPMOST is one of the most important bands in Finnish pop history!</p><p>It has now been 60 years since Topmost was founded. The band has a unique line-up for Finland and even the world, as they are still boasting an almost fully original line-up of members (4/6). How many original members are left in the Rolling Stones?<br> <br>Topmost was the most popular band in Finland in 1966–1967. It was also very well known throughout the Nordic countries. “Nothing this fantastic has been heard since the Beatles,” enthused the Swedish Expressen magazine in 1966.<br> <br>Topmost’s anniversary year 2024 was a memorable one. Venues were filled and the atmosphere was almost ecstatic at times. <br>Pertti Avola of Helsingin Sanomat wrote a very nice review of Topmost’s anniversary concert at the Savoy Theatre on 20 August 2024. The anniversary year came to a dignified end on 11 December in the sanctuary of Tavastia. <br> <br>On 7 March 2025, Gugi Kokljuschkin , a founding member and co-vocalist of Topmost, passed away due to a rapidly progressing illness. Despite this great loss and the grief, Topmost has decided to continue on without Gugi, with a slightly updated line-up. <br> <br>Topmost still features four original members: Harri Saksala, Kisu Jernström, Holle Holopainen and Eero Lupari. Keyboardist, guitarist and singer Mikko Rintanen, known for performing with stars such as Remu, Hector, Kirka and Wigwam, will play keyboards.</p><p>Duration: 2 h<br>Club evening, catering by Café Pokkari<br>K 18<br>Doors open at 5.30 pm</p>" }, "location_extra_info": null, "short_description": { "fi": "TOPMOST on yksi Suomen pop-historian merkittävimmistä yhtyeistä!", "sv": "TOPMOST är ett av de viktigaste banden i den finska pophistorien!", "en": "TOPMOST is one of the most important bands in Finnish pop history!" }, "provider": null, "name": { "fi": "LOPPUUNMYYTY Klubi-ilta: TOPMOST", "sv": "SLUTSÅLT Klubi-ilta: TOPMOST", "en": "SOLDOUT Klubi-ilta: TOPMOST" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67952/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68127", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341081/", "sv": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341081/", "en": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341081/" }, "price": { "fi": "16,80€/10€", "sv": "16,80€/10€", "en": "16,80€/10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1791684, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T06:13:08.821743Z", "last_modified_time": "2026-04-02T06:13:08.821756Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785681.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791684/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T06:13:08.764506Z", "last_modified_time": "2026-04-02T06:13:08.905263Z", "date_published": null, "start_time": "2026-05-16T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/232BC920D4E11E8ED9643E9B593F8AEF/Balettikoulu_Anne_Hirvonen_Tuhkimo", "sv": "http://www.malmitalo.fi/sv/evenemang/event/232BC920D4E11E8ED9643E9B593F8AEF/Balettikoulu_Anne_Hirvonen_Tuhkimo", "en": "http://www.malmitalo.fi/en/events/event/232BC920D4E11E8ED9643E9B593F8AEF/Balettikoulu_Anne_Hirvonen_Tuhkimo" }, "description": { "fi": "<p>Balettikoulu Anne Hirvosen Kevätnäytös</p><p>Kesto: 1 t</p>" }, "location_extra_info": null, "short_description": { "fi": "Balettikoulu Anne Hirvosen Kevätnäytös" }, "provider": null, "name": { "fi": "Balettikoulu Anne Hirvonen: Tuhkimo", "sv": "Balettikoulu Anne Hirvonen: Tuhkimo", "en": "Balettikoulu Anne Hirvonen: Tuhkimo" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68127/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68126", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341080/", "sv": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341080/", "en": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341080/" }, "price": { "fi": "16,80 €/ 10 €", "sv": "16,80 €/ 10 €", "en": "16,80 €/ 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1791683, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T06:13:08.553321Z", "last_modified_time": "2026-04-02T06:13:08.553337Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785680.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791683/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T06:13:08.485066Z", "last_modified_time": "2026-04-02T06:13:08.657520Z", "date_published": null, "start_time": "2026-05-16T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C998D35D53CCA832EDA58A3369F2486A/Balettikoulu_Anne_Hirvonen_Tuhkimo", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C998D35D53CCA832EDA58A3369F2486A/Balettikoulu_Anne_Hirvonen_Tuhkimo", "en": "http://www.malmitalo.fi/en/events/event/C998D35D53CCA832EDA58A3369F2486A/Balettikoulu_Anne_Hirvonen_Tuhkimo" }, "description": { "fi": "<p>Balettikoulu Anne Hirvosen Kevätnäytös</p><p>Kesto: 1 t</p>" }, "location_extra_info": null, "short_description": { "fi": "Balettikoulu Anne Hirvosen Kevätnäytös" }, "provider": null, "name": { "fi": "Balettikoulu Anne Hirvonen: Tuhkimo", "sv": "Balettikoulu Anne Hirvonen: Tuhkimo", "en": "Balettikoulu Anne Hirvonen: Tuhkimo" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68126/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68355", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4124715" }, "price": { "fi": "17 / 11 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1791682, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T06:13:07.423807Z", "last_modified_time": "2026-04-02T06:13:07.423821Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787796.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791682/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-01T07:13:30.958266Z", "last_modified_time": "2026-04-02T06:13:07.511787Z", "date_published": null, "start_time": "2026-05-08T14:00:00Z", "end_time": "2026-05-08T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/226C0F361E2B0587EBD82AF213140392/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka" }, "description": { "fi": "<p>Varma kevään merkki on Pukinmäen Sirkuskoulun kevätesitykset Malmitalolla. Tervetuloa mukaan Aikamatkaan – huikeiden sirkusesitysten maailmaan. Kevätsirkus Aikamatka vie katsojat matkalle ajassa, menneestä nykypäivään ja tulevaisuuteen. Esityksessä nähdään sirkuskoulun eri-ikäisiä oppilaita, jotka esittävät ryhmä- sekä soolonumeroita. Luvassa on mm korkealentoista ilma-akrobatiaa, vauhdikasta akrobatiaa, huikeita ihmispyramideja sekä uskomatonta esinemanipulaatiota. Sirkus on yhdessä tekemisen hauskuutta, mutta myös oman osaamisen jatkuvaa haastamista. Tule kokemaan sirkuksen ilo ja eri ikäisten esiintyjien energia! Esitykset sopivat koko perheelle.</p><p>Kesto 1 t</p><p>Sopii kaikenikäisille.</p>" }, "location_extra_info": null, "short_description": null, "provider": null, "name": { "fi": "Puksun Sirkus esittää: Kevätsirkus Aikamatka" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68355/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68353", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4124715" }, "price": { "fi": "11 / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1791681, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T06:13:06.972096Z", "last_modified_time": "2026-04-02T06:13:06.972111Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787793.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791681/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T06:13:06.872153Z", "last_modified_time": "2026-04-02T06:13:07.102380Z", "date_published": null, "start_time": "2026-05-07T14:00:00Z", "end_time": "2026-05-07T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7F8CD5912AB803CB25D821CF29F9898A/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka" }, "description": { "fi": "<p>Varma kevään merkki on Pukinmäen Sirkuskoulun kevätesitykset Malmitalolla. Tervetuloa mukaan Aikamatkaan – huikeiden sirkusesitysten maailmaan. Kevätsirkus Aikamatka vie katsojat matkalle ajassa, menneestä nykypäivään ja tulevaisuuteen. Esityksessä nähdään sirkuskoulun eri-ikäisiä oppilaita, jotka esittävät ryhmä- sekä soolonumeroita. Luvassa on mm korkealentoista ilma-akrobatiaa, vauhdikasta akrobatiaa, huikeita ihmispyramideja sekä uskomatonta esinemanipulaatiota. Sirkus on yhdessä tekemisen hauskuutta, mutta myös oman osaamisen jatkuvaa haastamista. Tule kokemaan sirkuksen ilo ja eri ikäisten esiintyjien energia! Esitykset sopivat koko perheelle.</p><p>Kesto 1 t</p><p>Sopii kaikenikäisille.</p>" }, "location_extra_info": null, "short_description": null, "provider": null, "name": { "fi": "Puksun Sirkus esittää: Kevätsirkus Aikamatka" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68353/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }