Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=74
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=75", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=73" }, "data": [ { "id": "kulke:68541", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385393, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T07:14:10.141709Z", "last_modified_time": "2026-06-29T07:14:10.141727Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790899.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385393/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T07:14:10.030680Z", "last_modified_time": "2026-08-26T08:23:34.257442Z", "date_published": null, "start_time": "2026-11-04T15:00:00Z", "end_time": "2026-11-04T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Taidetauko-työpajat – Ovikoriste kaikille aisteille", "sv": "Konstpaus-verkstäder", "en": "Taidetauko art workshops" }, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!</p><p>Kun illat pimentyvät ja kaamos lähestyy, on hyvä hetki laittaa luovuus liikkeelle. Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan kahvilassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Kahvila Stoa<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p><p><b>ke 4.11. klo 17–19 | Ovikoriste kaikille aisteille</b><br>Mehiläisvahasta ja erilaisista luonnonmateriaaleista syntyy kaunis koriste oveen tai ikkunaan. Koriste hellii niin haju-, näkö- kuin tuntoaistiakin.<br> <br><b>ke 2.12. klo 17–19 | Vimmelit, eli villit himmelit!</b><br>Pajassa saat opastuksen yksinkertaiseen himmelitekniikkaan. Sen jälkeen voit vapaasti ja orgaanisesti rakentaa omannäköisesi himmelin. Materiaaleina käytämme paperipillejä. Mukaan mahtuu kerrallaan noin 20 henkilöä.</p>", "sv": "<p>Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas kafé för lite kvällste!</p><p>När kvällarna blir mörkare och polarnatten närmar sig är det ett bra tillfälle att sätta fart på kreativiteten. I Konstpaus-verkstäderna berikas din vardag med stressfria hantverkstekniker som är lätta att lära sig. I Stoas kafé bjuds deltagarna på kvällste eller saft.</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Kafé Stoa <br>Längd: 120 min. per tillfälle <br>Verkstäderna leds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan krävs. Stoa bjuder deltagarna på kvällste.</p><p><b>On 7.10 kl. 17–19 | Aarrekranssi krääsästä (En skattkrans av skräp)</b> <br>Också skräp kan få en vacker form! Av återvunna skatter och järntråd skapar vi en unik krans som sprider glädje i vardagen.</p><p><b>On 4.11 kl. 17–19 | Ovikoriste kaikille aisteille (Dörrdekoration för alla sinnen)</b> <br>Av bivax och olika naturmaterial kan man skapa en vacker dekoration till en dörr eller ett fönster. Dekorationen tilltalar såväl luktsinnet som synen och känseln.</p><p><b>On 2.12 kl. 17–19 | Vimmelit, eli villit himmelit! (Vimlar, det vill säga vilda himlar!)</b></p><p>I verkstaden får du lära dig en enkel teknik för att tillverka en halmhimmel. Därefter kan du fritt och naturligt skapa din egen himmel. Som material använder vi papperssugrör. Det finns plats för cirka 20 deltagare åt gången.</p>", "en": "<p>Take a creative break from everyday life and sit down in Stoa’s café for some evening tea!</p><p>When the evenings grow darker and the polar night approaches, the time is right to let your creativity run wild. Taidetauko workshops enrich your everyday life with easy-to-learn, unhurried crafts. Visitors can have some evening tea or juice at Stoa’s café.</p><p>Director: Chloé Mahy-Hulkko <br>Place: Café Stoa <br>Duration: 120 min per session <br>Workshop instruction language: Finnish, French and English <br> Free entry. No advance registration required. Stoa provides evening tea for participants.</p><p><b>Wednesday 7 October at 17.00–19.00 | Treasure wreath from junk</b> <br>Even junk can take on a beautiful shape! We put together a unique wreath from recycled treasures and iron wire to bring a touch of joy to everyday life.</p><p><b>Wednesday 4 November at 17.00–19.00 | Door decoration for all the senses</b> <br>We use beeswax and various natural materials to create a beautiful decoration for a door or window. This decoration delights the senses of smell, sight and touch alike.</p><p><b>Wednesday 2 December at 17.00–19.00 | Wild straw mobiles!</b> <br>At this workshop, you will learn a simple technique for making a straw mobile. After that, you are free to organically create your own straw mobile as you see fit. We use paper straws as our material. The workshop has room for around 20 participants at a time.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!", "sv": "Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas kafé för lite kvällste!", "en": "Take a creative break from everyday life and sit down in Stoa’s café for some evening tea!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/0F706758633CD3E700335A7FBA6A3E15/Taidetauko-tyopajat", "sv": "http://www.stoa.fi/sv/evenemang/event/0F706758633CD3E700335A7FBA6A3E15/Konstpaus-verkstader", "en": "http://www.stoa.fi/en/events/event/0F706758633CD3E700335A7FBA6A3E15/Taidetauko_art_workshops_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68541/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68649", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385410, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:54.970848Z", "last_modified_time": "2026-06-29T12:13:54.970860Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791499.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T12:13:54.860864Z", "last_modified_time": "2026-08-26T08:23:30.122455Z", "date_published": null, "start_time": "2026-10-17", "end_time": "2026-10-18", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Ylistys eläimille -festivaali – Tiede x taide x eläinten oikeudet", "sv": "Festivalen Ylistys eläimille – Vetenskap × konst × djurens rättigheter", "en": "Ylistys eläimille festival – Science x Art x Animal Rights" }, "description": { "fi": "<p>Ylistys eläimille on poikkitaiteellinen ja -tieteellinen festivaali, jonka sydämessä ovat eläinten oikeudet.</p><p>Festivaali on juhla, joka kokoaa yhteen niin samanmieliset kuin eläinten oikeuksia hieman kauempaakin tarkastelevat. Se rakentuu tutkijoiden puheenvuoroista, taiteilijoiden esityksistä ja eläinoikeustoimijoiden vuorovaikutuksesta.<br> <br>Tapahtuma levittäytyy Stoan eri tiloihin ja yhdistää näyttelyt, puheenvuorot ja esitykset. Se on samaan aikaan ajatuksia herättävä ja viihdyttävä: musiikkia, keskustelua, naurua, ruokaa ja juomaa.<br> <br>Ylistys eläimille ei ole pelkkä tapahtuma, se on tila, jossa eläin ei ole kohde vaan vahvasti läsnä. Tavoitteena on synnyttää vuosittain toistuva festivaali, joka yhdistää taiteen ja tutkimuksen tavalla, joka herättää tunteita, jakaa tietoa ja motivoi pitämään eläinten puolta myös jatkossa.<br> <br>Festivaalin sydämenä toimii <i>Todellisuus sellaisena, kuin se ei meille näyttäydy</i> -näyttely, joka jatkuu Stoan tiloissa tapahtuman jälkeen aina 22.11.2026 asti.</p><p>Ylistys eläimille -festivaalin järjestävät Eläinoikeusakatemia ja Häiriköt Päämaja.</p>", "sv": "<p>Ylistys eläimille är en tvärkonstnärlig och tvärvetenskaplig festival, där djurens rättigheter står i centrum.</p><p>Festivalen är en fest som samlar både likasinnade och dem som betraktar djurens rättigheter ur ett något annat perspektiv. Den består av föredrag av forskare, uppträdanden av konstnärer och interaktion mellan djurrättsaktivister. <br> <br>Evenemanget äger rum i olika lokaler på Stoa och kombinerar utställningar, föredrag och uppträdanden. Det är både tankeväckande och underhållande: musik, samtal, skratt, mat och dryck. <br> <br>Ylistys eläimille är inte bara ett evenemang, utan ett rum där djuret inte är ett objekt utan har en stark närvaro. Målet är att skapa en årligen återkommande festival som förenar konst och forskning på ett sätt som väcker känslor, sprider kunskap och motiverar människor att fortsätta att stå upp för djuren också i framtiden. <br> <br>Festivalens hjärta utgörs av utställningen <i>Todellisuus sellaisena, kuin se ei meille näyttäydy</i>, som fortsätter att visas i Stoas lokaler efter evenemanget fram till den 22 november 2026. <br> <br>Festivalen Ylistys eläimille ordnas av Eläinoikeusakatemia och Häiriköt-päämaja.</p>", "en": "<p>Ylistys eläimille is an interdisciplinary arts and science festival centred on animal rights.</p><p>The festival is a celebration that brings together both like-minded people and those who look at animal rights from a distance. It consists of presentations by researchers, performances by artists and interaction with animal rights activists. <br> <br>The event takes place across various spaces at Stoa, combining exhibitions, speeches and performances. It is both thought-provoking and entertaining: music, conversation, laughter, food and drink. <br> <br>Ylistys eläimille is not merely an event; it is a state in which the animal is not an object but is strongly present. The aim is to establish an annual festival that brings together art and research in a way that stirs emotions, spreads knowledge and motivates people to continue standing up for animals. <br> <br>At the heart of the festival is the exhibition <i>Todellisuus sellaisena, kuin se ei meille näyttäydy</i>, which will continue at Stoa after the event until 22 November 2026. <br> <br>The Ylistys eläimille festival is organised by Eläinoikeusakatemia and Häiriköt-päämaja.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ylistys eläimille on poikkitaiteellinen ja -tieteellinen festivaali, jonka sydämessä ovat eläinten oikeudet.", "sv": "Ylistys eläimille är en tvärkonstnärlig och tvärvetenskaplig festival, där djurens rättigheter står i centrum.", "en": "Ylistys eläimille is an interdisciplinary arts and science festival centred on animal rights." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FDD50886256F155EF81D30AE6518ADF6/Ylistys_elaimille_-festivaali", "sv": "http://www.stoa.fi/sv/evenemang/event/FDD50886256F155EF81D30AE6518ADF6/Festivalen_Ylistys_elaimille", "en": "http://www.stoa.fi/en/events/event/FDD50886256F155EF81D30AE6518ADF6/Ylistys_elaimille_festival" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68649/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68644", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385403, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T11:13:45.978970Z", "last_modified_time": "2026-06-29T11:13:45.978985Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791403.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385403/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T11:13:45.855498Z", "last_modified_time": "2026-08-26T08:23:29.895805Z", "date_published": null, "start_time": "2026-10-17", "end_time": "2026-11-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, "location_extra_info": null, "provider": null, "name": { "fi": "Häiriköt-päämaja & Eläinoikeusakatemia: Todellisuus sellaisena, kuin se ei meille näyttäydy", "sv": "Häiriköt-päämaja & Eläinoikeusakatemia: Verkligheten sådan vi inte ser den", "en": "Häiriköt-päämaja & Eläinoikeusakatemia: Reality as We Don't Know It" }, "description": { "fi": "<p>Eläimet ovat edessäsi, takanasi, päälläsi ja sisälläsi. Et ehkä näe heitä, mutta he näkevät sinut.</p><p>Vaikka maailmassa ja Suomessa kasvatetaan ja tapetaan vuosittain meihin ihmisiin verrattuna moninkertainen määrä muiden lajien edustajia, kiinnittyy huomiomme lähinnä pelkästään ihmisiin.</p><p>Häiriköt-päämajan ja Eläinoikeusakatemian näyttelyssä käännetään katse sinne, minne sitä tavallisesti ei haluta kääntää. Ja katsoessamme toisia huomaamme, että he ovat katsoneet meitä koko ajan.<br> <br>Näyttelyssä Jari Tammisen, Laura Gustafssonin, Ville Salervon ja Hanna Kukon teokset tarkastelevat aihetta muun muassa vastamainosten, eläinteollisuuden tuotantovälineiden sekä sarjakuvan keinoin.</p>", "sv": "<p>Djuren finns framför, bakom, utanpå och inuti dig. Du kanske inte ser dem, men de ser dig.</p><p>Även om det varje år i världen och i Finland föds upp och slaktas en mångdubbelt större mängd individer av andra arter jämfört med oss människor, riktas vår uppmärksamhet nästan uteslutande mot människor. Utställningen som ordnas av Häiriköt-päämaja och Eläinoikeusakatemia riktar blicken mot det som man vanligtvis inte vill vända blicken mot. Och när vi ser på de andra märker vi att de har tittat på oss hela tiden. <br> <br>I utställningen belyser verk av Jari Tamminen, Laura Gustafsson, Ville Salervo och Hanna Kukko ämnet bland annat genom antireklam, produktionsmedel inom djurindustrin och serier.</p>", "en": "<p>Animals are in front of you, behind you, on top of you and inside you. You may not see them, but they can see you.</p><p>Although many times as many members of other species are reared and slaughtered each year around the world and in Finland as there are humans, our attention is focused almost exclusively on humans. This exhibition by Häiriköt-päämaja and Eläinoikeusakatemia draws attention to places we usually prefer not to look. And as we look at the others, we realise that they have been watching us the whole time. <br> <br>In the exhibition, works by Jari Tamminen, Laura Gustafsson, Ville Salervo and Hanna Kukko explore the theme through means such as counter-advertisements, production equipment used in the animal industry and comic book techniques.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Eläimet ovat edessäsi, takanasi, päälläsi ja sisälläsi. Et ehkä näe heitä, mutta he näkevät sinut.", "sv": "Djuren finns framför, bakom, utanpå och inuti dig. Du kanske inte ser dem, men de ser dig.", "en": "Animals are in front of you, behind you, on top of you and inside you. You may not see them, but they can see you." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6D30EC71F3AC39F303908DDBDC1112FD/Hairikot-paamaja_Elainoikeusakatemia_Todellisuus_sellaisena_kuin_se_ei_meille_nayttaydy", "sv": "http://www.stoa.fi/sv/evenemang/event/6D30EC71F3AC39F303908DDBDC1112FD/Hairikot-paamaja_Elainoikeusakatemia_Verkligheten_sadan_vi_inte_ser_den", "en": "http://www.stoa.fi/en/events/event/6D30EC71F3AC39F303908DDBDC1112FD/Hairikot-paamaja_Elainoikeusakatemia_Reality_as_We_Don_t_Know_It" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68644/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69540", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385396, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T08:14:28.967247Z", "last_modified_time": "2026-06-29T08:14:28.967262Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792342.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385396/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T08:14:28.815866Z", "last_modified_time": "2026-08-26T08:23:28.013689Z", "date_published": null, "start_time": "2026-10-09T16:00:00Z", "end_time": "2026-10-09T19:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Helsinki Experimental Series – Nomads Festival", "sv": "Helsinki Experimental Series – Nomads Festival", "en": "Helsinki Experimental Series – Nomads Festival" }, "description": { "fi": "<p>Improvisoitu musiikki, tanssi ja visuaalinen taide yhdistyvät illassa, jossa kohtaaminen ja läsnäolo ovat keskiössä.</p><p>Helsinki Experimental Series ei ole pelkkä konsertti, vaan alusta, jossa uusia yhteyksiä syntyy – taiteilijoiden välillä, yleisön ja esiintyjien välillä, sekä eri taiteenalojen välillä.<br>Helsinki Experimental Series (HES) laajenee syksyllä 2026 uuteen mittakaavaan, kun konsepti tuodaan Stoan suurelle näyttämölle osana Nomads Festivaalia 9.10. Kyseessä on sarjan tähänastisista kunnianhimoisin kokonaisuus, jossa intiimistä galleriaympäristöstä tuttu formaatti avataan suurempaan tilaan säilyttäen sen ydin: kohtaaminen, riski ja yhteisluominen.</p><p>Ilta rakentuu HES-sarjalle ominaisen dramaturgian varaan, keskiössä improvisoitu ja kokeellinen musiikki sekä monitaiteellinen esitystaide. Kuraattori Sergio Castrillón yhdistää Artistic Research, Action Research ja community engagement projektissa, joka tuo yhteen yhdeksän taiteilijaa eri taustoista, muodostaen kokonaisuuden, jossa musiikki, tanssi ja visuaalinen taide ovat jatkuvassa vuorovaikutuksessa. Esitykset syntyvät hetkessä, ilman ennalta määriteltyjä rakenteita, korostaen läsnäoloa, kuuntelua ja riskinottoa.</p><p>Tapahtuma toteutetaan yhteistyössä Sibelius-Akatemian Global Music Departmentin kanssa, joka tuo mukaan osan esiintyjistä opiskelijoina. Illassa kohtaavat näin eri tasoilla toimivat taiteilijat; ammattilaiset ja nousevat tekijät, luoden ainutlaatuisen tilan oppimiselle, vuorovaikutukselle ja uusien yhteistyömuotojen syntymiselle.</p><p>HES:n keskiössä on ajatus tilasta, jossa perinteiset roolit – esiintyjä ja yleisö, ammattilainen ja ensikertalainen – voivat liikkua ja muuttua. Illan aikana tämä konkretisoituu “Blind dates for improvisers” -osiossa, jossa yleisön jäsenet kutsutaan mukaan esitykseen. Kohtaamiset syntyvät ilman ennakkosopimuksia, rakentaen ainutkertaisia tilanteita, joissa eri taustat ja ilmaisutavat törmäävät ja sulautuvat.</p><p>Stoan ilta tuo HES-konseptin ensimmäistä kertaa suureen saliin, laajentaen kokemusta tilallisesti ja kehollisesti. Samalla se säilyttää sarjan ytimen: hetkessä syntyvän taiteen, joka perustuu kuunteluun, reagointiin ja luottamukseen.</p><p>Illan esiintyjät julkaistaan loppukesällä.</p><p>Kesto: 3 t</p>", "sv": "<p>Improviserad musik, dans och visuell konst förenas under en kväll där möten och närvaro står i centrum.</p><p>Helsinki Experimental Series är inte bara en konsert, utan en plattform där nya kontakter uppstår – mellan konstnärer, mellan publiken och artisterna samt mellan olika konstformer.</p><p>Helsinki Experimental Series (HES) utvidgas under hösten 2026, när konceptet presenteras på Stoas stora scen som en del av Nomads Festival den 9 oktober. Det här är den hittills mest ambitiösa delen i serien, där det välbekanta formatet i den intima gallerimiljön utvidgas till ett större utrymme, samtidigt som dess kärna bevaras: mötet, risken och det gemensamma skapandet.</p><p>Kvällen bygger på den dramaturgi som är karakteristisk för HES-serien, med improviserad och experimentell musik samt tvärkonstnärlig scenkonst i centrum. Kuratorn Sergio Castrillón förenar Artistic Research, Action Research och community engagement i ett projekt som förenar nio konstnärer med olika bakgrunder och skapar en helhet där musik, dans och visuell konst står i ständig växelverkan. Föreställningarna uppstår i stunden, utan förutbestämda strukturer, och lägger fokus på närvaro, lyssnande och risktagande. <br> <br>Evenemanget genomförs i samarbete med Sibelius-Akademins Global Music Department, som bidrar med en del av artisterna i form av studerande. Under kvällen möts således konstnärer som är verksamma på olika nivåer – både yrkesverksamma och nya talanger – vilket skapar en unik miljö för lärande, interaktion och uppkomsten av nya former av samarbete.</p><p>I centrum för HES står tanken om ett rum där traditionella roller – artist och publik, proffs och nybörjare – kan utvecklas och förändras. Under kvällen tar detta konkret form i avsnittet Blind dates for improvisers, där personer ur publiken bjuds in att delta i föreställningen. Möten uppstår utan förhandsöverenskommelser och skapar unika situationer där olika bakgrunder och uttryckssätt möts och smälter samman.</p><p>Stoas kväll tar HES-konceptet till den stora salen för första gången och utvidgar upplevelsen både rumsligt och kroppsligt. Samtidigt bevarar den seriens kärna: konst som uppstår i stunden och bygger på lyssnande, reaktion och tillit.</p><p>Kvällens artister offentliggörs i slutet av sommaren.</p><p>Fritt inträde!</p><p>Längd: 3 h</p>", "en": "<p>Improvised music, dance and visual arts coalesce on an evening centered on shared encounters and being present in the moment.</p><p>Helsinki Experimental Series is not merely a concert, but a platform where new connections are formed—between artists, between audience and performers, and across artistic disciplines.</p><p>Helsinki Experimental Series (HES) expands to a new scale in autumn 2026, as the concept is brought to the main stage of Stoa as part of the Nomads Festival on October 9. This marks the most ambitious edition of the series to date, where a format known from intimate gallery settings opens into a larger space while preserving its core: encounter, risk, and co-creation.</p><p>The evening is built around the characteristic dramaturgy of the HES series, with improvised and experimental music at its center, alongside multidisciplinary performance art. Curator Sergio Castrillón combines artistic research, action research, and community engagement in a project that brings together nine artists from diverse backgrounds, forming a dynamic whole where music, dance, and visual art are in constant interaction. The performances emerge in the moment, without predetermined structures, emphasizing presence, listening, and risk-taking.</p><p>The event is organized in collaboration with the Sibelius Academy’s Global Music Department, which contributes performers in the form of students. The evening thus brings together artists working at different stages of their careers—professionals and emerging practitioners—creating a unique space for learning, interaction, and the development of new forms of collaboration.</p><p>At the core of HES is the idea of a space where traditional roles—performer and audience, professional and first-timer—can shift and transform. This becomes concrete during the “Blind Dates for Improvisers” segment, where audience members are invited to take part in the performance. These encounters unfold without prior agreements, creating unique situations in which different backgrounds and modes of expression meet, collide, and merge.</p><p>The evening at Stoa introduces the HES concept to a large auditorium for the first time, expanding the experience spatially and physically. At the same time, it retains the essence of the series: art created in the moment, grounded in listening, responsiveness, and trust.</p><p>The performers of the evening will be announced in late summer.</p><p>Duration: 3 h</p>" }, "provider_contact_info": null, "short_description": { "fi": "Improvisoitu musiikki, tanssi ja visuaalinen taide yhdistyvät illassa, jossa kohtaaminen ja läsnäolo ovat keskiössä.", "sv": "Improviserad musik, dans och visuell konst förenas under en kväll där möten och närvaro står i centrum.", "en": "Improvised music, dance and visual arts coalesce on an evening centered on shared encounters and being present in the moment." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4C3CFF87DF61C31077332CD73C58A526/Helsinki_Experimental_Series", "sv": "http://www.stoa.fi/sv/evenemang/event/4C3CFF87DF61C31077332CD73C58A526/Helsinki_Experimental_Series", "en": "http://www.stoa.fi/en/events/event/4C3CFF87DF61C31077332CD73C58A526/Helsinki_Experimental_Series" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69540/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68540", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385392, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T07:14:06.690827Z", "last_modified_time": "2026-06-29T07:14:06.690843Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790897.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385392/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T07:14:06.546055Z", "last_modified_time": "2026-08-26T08:23:27.243712Z", "date_published": null, "start_time": "2026-10-07T14:00:00Z", "end_time": "2026-10-07T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Taidetauko-työpajat – Aarrekranssi krääsästä", "sv": "Konstpaus-verkstäder", "en": "Taidetauko art workshops" }, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!</p><p>Kun illat pimentyvät ja kaamos lähestyy, on hyvä hetki laittaa luovuus liikkeelle. Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan kahvilassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Kahvila Stoa<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p><p><b>ke 7.10.klo 17–19 | Aarrekranssi krääsästä</b><br>Krääsäkin voi löytää kauniin muodon! Kokoamme kierrätetyistä aarteista ja rautalangasta iloa arkeen tuovan ainutkertaisen kranssin.<br> <br><b>ke 4.11. klo 17–19 | Ovikoriste kaikille aisteille</b><br>Mehiläisvahasta ja erilaisista luonnonmateriaaleista syntyy kaunis koriste oveen tai ikkunaan. Koriste hellii niin haju-, näkö- kuin tuntoaistiakin.<br> <br><b>ke 2.12. klo 17–19 | Vimmelit, eli villit himmelit!</b><br>Pajassa saat opastuksen yksinkertaiseen himmelitekniikkaan. Sen jälkeen voit vapaasti ja orgaanisesti rakentaa omannäköisesi himmelin. Materiaaleina käytämme paperipillejä. Mukaan mahtuu kerrallaan noin 20 henkilöä.</p>", "sv": "<p>Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas kafé för lite kvällste!</p><p>När kvällarna blir mörkare och polarnatten närmar sig är det ett bra tillfälle att sätta fart på kreativiteten. I Konstpaus-verkstäderna berikas din vardag med stressfria hantverkstekniker som är lätta att lära sig. I Stoas kafé bjuds deltagarna på kvällste eller saft.</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Kafé Stoa <br>Längd: 120 min. per tillfälle <br>Verkstäderna leds på finska, franska och engelska <br> Fritt inträde. Ingen förhandsanmälan krävs. Stoa bjuder deltagarna på kvällste.</p><p><b>On 7.10 kl. 17–19 | Aarrekranssi krääsästä (En skattkrans av skräp)</b> <br>Också skräp kan få en vacker form! Av återvunna skatter och järntråd skapar vi en unik krans som sprider glädje i vardagen.</p><p><b>On 4.11 kl. 17–19 | Ovikoriste kaikille aisteille (Dörrdekoration för alla sinnen)</b> <br>Av bivax och olika naturmaterial kan man skapa en vacker dekoration till en dörr eller ett fönster. Dekorationen tilltalar såväl luktsinnet som synen och känseln.</p><p><b>On 2.12 kl. 17–19 | Vimmelit, eli villit himmelit! (Vimlar, det vill säga vilda himlar!)</b> <br>I verkstaden får du lära dig en enkel teknik för att tillverka en halmhimmel. Därefter kan du fritt och naturligt skapa din egen himmel. Som material använder vi papperssugrör. Det finns plats för cirka 20 deltagare åt gången.</p>", "en": "<p>Take a creative break from everyday life and sit down in Stoa’s café for some evening tea!</p><p>When the evenings grow darker and the polar night approaches, the time is right to let your creativity run wild. Taidetauko workshops enrich your everyday life with easy-to-learn, unhurried crafts. Visitors can have some evening tea or juice at Stoa’s café.</p><p>Director: Chloé Mahy-Hulkko <br>Place: Café Stoa <br>Duration: 120 min per session <br>Workshop instruction language: Finnish, French and English <br> Free entry. No advance registration required. Stoa provides evening tea for participants.</p><p><b>Wednesday 7 October at 17.00–19.00 | Treasure wreath from junk</b> <br>Even junk can take on a beautiful shape! We put together a unique wreath from recycled treasures and iron wire to bring a touch of joy to everyday life.</p><p><b>Wednesday 4 November at 17.00–19.00 | Door decoration for all the senses</b> <br>We use beeswax and various natural materials to create a beautiful decoration for a door or window. This decoration delights the senses of smell, sight and touch alike.</p><p><b>Wednesday 2 December at 17.00–19.00 | Wild straw mobiles!</b> <br>At this workshop, you will learn a simple technique for making a straw mobile. After that, you are free to organically create your own straw mobile as you see fit. We use paper straws as our material. The workshop has room for around 20 participants at a time.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!", "sv": "Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas kafé för lite kvällste!", "en": "Take a creative break from everyday life and sit down in Stoa’s café for some evening tea!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/862D7D91FAF9270E0DE4E4C1B8D1A9B8/Taidetauko-tyopajat", "sv": "http://www.stoa.fi/sv/evenemang/event/862D7D91FAF9270E0DE4E4C1B8D1A9B8/Konstpaus-verkstader", "en": "http://www.stoa.fi/en/events/event/862D7D91FAF9270E0DE4E4C1B8D1A9B8/Taidetauko_art_workshops_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68540/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69557", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385439, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-30T13:13:42.783800Z", "last_modified_time": "2026-06-30T13:13:42.783821Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789974.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-30T13:13:42.654113Z", "last_modified_time": "2026-08-26T08:23:25.725198Z", "date_published": null, "start_time": "2026-10-03", "end_time": "2026-10-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Taiteen vuoksi – Vuosaaren taiteilijatalon näyttely", "sv": "För konstens skull – Utställning på Nordsjö konstnärshus", "en": "For the Sake of Art – Exhibition at the Vuosaari Artists’ House" }, "description": { "fi": "<p>Näyttelyssä on nähtävillä monipuolinen kattaus taiteilijatalon asukkaiden tuotantoa.</p><p>Vuosaaren Aurinkolahteen valmistui vuonna 2003 Helsingin 450-vuotistaiteilijatalo, jonne muutti iso joukko eri taiteen alojen ammattilaisia. Talosta on vuosien varrella muodostunut monille sen asukkaista merkittävä yhteisö, joka on mahdollistanut keskittymisen luovaan työhön ja vuorovaikutukseen.<br> <br>Osa Vuotalon näyttelyn taiteilijoista on viihtynyt Vuosaaren maisemissa talon valmistumisesta lähtien ja osa heistä on vastatulleita.</p><p>Näyttelyn ovat kuratoineet Aino Favén, Tiina Karhu ja Anna Wilhelmus. Näyttely on osa Vuosaariseura 60 vuotta -tapahtumaa.</p>", "sv": "<p>Utställningen visar ett varierat urval av verk skapade av boende i konstnärshuset.</p><p>I Solvik i Nordsjö stod Helsingfors 450-årsjubileums konstnärshus klart år 2003, dit en stor skara yrkesverksamma inom olika konstnärliga områden flyttade in. Huset har genom åren utvecklats till en viktig gemenskap för många av dess invånare, vilket har gjort det möjligt för dem att fokusera på kreativt arbete och växelverkan. <br> <br>En del av konstnärerna som deltar i utställningen på Nordhuset har trivts i området ända sedan huset stod klart, medan andra är nyinflyttade.</p><p>Utställningen har kuraterats av Aino Favén, Tiina Karhu och Anna Wilhelmus. Utställningen ingår i evenemanget Nordsjö-sällskapet 60 år.</p>", "en": "<p>This exhibition features a diverse selection of works by residents of the artists’ residence.</p><p>Helsinki’s 450th-anniversary artists’ residence was completed in 2003 in Aurinkolahti, Vuosaari, and a large group of professionals from various artistic fields moved in. Over the years, the building has become a significant community for many of its residents, enabling them to focus on creative work and interaction. <br> <br>Some of the artists featured in the Vuosaari House exhibition have been enjoying the scenery of Vuosaari ever since the building was completed, while others are newcomers.</p><p>The exhibition has been curated by Aino Favén, Tiina Karhu and Anna Wilhelmus. The exhibition is part of the ‘Vuosaari-seura 60 Years’ event.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Näyttelyssä on nähtävillä monipuolinen kattaus taiteilijatalon asukkaiden tuotantoa.", "sv": "Utställningen visar ett varierat urval av verk skapade av boende i konstnärshuset.", "en": "This exhibition features a diverse selection of works by residents of the artists’ residence." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/59614153A0952D97D9CB5D56B8ED6447/Taiteen_vuoksi", "sv": "http://www.vuotalo.fi/sv/evenemang/event/59614153A0952D97D9CB5D56B8ED6447/For_konstens_skull", "en": "http://www.vuotalo.fi/en/events/event/59614153A0952D97D9CB5D56B8ED6447/For_the_Sake_of_Art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69557/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69556", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/event/klubi-ilta-whistle-bait-plays-60s-elvis-presley-vuotalo-21841841/", "sv": "https://www.lippu.fi/event/klubi-ilta-whistle-bait-plays-60s-elvis-presley-vuotalo-21841841/", "en": "https://www.lippu.fi/event/klubi-ilta-whistle-bait-plays-60s-elvis-presley-vuotalo-21841841/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385436, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-30T12:13:44.435362Z", "last_modified_time": "2026-06-30T12:13:44.435381Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794040.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385436/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-30T12:13:44.324894Z", "last_modified_time": "2026-08-26T08:23:24.959886Z", "date_published": null, "start_time": "2026-10-01T15:00:00Z", "end_time": "2026-10-01T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Whistle Bait Plays 60s Elvis Presley!", "sv": "Whistle Bait Plays 60s Elvis Presley!", "en": "Whistle Bait Plays 60s Elvis Presley!" }, "description": { "fi": "<p>Haminalaislähtöinen Whistle Bait on yksi maamme pitkäikäisimmistä rock-orkestereista. Viime vuonna yhtye juhli 40-vuotista taivaltaan ja on yhä voimissaan.</p><p>50–60-lukujen rock and rolliin musiikkinsa pohjaava bilejyrä tekee yli kymmenen vuoden tauon jälkeen paljon kiitosta saaneen ja kysytyn erikoiskonsertin keskittyen vain ja ainoastaan legendaarisen Elvis Presleyn 1960-luvun tuotantoon, painopisteen ollessa kuninkaan vähemmän livenä kuulluissa elokuvasävelissä!</p><p>Tulossa siis \"Viva Las Vegas\", \"Kissin' Cousins\", \"Speedway\" ja muut helmet – ei viittoja ja saksipotkuja, vaan mahtavaa musiikkia!</p><p>Whistle Bait:<br>Vesa Haaja (laulu, kitara)<br>Vesa Tynkkynen (kitara)<br>Kim Drockila (koskettimet)<br>Juho Hurskainen (saksofoni)<br>Lasse Sirkko (basso)<br>Juha Tynkkynen (rummut)</p><p>Klubi-ilta, A-oikeudet. Tarjoiluista vastaa Café Pokkari. Ovet avataan klo 17.30. Alle 18-vuotiaat huoltajan seurassa.</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>", "sv": "<p>Whistle Bait från Fredrikshamn är en av de mest långlivade rockorkestrarna i vårt land. Förra året firade bandet 40-årsjubileum och är fortfarande starkt.</p><p>Efter ett uppehåll på mer än tio år framför den 50- och 60-talsbaserade rock’n’roll partyvälten en mycket hyllad och efterfrågad specialkonsert som enbart fokuserar på den legendariska Elvis Presleys 1960-talsproduktion, med tonvikt på kungens filmmusik, som inte så ofta hörts live! <br> <br>Viva Las Vegas, Kissin' Cousins, Speedway och andra pärlor utlovas alltså – inte mantlar och saxsparkar, utan fantastisk musik!</p><p>Whistle Bait: <br>Vesa Haaja – sång och gitarr <br>Vesa Tynkkynen – gitarr <br>Kim Drockila – klaviatur <br>Juho Hurskainen – saxofon <br>Lasse Sirkko – bas <br>Juha Tynkkynen – trummor</p><p>Klubbkväll, A-rättigheter. Café Pokkari står för serveringen. Dörrarna öppnas kl. 17.30. Barn under 18 år tillsammans med en vårdnadshavare. <br> <br>Längd: 1 h 45 min., inklusive 20 minuters paus</p>", "en": "<p>Whistle Bait, originally from Hamina, are one of Finland’s longest-running rock bands. Last year, the band celebrated their 40th anniversary and are still going strong.</p><p>The party powerhouse, whose music is rooted in 50s and 60s rock’n’roll, are making a much-praised and in-demand special concert after a break of over ten years, focusing solely on the legendary Elvis Presley’s 1960s’ output, with an emphasis on the King’s lesser-heard movie songs! <br> <br>Coming up are Viva Las Vegas, Kissin’ Cousins, Speedway and other gems – no capes or karate kicks, only magnificent music! <br> <br>Whistle Bait: <br>Vesa Haaja (vocals, guitar) <br>Vesa Tynkkynen (guitar) <br>Kim Drockila (keyboards) <br>Juho Hurskainen (saxophone) <br>Lasse Sirkko (bass) <br>Juha Tynkkynen (drums)</p><p>Club night, fully licensed bar. Refreshments are served by Café Pokkari. The doors open at 17.30. Persons under the age of 18 must be accompanied by their guardian. <br> <br>Duration: 1 h 45 min, incl. 20 min intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Haminalaislähtöinen Whistle Bait on yksi maamme pitkäikäisimmistä rock-orkestereista. Viime vuonna yhtye juhli 40-vuotista taivaltaan ja on yhä voimissaan.", "sv": "Whistle Bait från Fredrikshamn är en av de mest långlivade rockorkestrarna i vårt land. Förra året firade bandet 40-årsjubileum och är fortfarande starkt.", "en": "Whistle Bait, originally from Hamina, are one of Finland’s longest-running rock bands. Last year, the band celebrated their 40th anniversary and are still going strong." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/26AD6DC7E204D0C3661EC272A858181E/Whistle_Bait_Plays_60s_Elvis_Presley_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/26AD6DC7E204D0C3661EC272A858181E/Whistle_Bait_Plays_60s_Elvis_Presley_", "en": "http://www.vuotalo.fi/en/events/event/26AD6DC7E204D0C3661EC272A858181E/Whistle_Bait_Plays_60s_Elvis_Presley_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69556/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqd2ndtwu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:29805/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqd2ndvtu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386015, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-26T08:02:16.064330Z", "last_modified_time": "2026-08-26T08:02:16.064343Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0b778a03-f7f3-472c-9dcd-e370ccd3b8f8.jpg", "name": "", "cropping": "357,0,2499,2142", "photographer_name": "", "alt_text": "Omenoita puussa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386015/?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-08-26T08:19:54.597242Z", "last_modified_time": "2026-08-26T08:19:54.597260Z", "date_published": null, "start_time": "2026-09-07T14:00:00Z", "end_time": "2026-09-07T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Saunalahden Sennut eli Saunalahden seniori-ilta", "sv": "Saunalahden Sennut det vill säga Saunalahtens seniorkväll", "en": "Saunalahden Sennut in other words, the Saunalahti seniors’ evening" }, "description": { "fi": "<p>Tapaamiset 7.9.-14.12.2026 maanantaisin klo 17-18.30 Saunalahden kirjastossa. </p><p>Järjestäjä: Marika Nöjd, Saunalahden seniorin miniä ja kirjaston vapaaehtoinen.</p><ul><li>7.9.2026: tutustuminen, yhteinen ideointi, toiveet ja ryhmän säännöt</li><li>14.9.2026: muisteluilta: ensimmäinen/ viimeinen työpaikkasi</li><li>21.9.2026: tekoälyn käyttö yhdessä kokeillen</li><li>28.9.2026: huijausten tunnistaminen</li><li>5.10.2026: maisteluilta, uutuussuklaat/ karkit</li><li>12.10.2026: syyslomaviikko, ei tapaamista</li><li>19.10.2026 lemmikki-ilta, illassa mukana 14-vuotias labbisvanhus Silja</li><li>26.10.2026: Espoon kaupungin liikuntapalvelut/ Espoon kirjastojen senioripalvelut esittelee toimintaansa</li><li>2.11.2026: digiapu tai muistijumppa/ ulkopuolinen puhuja</li><li>9.11.2026: parhaat reseptit ja ruokavinkit</li><li>16.11.2026: murhamysteerin selvittäminen yhdessä</li><li>23.11.2026: paperilennokkikilpailu tai muu yhteinen hulluttelu</li><li>30.11.2026 pikkujoulut ja joululaulut (laulaen tai kuunnellen)</li><li>7.12.2026: levyraati</li><li>14.12.2026: muotiraati, katsotaan tämän hetken muotivillityksiä</li></ul><p>*** Huom. Ohjelma muokkautuu osallistujien toiveiden mukaan.</p>", "sv": "<p>Träffar 7 september–14 december 2026, måndagar kl. 17–18.30 på biblioteket i Saunalahti.</p><p>Arrangör: Marika Nöjd, svärdotter till en senior i Saunalahti och volontär på biblioteket.</p><ul><li>7 september 2026: presentation, gemensamt idéskapande, önskemål och gruppregler</li><li>14 september 2026: minneskväll: din första/sista arbetsplats</li><li>21 september 2026: prova på att använda artificiell intelligens tillsammans</li><li>28 september 2026: känna igen bedrägerier</li><li>5 oktober 2026: provsmakningskväll, nya chokladsorter/godis</li><li>12 oktober 2026: höstlovsvecka, inget möte</li><li>19 oktober 2026: husdjurskväll, med den 14-åriga labradorretiren Silja</li><li>26 oktober 2026: Espoos stads idrottsförvaltning/Espoos bibliotekens seniorverksamhet presenterar sin verksamhet</li><li>2 november 2026: digital hjälp eller minnesgymnastik/gästföreläsare</li><li>9 november 2026: de bästa recepten och mattipsen</li><li>16 november 2026: lösa ett mordmysterium tillsammans</li><li>23 november 2026: pappersflygartävling eller annat gemensamt skojande</li><li>30 november 2026: förjulfest och julsånger (sjunga eller lyssna)</li><li>7 december 2026: skivjury</li><li>14 december 2026: modejury, vi tittar på aktuella modetrender</li></ul><p>*** Obs! Programmet anpassas efter deltagarnas önskemål.</p>", "en": "<p>Meetings from 7 September to 14 December 2026, on Mondays from 5.00 pm to 6.30 pm at Saunalahti Library.</p><p>Organiser: Marika Nöjd, daughter-in-law of a Saunalahti senior and library volunteer.</p><p><br></p><ul><li>7 September 2026: getting to know each other, brainstorming together, wishes and group rules</li><li>14 September 2026: reminiscence evening: your first/last job</li><li>21 September 2026: trying out artificial intelligence together</li><li>28 September 2026: recognising scams</li><li>5 October 2026: tasting evening: new chocolates and sweets</li><li>12 October 2026: autumn half-term week – no meeting</li><li>19 October 2026: pets’ evening, featuring Silja, a 14-year-old Labrador</li><li>26 October 2026: Espoo City Sports Services and Espoo Libraries’ senior services present their activities</li><li>2 November 2026: digital support or memory training / guest speaker</li><li>9 November 2026: best recipes and cooking tips</li><li>16 November 2026: Solving a murder mystery together</li><li>23 November 2026: Paper aeroplane competition or other group fun</li><li>30 November 2026: Pre-Christmas party and Christmas carols (singing or listening)</li><li>7 December 2026: music panel</li><li>14 December 2026: fashion panel – let’s take a look at the latest fashion trends</li></ul><p>*** Note: The programme is subject to change based on participants’ wishes.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Seniori-ilta on avoin kaikille alueen senioreille ja eläkeläisille. Tapaamme Saunalahden kirjastossa erilaisten aktiviteettien ja yhdessäolon tiimoilta. ", "sv": "Seniorkvällen är öppen för alla seniorer och pensionärer i området. Vi träffas på biblioteket i Saunalahti för olika aktiviteter och för att umgås.", "en": "The Seniors’ Evening is open to all seniors and pensioners in the area. We’ll be meeting at Saunalahti Library to enjoy each other’s company." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqd2ndtwu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69566", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385708, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-06T10:15:27.558066Z", "last_modified_time": "2026-08-06T10:15:27.558146Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791510.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385708/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-06T10:15:27.426457Z", "last_modified_time": "2026-08-26T07:23:30.493522Z", "date_published": null, "start_time": "2026-10-08T06:00:00Z", "end_time": "2026-10-08T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Senioreiden palvelutori", "sv": "Servicetorg för seniorer", "en": "Senior Services Fair" }, "description": { "fi": "<p>Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista Malmin alueella.</p><p>Alueen yhdistykset ja toimijat esittelevät palveluitaan, pääset kysymään ja kokeilemaan. Tapahtuman pääesiintyjänä toimii valovoimainen Heidi Herala. Tule mukaan ja tuo kaverisikin! Tapahtumassa on levähdyspaikkoja ja kahvitarjoilu.</p><p>Tapahtuman aikataulu:<br>Malmisali<br>9.10–10 Tietoiskut ja luennot<br>Monipuolinen ravitsemus toimintakyvyn tukena (Sini Närvä, Ravitsemusasiantuntija, FM, LitM, Voimaa ruuasta –toiminta)<br>Suun omahoito kotona (Rauni Pantti, Terveydenedistäjä/Suun terveydenhuolto, Helsingin kaupunki)<br>Haluatko itsellesi kävelykaverin? (Vertaisohjaajat lähelläsi)<br>Liikkeessä läpi elämän – lisää liikettä jokaiseen päivään pienin askelin (Kirsi Johansson, Tapanilan Erä ry)<br>Monimuotoinen ikääntyminen ja löytävä työ (Jade)<br>10.10–10.45 DJ Börjen SenioriDisco<br>11–12 Heidi Herala (Malmisali)<br>12.15-12.45 Tanssiopetusta /Kaija Räty 12.45-14 DJ Börjen SenioriDisco</p><p>Kino Helios<br>10-10.15 Seniorikarate/Tapanilan EräKarate<br>10.30-10.45 Tasapainojumppa ja Tuolijumppa/HNMKY<br>12-12.15 Alueliikunta/Jaakko<br>12.30-12.45 Seniorikarate/Tapanilan EräKarate<br>13–13.15 Tasapainojumppa ja Tuolijumppa/HNMKY</p><p>Työväenopiston tilat<br>12-14 Aquarelli maalausta -tee itsellesi mukaan maalaus (Maalausluokka)<br>10-12 Kukkatyöpaja (Kulmaluokka 1 krs)<br>9–14 Kirjanmerkkityöpaja (Märkätila)</p><p>Vapaa pääsy!</p>", "sv": "<p>Det kostnadsfria servicetorget erbjuder möten, meningsfull sysselsättning och information om fritidsmöjligheter i Malm.</p><p>Föreningar och aktörer i området presenterar sina tjänster och du kan ställa frågor och prova på tjänsterna. Huvudartist på evenemanget är den karismatiska Heidi Herala. Kom tillsammans med en vän! Det ordnas viloplatser och kaffeservering under evenemanget.</p>", "en": "<p>The free-of-charge Palvelutori senior service event offers encounters, meaningful activities and information about recreational opportunities in the Malmi area.</p><p>Local associations and operators are showcasing their services, and you can ask questions and try things out. The headline act at the event is the dazzling Heidi Herala. Come along to the event and bring your friends, too! The event has plenty of places to rest and a coffee service</p>" }, "provider_contact_info": null, "short_description": { "fi": "Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista Malmin alueella.", "sv": "Det kostnadsfria servicetorget erbjuder möten, meningsfull sysselsättning och information om fritidsmöjligheter i Malm.", "en": "The free-of-charge Palvelutori senior service event offers encounters, meaningful activities and information about recreational opportunities in the Malmi area." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CA2CC20331E9630C288AF69E03181544/Senioreiden_palvelutori", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CA2CC20331E9630C288AF69E03181544/Servicetorg_for_seniorer", "en": "http://www.malmitalo.fi/en/events/event/CA2CC20331E9630C288AF69E03181544/Senior_Services_Fair_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69566/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69534", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "24,50 / 19 €", "sv": "24,50 / 19 €", "en": "24,50 / 19 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10", "sv": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10", "en": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385382, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T11:14:17.802258Z", "last_modified_time": "2026-06-26T11:14:17.802280Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792298.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385382/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T11:14:17.691190Z", "last_modified_time": "2026-08-26T07:23:27.908855Z", "date_published": null, "start_time": "2026-10-02T15:00:00Z", "end_time": "2026-10-02T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Ismo Dance Company: 5 koreografiaa rakkaudesta", "sv": "Ismo Dance Company: 5 koreografier om kärlek", "en": "Ismo Dance Company: 5 Choreographies about Love" }, "description": { "fi": "<p>Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana.</p><p>Ismo Dance Company tuo lavalle ainutlaatuisen tanssi-illan, jossa vierailee viisi koreografia: neljä Suomesta ja yksi Norjasta. Illan 10–20 minuutin mittaiset teokset kietoutuvat rakkauden teeman ympärille tarjoten tuoreita, yllättäviä ja monimuotoisia tulkintoja yhdestä ihmiselämän keskeisimmistä tunteista.</p><p>Harvoin on mahdollista kokea yhden illan aikana näin laaja kattaus lyhyitä nykytanssiteoksia. Koreografien erilaiset taustat ja ilmaisutavat luovat rikkaan ja vaihtelevan kokonaisuuden, joka puhuttelee niin tanssin ystäviä kuin uusia kokijoita.</p><p>Illan kulkua rytmittää yllätysjuontaja, joka johdattaa katsojat teosten maailmaan, avaa koreografian kerroksia ja rakentaa siltaa yleisön ja esitysten välille – pilke silmäkulmassa.</p><p>Koreografivieraina nähdään <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> ja <b>Leo Terävä</b>.</p><p>Tapahtuma on Tanssi-idea ry:n, KATVE [blind spot] Companyn ja Stoan yhteistuotanto.</p><p>Tapahtumaa tukevat Helsingin kaupunki ja Taide- ja kulttuurivirasto.</p><p>Kesto: n. 1h 45min.<br>Ikäsuositus: 12+</p>", "sv": "<p>Evenemanget, som belyser kärlekens teman ur olika perspektiv, förenar fem koreografier och fem mycket olika dansverk under ledning av en humoristisk värd.</p><p>Ismo Dance Company bjuder på en unik danskväll med fem gästkoreografer: fyra från Finland och en från Norge. Kvällens verk, som varar mellan 10 och 20 minuter, kretsar kring temat kärlek och bjuder på fräscha, överraskande och mångfacetterade tolkningar av en av de mest centrala känslorna i människans liv.</p><p>Det är sällan man får uppleva ett så brett urval av korta samtida dansverk under en och samma kväll. Koreografernas olika bakgrunder och uttryckssätt skapar en rik och varierad helhet, som tilltalar såväl dansälskare som nya besökare.</p><p>Kvällens program leds av en överraskningsvärd, som guidar åskådarna in i verkens värld, förklarar koreografiernas olika lager och bygger en bro mellan publiken och föreställningarna – med glimten i ögat.</p><p>Som gästkoreografer medverkar <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> och <b>Sofia Ruija</b>.</p><p>Evenemanget är en samproduktion mellan Tanssi-idea ry, KATVE [blind spot] Company och Stoa.</p><p>Evenemanget stöds av Helsingfors stad samt Konst- och kulturmyndigheten.</p><p>Längd: ca 1 h 45 min.</p><p>Åldersrekommendation: 12+</p>", "en": "<p>This event, which explores themes of love from different perspectives, brings together five choreographers and five very different dance pieces, presented by a humorous host.</p><p>Ismo Dance Company presents a unique evening of dance featuring five guest choreographers: four from Finland and one from Norway. The evening’s performances, each lasting between 10 and 20 minutes, revolve around the theme of love, offering fresh, surprising and multifaceted interpretations of one of the most fundamental emotions in human life.</p><p>It is not often that you get to experience such a wide range of short contemporary dance pieces in the space of a single evening. The choreographers’ diverse backgrounds and styles of expression create a rich and varied programme that appeals to both dance enthusiasts and those experiencing it for the first time.</p><p>The evening is brought to life by a surprise host, who guides the audience into the world of the works, unravels the layers of the choreography and builds a bridge between the audience and the performances – with a twinkle in their eye.</p><p>The guest choreographers include <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> and <b>Sofia Ruija</b>.</p><p>The event is a joint production by Tanssi-idea ry, KATVE [blind spot] Company and Stoa.</p><p>The event is supported by the City of Helsinki and the Finnish Arts and Culture Agency.</p><p>Duration: roughly 1 h 45 min</p><p>Recommended age: 12+</p>" }, "provider_contact_info": null, "short_description": { "fi": "Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana.", "sv": "Evenemanget, som belyser kärlekens teman ur olika perspektiv, förenar fem koreografier och fem mycket olika dansverk under ledning av en humoristisk värd.", "en": "This event, which explores themes of love from different perspectives, brings together five choreographers and five very different dance pieces, presented by a humorous host." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FBE93A6C773D9473951E89692EFC9636/Ismo_Dance_Company_5_koreografiaa_rakkaudesta", "sv": "http://www.stoa.fi/sv/evenemang/event/FBE93A6C773D9473951E89692EFC9636/Ismo_Dance_Company_5_koreografier_om_karlek", "en": "http://www.stoa.fi/en/events/event/FBE93A6C773D9473951E89692EFC9636/Ismo_Dance_Company_5_Choreographies_about_Love_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69534/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69533", "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": false, "offer_price_groups": [], "description": null, "price": { "fi": "24,50 € / 19 €", "sv": "24,50 € / 19 €", "en": "24,50 € / 19 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10", "sv": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10", "en": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385381, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T11:14:17.148659Z", "last_modified_time": "2026-06-26T11:14:17.148674Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792297.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385381/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T11:14:17.021842Z", "last_modified_time": "2026-08-26T07:23:27.038150Z", "date_published": null, "start_time": "2026-10-01T15:00:00Z", "end_time": "2026-10-01T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Ismo Dance Company: 5 koreografiaa rakkaudesta | Ensi-ilta", "sv": "Ismo Dance Company: 5 koreografier om kärlek | Premiär", "en": "Ismo Dance Company: 5 Choreographies about Love | Premiere" }, "description": { "fi": "<p>Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana.</p><p>Ismo Dance Company tuo lavalle ainutlaatuisen tanssi-illan, jossa vierailee viisi koreografia: neljä Suomesta ja yksi Norjasta. Illan 10–20 minuutin mittaiset teokset kietoutuvat rakkauden teeman ympärille tarjoten tuoreita, yllättäviä ja monimuotoisia tulkintoja yhdestä ihmiselämän keskeisimmistä tunteista.</p><p>Harvoin on mahdollista kokea yhden illan aikana näin laaja kattaus lyhyitä nykytanssiteoksia. Koreografien erilaiset taustat ja ilmaisutavat luovat rikkaan ja vaihtelevan kokonaisuuden, joka puhuttelee niin tanssin ystäviä kuin uusia kokijoita.</p><p>Illan kulkua rytmittää yllätysjuontaja, joka johdattaa katsojat teosten maailmaan, avaa koreografian kerroksia ja rakentaa siltaa yleisön ja esitysten välille – pilke silmäkulmassa.</p><p>Koreografivieraina nähdään <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> ja <b>Leo Terävä</b>.</p><p>Tapahtuma on Tanssi-idea ry:n, KATVE [blind spot] Companyn ja Stoan yhteistuotanto.</p><p>Tapahtumaa tukevat Helsingin kaupunki ja Taide- ja kulttuurivirasto.</p><p>Kesto: n. 1h 45min.<br>Ikäsuositus: 12+</p>", "sv": "<p>Evenemanget, som belyser kärlekens teman ur olika perspektiv, förenar fem koreografier och fem mycket olika dansverk under ledning av en humoristisk värd.</p><p>Ismo Dance Company bjuder på en unik danskväll med fem gästkoreografer: fyra från Finland och en från Norge. Kvällens verk, som varar mellan 10 och 20 minuter, kretsar kring temat kärlek och bjuder på fräscha, överraskande och mångfacetterade tolkningar av en av de mest centrala känslorna i människans liv.</p><p>Det är sällan man får uppleva ett så brett urval av korta samtida dansverk under en och samma kväll. Koreografernas olika bakgrunder och uttryckssätt skapar en rik och varierad helhet, som tilltalar såväl dansälskare som nya besökare.</p><p>Kvällens program leds av en överraskningsvärd, som guidar åskådarna in i verkens värld, förklarar koreografiernas olika lager och bygger en bro mellan publiken och föreställningarna – med glimten i ögat.</p><p>Som gästkoreografer medverkar <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> och <b>Sofia Ruija</b>.</p><p>Evenemanget är en samproduktion mellan Tanssi-idea ry, KATVE [blind spot] Company och Stoa.</p><p>Evenemanget stöds av Helsingfors stad samt Konst- och kulturmyndigheten.</p><p>Längd: ca 1 h 45 min.</p><p>Åldersrekommendation: 12+</p>", "en": "<p>This event, which explores themes of love from different perspectives, brings together five choreographers and five very different dance pieces, presented by a humorous host.</p><p>Ismo Dance Company presents a unique evening of dance featuring five guest choreographers: four from Finland and one from Norway. The evening’s performances, each lasting between 10 and 20 minutes, revolve around the theme of love, offering fresh, surprising and multifaceted interpretations of one of the most fundamental emotions in human life.</p><p>It is not often that you get to experience such a wide range of short contemporary dance pieces in the space of a single evening. The choreographers’ diverse backgrounds and styles of expression create a rich and varied programme that appeals to both dance enthusiasts and those experiencing it for the first time.</p><p>The evening is brought to life by a surprise host, who guides the audience into the world of the works, unravels the layers of the choreography and builds a bridge between the audience and the performances – with a twinkle in their eye.</p><p>The guest choreographers include <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> and <b>Sofia Ruija</b>.</p><p>The event is a joint production by Tanssi-idea ry, KATVE [blind spot] Company and Stoa.</p><p>The event is supported by the City of Helsinki and the Finnish Arts and Culture Agency.</p><p>Duration: roughly 1 h 45 min</p><p>Recommended age: 12+</p>" }, "provider_contact_info": null, "short_description": { "fi": "Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana.", "sv": "Evenemanget, som belyser kärlekens teman ur olika perspektiv, förenar fem koreografier och fem mycket olika dansverk under ledning av en humoristisk värd.", "en": "This event, which explores themes of love from different perspectives, brings together five choreographers and five very different dance pieces, presented by a humorous host." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/75784889EC9AE0FE4A84FC172C6E2F1E/Ismo_Dance_Company_5_koreografiaa_rakkaudesta_Ensi-ilta", "sv": "http://www.stoa.fi/sv/evenemang/event/75784889EC9AE0FE4A84FC172C6E2F1E/Ismo_Dance_Company_5_koreografier_om_karlek_Premiar", "en": "http://www.stoa.fi/en/events/event/75784889EC9AE0FE4A84FC172C6E2F1E/Ismo_Dance_Company_5_Choreographies_about_Love_Premiere" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69533/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:402b3225-8ce3-4c6c-ac5a-d9701cdfe02b", "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/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/189/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "created_time": "2026-08-26T06:12:05.657722Z", "last_modified_time": "2026-08-26T06:50:44.131515Z", "date_published": "2026-08-26T06:09:36Z", "start_time": "2026-08-30T05:00:00Z", "end_time": "2026-09-05T05:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 50, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 150, "minimum_attendee_capacity": 10, "enrolment_start_time": "2026-08-26T08:00:00+03:00", "enrolment_end_time": "2026-08-30T08:00:00+03:00", "local": false, "replaced_by": null, "location_extra_info": { "fi": "Venue location information in Finnish", "en": "Venue location information in English" }, "provider": { "fi": "Annantalo (KYMP)", "en": "Annantalo (KYMP)" }, "name": { "fi": "[TLDG] 26.08.2026 Linked Events Testausta", "en": "[TLDG] 26.08.2026 Linked Events Testausta" }, "description": { "fi": "<div><p>Linked Events Testausta</p></div>", "en": "<div><p>[TLDG] 26.08.2026 Linked Events Testausta</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "Linked Events Testausta", "en": "[TLDG] 26.08.2026 Linked Events Testausta" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:402b3225-8ce3-4c6c-ac5a-d9701cdfe02b/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69525", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385368, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T06:14:06.063895Z", "last_modified_time": "2026-06-26T06:14:06.063917Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794407.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385368/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T06:14:05.887256Z", "last_modified_time": "2026-08-25T14:22:52.336557Z", "date_published": null, "start_time": "2026-09-06T10:00:00Z", "end_time": "2026-09-06T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano", "sv": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano", "en": "Toisissa tiloissa -kollektiivi: Rauhanliikekannallepano" }, "description": { "fi": "<p>Rauhanliikekannallepano on yhteisöllinen ja leikkisä esitystaidetapahtumien sarja, joka kysyy: Miltä rauha näyttää ja tuntuu?</p><p>Toisissa tiloissa -kollektiivi toteuttaa syyskuun kaksi yleisötyöpajaa yhteistyössä kulttuurikeskusten Kanneltalon ja Stoan kanssa. Työpajoissa osallistujat tekevät yhdessä Toisissa tiloissa -kollektiivin taiteilijoiden kanssa kollektiivisia ruumiillisia tekoja eli “rauhanliikkeitä”. Liikkeitä säestää ja tunnelmaa nostattaa elävä puhallinmusiikki.</p><p>Rauhanliikkeet ovat yhdessä ja samaan aikaan tehtäviä yksinkertaisia toimintoja ja tehtäviä, jotka avartavat havaintojamme ympäristöstä sekä ihmisten välisestä rauhanomaisesta yhdessäolosta, sen muodoista ja mahdollisuuksista. Rauha ei synny vain olemalla rauhallinen tai tekemättä mitään. Rauhantila pitää keksiä yhä uudestaan, yksin ja yhdessä.</p><p><b>Tule mukaan osallistumaan Rauhanliikekannallepanon työpajoihin Stoassa ja Kanneltalossa<(b></p><p>Työpajat järjestetään sunnuntaina 6.9. klo 13-15.30 Stoassa ja lauantaina 12.9. klo 13–15.30 Kannetalossa. Ilmoittaudu mukaan seuraavilla lomakkeilla:<br><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSckO54-iv8NS0gkEqqQjQtPH5dVEpsujTG0R52wB5ayDA-RwQ/viewform/\">Stoan ilmoittautuminen (3.9. saakka)</u></a><br><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLScwM49Omx_4Es3uUan5EiwKVEeqj8KlpsHjg7-guTXZeTvFVQ/viewform\">Kanneltalon ilmoittautuminen (9.9. saakka)</u></a></p><p>Kaikki yli 14-vuotiaat ovat tervetulleita työpajaan ja yli 10-vuotiaat voivat osallistua vanhemman seurassa.</p><p>Työpajat pidetään ulkona kulttuurikeskuksen läheisyydessä. Tarkempi paikka: Itäkeskuksen peruskoulun piha-alue. Tarvittaessa kulttuurikeskusten sisätilat ovat käytettävissämme. Varaudu työpajaan pukeutumalla sään mukaisesti liikkumisen ja maan rajassa oleskelun salliviin vaatteisiin ja jalkineisiin. Ota mukaan myös oma vesipullo ja tarvittaessa pientä syötävää.</p><p>Kokoonnumme Stoan aukiolla su 6.9. klo 13 osoitteessa Turunlinnantie 1, Itäkeskus, Helsinki. Kanneltalon tapahtuman yksityiskohdat päivittyvät <u><a href=\"httos://www.kanneltalo.fi/\">Kanneltalon verkkosivuille</u></a>.</p><p><b>Esitystaidetapahtumien sarja huipentuu Kansalaistorilla 19.9.</b></p><p>Kaikkia työpajoihin osallistuneita toivotaan mukaan toteuttamaan Kansalaistorin esitystaidetapahtumaa. Ilmoittautuminen Kansalaistorin tapahtumaan avataan myöhemmin.</p><p>Tule mukaan valmistautumaan rauhaan kanssamme!</p><p><b>Toisissa tiloissa</b> on helsinkiläinen kotimaassa ja kansainvälisesti toimiva esitystaiteen kollektiivi. Ryhmän toiminnan ytimenä ovat ruumiilliset harjoitteet, joiden avulla päästään kosketuksiin erilaisten elämänmuotojen ja ilmiöiden kanssa eli vierailemaan \"toisissa tiloissa\".</p><p><u><a href=\"https://toisissatiloissa.net/rauhanliikekannallepano/\">Lue lisää</u></a>.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Rauhanliikekannallepano on yhteisöllinen ja leikkisä esitystaidetapahtumien sarja, joka kysyy: Miltä rauha näyttää ja tuntuu?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3F779FDFA45F76DD00680A4093C8C268/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano", "sv": "http://www.stoa.fi/sv/evenemang/event/3F779FDFA45F76DD00680A4093C8C268/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano", "en": "http://www.stoa.fi/en/events/event/3F779FDFA45F76DD00680A4093C8C268/Toisissa_tiloissa_-kollektiivi_Rauhanliikekannallepano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69525/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69627", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385658, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-31T07:13:29.387228Z", "last_modified_time": "2026-07-31T07:13:29.387243Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796155.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385658/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-31T07:13:29.211188Z", "last_modified_time": "2026-08-25T13:22:54.355139Z", "date_published": null, "start_time": "2026-09-16T15:00:00Z", "end_time": "2026-09-16T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Welcome Day Kanneltalo: Grande Mahogany", "sv": "Welcome Day Kanneltalo: Grande Mahogany", "en": "Welcome Day Kanneltalo: Grande Mahogany" }, "description": { "fi": "<p>Tervetuloa Kanneltalon Welcome Day -naapurustotapahtumaan!</p><p>Päivä huipentuu Grande Mahoganyn maksuttomaan konserttiin Kanneltalon Kannelsalissa klo 18. <br>Paikat täytetään saapumisjärjestyksessä, saliin mahtuu 220 kuulijaa.</p><p>Welcome Day tarjoaa runsaasti maksutonta ohjelmaa kaikenikäisille. Tule tutustumaan alueen toimijoihin sekä katsomaan ja kuulemaan, mitä kaikkea naapurustossa tapahtuu!</p><p>Grande Mahogany heijastaa musiikin edelläkävijöiden henkeä, rikkoen rajoja ja loihtien soundin, jossa sykkii funkin elinvoima, alt-rockin rouheus ja psykedelia. Suomessa syntynyt muusikko imi itseensä maailman rytmejä jo varhain, ja muutto Manchesteriin 11-vuotiaana syvensi hänen musiikkinsa monikerroksista kudelmaa.</p><p>Arvostettuna monitaiturina Grande Mahoganyn pitkälti itse sävelletty sekä tuotettu “Grande Mahogany – As Grande As” debyytti näki päivän valon keväällä 2024. Se sai ylistyksiä niin suomalaisilta musiikkikriitikoilta kuin myös seuratuimpiin musiikkikriitikoihin kuuluvan, Needledropin Anthony Fantanon, sekä arvostettujen musiikkimedioiden kuten Colorsin ja Sleeping on Gemsin toimesta. Albumia kuultiin myös lämpimin noteerauksin radiokanavilla kuten BBC 6:lla ja BBC 1:llä, sekä KCR -alustoilla Yhdysvalloissa.</p><p>Kesän 2024 festarikausi huipentui täyteenammuttulle Flow Festivalin Balloon-lavalle, jossa koettiin yksi vuoden tunnelmallisimpia kotimaisia esiintymisiä. Kymmenien metrien jonot täynnä uteliaita kuuntelijoita jäivät katsomon ulkopuolelle keikan ajaksi. Samalla sisällä vallitsi kutkuttava tunnelma, kun yleisö hurrasi Grande Mahoganya lavalle spontaanein käsiaalloin ja huudoin.</p>", "en": "<p>Welcome to the Welcome Day event at Kanneltalo!</p><p>The day will culminate in a free concert by Grande Mahogany at 6:00 PM in Kannelsali, located inside Kanneltalo. Seats are available on a first-come, first-served basis. The hall has a capacity of 220 people.</p><p>Grande Mahogany reflects the spirit of music pioneers, breaking boundaries and crafting a sound pulsing with the vitality of funk, the rawness of alt-rock, and the expansiveness of psychedelia. Born in Finland, the musician absorbed global rhythms from an early age, and moving to Manchester at 11 deepened the multi-layered tapestry of his music.</p><p>As a respected multi-instrumentalist, Grande Mahogany largely composed and produced his debut album Grande Mahogany – As Grande As, released in spring 2024. The album received acclaim from Finnish music critics, as well as from internationally renowned reviewers like Anthony Fantano of The Needle Drop, and prestigious music platforms such as COLORS and Sleeping on Gems. It was also warmly received on radio stations including BBC 6 and BBC 1, as well as on KCR platforms in the United States.</p><p>Duration: 1 hour</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Kanneltalon Welcome Day -naapurustotapahtumaan!", "en": "Welcome to the Welcome Day event at Kanneltalo!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/79B021F2CD3A3CE48271BD1C2FF0D181/Welcome_Day_Kanneltalo_Grande_Mahogany", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/79B021F2CD3A3CE48271BD1C2FF0D181/Welcome_Day_Kanneltalo_Grande_Mahogany", "en": "http://www.kanneltalo.fi/en/events/event/79B021F2CD3A3CE48271BD1C2FF0D181/Welcome_Day_Kanneltalo_Grande_Mahogany" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69627/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69729", "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:596/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385949, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-24T06:23:07.693971Z", "last_modified_time": "2026-08-24T06:23:07.693989Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796430.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385949/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-24T06:23:07.571862Z", "last_modified_time": "2026-08-25T13:22:51.579931Z", "date_published": null, "start_time": "2026-09-10T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Welcome Day: Grande Mahogany", "sv": "Welcome Day: Grande Mahogany", "en": "Welcome Day: Grande Mahogany" }, "description": { "fi": "<p>Tervetuloa Malmitalon Welcome Day -tapahtumaan!</p><p>Päivä huipentuu Grande Mahoganyn maksuttomaan konserttiin Malmitalon Malmisalissa klo 19. Paikat täytetään saapumisjärjestyksessä, saliin mahtuu 200 kuulijaa.</p><p>Welcome Day tarjoaa runsaasti maksutonta ohjelmaa kaikenikäisille. Tule tutustumaan alueen toimijoihin sekä katsomaan ja kuulemaan, mitä kaikkea naapurustossa tapahtuu!</p><p>Grande Mahogany heijastaa musiikin edelläkävijöiden henkeä, rikkoen rajoja ja loihtien soundin, jossa sykkii funkin elinvoima, alt-rockin rouheus ja psykedelia.</p><p>Arvostettuna monitaiturina Grande Mahoganyn pitkälti itse sävelletty sekä tuotettu “Grande Mahogany – As Grande As” debyytti näki päivän valon keväällä 2024. Se sai ylistyksiä niin suomalaisilta musiikkikriitikoilta kuin myös seuratuimpiin musiikkikriitikoihin kuuluvan, Needledropin Anthony Fantanon, sekä arvostettujen musiikkimedioiden kuten Colorsin ja Sleeping on Gemsin toimesta. Albumia kuultiin myös lämpimin noteerauksin radiokanavilla kuten BBC 6:lla ja BBC 1:llä, sekä KCR -alustoilla Yhdysvalloissa.</p><p>Kesto: 1 t <br>Vapaa pääsy!</p>", "en": "<p>Welcome to the Welcome Day event at Malmitalo!</p><p>The day will culminate in a free concert by Grande Mahogany at 7:00 PM in Malmisali, located inside Malmitalo. Seats are available on a first-come, first-served basis. The hall has a capacity of 200 people.</p><p>Grande Mahogany reflects the spirit of music pioneers, breaking boundaries and crafting a sound pulsing with the vitality of funk, the rawness of alt-rock, and the expansiveness of psychedelia. Born in Finland, the musician absorbed global rhythms from an early age, and moving to Manchester at 11 deepened the multi-layered tapestry of his music.</p><p>As a respected multi-instrumentalist, Grande Mahogany largely composed and produced his debut album Grande Mahogany – As Grande As, released in spring 2024. The album received acclaim from Finnish music critics, as well as from internationally renowned reviewers like Anthony Fantano of The Needle Drop, and prestigious music platforms such as COLORS and Sleeping on Gems. It was also warmly received on radio stations including BBC 6 and BBC 1, as well as on KCR platforms in the United States.</p><p>Duration: 1 hour.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Malmitalon Welcome Day -tapahtumaan!", "en": "Welcome to the Welcome Day event at Malmitalo!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F81F092DA2CA5E4D4B0731D13BB8A788/Welcome_Day_Grande_Mahogany_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F81F092DA2CA5E4D4B0731D13BB8A788/Welcome_Day_Grande_Mahogany_", "en": "http://www.malmitalo.fi/en/events/event/F81F092DA2CA5E4D4B0731D13BB8A788/Welcome_Day_Grande_Mahogany_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69729/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqdr2mlyq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:29805/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdr2mn4y/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490402, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T09:12:08.091666Z", "last_modified_time": "2025-08-18T09:12:08.091686Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/41c6b3cf-c213-4a4f-9aec-2c477a658eab.jpg", "name": "", "cropping": "150,0,823,673", "photographer_name": "", "alt_text": "Kuvassa on käsin piirrettyjä eläimiä (orava, karhu, kenguru ja pupu)", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490402/?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-08-25T12:23:28.882915Z", "last_modified_time": "2026-08-25T12:23:28.882932Z", "date_published": null, "start_time": "2026-11-30T07:45:00Z", "end_time": "2026-11-30T08:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open Storytime" }, "description": { "fi": "<p>Tervetuloa tarinoiden äärelle kaikille avoimeen aamusatuhetkeen Saunalahden kirjastoon. Aamusatuhetket ovat kello 9.45 maanantaisin 28.9., 26.10. ja 30.11.</p>", "sv": "<p>Välkommen att lyssna på morgonsagor som är öppna för alla i Bastviks bibliotek. Morgonsagostunder är kl. 9.45 på måndagarna 28.9., 26.10. ja 30.11</p><p>Sagostunden är på Finska.</p>", "en": "<p>Welcome to listen to morning stories open to all in the multifunctional room of Saunalahti Library. The morning story times are at 9.45 on Mondays on 28.9., 26.10. and 30.11</p><p>The story time is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdr2mlyq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqdr2mmv4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:29805/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdr2mn4y/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490402, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T09:12:08.091666Z", "last_modified_time": "2025-08-18T09:12:08.091686Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/41c6b3cf-c213-4a4f-9aec-2c477a658eab.jpg", "name": "", "cropping": "150,0,823,673", "photographer_name": "", "alt_text": "Kuvassa on käsin piirrettyjä eläimiä (orava, karhu, kenguru ja pupu)", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490402/?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-08-25T12:23:28.343445Z", "last_modified_time": "2026-08-25T12:23:28.343463Z", "date_published": null, "start_time": "2026-10-26T07:45:00Z", "end_time": "2026-10-26T08:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open Storytime" }, "description": { "fi": "<p>Tervetuloa tarinoiden äärelle kaikille avoimeen aamusatuhetkeen Saunalahden kirjastoon. Aamusatuhetket ovat kello 9.45 maanantaisin 28.9., 26.10. ja 30.11.</p>", "sv": "<p>Välkommen att lyssna på morgonsagor som är öppna för alla i Bastviks bibliotek. Morgonsagostunder är kl. 9.45 på måndagarna 28.9., 26.10. ja 30.11</p><p>Sagostunden är på Finska.</p>", "en": "<p>Welcome to listen to morning stories open to all in the multifunctional room of Saunalahti Library. The morning story times are at 9.45 on Mondays on 28.9., 26.10. and 30.11</p><p>The story time is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdr2mmv4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqdr2mnjy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:29805/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdr2mn4y/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490402, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T09:12:08.091666Z", "last_modified_time": "2025-08-18T09:12:08.091686Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/41c6b3cf-c213-4a4f-9aec-2c477a658eab.jpg", "name": "", "cropping": "150,0,823,673", "photographer_name": "", "alt_text": "Kuvassa on käsin piirrettyjä eläimiä (orava, karhu, kenguru ja pupu)", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490402/?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-08-25T12:23:27.863340Z", "last_modified_time": "2026-08-25T12:23:27.863354Z", "date_published": null, "start_time": "2026-09-28T06:45:00Z", "end_time": "2026-09-28T07:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open Storytime" }, "description": { "fi": "<p>Tervetuloa tarinoiden äärelle kaikille avoimeen aamusatuhetkeen Saunalahden kirjastoon. Aamusatuhetket ovat kello 9.45 maanantaisin 28.9., 26.10. ja 30.11.</p>", "sv": "<p>Välkommen att lyssna på morgonsagor som är öppna för alla i Bastviks bibliotek. Morgonsagostunder är kl. 9.45 på måndagarna 28.9., 26.10. ja 30.11</p><p>Sagostunden är på Finska.</p>", "en": "<p>Welcome to listen to morning stories open to all in the multifunctional room of Saunalahti Library. The morning story times are at 9.45 on Mondays on 28.9., 26.10. and 30.11</p><p>The story time is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdr2mnjy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:bfbbcd91-692d-4cb8-b6f8-4e8e1ee3c17f", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51442/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/188/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2385998, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-25T12:23:11.605375Z", "last_modified_time": "2026-08-25T12:23:11.605408Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/8b35bcdc-c0d5-f011-8544-7ced8d2e6e81", "name": "test", "cropping": "", "photographer_name": "test", "alt_text": "test", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385998/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "created_time": "2026-08-25T11:54:00.097945Z", "last_modified_time": "2026-08-25T12:23:12.928299Z", "date_published": "2026-08-25T11:50:51Z", "start_time": "2026-08-26T12:00:00Z", "end_time": "2026-08-26T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": "2026-08-25T14:55:00+03:00", "enrolment_end_time": "2026-08-25T15:30:00+03:00", "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Milla Magian Maagiset Tapahtumat" }, "name": { "fi": "testi 25.8. uusi" }, "description": { "fi": "<div><p>test</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "testi" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:bfbbcd91-692d-4cb8-b6f8-4e8e1ee3c17f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqdr2moqi", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdr2mp44/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386000, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-25T11:57:18.409508Z", "last_modified_time": "2026-08-25T11:57:18.409529Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d88df4-84e9-4438-bdbe-48d7402373cc.png", "name": "Englanninkielinen satuhekti ja taidetyöpaja", "cropping": "0,293,1414,1707", "photographer_name": "", "alt_text": "Englanninkielinen satuhetki ja taidetyöpaja Sellon kirjaston lastenmaassa 5.9 ja 19.9 klo. 10:30. Tervetuloa!", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386000/?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-08-25T12:08:50.945181Z", "last_modified_time": "2026-08-25T12:08:50.945193Z", "date_published": null, "start_time": "2026-09-19T07:30:00Z", "end_time": "2026-09-19T08:29:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Englanninkielinen satuhetki ja taidetyöpaja", "sv": "Engelskspråkig sagostund och konstverkstad", "en": "English Language Storytime and Art Workshop" }, "description": { "fi": "<p>Englanninkielinen satuhetki ja taidetyöpaja Sellon kirjaston lastenmaassa 5.9 ja 19.9 klo. 10:30. Tervetuloa!</p>", "sv": "<p>Engelskspråkig sagostund och konstverkstad i lastenmaa, Sello bibliotek 5.9 ja 19.9 klockan. 10:30. Välkommen!</p>", "en": "<p>Welcome to the English Langauge Storytime, held in lastenmaa at 10:30 on saturday the 5th and Saturday the 19th of September at Sello Library. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Englanninkielinen satuhetki ja taidetyöpaja Sellon kirjaston lastenmaassa 5.9 ja 19.9 klo. 10:30. Tervetuloa!", "sv": "Engelskspråkig sagostund och konstverkstad i lastenmaa, Sello bibliotek 5.9 ja 19.9 klockan. 10:30. Välkommen!", "en": "Welcome to the English Langauge Storytime, held in lastenmaa at 10:30 on saturday the 5th and Saturday the 19th of September at Sello Library. " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdr2moqi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }