Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=35
{ "meta": { "count": 23158, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=36", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=34" }, "data": [ { "id": "kulke:69064", "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": [], "info_url": { "fi": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/", "sv": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/", "en": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/" }, "description": null, "price": { "fi": "24,80 € / 17,80 €", "sv": "24,80 € / 17,80 €", "en": "24,80 € / 17,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384973, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T08:14:05.621368Z", "last_modified_time": "2026-06-05T08:14:05.621383Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792649.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384973/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T08:14:05.494660Z", "last_modified_time": "2026-06-18T09:13:47.953862Z", "date_published": null, "start_time": "2026-10-28T17:00:00Z", "end_time": "2026-10-28T18:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac", "sv": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac", "en": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Traveling Jones on saanut solistikseen maamme Fleetwood Mac -spesialistien terävimpään kärkeen kuuluvan kitaristi-laulaja Esa ”Bluesministeri” Kuloniemen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac", "en": "http://www.malmitalo.fi/en/events/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac" }, "description": { "fi": "<p>Traveling Jones on saanut solistikseen maamme Fleetwood Mac -spesialistien terävimpään kärkeen kuuluvan kitaristi-laulaja Esa ”Bluesministeri” Kuloniemen.</p><p>Traveling Jones on tullut tunnetuksi mm. Pepe Ahlqvistin ja Eero Raittisen luottokokoonpanona. Kuloniemi puolestaan on soittanut mm. Honey B & T-Bones -yhtyeessä.</p><p>Luvassa tunnelmallinen, nostalginen ja kitarasoolojen täyteinen ilta brittiblues-klassikoiden parissa!<br> <br>Kitaralegenda Peter Greenin Lontoossa vuonna 1967 perustama alkuperäinen Fleetwood Mac mullisti kokonaisen sukupolven tajunnan. Yhtye aloitti puhtaana, autenttisuuteen pyrkivänä 60-luvun brittiblues-kokoonpanona. Vuosikymmenen loppua kohti bändin tyyli kehittyi ilmaisultaan eklektisemmäksi ja sitä pidetään yhtenä jam band -käsitteen esitaistelijoista. Parhaiten tuon ajan kokoonpano muistetaan kolmen kitaristinsa soolotyöskentelystä ja Greenin ja Danny Kirwanin upeasta sävellystyöstä, joka vaikutti jopa The Beatlesiin ja jonka ansiosta yhtyettä kosiskeltiin Apple-levymerkin rosteriin. Bändin hitit ja klassikot kuten ”Albatross”, ”Oh, Well”, ”Man of the World” ja ”Jigsaw Puzzle Blues” ovat jääneet elämään.</p><p>Esa Kuloniemi (laulu ja kitara)</p><p>Traveling Jones:<br>Jakke Aho (laulu ja basso)<br>Juha Sundqvist (kitara ja laulu)<br>Pekka Qvist (koskettimet)<br>Ossi Nykänen (rummut).<br> <br>Kesto: 1 h 45 min, sis. 20 min väliajan</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69064/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69063", "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": [], "info_url": { "fi": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/", "sv": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/", "en": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/" }, "description": null, "price": { "fi": "34,90 € / 29,90 €", "sv": "34,90 € / 29,90 €", "en": "34,90 € / 29,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384972, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T08:14:04.766602Z", "last_modified_time": "2026-06-05T08:14:04.766617Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792646.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384972/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T08:14:04.645841Z", "last_modified_time": "2026-06-18T09:13:47.279877Z", "date_published": null, "start_time": "2026-10-23T16:00:00Z", "end_time": "2026-10-23T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Antti Autio: Haahuillen – A la Malmi", "sv": "Antti Autio: Haahuillen – A la Malmi", "en": "Antti Autio: Haahuillen – A la Malmi" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Antti Aution Haahuillen-konserttisalikiertue tuo kuulijat lähemmäksi laulujen syntyhetkiä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen", "en": "http://www.malmitalo.fi/en/events/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen" }, "description": { "fi": "<p>Antti Aution Haahuillen-konserttisalikiertue tuo kuulijat lähemmäksi laulujen syntyhetkiä.</p><p>Konsertit jatkavat alkuvuonna julkaistua <i>Tie on maalattu maahan</i> -albumin kiertuetta uudella syväluotaavalla tavalla. Albumin syntyä ja teemoja lähestytään vuorovaikutuksessa ja jutustellen yleisön kanssa.<br> <br>Illan aikana kuullaan tietysti myös vanhempaa tuotantoa, kuten kaikkien tuntemat ja miljoonia striimanneet \"Pihkassa\", \"Kaikki hyvin\", \"Norja\", \"Tehty sinulle\" sekä monia muita kappaleita joista kuullaan uusia ennenkuulumattomia sovituksia.<br> <br><i>”Haluamme tuoda kuulijat lähemmäs niitä hetkiä, kun kappaleet vasta syntyvät tai muotoutuvat. Haahuillen -konserttisalikiertue on kutsu tulla jakamaan nämä hetket yhtyeemme kanssa”</i>, Autio kuvailee.<br> <br>Antin lisäksi bändissä soittavat Jussi Liukkonen, Joska Saarinen, Joel Parvamo ja Ella Rosenlund.</p><p>Aution musiikkia on kuunneltu Spotifyssa yli 35 miljoonan toiston verran ja artistin on nähty esiintyvän mm. Flow Festivalin päälavalla. Kriitikoiden arvostusta osakseen saaneen artistin teoksia on noteerattu laajalti eri medioissa toistuvan ylistävään sävyyn. <i>Kaikki talot huojuu</i> -albumi ylitti kultalevyrajan syksyllä 2024. Viimeisin albumi <i>Tie on maalattu maahan</i> julkaistiin 20. Maaliskuuta.</p><p>Kesto: 2 h, sis. 20 min väliajan</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69063/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69342", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/", "sv": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/", "en": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385095, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-12T08:14:16.596376Z", "last_modified_time": "2026-06-12T08:14:16.596390Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794015.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385095/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-12T08:14:16.523129Z", "last_modified_time": "2026-06-18T09:13:46.994835Z", "date_published": null, "start_time": "2026-10-22T15:00:00Z", "end_time": "2026-10-22T15:35:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Teatteri Mukamas: Metsän arvoitus", "sv": "Teatteri Mukamas: Metsän arvoitus", "en": "Teatteri Mukamas: Metsän arvoitus" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Metsäiseen seikkailuun meidät johdattaa elävä musiikki ja Anna-Liisa Tarvaisen hurmaavat nuket. Tervetuloa kokemaan metsän ihmeitä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus", "en": "http://www.malmitalo.fi/en/events/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus" }, "description": { "fi": "<p>Metsäiseen seikkailuun meidät johdattaa elävä musiikki ja Anna-Liisa Tarvaisen hurmaavat nuket. Tervetuloa kokemaan metsän ihmeitä.</p><p><i>Kuuletko puiden huminaa,<br>lintujen laulua lempeää.<br>Rits, räts, oksa räsähtää ja orava paikalle hypähtää.<br>Kun metsässä oot, niin tiedäthän sen, ei tarvitse olla yksikseen.</p><p>Maasta löytyy kartta kumma,<br>mikä ihme se voikaan olla?<br>Ystävä tietenkin auttaa saattaa, kun pulma on sulla.</i></p><p>Kesto: noin 35 min<br>Ikäsuositus: yli 3-vuotiaille</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69342/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68637", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/", "sv": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/", "en": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/" }, "description": null, "price": { "fi": "29,80 € / 24,80 €", "sv": "29,80 € / 24,80 €", "en": "29,80 € / 24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384971, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T08:14:03.276016Z", "last_modified_time": "2026-06-05T08:14:03.276032Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791346.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384971/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T08:14:03.120961Z", "last_modified_time": "2026-06-18T09:13:45.475266Z", "date_published": null, "start_time": "2026-10-07T16:00:00Z", "end_time": "2026-10-07T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Aili Ikonen – MalmiJazz", "sv": "Aili Ikonen", "en": "Aili Ikonen" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Aili Ikonen on maamme ykköskaartiin kuuluva laulaja ja lauluntekijä, joka tunnetaan herkkänä ja taiturimaisena tulkitsijana." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen", "en": "http://www.malmitalo.fi/en/events/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen" }, "description": { "fi": "<p>Aili Ikonen on maamme ykköskaartiin kuuluva laulaja ja lauluntekijä, joka tunnetaan herkkänä ja taiturimaisena tulkitsijana.</p><p>Ikosen ilmaisullinen skaala lähtee jazzista ja murtautuu rohkeasti genrerajojen ulkopuolelle. Valovoimaisen artistin ura sisältää yhteistyötä erilaisten jazz-kombojen kanssa, big band -produktioita ja Ella Fitzgerald -tulkintoja. Ikonen tunnetaan nykyisin myös Rajaton-lauluyhtyeen jäsenenä.</p><p>Vuonna 2025 Ikonen palkittiin jazz-alan arvostetuimpiin tunnustuksiin kuuluvalla Suomen Jazzliiton myöntämällä Yrjö-palkinnolla. Ikonen on julkaissut viisi soololevyä, joista uusimman, Oulu Sinfonian kanssa äänitetyn <i>Valo</i>-orkesterialbumin vuonna 2024. Soololevykatalogiin kuuluu myös <i>Helposti palavaa</i> (2023), <i>Suru ei oo suora viiva</i> (2020), <i>Piirrä minut</i> (2017) ja <i>Laulan</i> (2016). Uutta musiikkia on luvassa keväällä 2026.</p><p>Ikosen levytyksiin kuuluvat myös suomalaisen jazziskelmän ytimeen pureutuva <i>Jazzbasilli</i>-albumi yhdessä HERD-jazztrion kanssa sekä <i>Aili Ikonen & Tribute to Ella</i> -albumi. Vuonna 2019 yhdessä Jukka Perko Avaran kanssa julkaistu <i>Laulu keskeneräinen</i> -albumi käsitteli 1960-luvun lauluntekijyyttä Hectorin suomenkielisin uusin käännöksin. Ikonen säveltää ja sanoittaa oman soolotuotantonsa lisäksi säännöllisesti Rajaton-lauluyhtyeelle sekä tekee tilaussävellyksiä.</p><p>Ikosen mukana lavalla on hänen luottokvintettinsä, jonka kanssa hän on tehnyt yhteistyötä jo yli 10 vuoden ja viiden albumin verran. Herkkänä, mutta samalla vahvana tulkitsijana tunnettua Ikosta on kuultu laaja-alaisesti niin aikamme huippuartistien kanssakuinsolistina eri kokoonpanoissa.</p><p>Aili Ikonen – laulu, viulu, sävellys ja sanoitus<br>Janne Toivonen – trumpetti<br>William Suvanne – saksofonit ja huilu<br>Tuomas J. Turunen – piano<br>Mikko Pellinen – basso ja sovitukset<br>Mikko Arlin – rummut</p><p>Kesto: 2 t, sis. väliajan 20 min</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68637/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpiyj2kpu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2a7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2bvy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2ce4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2csa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2c54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2djq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2dwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2eca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2eoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2e2m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2fgu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2fsi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2f6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2gki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2gwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2hc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2hpq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2h4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2ija/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2iuq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2i74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2jma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2jyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2kea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc6ywa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc6zlm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc6zwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc62ca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc62ni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc62yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc63dm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc63pe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc633i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc64gu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc64sm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc645a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc65h4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc65ta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc655q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc66ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc66s4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc665m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc67ja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc67uu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc6774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7ale/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7awu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7bbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7bl4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7bwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7cbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7cmm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7cxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7dbq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7dl4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7dwu/?format=api" } ], "images": [ { "id": 2384926, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-03T05:52:39.972907Z", "last_modified_time": "2026-06-03T05:52:39.972923Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/08d940d8-d5cd-4562-bdd1-b1d09364b80e.png", "name": "", "cropping": "293,0,1707,1414", "photographer_name": "", "alt_text": "Haavepuisto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384926/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-03T05:55:29.285786Z", "last_modified_time": "2026-06-18T08:23:43.613360Z", "date_published": null, "start_time": "2026-06-18T05:00:00Z", "end_time": "2026-07-31T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Haavepuisto - kesähuone", "sv": "Haavepuisto - sommarrummet", "en": "Haavepuisto - summer room" }, "location_extra_info": { "fi": "Koivu", "sv": "Koivu", "en": "Koivu" }, "provider": null, "short_description": { "fi": "Tänä kesänä Koivu-tila muuttuu kirjailija Eppu Nuotion luomaksi Haavepuistoksi. Tule kasvattamaan haaveiden puutarhaa kirjoittamalla tai piirtämällä!", "sv": "Den här sommaren har författaren Eppu Nuotio gjort om mötesrummet Koivu till sommarrummet Haavepuisto. Rita, skriv och odla tillsammans i drömmarnas park.", "en": "Come visit a Haavepuisto (Dream garden) summer room at Tapiola library. Make the garden grow with your own written or drawn dreams." }, "info_url": null, "description": { "fi": "<p>Tänä kesänä Koivu-tila muuttuu kirjailija Eppu Nuotion luomaksi Haavepuistoksi. Tule kasvattamaan haaveiden puutarhaa kirjoittamalla tai piirtämällä!</p>", "sv": "<p>Den här sommaren har författaren Eppu Nuotio gjort om mötesrummet Koivu till sommarrummet Haavepuisto (fritt översatt Drömmarnas park). Rita, skriv och odla tillsammans i drömmarnas park.</p>", "en": "<p>Come visit a Haavepuisto (Dream garden) summer room at Tapiola library. Make the garden grow with your own written or drawn dreams.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2kpu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67585", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/", "sv": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/", "en": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/" }, "description": null, "price": { "fi": "22,80 € / 17,80 €", "sv": "22,80 € / 17,80 €", "en": "22,80 € / 17,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494624, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T10:12:54.544019Z", "last_modified_time": "2026-01-26T10:12:54.544033Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781972.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494624/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T10:12:54.439770Z", "last_modified_time": "2026-06-18T08:13:41.992618Z", "date_published": null, "start_time": "2026-09-19T16:00:00Z", "end_time": "2026-09-19T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night", "sv": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night", "en": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Ilkka Rantamäki $ The Bluesbrokers tuo kaikuja 60-luvun puolivälin sumuisen Lontoon psykedeelisiltä klubeilta.", "sv": "Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!", "en": "Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night", "en": "http://www.malmitalo.fi/en/events/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night" }, "description": { "fi": "<p>Ilkka Rantamäki $ The Bluesbrokers tuo kaikuja 60-luvun puolivälin sumuisen Lontoon psykedeelisiltä klubeilta.</p><p>Yhtye soittaa aikakauden autenttisella soundilla ikonisten brittibluesbändien kuten John Mayall’s Bluesbreakersin, Peter Green’s Fleetwood Macin ja Juicy Lucyn tuotantoa. Setteihin on sulautettu myös muutama mainio pala John Hisemanin Tempest yhtyeen ensimmäiseltä levyltä.</p><p>Ilkka Rantamäki: kitara, lap-steel, laulu<br>Hannu Sorsa: urut, piano, laulu<br>Harri Vainikka: basso, laulu<br>Petteri Määttänen: rummut, laulu</p><p>Kesto: 2 t, sis. 20min väliajan</p>", "sv": "<p>Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!</p><p>Med sitt autentiska sound och grepp hämtar bandet tidsperiodens produktion av ikoniska brittiska bluesband, såsom John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac och Juicy Lucy till scenen i Malms kulturhus.</p><p><b>Ensemble</b><br>Ilkka Rantamäki: gitarr, lap-steel, sång<br>Hannu Sorsa: orgel, piano, sång<br>Harri Vainikka: bas, sång<br>Petteri Määttänen: trummor, sång</p><p>Längd: 2 h min., inklusive en paus på 20 minuter</p>", "en": "<p>Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!</p><p>With their authentic sound and style, the band brings the music of iconic British blues bands of the era – such as John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac and Juicy Lucy – to the Malmitalo stage.</p><p><b>Ensemble:</b><br>Ilkka Rantamäki: guitar, lap-steel, vocals<br>Hannu Sorsa: organ, piano, vocals<br>Harri Vainikka: bass, vocals<br>Petteri Määttänen: drums, vocals</p><p>Duration: 2 h, includes 20 min intermission</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67585/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68494", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824096, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-17T13:14:11.499294Z", "last_modified_time": "2026-04-17T13:14:11.499362Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786148.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-17T13:14:11.223722Z", "last_modified_time": "2026-06-18T06:13:53.526392Z", "date_published": null, "start_time": "2026-08-13", "end_time": "2026-08-22", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Malmin tapahtumakesä 2026 – elokuun ohjelma", "sv": "Malms evenemangssommar 2026 – program för augusti", "en": "Malmi Summer of Events 2026 – August programme" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Elokuun tapahtumakesä käynnistyy jyrisevästi herkkien melodioiden ja omaehtoisen indierockin parissa Ala Malmin torilla!", "sv": "Evenemangssommaren i augusti startar med buller på Nedre Malms torg med känsliga melodier och spontan indierock!", "en": "The August of the Summer of Events will start with a bang, offering vulnerable melodies and uncompromising indie rock at Ala-Malmi Square!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F137D945311F42A01E82737A62AF349B/Malmin_tapahtumakesa_2026", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F137D945311F42A01E82737A62AF349B/Malms_evenemangssommar_2026", "en": "http://www.malmitalo.fi/en/events/event/F137D945311F42A01E82737A62AF349B/Malmi_Summer_of_Events_2026" }, "description": { "fi": "<p>Elokuun tapahtumakesä käynnistyy jyrisevästi herkkien melodioiden ja omaehtoisen indierockin parissa Ala Malmin torilla!</p><p>Tapahtumakesän elokuu täyttää Ala-Malmin torin upeilla keikoilla ja innostavilla työpajoilla. Tervetuloa nauttimaan loppukesän iloisista päivistä Malmille!</p><p>Malmin tapahtumakesä 2026 järjestetään uudessa tapahtumapaikassa Ala Malmin torilla, kun Ala-Malmin puistoa remontoidaan.</p><p>Malmin tapahtumakesän Konttilavalle nousee elokuun aikana mm. Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Aarne Alligaattori, Lyyti, Steve ‘n’ Seagulls, Antti Paalanen, Kukkatalo ja ANI ja muita huippuartisteja!</p><p>Konserttien lisäksi voit osallistua monipuolisiin ja inspiroiviin työpajoihin, joita järjestetään Ala-Malmin torin lisäksi Malmitalossa. Katso ohjelma alta.</p><p><b>Malmin tapahtumakesä 2026 elokuun ohjelma</b></p><p><b>Torstai 13.8. Teini-Pää ja pilvet pilvet</b><br>17.30–18.20 pilvet pilvet<br>19.00-20.00 Teini-Pää</p><p><b>Perjantai 14.8. The Ghost of Bruce Springsteen & The E Street Band</b><br>19.00-20.00 The Ghost of Bruce Springsteen & The E Street Band</p><p><b>Lauantai 15.8. Lasten lauantai: Aarne Alligaattori, Riemukas perhemuskari, työpajoja ja muuta puuhaa</b><br>11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle<br>11.00-15.00 Lasten uimataidon edistäminen<br>12.00–14.00 Yksin hanke: Minikirjoja ja matariki-tähtien punontaa <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Aarne Alligaattori</p><p><b>Tiistai 18.8. Lyyti, Salaliitto ja Kaupunkitanssit</b><br>16.00–16.45 Kaupunkitanssit<br>17.30–18.20 Salaliitto <br>19.00–20.00 Lyyti</p><p><b>Keskiviikko 19.8. Steve ’n’ Seagulls, William Öster & the Moonliners</b> <br>17.30–18.20\tWilliam Öster & the Moonliners<br>19.00–20.00\tSteve 'n' Seagulls</p><p><b>Torstai 20.8. Taiteiden yö: Lala Salama, Juhlat ja työpajoja</b>\t<br>16.00–18.00 Yksin hanke: Kangaskassien painatusta <br>16.00–19.00 Työväenopisto: Hippiäisestä muurahaisten poluille - maalaa elonkirjoa kasviväreillä!<br>16.00–19.00 Työväenopisto: Heijastintyöpaja<br>16.00–17.00 Työväenopisto: Kesän muistoja -yhteislaulut<br>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Perjantai 21.8. Aili Järvelä ja Antti Paalanen</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen</p><p><b>Lauantai 22.8. ANI, kukkatalo, työpajoja ja muuta puuhaa</b> <br>14.00–18.00 Malmin nuorisotyöyksikön pop up - kahvila<br>14.00–18.00 Malmin nuorisotyöyksikön pop up – ulkonuta<br>14.00–16.00 Kukkatyöpaja<br>14.30–15.00 Will Funk for Food<br>16.00–17.00 Koristautumispaja<br>15.00–16.00 kukkatalo<br>17.00–18.00 ANI</p><p>Tapahtumiin on vapaa pääsy! Muutokset ovat mahdollisia. <br>Rankkasateen sattuessa tapahtumat siirtyvät sisätiloihin Malmitaloon.</p>", "sv": "<p>Evenemangssommaren i augusti startar med buller på Nedre Malms torg med känsliga melodier och spontan indierock!</p><p>Evenemangssommarens augusti fyller Nedre Malms torg med fantastiska spelningar och inspirerande verkstäder. Välkommen att njuta av sensommarens glada dagar i Malm!</p><p>Malms evenemangssommar 2026 ordnas på den nya evenemangsplatsen på Nedre Malms torg, eftersom Nedre Malms park renoveras.</p><p>Under augusti stiger bland annat Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Arne Alligator, Lyyti, Steve ‘n’ Seagulls, Antti Paalanen, Kukkatalo och ANI samt andra toppartister upp på Containerscenen under Malms evenemangssommar!</p><p>Utöver konserterna kan du delta i mångsidiga och inspirerande verkstäder, som ordnas förutom på Nedre Malms torg också i Malms kulturhus. Se programmet nedan.</p><p>Malms evenemangssommar 2026: program för augusti</p><p>Torsdag 13.8 Teini-Pää och pilvet pilvet<br>17.30–18.20 pilvet pilvet<br>19.00–20.00 Teini-Pää<br>Se dagens program</p><p>Fredag 14.8 The Ghost of Bruce Springsteen & The E Street Band<br>19.00–20.00 The Ghost of Bruce Springsteen & The E Street Band<br>Se dagens program</p><p>Lördag 15.8 Barnens lördag: Arne Alligator, Glatt familjemusiklekis, verkstäder och annan sysselsättning<br>11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta<br>11.00–15.00 Främjande av barns simkunskaper<br>12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor<br>13.00–13.30 Glatt familjemusiklekis<br>14.00–14.45 Arne Alligator<br>Se dagens program</p><p>Tisdag 18.8 Lyyti, Salaliitto och Stadsdans<br>16.00–16.45 Stadsdans<br>17.30–18.20 Salaliitto<br>19.00–20.00 Lyyti<br>Se dagens program</p><p>Onsdag 19.8 Steve ’n’ Seagulls, William Öster & the Moonliners<br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls<br>Se dagens program (på finska)</p><p>Torsdag 20.8 Konstens natt: Lala Salama, Juhlat och verkstäder<br>16.00–18.00 Yksin-projekt: Tryck på tygkasse<br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama<br>Se dagens program</p><p>Fredag 21.8 Aili Järvelä och Antti Paalanen<br>17.00–18.00 Aili Järvelä<br>19.00–20.00 Antti Paalanen<br>Se dagens program</p><p>Lördag 22.8 ANI och Kukkatalo<br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI<br>Se dagens program</p><p>Evenemangen har fritt inträde! Ändringar är möjliga.</p><p>Vid kraftigt regn ordnas evenemangen inomhus på Malms kulturhus.</p>", "en": "<p>The August of the Summer of Events will start with a bang, offering vulnerable melodies and uncompromising indie rock at Ala-Malmi Square!</p><p>The August of the Summer of Events brings great gigs and inspiring workshops to Ala-Malmi Square. Come and enjoy the happy days of late summer in Malmi!</p><p>Malmi Summer of Events 2026 will be held at a new venue on Ala-Malmi Square while Ala-Malmi Park is being renovated.</p><p>In August, the Container Stage of Malmi Summer of Events will host top acts such as Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Arnie Alligator, Lyyti, Steve 'n' Seagulls, Antti Paalanen, Kukkatalo, ANI and many others!</p><p>In addition to enjoying the concerts, you can take part in a wide range of inspiring workshops in Ala-Malmi Square and at Cultural Centre Malmitalo. Please see the programme below.</p><p>Malmi Summer of Events 2026 August programme</p><p>Thu 13 August Teini-Pää and pilvet pilvet<br>17.30–18.20 pilvet pilvet<br>19.00–20.00 Teini-Pää<br>See the programme for the day</p><p>Friday 14 August The Ghost of Bruce Springsteen & The E Street Band<br>19.00–20.00 The Ghost of Bruce Springsteen & The E Street Band<br>See the programme for the day</p><p>Sat 15 August Children’s Saturday: Arnie Alligator, Joyful family music playschool, workshops and much more<br>11.00–14.00 Malmin Varustamo parish: Nature activity point for young ones<br>11.00–15.00: Promoting children's swimming skills<br>12.00–14.00: The Yksin (‘Alone’) project: Miniature books and weaving matariki stars<br>13.00–13.30 Joyful family music playschool<br>14.00–14.45 Arnie Alligator<br>See the programme for the day</p><p>Tue 18 August Lyyti, Salaliitto and Dancing in the City<br>16.00–16.45 Dancing in the City<br>17.30–18.20 Salaliitto<br>19.00–20.00 Lyyti<br>See the programme for the day</p><p>Wed 19 August: Steve ’n’ Seagulls, William Öster & the Moonliners<br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls<br>See the programme for the day (in Finnish)</p><p>Thu 20 August The Night of the Arts: Lala Salama, Juhlat and workshops<br>16.00–18.00 Yksin (‘Alone’) project: Printing tote bags<br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama<br>See the programme for the day</p><p>Fri 21 August Aili Järvelä and Antti Paalanen<br>17.00–18.00 Aili Järvelä<br>19.00–20.00 Antti Paalanen<br>See the programme for the day</p><p>Sat 22 August ANI and Kukkatalo<br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI<br>See the programme for the day</p><p>Entry to the events is free of charge! Changes are possible.</p><p>In the event of heavy rain, the events will be held inside Malmitalo.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68494/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68282", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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: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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1721681, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-24T12:13:56.933995Z", "last_modified_time": "2026-03-24T12:13:56.934008Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786659.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721681/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-24T12:13:56.592238Z", "last_modified_time": "2026-06-17T16:14:04.646315Z", "date_published": null, "start_time": "2026-08-20T14:00:00Z", "end_time": "2026-08-20T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taiteiden yö", "sv": "Taiteiden yö", "en": "Taiteiden yö" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Taiteiden yönä Kanneltalo muuttuu metsänpohjan pehmeäksi maailmaksi, jossa sammal tuoksuu, runot liikkuvat ja kukat löytävät paikkansa hiuksissa. Yhteislauluissa muistellaan mennyttä kesää.", "sv": "Under Konstens natt förvandlas Gamlasgården till skogsmattans mjuka värld, där mossan doftar, dikterna rör sig och blommorna hittar sin plats i håret.", "en": "On the Night of the Arts, Kanneltalo will become a soft world of the forest floor, where the smell of moss fills the air, poems move and flowers find their place in people’s hair." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6DB191CCA5BC91B0C6C36992FEF5186C/Taiteiden_yo_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6DB191CCA5BC91B0C6C36992FEF5186C/Taiteiden_yo_", "en": "http://www.kanneltalo.fi/en/events/event/6DB191CCA5BC91B0C6C36992FEF5186C/Taiteiden_yo_" }, "description": { "fi": "<p>Taiteiden yönä Kanneltalo muuttuu metsänpohjan pehmeäksi maailmaksi, jossa sammal tuoksuu, runot liikkuvat ja kukat löytävät paikkansa hiuksissa. Yhteislauluissa muistellaan mennyttä kesää.</p><p><b>Ohjelma<br>Metsän suojassa -tapahtumat</b><br>Klo 17 – Metsä M, liikkeellinen ja runollinen ääniteos, jossa Katja Luhtala ja hänen kollektiivinsa kuljettavat kuulijan metsän sykkeeseen.<br>Klo 18 – Yhteisötaideteos Metsän pohja. Susu Rytteri kutsuu yleisön rakentamaan yhdessä elävän, hengittävän taideteoksen.<br>Illan aikana voit myös kohdata Metsäkissan, jota saa silittää!</p><p><b>Klo 18–19 Kesän muistoja -yhteislaulut</b> <br>Kanneltalossa lauletaan yhdessä Taiteiden yönä. Tule mukaan laulamaan yksin tai ystäväsi kanssa!</p><p>Työväenopiston syyslukukausi käynnistyy Taiteiden yön tapahtumien myötä jo elokuussa. Tervetuloa laulamaan kesäisiä sävelmiä Kanneltalon auditorioon (1.krs) klo 18–19! <br> <br>Laulattajana musiikkipedagogi, laulunopettaja Satu Luomajoki.</p><p>Tilaisuus on maksuton.</p><p><b>Kukkakoristetyöpaja</b><br>Työpajassa loihditaan pieniä kukkakoristeita leikkokukista ja kesän vihreästä. Koriste sopii hiuksiin, asusteeksi tai lahjaksi ystävälle – ja voit napata kukat mukaasi Taiteiden yön seikkailuihin. Työpajan toteuttaa Hupsansaa.</p><p><b>Metsän suojassa – näyttely</b><br>Susu Rytteri ja ryhmä Metsäkissa2044 johdattavat kävijän metsän tulevaisuuden äärelle. Näyttely ja sen oheistapahtumat yhdistävät tieteen, taiteen, journalismin, musiikin ja teatterin – ja haastavat pohtimaan, millainen metsän tulevaisuuden pitäisi olla.</p><p>Kokonaisuus on Koneen Säätiön tukeman, kaksivuotisen Metsäkissa2044-hankkeen loppuhuipennus. Näyttelyn taiteilijoina toimivat Susu Rytteri, Katja Luhtala ja Juha-Pekka Väisänen.</p><p>Vapaa pääsy</p><p>Tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <br>Lue lisää: https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu</p>", "sv": "<p>Under Konstens natt förvandlas Gamlasgården till skogsmattans mjuka värld, där mossan doftar, dikterna rör sig och blommorna hittar sin plats i håret.</p><p><b>Program<br>Metsän suojassa-evenemang</b><br>Kl. 17 – Metsä M, ett ljudverk med rörelse och poesi där Katja Luhtala och hennes kollektiv tar med sig lyssnaren till skogens puls.<br>Kl. 18 – Gemenskapkonstverket Metsän pohja. Susu Rytteri bjuder in publiken att tillsammans bygga ett levande konstverk som andas.<br>Under kvällen kan man också träffa Skogskatten, som man får klappa!</p><p><b>Verkstad för blomsterdekorationer</b><br>I verkstaden skapar vi små blomsterdekorationer av snittblommor och sommargrönt. Dekorationen passar perfekt i håret, som accessoar eller som present till en vän – och du kan ta med dig blommorna på dina äventyr under Konstens natt. Verkstaden genomförs av Hupsansaa.</p><p><b>Metsän suojassa – utställning</b><br>Susu Rytteri och gruppen Metsäkissa2044 berättar för besökarna om skogens framtid. Utställningen och dess kringevenemang kombinerar vetenskap, konst, journalistik, musik och teater – och utmanar oss att fundera på hur skogens framtid borde se ut.</p><p>Projektet är kulmen på det tvååriga projektet Metsäkissa2044, som fått stöd från Konestiftelsen. Konstnärerna i utställningen är Susu Rytteri, Katja Luhtala och Juha-Pekka Väisänen.</p><p>Fritt inträde</p><p>Evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram. <br>Läs mer: https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu</p>", "en": "<p>On the Night of the Arts, Kanneltalo will become a soft world of the forest floor, where the smell of moss fills the air, poems move and flowers find their place in people’s hair.</p><p><b>Programme<br>Metsän suojassa (‘In the Shelter of the Forest’) events</b><br>17.00: Metsä M, a movement-based and poetic sound art performance in which Katja Luhtala and her collective transport the listener to the heartbeat of the forest.<br>18.00: Community artwork Metsänpohja (‘Forest Floor’) Susu Rytteri invites the audience to take part in building a living, breathing work of art.<br>During the evening, you may also get to meet and pet the Forest Cat!</p><p><b>6–7 p.m. Summer Memories sing along</b> <br>Singing together at Kanneltalo on the Night of the Arts. Come sing alone or with a friend!</p><p><b>Flower decoration workshop</b><br>In this workshop, we will create small flower decorations from cut flowers and summer greenery. You can wear the decoration in your hair, use it as an accessory or give it to a friend – and you can take the flowers with you on your Night of the Arts adventures. The workshop will be hosted by Hupsansaa.</p><p><b>Metsän suojassa (‘In the Shelter of the Forest’) – exhibition</b><br>Susu Rytteri and the Metsäkissa2044 group will lead the audience to the future of the forest. The exhibition and its side events will combine science, art, journalism, music and theatre – and challenge us to think about what the future of the forest should be like.</p><p>The project is the culmination of a two-year Metsäkissa2044 project supported by the Kone Foundation. The artists of the exhibition are Susu Rytteri, Katja Luhtala and Juha-Pekka Väisänen.</p><p>Free entry</p><p>The events are part of the City of Helsinki Cultural Services’ environmental programme. <br>Read more: https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68282/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnlqpsaa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqplwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpmn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpmxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpnbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpnme/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpnvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpn7q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpoja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpoue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpo6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqppii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpprq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpp3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpqfe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpqpi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpqzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqprda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqprmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqprv4/?format=api" } ], "images": [ { "id": 2385234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T12:40:37.016445Z", "last_modified_time": "2026-06-17T12:40:37.016459Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/10c6a4d5-064b-46e2-8f16-43e59bc4388c.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "graafinen kuva jossa nainen lukee kirjaa kahdelle lapselle. teksti: Ompun iltasatu", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-17T12:46:51.236674Z", "last_modified_time": "2026-06-17T12:46:51.236690Z", "date_published": null, "start_time": "2026-08-10T14:30:00Z", "end_time": "2026-12-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ompun Iltasatu", "sv": "Sagostund på finska på Iso Omena bibliotek ", "en": "Storytime in Finnish at the Iso Omena Library" }, "location_extra_info": { "fi": "Lasten alue", "sv": "Barnomrode", "en": "Children's area" }, "provider": null, "short_description": { "fi": "Satuhetki joka maanantai", "sv": "Sagostund varje måndag", "en": "Storytime every monday" }, "info_url": null, "description": { "fi": "<p>Iltasatuhetkillä luetaan suomenkielisiä satuja ja tarinoita. Tulethan kuuntelemaan oman aikuisen kanssa. Satuhetki on tarkoitettu alle kouluikäisille lapsille. Tervetuloa mukaan!</p>", "sv": "<p>På våra kvällssagostunder läser vi sagor och berättelser på finska högt. Kom gärna och lyssna tillsammans med din egen vuxen. Sagostunden är avsedd för barn i före skol åldern. Varmt välkommen med!</p>", "en": "<p>At our evening storytimes, we read Finnish‑language stories and tales aloud. Please come and listen together with your accompanying adult. Storytime is intended for children under 7yrs. You are warmly welcome!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpsaa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnkheiby", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnkhegza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnkhehsu/?format=api" } ], "images": [ { "id": 2385233, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T09:57:53.542165Z", "last_modified_time": "2026-06-17T09:57:53.542179Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/75bb3f3e-9f95-4b6c-b06f-966f6bba7c24.jpg", "name": "", "cropping": "375,0,2625,2250", "photographer_name": "", "alt_text": "Madame T ja onnenpyörä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385233/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T09:58:02.235466Z", "last_modified_time": "2026-06-17T09:58:02.235482Z", "date_published": null, "start_time": "2026-08-20T14:00:00Z", "end_time": "2026-08-20T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Madame T: Pelissä elämä - Let´s spin the Fortune Wheel with Madame T!", "sv": "Madame T: Spelet som kallas livet - Let´s spin the Fortune Wheel with Madame T!", "en": "Madame T: Life Is a Game - Let´s spin the Fortune Wheel with Madame T!" }, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "provider": null, "short_description": { "fi": "Klovneriataituri Taina Mäki-Iso tarjoaa vuorovaikutuksellista ja lempeästi osallistavaa lähiklovneriaa vain pienelle joukolle kerrallaan.", "sv": "Klovnkonstnären Taina Mäki-Iso bjuder på interaktiv och vänligt deltagande närklovneri för endast en liten grupp åt gången.", "en": " Clowning master Taina Mäki-Iso offers interactive and gently engaging close-up clowning for only a small group at a time." }, "info_url": null, "description": { "fi": "<p>Madame T toivottaa vieraansa tervetulleeksi yllätykselliseen, mutta turvalliseen peliluolaansa. Siellä onnenpyörä pyörii ja osumat paljastavat voittoja ja tappioita elämän eri osa-alueilta. Rakkaus, raha, työ ja unelmat eli pelissä on koko elämä. Klovneriataituri<strong> Taina Mäki-Iso</strong> tarjoaa vuorovaikutuksellista ja lempeästi osallistavaa lähiklovneriaa vain pienelle joukolle kerrallaan.</p><p><br></p><p>Suunnattu nuorille (+12) ja aikuisille. Maksuton tapahtuma 20 katsojalle. Esityskielinä suomi ja englanti.</p><p>Taina Mäki-Iso on teatteriohjaaja, opettaja ja klovni. Hän on tehnyt useita klovnisooloja esiintyen niin kotimaisilla kuin myös ulkomaisilla festivaaleilla. Suomen Kulttuurirahaston Uudenmaan rahaston vuoden 2024 palkinto myönnettiin Taina Mäki-Isolle herkkyydestä, hauskuudesta ja klovneriataiteen edistämisestä.</p><p>Madame T onnenpyörineen on mukana Espoon kaupungin Tulevaisuustarinoiden Taideiskuissa.</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>", "sv": "<p>Madame T välkomnar sina gäster till sin överraskande men trygga spelgrotta. Där snurrar lyckohjulet och varje träff avslöjar vinster och förluster inom livets olika områden. Kärlek, pengar, arbete och drömmar – i det här spelet ryms hela livet. Klovnkonstnären <strong>Taina Mäki-Iso </strong>bjuder på interaktiv och vänligt deltagande närklovneri för endast en liten grupp åt gången.</p><p><br></p><p>Riktar sig till ungdomar (12+) och vuxna. Kostnadsfritt evenemang för 20 åskådare. Föreställningen ges på finska och engelska.</p><p>Taina Mäki-Iso är teaterregissör, lärare och clown. Hon har skapat flera clownsolon och uppträtt på både inhemska och utländska festivaler. Finlands kulturfondens Uusimaa-fond tilldelade Taina Mäki-Iso 2024 års pris för hennes känslighet, humor och insatser för att främja clownkonsten.</p><p>Madame T med sitt lyckohjul deltar i Espoo stads konstprojekt ”Tulevaisuustarinoita” (Framtidsberättelser).</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>", "en": "<p>Madame T welcomes her guests to her surprising yet safe game den. There, the wheel of fortune spins, and each spin reveals wins and losses in different areas of life. Love, money, work, and dreams—the game encompasses the whole of life. Clowning master <strong>Taina Mäki-Iso</strong> offers interactive and gently engaging close-up clowning for only a small group at a time.</p><p><br></p><p>Aimed at young people (ages 12 and up) and adults. Free event for 20 audience members. Performed in Finnish and English.</p><p>Taina Mäki-Iso is a theater director, teacher, and clown. She has created numerous clown solos and performed at festivals both in Finland and abroad. The 2024 award from the Uusimaa Fund of the Finnish Cultural Foundation was presented to Taina Mäki-Iso for her sensitivity, humor, and promotion of the art of clowning.</p><p>Madame T and her wheel of fortune are part of the City of Espoo’s “Stories of the Future” Art Events.</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnkheiby/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69444", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385226, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T09:14:58.019298Z", "last_modified_time": "2026-06-17T09:14:58.019321Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791159.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385226/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T09:14:57.897013Z", "last_modified_time": "2026-06-17T09:14:58.197711Z", "date_published": null, "start_time": "2026-09-30T14:00:00Z", "end_time": "2026-09-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, "name": { "fi": "Kantsun kahvit – Keskiviikkoklubi", "sv": "Kantsun kahvit", "en": "Kantsun Kahvit – Coffee at Kantsu" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.", "sv": "Kantsun kahvit är en öppen mötesplats där vi tillsammans ordnar varierande program.", "en": "Coffee at Kantsu events are open meeting places, where a programme of events is organised together." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C915D9C41F7DEF1C8307008AA308738E/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C915D9C41F7DEF1C8307008AA308738E/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/C915D9C41F7DEF1C8307008AA308738E/Kantsun_Kahvit_Coffee_at_Kantsu" }, "description": { "fi": "<p>Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.</p><p>Tule tapaamaan ihmisiä ja keskustelemaan ajankohtaisista asioista kahvittelun lomassa. Tarjoamme kahvia, teetä ja pientä syötävää. Lapset ovat tervetulleita vanhempiensa kanssa.</p><p>Kantsun kahvien sisällöt suunnitellaan yhdessä asukasaktiivien kanssa. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Osallistu keskusteluun Kantsun kahvit -Facebook-ryhmässä</u></a>.</p><p>Kantsun kahvit -tapahtumat järjestävät yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki.</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.</p><p>Paikka: Kanneltalon kahvilan stage</p>", "sv": "<p>Kantsun kahvit är en öppen mötesplats där vi tillsammans ordnar varierande program.</p><p>Kom och träffa människor och diskutera aktuella frågor över en kopp kaffe. Vi bjuder på kaffe, te och något smått att äta. Barn är välkomna tillsammans med sina föräldrar.<br> <br>Innehållet i kaffestunderna Kantsun kahvit planeras tillsammans med aktiva invånare. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Delta i diskussionen i Facebookgruppen Kantsun kahvit</u></a>.</p><p>Kantsun kahvit ordnas som ett samarbete mellan invånare i området, D-asema i Gamlas och Helsingfors stad</p><p>Du behöver inte anmäla dig till evenemanget på förhand och det är gratis.</p><p>Plats: Gamlasgården kafé stage</p>", "en": "<p>Coffee at Kantsu events are open meeting places, where a programme of events is organised together.</p><p>Come and meet people and discuss current issues over coffee. We offer coffee, tea and snacks. Children are welcome with their parents.</p><p>The content of Kantsu coffee events is planned together with resident activists. <u><a href=\"https://www.facebook.com/groups/875036451503848\">Join the discussion in the ‘Kantsun kahvit’ Facebook group</u></a>.</p><p>Coffee at Kantsu is organised in cooperation by local residents, D-asema in Kannelmäki and the City of Helsinki.</p><p>No advance registration is required and the event is free of charge.</p><p>Location: Kanneltalo café stage</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69444/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68629", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385224, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T09:14:56.484285Z", "last_modified_time": "2026-06-17T09:14:56.484301Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791302.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385224/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-17T09:14:56.325910Z", "last_modified_time": "2026-06-17T09:14:56.688675Z", "date_published": null, "start_time": "2026-09-26T12:00:00Z", "end_time": "2026-09-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Yalla Disko", "sv": "Yalla Disko", "en": "Yalla Disko" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Hypätään yhdessä värikkäälle tanssilattialle, missä arabihitit pauhaavat, ilmapallot lentelevät ja nauru raikaa!", "sv": "Kom med på disko där arabiska hits spelas, ballonger svävar omkring och skrattet bubblar!", "en": "Come join us on a colorful dance floor where Arabic hits are playing, balloons float around, and laughter fills the air!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BE35D2F857EBDD0FFBD4DD40CA65A393/Yalla_Disko", "sv": "http://www.annantalo.fi/sv/evenemang/event/BE35D2F857EBDD0FFBD4DD40CA65A393/Yalla_Disko", "en": "http://www.annantalo.fi/en/events/event/BE35D2F857EBDD0FFBD4DD40CA65A393/Yalla_Disko" }, "description": { "fi": "<p>Hypätään yhdessä värikkäälle tanssilattialle, missä arabihitit pauhaavat, ilmapallot lentelevät ja nauru raikaa!</p><p>Yalla Collectiven DJ pistää bileet käyntiin, Ramithawi tuo taian lavalle live-musiikillaan ja Mo-Clown hassuttelee. Leikit ja erilaiset taidetyöpajat tempaavat koko perheen mukaansa. Kasvomaalaus voi muuttaa sinut vaikka tiikeriksi. Nähdään tanssilattialla!</p><p>Kaikki ovat tervetulleita!</p><p>Yalla Disko on osa Nomads Festivaalia. Tapahtuman tuottaa Kulttuuriyhdistämö Interkult yhteistyössä Annantalon kanssa.</p>", "sv": "<p>Kom med på disko där arabiska hits spelas, ballonger svävar omkring och skrattet bubblar!</p><p>Yalla Collectives DJ sätter igång festen, Ramithawi bjuder på härlig livemusik, Mo-Clown skojar och hittar på bus, och det finns roliga lekar och kreativa verkstäder för alla. I ansiktsmålningen kan du till exempel bli en tiger!</p><p>Yalla Disko är en del av Nomads Festival och ordnas av Interkult tillsammans med Annegården.</p>", "en": "<p>Come join us on a colorful dance floor where Arabic hits are playing, balloons float around, and laughter fills the air!</p><p>Yalla Collective’s DJ gets the party started, Ramithawi brings magic to the stage with live music, Mo-Clown brings fun and silliness, and there are playful games and creative workshops for everyone. At the face painting station, you can even turn into a tiger!</p><p>Yalla Disco is part of the Nomads Festival and is produced by Interkult in collaboration with Annantalo.</p>", "ar": "<p><p lang=\"ar\" dir=\"rtl\"><br>انضموا إلينا إلى ساحة رقص مليئة بالألوان، حيث تُعزف أشهر الأغاني العربية، وتطفو البالونات في كل مكان، ويملأ الضحك الأجواء! يفتتح دي جي \"مجموعة يلا\" الحفلة، ويقدّم \"راميثاوي\" سحره على المسرح من خلال عرض موسيقي حي، بينما يضيف المهرّج \"مو\" أجواءً من المرح والضحك، كما تتوفر ألعاب ممتعة وورش إبداعية للجميع. وفي ركن رسم الوجوه، يمكنكِ حتى أن تتحول إلى نمر!<br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68629/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnjzzxby", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzowa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzpv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzqfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzqza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzrku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzr7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzsrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzztbq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzztui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzuia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzu2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzvl4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzv6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzwra/?format=api" } ], "images": [ { "id": 1494535, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-22T12:19:48.420053Z", "last_modified_time": "2025-10-22T12:19:48.420073Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bd8f7a11-0cda-482e-81e2-eb23b6d0a979.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Nainen puhuu asiakkaalle älylaite kädessään. Tabletilla näkyy Espoon kaupungin logo. Piirroskuva.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494535/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:56:50.258209Z", "last_modified_time": "2026-06-17T08:56:50.258225Z", "date_published": null, "start_time": "2026-09-03T11:30:00Z", "end_time": "2026-12-17T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa", "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket", "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library" }, "location_extra_info": null, "provider": { "fi": "Elinkeino & Asiointipalvelut", "sv": "Näringar & Kundtjänsterna", "en": "Economic Development & Customer Service Unit" }, "short_description": { "fi": "Tarjoamme neuvoja viranomaisasiointiin ja palveluihin liittyen sekä autamme digipalveluiden käytössä.", "sv": "Vi erbjuder rådgivning i olika myndighetsärenden och tjänster, och hjälper till med användningen av digitala tjänster.", "en": "We offer advice on different official matters and services, and help with the use of digital services." }, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "description": { "fi": "<p>Tarjoamme neuvontaa erilaisista julkisista palveluista sekä tukea sähköiseen asiointiin. Ohjaamme tarvittaessa oikean palvelun piiriin.</p><p>Autamme myös löytämään tietoa esimerkiksi harrastuksista ja vapaa-ajan toiminnasta Espoossa.</p><p><strong>Palvelemme helpolla suomen kielellä, englanniksi ja puhelintulkin välityksellä.</strong></p><p>Tervetuloa!</p><ul><li><a href=\"https://www.espoo.fi/fi/hello-espoo-infon-tiedot-useilla-eri-kielilla\">Lue lisää Hello Espoo -infosta useilla kielillä.</a></li></ul><p>#HelloEspoo</p>", "sv": "<p>Vi erbjuder rådgivning om olika offentliga tjänster och stöd för att använda olika digitala tjänster. Vi vägleder dig till rätt tjänst.</p><p>Vi hjälper dig också att hitta information om hobbyer och fritidsaktiviteter i Esbo.</p><p><strong>Vi betjänar på lätt finska, engelska och via telefontolk.</strong></p><p>Välkommen!</p><ul><li><a href=\"https://www.espoo.fi/sv/hello-espoo-info-information-pa-olika-sprak\">Läs mer om Hello Espoo-info på olika språk.</a></li></ul><p>#HelloEspoo</p>", "en": "<p>We offer advice on various public services and support for using different digital services. We will guide you to the right service.</p><p>We also help you to find information about e.g hobbies and leisure activities in Espoo.</p><p><strong>We serve in easy Finnish, English and via telephone interpreter.</strong></p><p>Welcome!</p><ul><li><a href=\"https://www.espoo.fi/en/hello-espoo-info-information-several-languages\">Read more about Hello Espoo Info in different languages.</a></li></ul><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzxby/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68468", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816578, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T12:14:04.262263Z", "last_modified_time": "2026-04-14T12:14:04.262277Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786159.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816578/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T12:14:04.107786Z", "last_modified_time": "2026-06-17T07:14:14.128815Z", "date_published": null, "start_time": "2026-08-21T14:00:00Z", "end_time": "2026-08-21T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Antti Paalanen, Aili Järvelä – Malmin tapahtumakesä 2026", "sv": "Antti Paalanen, Aili Järvelä – Malms evenemangssommar 2026", "en": "Antti Paalanen, Aili Järvelä – Malmi Summer of Events 2026" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Konttilavalla villitsee monialainen Aili Järvelä ja UMK:sta tuttu hanuristi Antti Paalanen!", "sv": "Multidisciplinära musikern Aili Järvelä och dragspelaren Antti Paalanen, som är bekant från UMK, gör publiken vild på containerscenen!", "en": "Diverse musician Aili Järvelä and accordionist Antti Paalanen of UMK fame take over the Container Stage!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen_Aili_Jarvela_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen_Aili_Jarvela_", "en": "http://www.malmitalo.fi/en/events/event/A50F3395B958F5FF1BFE4ACE0832E12A/Antti_Paalanen_Aili_Jarvela_" }, "description": { "fi": "<p>Konttilavalla villitsee monialainen Aili Järvelä ja UMK:sta tuttu hanuristi Antti Paalanen!</p><p><b>Aikataulu</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen</p><p><b>Päivän ohjelma</p><p>klo 17.00–18.00 Aili Järvelä</b><br>Monialaisena muusikkona ja musiikintekijänä tunnettu Aili Järvelä on hurmannut yleisöjä ja kriitikoita kyvyllään liikkua luontevasti tyylilajien ja kokoonpanojen välillä. Hänet tunnetaan myös terävästä ja koskettavasta biisinkirjoituksestaan. Järvelän soolotuotanto on palkittu ja noteerattu laajasti: albumi VUORI toi mukanaan Teosto ja Emma ehdokkuuksia sekä Indie Awards palkinnon vuoden albumina. Järvelän vahva lavakarisma ja lyriikka tekevät live esiintymisistä unohtumattomia elämyksiä.<br>Malmin Tapahtumakesässä Järvelä esiintyy nelihenkisen yhtyeensä kanssa.</p><p><b>klo 19.00–20.00 Antti Paalanen</b><br>Antti Paalanen on omaleimainen hanuristi, joka yhdistää kaksirivisen haitarin, teknon ja kurkkulaulun hurmokselliseksi kokonaisuudeksi. Suomessa ja ympäri maailmaakin keikkaillut hanuristi nousi koko Suomen kansan tietoisuuteen viimeistään UMK-finaalissa, jossa hän kilpaili omalaatuisella Takatukka-kappaleella sijoittuen toiseksi. Paalanen on tullut tunnetuksi myös sosiaalisessa mediassa miljoonia katsojia keränneistä yllättävistä covervideoistaan.</p><p>Lavalla Paalasen yhden miehen yhtye synnyttää valtavan kokoisen basson, harmonian ja rytmin yhdistelmän, joka tempaa yleisön mukaansa. Keikat päättyvät usein siihen, että hypnoottiset melodiat jäävät soimaan yleisön lauluun vielä pitkään musiikin päätyttyä.</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Multidisciplinära musikern Aili Järvelä och dragspelaren Antti Paalanen, som är bekant från UMK, gör publiken vild på containerscenen!</p><p><b>Tidtabell</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen</p><p><b>Dagens program</p><p>kl. 17.00–18.00 Aili Järvelä</b><br>Multidisciplinära musikern och musikskaparen Aili Järvelä har fängslat publiker och kritiker med sin förmåga att röra sig naturligt mellan genrer och kompositioner. Hon är också känd för sitt skarpa och rörande låtskrivande. Järveläs soloproduktion har prisbelönts och noterats omfattande: albumet VUORI fick Teosto- och Emma-nomineringar och utsågs till årets album i Indie Awards. Järveläs starka scennärvaro och lyrik gör live-uppträdandena till oförglömliga upplevelser.<br>Järvelä uppträder med sitt fyrmannaband på Malms evenemangssommar.</p><p><b>kl. 19.00–20.00 Antti Paalanen</b><br>Antti Paalanen är en särpräglad dragspelare som förenar det tvåradiga dragspelet, techno och strupsång till en charmig helhet. Dragspelaren som haft spelningar i Finland och runtom i världen blev känd för hela finska folket senast i UMK-finalen, där han tävlade med den egenartade låten Takatukka, och placerade sig på andra plats. Paalanen har också blivit känd i sociala medier för sina överraskande covervideor som har fått miljontals visningar.</p><p>På scenen skapar Paalanens enmansband en enorm kombination av bas, harmoni och rytm som fängslar publiken. Spelningarna slutar ofta med att hypnotiska melodier blir kvar i publikens sång ännu länge efter att musiken slutat.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>Diverse musician Aili Järvelä and accordionist Antti Paalanen of UMK fame take over the Container Stage!</p><p><b>Schedule</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen</p><p><b>Programme of the day</p><p>17.00–18.00 Aili Järvelä</b><br>Aili Järvelä, a multidisciplinary musician and music maker, has captivated audiences and critics alike with her ability to fluidly move between genres and ensembles. She is also known for her insightful and moving song lyrics. Järvelä's solo work has been widely awarded and recognised: the album VUORI brought her Teosto and Emma nominations and the Album of the Year title from the Indie Awards. Järvelä's strong stage charisma and lyricism make her live performances unforgettable experiences.<br>At Malmi Summer of Events, Järvelä will perform with her four-person ensemble.</p><p><b>19.00–20.00 Antti Paalanen</b><br>Antti Paalanen is a unique accordionist who combines two-row accordion melodies, techno and throat singing into a rapturous experience. The accordionist has toured in Finland and around the world, but rose to the attention of the wider Finnish public at the latest in the finale of Uuden Musiikin Kilpailu with his distinctive song, Takatukka, placing second in the competition. Paalanen has also become known on social media for his surprising cover videos, which have attracted millions of views.</p><p>On stage, Paalanen's one-man band creates a massive mix of bass, harmony and rhythm that captivates the audience. His gigs often end with his hypnotic melodies remaining in the audience’s minds and on their lips long after the music has ceased.</p><p>Entry to the events is free of charge!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68468/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68464", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816473, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:35.406086Z", "last_modified_time": "2026-04-14T11:25:35.406103Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786318.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816473/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T11:25:35.157992Z", "last_modified_time": "2026-06-17T07:14:11.402568Z", "date_published": null, "start_time": "2026-08-13T14:30:00Z", "end_time": "2026-08-13T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Teini-Pää ja pilvet pilvet – Malmin tapahtumakesä 2026", "sv": "Teini-Pää ja pilvet pilvet – Malms evenemangssommar 2026", "en": "Teini-Pää ja pilvet pilvet – Malmi Summer of Events 2026" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Elokuun tapahtumakesä käynnistyy jyrisevästi herkkien melodioiden ja omaehtoisen indierockin parissa Ala Malmin torilla!", "sv": "Evenemangssommaren i augusti startar med buller på Nedre Malms torg med känsliga melodier och spontan indierock!", "en": "The August of the Summer of Events will start with a bang, offering vulnerable melodies and uncompromising indie rock at Ala-Malmi Square!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F37BE84A4CCE43A58278904A8575886A/Teini-Paa_ja_pilvet_pilvet", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F37BE84A4CCE43A58278904A8575886A/Teini-Paa_ja_pilvet_pilvet", "en": "http://www.malmitalo.fi/en/events/event/F37BE84A4CCE43A58278904A8575886A/Teini-Paa_ja_pilvet_pilvet" }, "description": { "fi": "<p>Elokuun tapahtumakesä käynnistyy jyrisevästi herkkien melodioiden ja omaehtoisen indierockin parissa Ala Malmin torilla!</p><p><b>Aikataulu</b><br>17.30–18.20 pilvet pilvet <br>19.00–20.00 Teini-Pää</p><p><b>Päivän ohjelma</p><p>klo 17.30–18.20 pilvet pilvet</b><br>Pilvet pilvet on kerännyt ympärilleen kasvavan ja sitoutuneen fanipohjan ja keikkaillut ahkerasti klubeilla, tapahtumissa ja festivaaleilla. Marraskuussa yhtye otti suuren harppauksen lämmitellessään KUUMAAn Maasta kuuhun -areenakiertuetta.<br>Johanna Kustannukselle kiinnitetyn yhtyeen muodostavat Kosti Koskinen, Touko Koivusaari, Onni Lehtinen, Milan Marttiini ja Kalle Karimo. Yhtyeen runsaat stemmat ja orgaaninen soundi tekevät popmusiikista ilmavaa ja koskettavaa. Vuonna 2025 pilvet pilvet julkaisee uutta musiikkia ja esiintyy aktiivisesti.</p><p><b>klo 19.00–20.00 Teini Pää</b><br>Teini Pää soittaa suloisen riipivää indierockia, jonka ytimessä ovat herkkyys ja omaehtoisuus. Yhtyeen odotettu kolmas albumi julkaistaan tammikuussa 2026.<br>Vuonna 2018 perustetun bändin debyyttialbumi Maailma kyllä odottaa oli ehdolla Emma Gaalan Kriitikoiden valinta kategoriassa, ja myöhemmät julkaisut ovat saaneet ylistävän vastaanoton. Teini Pään kappaleet käsittelevät yhteyttä, yksinäisyyttä ja yhteiskunnallisia teemoja – ja yhtyeen vahva live energia käy suoraan kuulijoiden sydämiin.</p><p>Tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Evenemangssommaren i augusti startar med buller på Nedre Malms torg med känsliga melodier och spontan indierock!</p><p><b>Tidtabell</b><br>17.30–18.20 pilvet pilvet <br>19.00–20.00 Teini-Pää</p><p><b>Dagens program</p><p>kl. 17.30–18.20 pilvet pilvet</b><br>Pilvet pilvet har samlat runtom sig en växande och engagerad fanskara och spelat flitigt på klubbar, evenemang och festivaler. I november gjorde bandet ett stort framsteg genom att värma upp publiken inför KUUMAA:s Maasta kuuhun-arenaturné.<br>Bandet som kopplas samman med Johanna Kustannus utgörs av Kosti Koskinen, Touko Koivusaari, Onni Lehtinen, Milan Marttiini och Kalle Karimo. Bandets fylliga stämmor och organiska sound gör popmusiken luftig och rörande. År 2025 publicerar pilvet pilvet ny musik och uppträder aktivt.<br>Plats: Containerscenen, Nedre Malms torg</p><p><b>kl. 19.00–20.00 Teini Pää</b><br>Teini-Pää spelar sött skärande indierock med fokus på känslighet och spontanitet. Bandets efterlängtade tredje album släpps i januari 2026.<br>Bandets, som grundades 2018, debutalbum Maailma kyllä odottaa nominerades på Emma-galan i kategorin Kritikernas val, och senare utgåvor har fått beröm. Teini-Pääs låtar behandlar samhörighet, ensamhet och samhälleliga teman – och bandets starka liveenergi går rakt in i lyssnarnas hjärtan.<br>Plats: Containerscenen, Nedre Malms torg</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>The August of the Summer of Events will start with a bang, offering vulnerable melodies and uncompromising indie rock at Ala-Malmi Square!</p><p><b>Schedule</b><br>17.30–18.20 pilvet pilvet <br>19.00–20.00 Teini-Pää</p><p><b>Programme of the day</p><p>17.30–18.20 pilvet pilvet</b><br>Pilvet pilvet has built a growing and dedicated fan base and has been performing non-stop at clubs, events and festivals. In November, the band took a big leap forward as the warm-up act for KUUMAA’s Maasta kuuhun arena tour.<br>The ensemble, which has been signed to Johanna Kustannus, comprises Kosti Koskinen, Touko Koivusaari, Onni Lehtinen, Milan Marttiini and Kalle Karimo. The band's rich harmonies and organic sound make their pop music airy and touching. In 2026, pilvet pilvet will be releasing new music and performing actively.<br>Place: Container Stage, Ala-Malmi Square</p><p><b>19.00–20.00 Teini-Pää</b><br>Teini-Pää plays sweetly torturous indie rock that is both vulnerable and uncompromising. The band's highly anticipated third album will be released in January 2026.<br>Formed in 2018, the band's debut album Maailma kyllä odottaa was nominated in the Critics' Choice category at the Emma Gala, and later releases have also been very well received. Teini-Pää's songs deal with themes such as connection, loneliness and social issues, and the band’s strong energy when playing live goes straight to the listeners’ hearts.<br>Place: Container Stage, Ala-Malmi Square</p><p>Entry to the events is free of charge.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68330", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1730506, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-25T10:13:56.810590Z", "last_modified_time": "2026-03-25T10:13:56.810605Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787442.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1730506/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-25T10:13:56.681888Z", "last_modified_time": "2026-06-17T06:13:57.522689Z", "date_published": null, "start_time": "2026-08-28T13:00:00Z", "end_time": "2026-08-28T19:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maltsun musailta", "sv": "Maltsun musailta", "en": "Maltsun musailta" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "MALTSU ELÄÄ! Laaja kattaus livemusiikkia soi taas tänäkin kesänä Malminkartanonaukiolla pe 28.8.!", "sv": "MALTSU LEVER! Ett brett urval av livemusik ljuder även denna sommar på Malmgårdsplatsen fredagen den 28 augusti!", "en": "MALTSU LIVES! This summer, Malminkartanonaukio Square will once again be filled with a wide range of live music on Friday 28 August!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CD6E17859EAA5D0036E3DC70D753B4C1/Maltsun_musailta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CD6E17859EAA5D0036E3DC70D753B4C1/Maltsun_musailta", "en": "http://www.kanneltalo.fi/en/events/event/CD6E17859EAA5D0036E3DC70D753B4C1/Maltsun_musailta" }, "description": { "fi": "<p>MALTSU ELÄÄ! Laaja kattaus livemusiikkia soi taas tänäkin kesänä Malminkartanonaukiolla pe 28.8.!</p><p>MALTSU ELÄÄ! Malminkartanonaukiolla soi taas livemusiikki perjantaina 28.8.! Luvassa on ainutlaatuinen ilta Suomen eturivin muusikkojen kanssa paikallisilla mausteilla. Tapahtuma on kaikille avoin ja ilmainen.<br>Lavalla nähdään voimakkailla ja vilpittömillä kappaleillaan lumoava Antti Autio, poliittisen ja yhteiskunnallisen suomiräpin kärkihahmo Paleface, Malminkartanosta kotoisin oleva energinen suomiräppäri Heikki Kuula ja lämpimän liveshown tarjoava paikallinen yhtye 4apila.<br>Aikataulu: <br>17.00 4apila<br>18.00 Heikki Kuula<br>19.15 Paleface<br>20.45 Antti Autio<br>Tapahtuma-alue on esteetön. WC-tilat löytyvät aukion ympäristöstä Malmgård-ravintolasta. <br>Tapahtuman järjestää Helsinki Urban Art ry yhteistyössä Kanneltalon kanssa.<br>///<br>MALTSU LIVES! Live music will be playing again in Malminkartanonaukio on Friday 28 August! Expect a unique evening with Finland’s leading musicians with local flavors. The event is open to everyone and free of charge.<br>On stage will be Antti Autio, enchanting with his powerful and sincere songs, Paleface, a leading figure in political and social Finnish rap, Heikki Kuula, an energetic Finnish rapper from Malminkartano, and the local band 4apila, offering a warm live show.<br>Timetable:<br>17.00 4apila<br>18.00 Heikki Kuula<br>19.15 Paleface<br>20.45 Antti Autio<br>The event is organized by Helsinki Urban Art ry in collaboration with Kanneltalo.<br>The event area is accessible. Toilets can be found around the square at the Malmgård restaurant.</p>", "sv": "<p>MALTSU LEVER! Ett brett urval av livemusik ljuder även denna sommar på Malmgårdsplatsen fredagen den 28 augusti!</p><p>Här utlovas diamanthårda spelningar och fantastiska artister. Evenemanget är avgiftsfritt och öppet för alla.</p><p>Programmet och artisterna offentliggörs närmare evenemanget.<br>Evenemanget ordnas av Helsinki Urban Art ry i samarbete med Gamlasgården.</p><p>Evenemangsområdet är tillgängligt. Toaletter finns i restaurangerna Malmgård och Laiska kissa.</p>", "en": "<p>MALTSU LIVES! This summer, Malminkartanonaukio Square will once again be filled with a wide range of live music on Friday 28 August!</p><p>The event will feature awesome shows by amazing performers. The event is open to everyone and free of charge.<br>The programme and artists will be published closer to the date of the event.</p><p>The event will be organised by Helsinki Urban Art ry in cooperation with Kanneltalo.</p><p>The event area is accessible. Toilets can be found near the square, in the Malmgård and Laiska Kissa restaurants.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68330/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69372", "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:351/?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: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: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: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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385138, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-15T09:18:19.442610Z", "last_modified_time": "2026-06-15T09:18:19.442625Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793742.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385138/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-15T09:18:19.320289Z", "last_modified_time": "2026-06-16T13:14:17.822620Z", "date_published": null, "start_time": "2026-10-06T11:30:00Z", "end_time": "2026-10-06T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sirkuskurssi senioreille, Ryhmä 1 – Seikkailun mestarit", "sv": "Cirkus för seniorer, Grupp 1", "en": "The Master Class of Adventure , Group 1 – Circus course for seniors" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Stoan suositut sirkuskurssit tulevat taas!", "sv": "Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.", "en": "At the senior circus course, the participants get to, for example, practice their balance and mobility using circus equipment." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5350FEF475E8C47716309543288DA2E7/Sirkuskurssi_senioreille_Ryhma_1_", "sv": "http://www.stoa.fi/sv/evenemang/event/5350FEF475E8C47716309543288DA2E7/Cirkus_for_seniorer_Grupp_1_", "en": "http://www.stoa.fi/en/events/event/5350FEF475E8C47716309543288DA2E7/The_Master_Class_of_Adventure_Group_1" }, "description": { "fi": "<p>Stoan suositut sirkuskurssit tulevat taas!</p><p>Liikunnan ei tarvitse olla tylsää! Senioreiden kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä.</p><p>Sirkusliikuntataidot pidentävät elinikää ja parantavat elämänlaatua, sillä ne keskittyvät etenkin ikääntyviä koskeviin tarpeisiin, kuten tasapainoon ja notkeuteen, muistiin ja virkeyteen, kiputilojen vähentämiseen ja sosiaaliseen kanssakäymiseen. Kevyet ja tehokkaat venytys- ja liikerataharjoitukset parantavat ja ylläpitävät vartalon koordinaatiota, tasapainoa ja kehonhallintaa. Laji ei vaadi pohjakuntoa, vaan pelkkä halu oppia uusia taitoja hauskalla tavalla riittää. Tervetuloa mukaan – rohkeus palkitaan!</p><p><i>”Seniorisirkuskurssi Stoassa on paljon enemmän kuin pelkkä aktiviteettien sarja – se on matka itseen, itsensä löytämiseen ja itseilmaisuun. Tarjoamme opiskelijoillemme ilmapiirin, joka ei ainoastaan tue ja kehitä taitoja, vaan myös vahvistaa itsevarmuutta, sinnikkyyttä, luovuutta, kehotietoisuutta ja koordinaatiota. Kurssi yhdistää ainutlaatuisella tavalla hyvinvointia, sirkustaiteita ja sosiaalista vuorovaikutusta sekä rohkaisee opiskelijoitamme tutkimaan, innovoimaan ja loistamaan omalla ainutlaatuisella tavalla.”</i><br>– Sirkusohjaaja Enrique Salas</p><p>Kurssi kokoontuu <b>tiistaisin 1.9.–10.11., mutta ei syyslomaviikolla 13.10.</b> Ryhmä 1 klo 14.30–15.30, ryhmä 2 klo 16–17.<br>Paikka: Stoan musiikkisali <br>Kesto: 10 x 60 min <br>Ohjaaja: sirkusohjaaja Enrique Salas <br> Kieli: englanti, espanja, suomi <br>Maksuton<br> <br>Ennakkoilmoittautuminen ti 4.8. klo 10 alkaen: stoa.fi/fi/tapahtumat. Ilmoittautumaan pääset Stoan verkkosivujen tapahtumakalenterin kautta: klikkaa tapahtuman kohdalla olevaa Ilmoittaudu-painiketta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.</p><p>Cirkuskonst är ett förträffligt sätt att förlänga livet och öka livskvaliteten genom att fokusera på behov som är specifikt kopplade till åldrande, inklusive balans och vighet, minne och minnesprocesser, smärthantering och sociala relationer. Inga krav ställs på kondition eller former – det enda målet är att ha roligt och lära sig nya saker, göra lätta till moderata stretchövningar samt en rad konditionsaktiviteter som syftar till förbättrad och bibehållen koordination mellan händerna, balans och hållning. Aktiviteterna kan göras sittande eller stående.</p><p>Åldersrekommendation: för seniorer <br>Längd: 10 x 60 min <br> Instruktör: cirkusinstruktören och artisten Enrique Salas <br>Språk: engelska, spanska och finska</p><p>Fritt inträde <br>Anmälding ti 4.8. kl 10: stoa.fi/sv/evenemangen.<br>Info: hanna.westerholm@hel.fi</p>", "en": "<p>At the senior circus course, the participants get to, for example, practice their balance and mobility using circus equipment.</p><p>Circus skills are excellent to increase longevity and boost the quality of life by addressing needs specific to aging including balance and flexibility, memory and processing, pain management, and social connection. It is not necessary for any condition or shape just the aim for fun and learning new skills, light to moderate stretching and range of motion activities to improve and maintain bi-manual coordination, balance, and postural control. <br><i> “Our Senior Circus Programme at Stoa is more than just a series of activities; it's a journey of self-discovery and self-expression. We immerse our students in an atmosphere that not only fosters and develops skills but also builds confidence, resilience, creativity, proprioception, and coordination among others. We offer a unique blend of well-being, circus arts, and social interaction encouraging our students to explore, innovate, and shine on their own unique stage of age.”</i><br>– Circus instructor and performer Enrique Salas</p><p>Age recommendation: for senior citizens <br>Duration: 10 x 60 min <br>Instructor: circus instructor and performer Enrique Salas <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Tue 4.8.at 10.a.m.: stoa.fi/en/events. <br>Lisätiedot: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69372/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69390", "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:350/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385137, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-15T09:18:19.108481Z", "last_modified_time": "2026-06-15T09:18:19.108496Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792320.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385137/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-15T09:18:19.023777Z", "last_modified_time": "2026-06-16T13:14:17.653948Z", "date_published": null, "start_time": "2026-10-06T11:00:00Z", "end_time": "2026-10-06T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ohjatut päivätanssit Stoan aulassa", "sv": "Dagdans", "en": "Daytime dances" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E88FD69E2D363CF0EB403E7F641A2B2D/Ohjatut_paivatanssit_Stoan_aulassa_", "sv": "http://www.stoa.fi/sv/evenemang/event/E88FD69E2D363CF0EB403E7F641A2B2D/Dagdans", "en": "http://www.stoa.fi/en/events/event/E88FD69E2D363CF0EB403E7F641A2B2D/Daytime_dances" }, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69390/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69092", "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: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: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/kulke:756/?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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2338743, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-25T08:13:03.824260Z", "last_modified_time": "2026-05-25T08:13:03.824275Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793061.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2338743/?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-05-25T08:13:03.694526Z", "last_modified_time": "2026-06-16T11:13:59.996360Z", "date_published": null, "start_time": "2026-06-25T13:00:00Z", "end_time": "2026-06-25T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Stoan nuorten Pride", "sv": "Stoan nuorten Pride", "en": "Stoan nuorten Pride" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Stoan aukiolla virittäydytään jälleen yhdessä Priden tunnelmaan!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/100DB5DE412C1855B34F6922798B56F7/Stoan_nuorten_Pride", "sv": "http://www.stoa.fi/sv/evenemang/event/100DB5DE412C1855B34F6922798B56F7/Stoan_nuorten_Pride", "en": "http://www.stoa.fi/en/events/event/100DB5DE412C1855B34F6922798B56F7/Stoan_nuorten_Pride" }, "description": { "fi": "<p>Stoan aukiolla virittäydytään jälleen yhdessä Priden tunnelmaan!</p><p>Luvassa on kesäistä yhdessäoloa, värikkäitä työpajoja, hyvää musiikkia, kaverikoiria ja vegehodareita. Tästä ei kesäilta parane!</p><p>Printtipajassa painetaan sateenkaarevia printtejä kangaskasseihin, jaossa on rajallinen määrä maksuttomia kasseja. Voit ottaa mukaan myös oman ohuehkon, puuvillaisen tekstiilisi ja tuunata sen upealla printillä.</p><p>Kylttipajassa ideoidaan sloganeja ja valmistetaan omannäköisiä kylttejä lauantain Pride-kulkuetta varten. Kaikki tarvittavat tarvikkeet löytyvät paikan päältä.</p><p>Pinssipajassa tehdään pronomini- ja lippurintanappeja.<br>Sirkus Magentan sirkuspajassa pääset kokeilemaan erilaisia sirkusvälineitä matalalla kynnyksellä Magentan ohjaajien opastuksella.</p><p>Kirjaston sateenkaarihylly tuo tapahtumaan kirjamaistiaisia ja lukuinspistä. Ota kirjastokortti mukaan, niin voit lainata kesäluettavaa!</p><p>Tapahtumaa sulostuttamaan saapuvat Kennelliiton ystävälliset kaverikoirat.</p><p>Tunnelmaa luovat genre- ja genderfluidi tiskijunkkari DJ Riekko sekä itä-helsinkiläinen indieartisti Carma, jonka keikalla tunteet ja rytmi kohtaavat.</p><p>Tapahtumassa palvelee ilmainen hodaribuffa.<br>Matteuksen kirkon edustalla korupaja, pihapelejä ja katuliiduilla taiteilua.</p><p>Stoan aukiolta saat kaiken tarvittavan fiilistä myöten lauantaiseen Pride-ilotteluun, lämpimästi tervetuloa mukaan!<br>Tapahtuma on suunnattu 13-29 -vuotiaille nuorille.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69092/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpbmwcgta", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwccja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcc4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcdfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcdom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcdxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwceaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcehm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcepa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcexa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwce6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcfha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcfqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcfye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcgbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcgky/?format=api" } ], "images": [ { "id": 150454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T07:37:14.621279Z", "last_modified_time": "2024-03-15T07:37:14.621301Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-20_1.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Opastustilanne", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-05-11T08:56:02.455402Z", "last_modified_time": "2026-06-16T08:26:11.918431Z", "date_published": null, "start_time": "2026-09-03T07:00:00Z", "end_time": "2026-12-10T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "ENTER ry Tietotekniikkaopastusta senioreille", "sv": "ENTER ry IT utbildning för seniorer", "en": "ENTER ry IT tutoring for seniors" }, "location_extra_info": { "fi": "Paja" }, "provider": { "fi": "Enter ry" }, "short_description": { "fi": "Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. ", "sv": "Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.", "en": "Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish." }, "info_url": null, "description": { "fi": "<p>Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat.</p><p>Opastajina toimivat ENTER ry:n vapaaehtoiset vertaisopastajat.</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater på finska. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people in Finnish. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmwcgta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }