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=129
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=130", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=128" }, "data": [ { "id": "kulke:69634", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385664, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-03T12:14:19.980313Z", "last_modified_time": "2026-08-03T12:14:19.980333Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793867.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385664/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-08-03T12:14:19.817890Z", "last_modified_time": "2026-08-03T12:14:20.218877Z", "date_published": null, "start_time": "2026-09-16T06:15:00Z", "end_time": "2026-09-16T07: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": "Sirkuskurssi taaperoperheille – Seikkailu jatkuu!", "sv": "Cirkuskurs för småbarnsfamiljer", "en": "Toddlers Circus – The Adventure continues" }, "description": { "fi": "<p>Taaperoperheiden sirkuskurssi on tarkoitettu 1–2-vuotiaille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.</p><p>Tarjoamme tunteja 1–2-vuotiaille lapsille aikuisineen. Tuntien jälkeen siirrymme Sirkuksen aistiluokkiin, joissa on mukana akrobatian ja psykomotoriikan elementtejä. Kurssi vahvistaa itseluottamusta ja sitkeyttä paitsi lapsissa myös vanhemmissa tai ohjaajissa, jotka osallistuvat aktiivisesti toimintaan ja ovat olennainen osa kurssin tavoitteiden saavuttamista.</p><p>Huom! Vanhempien tai ohjaajien on osallistuttava fyysisiin harjoituksiin lastensa kanssa, ja harjoitusten ja temppujen säännöllinen kotiharjoittelu on ratkaisevan tärkeää parhaiden tulosten saavuttamiseksi.</p><p>Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti.</p><p>Kurssi kokoontuu <b>keskiviikkoisin 2.9.–30.9..</b></p><p>Ohjaaja: sirkusohjaaja Enrique Salas <br>Kohderyhmä: 1–2-vuotiaat, jo kävelevät lapset yhdessä aikuisen kanssa <br>Paikka: Stoan musiikkisali <br>Kesto: 5x45 min <br>Kieli: englanti, espanja, suomi</p><p>Maksuton. Ennakkoilmoittautuminen ti 4.8. klo 10 alkaen: stoa.fi/fi/tapahtumat. Ilmoittautumaan pääset Stoan verkkosivujen tapahtumakalenterin kautta: klikkaa tapahtuman kohdalla olevaa Ilmoittaudu-painiketta. HUOM! VARAA VAIN YKSI YHTEINEN PAIKKA SINULLE JA LAPSELLESI, KIITOS.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Cirkuskursen för småbarnsfamiljer är avsedd för cirkusstjärnor i 1–2 års ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.</p><p>Vi erbjuder cirkustimmar för barn i åldern 1–2 år, som därefter övergår till Cirkusens sinnesklasser med element av akrobatik och psykomotorik. Kursen stärker självförtroendet och uthålligheten inte bara hos barn utan också hos föräldrar eller instruktörer som aktivt deltar i verksamheten och som spelar en väsentlig roll för att uppnå kursmålen.</p><p>Föräldrarna eller instruktörerna ska delta i de fysiska övningarna tillsammans med sina barn, och regelbunden träning hemma av övningarna och tricken är avgörande för att uppnå bästa möjliga resultat.</p><p>Om du inte rymdes med på kursen, men vill bekanta dig med familjecirkusverksamheten, kan du komma på plats innan kursen börjar. Vi tar med högst två barn-vuxen-par på varje kurs för att pröva på hobbyn en gång.</p><p>Ledare: cirkusinstruktören Enrique Salas<br>Målgrupp: 1–2 åringar som redan går, tillsammans med en vuxen <br>Plats: Stoas musiksal <br>Längd: 5 x 45 min <br>Språk: engelska, spanska, finska <br>Kursen är avgiftsfri.</p><p>Förhandsanmälan från och med tisdagen 4.8. kl. 10: stoa.fi/sv/evenemangen, under evenemanget, via knappen Anmäl dig till höger på rutan. OBS! Vänligen reservera endast en delad plats för dig och ditt barn.</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Our toddler classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more.</p><p>We teach classes for children aged 1,2 years to 2 years and they then join our Circus Sensory Classes with elements of acrobatics, and psychomotricity, among others. Our program builds confidence and resilience not only in the kids but also in the parents/tutors who are involved in the activities and performing a big part of the course objectives. <br> <br>Note: Parents or tutors are required to perform physical movements with their kids and is imperative to practice at home the exercises and tricks for the optimal result.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Age recommendation: 1-2-year-olds with an adult <br>Duration: 5x45 min <br>Languages: English, Spanish, Finnish <br>Free entry <br>Pre-registration starting from Tue 4.8. at 10 a.m. stoa.fi/en/events. NOTE! PLEASE RESERVE ONLY ONE PLACE FOR BOTH YOU AND YOUR CHILD TOGETHER.</p><p>More info: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Taaperoperheiden sirkuskurssi on tarkoitettu 1–2-vuotiaille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.", "sv": "Cirkuskursen för småbarnsfamiljer är avsedd för cirkusstjärnor i 1–2 års ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.", "en": "Our toddler classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/53F8EE7146949DBC52E96181C9D5E415/Sirkuskurssi_taaperoperheille_", "sv": "http://www.stoa.fi/sv/evenemang/event/53F8EE7146949DBC52E96181C9D5E415/Cirkuskurs_for_smabarnsfamiljer_", "en": "http://www.stoa.fi/en/events/event/53F8EE7146949DBC52E96181C9D5E415/Toddlers_Circus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69634/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69633", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385663, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-03T12:14:16.795364Z", "last_modified_time": "2026-08-03T12:14:16.795379Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793866.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385663/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-08-03T12:14:16.562802Z", "last_modified_time": "2026-08-03T12:14:17.090343Z", "date_published": null, "start_time": "2026-09-09T06:15:00Z", "end_time": "2026-09-09T07: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": "Sirkuskurssi taaperoperheille – Seikkailu jatkuu!", "sv": "Cirkuskurs för småbarnsfamiljer", "en": "Toddlers Circus – The Adventure continues" }, "description": { "fi": "<p>Taaperoperheiden sirkuskurssi on tarkoitettu 1–2-vuotiaille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.</p><p>Tarjoamme tunteja 1–2-vuotiaille lapsille aikuisineen. Tuntien jälkeen siirrymme Sirkuksen aistiluokkiin, joissa on mukana akrobatian ja psykomotoriikan elementtejä. Kurssi vahvistaa itseluottamusta ja sitkeyttä paitsi lapsissa myös vanhemmissa tai ohjaajissa, jotka osallistuvat aktiivisesti toimintaan ja ovat olennainen osa kurssin tavoitteiden saavuttamista.</p><p>Huom! Vanhempien tai ohjaajien on osallistuttava fyysisiin harjoituksiin lastensa kanssa, ja harjoitusten ja temppujen säännöllinen kotiharjoittelu on ratkaisevan tärkeää parhaiden tulosten saavuttamiseksi.</p><p>Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti.</p><p>Kurssi kokoontuu <b>keskiviikkoisin 2.9.–30.9..</b></p><p>Ohjaaja: sirkusohjaaja Enrique Salas <br>Kohderyhmä: 1–2-vuotiaat, jo kävelevät lapset yhdessä aikuisen kanssa <br>Paikka: Stoan musiikkisali <br>Kesto: 5x45 min <br>Kieli: englanti, espanja, suomi</p><p>Maksuton. Ennakkoilmoittautuminen ti 4.8. klo 10 alkaen: stoa.fi/fi/tapahtumat. Ilmoittautumaan pääset Stoan verkkosivujen tapahtumakalenterin kautta: klikkaa tapahtuman kohdalla olevaa Ilmoittaudu-painiketta. HUOM! VARAA VAIN YKSI YHTEINEN PAIKKA SINULLE JA LAPSELLESI, KIITOS.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Cirkuskursen för småbarnsfamiljer är avsedd för cirkusstjärnor i 1–2 års ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.</p><p>Vi erbjuder cirkustimmar för barn i åldern 1–2 år, som därefter övergår till Cirkusens sinnesklasser med element av akrobatik och psykomotorik. Kursen stärker självförtroendet och uthålligheten inte bara hos barn utan också hos föräldrar eller instruktörer som aktivt deltar i verksamheten och som spelar en väsentlig roll för att uppnå kursmålen.</p><p>Föräldrarna eller instruktörerna ska delta i de fysiska övningarna tillsammans med sina barn, och regelbunden träning hemma av övningarna och tricken är avgörande för att uppnå bästa möjliga resultat.</p><p>Om du inte rymdes med på kursen, men vill bekanta dig med familjecirkusverksamheten, kan du komma på plats innan kursen börjar. Vi tar med högst två barn-vuxen-par på varje kurs för att pröva på hobbyn en gång.</p><p>Ledare: cirkusinstruktören Enrique Salas<br>Målgrupp: 1–2 åringar som redan går, tillsammans med en vuxen <br>Plats: Stoas musiksal <br>Längd: 5 x 45 min <br>Språk: engelska, spanska, finska <br>Kursen är avgiftsfri.</p><p>Förhandsanmälan från och med tisdagen 4.8. kl. 10: stoa.fi/sv/evenemangen, under evenemanget, via knappen Anmäl dig till höger på rutan. OBS! Vänligen reservera endast en delad plats för dig och ditt barn.</p><p>Mer information: hanna.westerholm@hel.fi</p>", "en": "<p>Our toddler classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more.</p><p>We teach classes for children aged 1,2 years to 2 years and they then join our Circus Sensory Classes with elements of acrobatics, and psychomotricity, among others. Our program builds confidence and resilience not only in the kids but also in the parents/tutors who are involved in the activities and performing a big part of the course objectives. <br> <br>Note: Parents or tutors are required to perform physical movements with their kids and is imperative to practice at home the exercises and tricks for the optimal result.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Age recommendation: 1-2-year-olds with an adult <br>Duration: 5x45 min <br>Languages: English, Spanish, Finnish <br>Free entry <br>Pre-registration starting from Tue 4.8. at 10 a.m. stoa.fi/en/events. NOTE! PLEASE RESERVE ONLY ONE PLACE FOR BOTH YOU AND YOUR CHILD TOGETHER.</p><p>More info: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Taaperoperheiden sirkuskurssi on tarkoitettu 1–2-vuotiaille sirkustähdille, joilla riittää energiaa oppia voimaa, koordinaatiota, näppäryyttä ja paljon muuta.", "sv": "Cirkuskursen för småbarnsfamiljer är avsedd för cirkusstjärnor i 1–2 års ålder, som har tillräckligt med energi för att lära sig styrka, koordination, händighet och mycket annat.", "en": "Our toddler classes are for mini circus superstars who have lots of energy and want to gain strength, coordination, dexterity, and more." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/970EE471475137777F762D09BE86E3B0/Sirkuskurssi_taaperoperheille_", "sv": "http://www.stoa.fi/sv/evenemang/event/970EE471475137777F762D09BE86E3B0/Cirkuskurs_for_smabarnsfamiljer_", "en": "http://www.stoa.fi/en/events/event/970EE471475137777F762D09BE86E3B0/Toddlers_Circus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69633/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68281", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "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": 1722082, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-24T13:14:02.943891Z", "last_modified_time": "2026-03-24T13:14:02.943908Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786645.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1722082/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-24T13:14:02.752434Z", "last_modified_time": "2026-08-03T11:14:02.409098Z", "date_published": null, "start_time": "2026-08-14", "end_time": "2026-08-29", "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": "Metsän suojassa – Moniaistinen näyttely- ja tapahtumakokonaisuus", "sv": "Metsän suojassa – I skydd av skogen – Multisensorisk utställnings- och evenemangsenhet", "en": "Metsän suojassa – In the Shelter of the Forest – Multi-sensory exhibition and event series" }, "description": { "fi": "<p>Metsän suojassa on moniaistinen näyttely ja tapahtumakokonaisuus, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta.</p><p>Metsän suojassa on elävä ja moniaistinen näyttelykokonaisuus, joka yhdistää visuaalisen taiteen, äänen, liikkeen ja osallistavat kokemukset. Näyttely kutsuu pohtimaan metsän arvoja ja merkityksiä sekä tarkastelemaan omaa metsäsuhdetta eri näkökulmista. Kokonaisuus on Koneen Säätiön rahoittaman kaksivuotisen Metsäkissa2044-hankkeen loppuhuipennus.</p><p>Kuvataiteilija ja biologi <b>Susu Rytteri</b> rakentaa Kanneltalon galleriaan monumentaalisen teoksen ”Utopia metsästä”, jossa savilaastilla rapatun taustan halki lentää suuri parvi kevyitä pihlajaperhosia. Teoksen rinnalla nähdään sadan piirroksen sarja ”Elämän puu” sekä liikkuvaa kuvaa.</p><p>Muusikko <b>Katja Luhtala</b> luo näyttelyyn ääniteoksen ”Metsän kieli”, joka rakentaa tilaan metsän mystisen ja moniulotteisen tunnelman.</p><p>Yleisö pääsee kokemaan metsän tunnelman sen eliöiden ja olentojen näkökulmasta sekä osallistumaan työpajoihin ja keskusteluihin. Taiteiden yönä 20.8. yleisö saa rakentaa savirapatuista levyistä yhteisötaideteoksen Metsänpohja, ja tuolloin on mahdollista myös silittää Metsäkissaa.</p><p><u><a href=\"https://www.metsakissa.fi/\">Tutustu Metsäkissa2044-hankkeen taiteellisiin ja journalistisiin sisältöihin</u></a>.</p><p>Näyttelyssä ovat esillä myös hankkeen muut osa-alueet: Legioonateatterin metsäteatterikollektiivi <b>Virpi Koskelan</b> johdolla, Luhtalan yhteisötaiteelliset ääniteokset, <b>Aki Saariahon</b> ja <b>Antti Rajalan</b> utopiapedagogiikka sekä <b>Jukka Ilmosen</b> improdialogi.</p><p><b>Metsän suojassa -tapahtumakokonaisuus</b></p><p><u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja Luhtala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Metsän suojassa är en multisensorisk utställning och evenemangshelhet som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande.</p><p>Metsän suojassa är en levande och multisensorisk utställningshelhet som kombinerar visuell konst, ljud, rörelse och inkluderande upplevelser. Utställningen bjuder in oss att reflektera över skogens värden och betydelser och att granska vår egen relation till skogen ur olika perspektiv. Projektet är kulmen på det tvååriga projektet Metsäkissa2044, som finansierats av Konestiftelsen.</p><p>I Gamlasgårdens galleri bygger bildkonstnären och biologen Susu Rytteri det monumentala verket ”Utopia metsästä” (utopi av skog), där en stor flock lätta hagtornsfjärilar flyger genom en bakgrund rappad med lera. Vid sidan av verket ser vi serien ”Elämän puu” (livets träd) av hundra teckningar samt rörlig bild.</p><p>Till utställningen skapar också musikern Katja Luhtala ljudverket Metsän kieli (Skogens språk), som bygger upp en mystisk och flerdimensionell stämning i rummet.</p><p>Publiken får uppleva stämningen i skogen genom dess organismer och varelser och delta i verkstäder och diskussioner. Under konstens natt den 20 augusti får publiken bygga gemenskapkonstverket Metsänpohja (skogsmatta) av lerrappade skivor, och samtidigt får man också klappa Skogskatten. Under hela utställningstiden kan man bekanta sig med Metsäkissa2044-projektets konstnärliga och journalistiska mål på www.metsakissa.fi.</p><p>I utställningen ingår också andra delområden av projektet: Legioonateatteris skogsteaterkollektiv under ledning av Virpi Koskela, Luhtalas gemenskapkonstnärliga ljudverk, Antti Rajalas och Aki Saariahos utopipedagogik och Jukka Ilmonens improdialog.</p><p><b>Kringevenemang<br>lördag 15.8 </b><br>kl. 13-15<br>Jukka Ilmonen presenterar resultaten av projektet Metsäkissa2044</p><p><b>Torsdag 20.8 Konstens natt</b><br>klo 17-17.30 Metsä M – ett ljudverk med rörelse och poesi (Katja Luhtala & kollektiv)<br>klo 17.30-20 Metsänpohja – gemenskapkonstverk (Susu Rytteri)<br>Även möjlighet att klappa Skogskatten!</p><p><b>Fredag 21.8 </b><br>kl. 17-18<br>Skogshaikuverkstad (Katja Luhtala)</p><p><b>Lördag 22.8 </b><br>kl. 13-15 <br>Improviserad dialog (Jukka Ilmonen)<br>kl. 15-15.30 Konstnärsträff: Susu Rytteri</p><p><b>Torsdag 27.8 </b><br>kl. 17-18.30 Natursamarbetsworkshop (Virpi Koskela)</p><p><b>Fredag 28.8 </b><br>kl. 16-17.30 Antti Rajala och Aki Saariaho: Utopipedagogik <br>kl. 18-19.30 Skogsteaterföreställning i skogen (platsen preciseras senare) <br>Regissören och arbetsgruppen berättar om processen</p><p><b>Lördag 29.8 Finska naturens dag</b><br>kl. 13-15 Rundabordssamtal (Jaana Kanninen, med Anni Kytömäki m.fl.)<br>kl. 15-15.30 Metsäsydän – ode till närskogen (Katja Luhtala & kollektiv)</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemanget är fritt.</p>", "en": "<p>In the Shelter of the Forest is a multi-sensory exhibition and event that invites you to reflect on the future of the forest through art, science and participation.</p><p>In the Shelter of the Forest is a living and multi-sensory exhibition that combines visual art, sound, movement and participatory experiences. The exhibition invites you to reflect on the values and meanings of the forest, and to examine your own relationship with the forest from different perspectives. The project is the culmination of the two-year Metsäkissa2044 project funded by the Kone Foundation.</p><p>Visual artist and biologist Susu Rytteri builds a monumental work entitled Utopia metsästä (‘Utopia of a Forest’) in the Kanneltalo gallery, in which a swarm of lightweight black-veined white butterflies fly through a background plastered with clay. The work <br>will be accompanied by a series of 100 drawings entitled Elämän puu (‘The Tree of Life’) and moving images.</p><p>Musician Katja Luhtala creates an audio piece for the exhibition entitled Metsän kieli (‘Language of the Forest‘), building a mystical and multidimensional forest atmosphere.</p><p>The audience will have an opportunity to experience the atmosphere of the forest from the point of view of its creatures and organisms, and take part in workshops and discussions. On the Night of the Arts on 20 August, the audience will get to build a community artwork entitled Metsänpohja (‘Forest Floor’) from clay-plastered panels and have an opportunity to pet the Forest Cat. Throughout the exhibition, you can check out the artistic and journalistic content of the Metsäkissa2044 project at www.metsakissa.fi.</p><p>Other aspects of the project will also be on display in the exhibition: Legioonateatteri’s forest theatre collective led by Virpi Koskela, Luhtala’s community-based sound art performances, Antti Rajala´s and Aki Saariaho´s utopian pedagogy and Jukka Ilmonen’s improvisational dialogue.</p><p><b>Side events<br>Saturday 15 August </b><br>13.00-15.00<br>Jukka Ilmonen presents the results of the Metsäkissa2044 project</p><p><b>Thursday 20 August: Night of the Arts</b><br>17.00-17.30: Metsä M – a movement-based and poetic sound art performance (Katja Luhtala & collective)<br>17.30-20.00: Metsänpohja (‘Forest Floor’) – community artwork (Susu Rytteri)<br>The audience can also pet the Forest Cat!</p><p><b>Friday 21 August </b><br>17.00-18.00<br>Forest haiku workshop (Katja Luhtala)</p><p><b>Saturday 22 August </b><br>13.00-15.00 <br>Improvisation dialogue (Jukka Ilmonen)<br>15.00-15.30: Artist meeting: Susu Rytteri</p><p><b>Thursday 27 August </b><br>17.00-18.30: Nature connection workshop (Virpi Koskela)</p><p><b>Friday 28 August</b> <br>16-17.30 Antti Rajala and Aki Saariaho: Utopian pedagogy <br>18.00-19.30: Forest theatre performance in the woods (location to be specified later) <br>The director and the creative team will talk about the process</p><p><b>Saturday 29 August: Finnish Nature Day</b><br>13.00-15.00: Roundtable discussion (Jaana Kanninen, featuring Anni Kytömäki and others)<br>15.0-15.30: Metsäsydän (‘Forest Heart’) – an ode to the local forest (Katja Luhtala & collective)</p><p>The exhibition and events are part of the environmental programme of the City of Helsinki Cultural Services.</p><p>The exhibition and events are free of charge.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Metsän suojassa on moniaistinen näyttely ja tapahtumakokonaisuus, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta.", "sv": "Metsän suojassa är en multisensorisk utställning och evenemangshelhet som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande.", "en": "In the Shelter of the Forest is a multi-sensory exhibition and event that invites you to reflect on the future of the forest through art, science and participation." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BC3240580FEDA95831DF176E618667B2/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BC3240580FEDA95831DF176E618667B2/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68281/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69370", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385124, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-15T08:14:20.059270Z", "last_modified_time": "2026-06-15T08:14:20.059284Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793740.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385124/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-15T08:14:19.948991Z", "last_modified_time": "2026-08-03T10:14:02.954129Z", "date_published": null, "start_time": "2026-09-22T11:30:00Z", "end_time": "2026-09-22T12: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": "Sirkuskurssi senioreille, Ryhmä 1 – Seikkailun mestarit", "sv": "Cirkus för seniorer, Grupp 1", "en": "The Master Class of Adventure , Group 1 – Circus course for seniors" }, "description": { "fi": "<p>Stoan suositut sirkuskurssit tulevat taas!</p><p>Liikunnan ei tarvitse olla tylsää! Senioreiden kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä.</p><p>Sirkusliikuntataidot pidentävät elinikää ja parantavat elämänlaatua, sillä ne keskittyvät etenkin ikääntyviä koskeviin tarpeisiin, kuten tasapainoon ja notkeuteen, muistiin ja virkeyteen, kiputilojen vähentämiseen ja sosiaaliseen kanssakäymiseen. Kevyet ja tehokkaat venytys- ja liikerataharjoitukset parantavat ja ylläpitävät vartalon koordinaatiota, tasapainoa ja kehonhallintaa. Laji ei vaadi pohjakuntoa, vaan pelkkä halu oppia uusia taitoja hauskalla tavalla riittää. Tervetuloa mukaan – rohkeus palkitaan!</p><p><i>”Seniorisirkuskurssi Stoassa on paljon enemmän kuin pelkkä aktiviteettien sarja – se on matka itseen, itsensä löytämiseen ja itseilmaisuun. Tarjoamme opiskelijoillemme ilmapiirin, joka ei ainoastaan tue ja kehitä taitoja, vaan myös vahvistaa itsevarmuutta, sinnikkyyttä, luovuutta, kehotietoisuutta ja koordinaatiota. Kurssi yhdistää ainutlaatuisella tavalla hyvinvointia, sirkustaiteita ja sosiaalista vuorovaikutusta sekä rohkaisee opiskelijoitamme tutkimaan, innovoimaan ja loistamaan omalla ainutlaatuisella tavalla.”</i><br>– Sirkusohjaaja Enrique Salas</p><p>Kurssi kokoontuu <b>tiistaisin 1.9.–10.11., mutta ei syyslomaviikolla 13.10.</b> Ryhmä 1 klo 14.30–15.30, ryhmä 2 klo 16–17.<br>Paikka: Stoan musiikkisali <br>Kesto: 10 x 60 min <br>Ohjaaja: sirkusohjaaja Enrique Salas <br> Kieli: englanti, espanja, suomi <br>Maksuton<br> <br>Ennakkoilmoittautuminen ti 4.8. klo 10 alkaen: stoa.fi/fi/tapahtumat. Ilmoittautumaan pääset Stoan verkkosivujen tapahtumakalenterin kautta: klikkaa tapahtuman kohdalla olevaa Ilmoittaudu-painiketta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.</p><p>Cirkuskonst är ett förträffligt sätt att förlänga livet och öka livskvaliteten genom att fokusera på behov som är specifikt kopplade till åldrande, inklusive balans och vighet, minne och minnesprocesser, smärthantering och sociala relationer. Inga krav ställs på kondition eller former – det enda målet är att ha roligt och lära sig nya saker, göra lätta till moderata stretchövningar samt en rad konditionsaktiviteter som syftar till förbättrad och bibehållen koordination mellan händerna, balans och hållning. Aktiviteterna kan göras sittande eller stående.</p><p>Åldersrekommendation: för seniorer <br>Längd: 10 x 60 min <br> Instruktör: cirkusinstruktören och artisten Enrique Salas <br>Språk: engelska, spanska och finska</p><p>Fritt inträde <br>Anmälding ti 4.8. kl 10: stoa.fi/sv/evenemangen.<br>Info: hanna.westerholm@hel.fi</p>", "en": "<p>At the senior circus course, the participants get to, for example, practice their balance and mobility using circus equipment.</p><p>Circus skills are excellent to increase longevity and boost the quality of life by addressing needs specific to aging including balance and flexibility, memory and processing, pain management, and social connection. It is not necessary for any condition or shape just the aim for fun and learning new skills, light to moderate stretching and range of motion activities to improve and maintain bi-manual coordination, balance, and postural control. <br><i> “Our Senior Circus Programme at Stoa is more than just a series of activities; it's a journey of self-discovery and self-expression. We immerse our students in an atmosphere that not only fosters and develops skills but also builds confidence, resilience, creativity, proprioception, and coordination among others. We offer a unique blend of well-being, circus arts, and social interaction encouraging our students to explore, innovate, and shine on their own unique stage of age.”</i><br>– Circus instructor and performer Enrique Salas</p><p>Age recommendation: for senior citizens <br>Duration: 10 x 60 min <br>Instructor: circus instructor and performer Enrique Salas <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Tue 4.8.at 10.a.m.: stoa.fi/en/events. <br>Lisätiedot: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Stoan suositut sirkuskurssit tulevat taas!", "sv": "Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.", "en": "At the senior circus course, the participants get to, for example, practice their balance and mobility using circus equipment." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/15AB6834BA033B6081C7CE094BE56ECC/Sirkuskurssi_senioreille_Ryhma_1_", "sv": "http://www.stoa.fi/sv/evenemang/event/15AB6834BA033B6081C7CE094BE56ECC/Cirkus_for_seniorer_Grupp_1_", "en": "http://www.stoa.fi/en/events/event/15AB6834BA033B6081C7CE094BE56ECC/The_Master_Class_of_Adventure_Group_1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69370/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69369", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385123, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-15T08:14:09.621756Z", "last_modified_time": "2026-06-15T08:14:09.621770Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793739.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385123/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-15T08:14:09.487862Z", "last_modified_time": "2026-08-03T10:14:00.355654Z", "date_published": null, "start_time": "2026-09-15T11:30:00Z", "end_time": "2026-09-15T12: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": "Sirkuskurssi senioreille, Ryhmä 1 – Seikkailun mestarit", "sv": "Cirkus för seniorer, Grupp 1", "en": "The Master Class of Adventure , Group 1 – Circus course for seniors" }, "description": { "fi": "<p>Stoan suositut sirkuskurssit tulevat taas!</p><p>Liikunnan ei tarvitse olla tylsää! Senioreiden kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä.</p><p>Sirkusliikuntataidot pidentävät elinikää ja parantavat elämänlaatua, sillä ne keskittyvät etenkin ikääntyviä koskeviin tarpeisiin, kuten tasapainoon ja notkeuteen, muistiin ja virkeyteen, kiputilojen vähentämiseen ja sosiaaliseen kanssakäymiseen. Kevyet ja tehokkaat venytys- ja liikerataharjoitukset parantavat ja ylläpitävät vartalon koordinaatiota, tasapainoa ja kehonhallintaa. Laji ei vaadi pohjakuntoa, vaan pelkkä halu oppia uusia taitoja hauskalla tavalla riittää. Tervetuloa mukaan – rohkeus palkitaan!</p><p><i>”Seniorisirkuskurssi Stoassa on paljon enemmän kuin pelkkä aktiviteettien sarja – se on matka itseen, itsensä löytämiseen ja itseilmaisuun. Tarjoamme opiskelijoillemme ilmapiirin, joka ei ainoastaan tue ja kehitä taitoja, vaan myös vahvistaa itsevarmuutta, sinnikkyyttä, luovuutta, kehotietoisuutta ja koordinaatiota. Kurssi yhdistää ainutlaatuisella tavalla hyvinvointia, sirkustaiteita ja sosiaalista vuorovaikutusta sekä rohkaisee opiskelijoitamme tutkimaan, innovoimaan ja loistamaan omalla ainutlaatuisella tavalla.”</i><br>– Sirkusohjaaja Enrique Salas</p><p>Kurssi kokoontuu <b>tiistaisin 1.9.–10.11., mutta ei syyslomaviikolla 13.10.</b> Ryhmä 1 klo 14.30–15.30, ryhmä 2 klo 16–17.<br>Paikka: Stoan musiikkisali <br>Kesto: 10 x 60 min <br>Ohjaaja: sirkusohjaaja Enrique Salas <br> Kieli: englanti, espanja, suomi <br>Maksuton<br> <br>Ennakkoilmoittautuminen ti 4.8. klo 10 alkaen: stoa.fi/fi/tapahtumat. Ilmoittautumaan pääset Stoan verkkosivujen tapahtumakalenterin kautta: klikkaa tapahtuman kohdalla olevaa Ilmoittaudu-painiketta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.</p><p>Cirkuskonst är ett förträffligt sätt att förlänga livet och öka livskvaliteten genom att fokusera på behov som är specifikt kopplade till åldrande, inklusive balans och vighet, minne och minnesprocesser, smärthantering och sociala relationer. Inga krav ställs på kondition eller former – det enda målet är att ha roligt och lära sig nya saker, göra lätta till moderata stretchövningar samt en rad konditionsaktiviteter som syftar till förbättrad och bibehållen koordination mellan händerna, balans och hållning. Aktiviteterna kan göras sittande eller stående.</p><p>Åldersrekommendation: för seniorer <br>Längd: 10 x 60 min <br> Instruktör: cirkusinstruktören och artisten Enrique Salas <br>Språk: engelska, spanska och finska</p><p>Fritt inträde <br>Anmälding ti 4.8. kl 10: stoa.fi/sv/evenemangen.<br>Info: hanna.westerholm@hel.fi</p>", "en": "<p>At the senior circus course, the participants get to, for example, practice their balance and mobility using circus equipment.</p><p>Circus skills are excellent to increase longevity and boost the quality of life by addressing needs specific to aging including balance and flexibility, memory and processing, pain management, and social connection. It is not necessary for any condition or shape just the aim for fun and learning new skills, light to moderate stretching and range of motion activities to improve and maintain bi-manual coordination, balance, and postural control. <br><i> “Our Senior Circus Programme at Stoa is more than just a series of activities; it's a journey of self-discovery and self-expression. We immerse our students in an atmosphere that not only fosters and develops skills but also builds confidence, resilience, creativity, proprioception, and coordination among others. We offer a unique blend of well-being, circus arts, and social interaction encouraging our students to explore, innovate, and shine on their own unique stage of age.”</i><br>– Circus instructor and performer Enrique Salas</p><p>Age recommendation: for senior citizens <br>Duration: 10 x 60 min <br>Instructor: circus instructor and performer Enrique Salas <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Tue 4.8.at 10.a.m.: stoa.fi/en/events. <br>Lisätiedot: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Stoan suositut sirkuskurssit tulevat taas!", "sv": "Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.", "en": "At the senior circus course, the participants get to, for example, practice their balance and mobility using circus equipment." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BDA8962F605840426C6487B08001BD86/Sirkuskurssi_senioreille_Ryhma_1_", "sv": "http://www.stoa.fi/sv/evenemang/event/BDA8962F605840426C6487B08001BD86/Cirkus_for_seniorer_Grupp_1_", "en": "http://www.stoa.fi/en/events/event/BDA8962F605840426C6487B08001BD86/The_Master_Class_of_Adventure_Group_1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69369/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69093", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2214225, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-22T13:14:10.726123Z", "last_modified_time": "2026-05-22T13:14:10.726139Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792860.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2214225/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-22T13:14:10.541930Z", "last_modified_time": "2026-08-03T10:13:48.258521Z", "date_published": null, "start_time": "2026-08-13T17: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": "Kuorojen kierros Espalla: Vivace Leidit & Grex Musicus", "sv": "Kuorojen kierros på Esplanaden: Vivace Leidit & Grex Musicus", "en": "Tour of Choirs at Espa: Vivace Leidit & Grex Musicus" }, "description": { "fi": "<p>Kuorojen Kierros järjestetään jälleen tänä vuonna suurena, ihanana ja 30. kerran!</p><p>Tämä yksi Suomen suurimmista kuorotapahtumista kajautetaan käyntiin juhlavuoden yhteiskonsertilla torstaina 13.8. klo 18.00 Senaatintorilla. Suurkuoroa johtaa Marjukka Riihimäki.</p><p>Yhteisen konsertin jälkeen kuorot kiertävät kaupungin ravintoloissa ja muilla areenoilla klo 19.00-22.30 välisenä aikana. Kuorojen kierroksella on mukana yli 120 kuoroa ja tuhansia laulajia. Konsertteja on illan aikana yli 300. Espan lavalla esiintyy kaksi kuoroa: Vivace Leidit aloittaa kello 20 ja Grex Musicus kello 20.30.</p><p>Tervetuloa mukaan laulun juhlaan, maailman äänekkäimmälle kapakkakierrokselle!</p><p>Klo 20.00<br>Vivace Leidit</p><p>Vivace Leidit ovat laulavaisia, nauravaisia, sydämellisiä aikuisia naisia. Laulamme monipuolisesti ja ohjelmistomme koostuu erilaisista naiskuorolauluista. Johtajamme on Mia Makaroff.</p><p>Esitämme tämän kevään menestyksekkään poppiskonserttimme parhaat helmet. Kappaleet ovat viihdyttäviä ja mukaansatempaavia popsävelmiä eri vuosikymmeniltä.</p><p>Lisää Vivace-kuoroperheestämme https://vivacekuorot.fi</p><p>Klo 20.30<br>Grex Musicus</p><p>Grex on jotain muuta kuin kuorolta odottaisit. Grex Musicus muodostuu ammattimaisista, muuntautumiskykyisistä ja persoonallisista laulajista, joiden äänet muodostavat yhdessä jotain suurempaa. Kuoron monipuolisuus kuuluu ohjelmistossa – Grex taipuu isoihin seminaareihin, häistä muistotilaisuuksiin, tai vaikkapa firmasi markkinointitarkoituksiin.</p><p>Helsinkiläinen sekakuoro Grex Musicus viettää tänä vuonna 35-vuotisjuhlavuottaan. Grex laulaa korkealaatuista musiikkia, luo mieleenpainuvia esityksiä ja antaa tunteen kuulua. Musiikin maisteri Kirsi Tunkkari aloitti kuoron taiteellisena johtajana tammikuussa 2023. Grex palkittiin kolmella kultaleimalla Tampereen Sävel – kuorokatselmuksessa 2023, ja keväällä 2025 kuoro voitti Erik Fordell Grand Prix’n – merkittävän tunnustuksen suomalaisen kuoromusiikin kentällä. Kuoron juhlavuosi huipentuu juhlakonserttiin lauantaina 24.10.2026 Tapiolasalissa, Espoossa.</p><p>Viime vuosina Grex on esiintynyt muun muassa monacolaisessa katedraalissa, Lahden Mäkimontussa, Presidentinlinnassa, Olympiastadionilla, Nizzan kaduilla ja argentiinalaisella soutuklubilla.</p><p>Vuonna 1991 perustetulla Grexillä on intohimo paitsi laulamiseen ja korkeatasoiseen musiikkiin myös mieleenpainuviin esiintymisiin ja ennen kaikkea yleisön koskettamiseen.</p><p>Grex esittää 35. juhlavuodestaan inspiroituneita kappaleita tapansa mukaan eri genreistä. Grex laulaa korkealaatuista musiikkia, luo mieleenpainuvia esityksiä ja antaa tunteen kuulua.</p>", "sv": "<p>Den stora och underbara körfestivalen Kuorojen kierros ordnas också i år, för 30:e gången!</p><p>Ett av Finlands största körevenemang inleds med en gemensam konsert för att fira jubileumsåret torsdagen den 13 augusti kl. 18.00 på Senatstorget. Storkören leds av Marjukka Riihimäki.</p><p>Efter den gemensamma konserten uppträder körerna i stadens restauranger och på andra scener mellan kl. 19.00 och 22.30. Över 120 körer och tusentals sångare deltar i körfestivalen. Det kommer att hållas över 300 konserter under kvällen. Två körer uppträder på Esplanadestraden: den första börjar klockan 20 och den andra klockan 20.30.</p><p>Välkommen med på sångfest – världens mest högljudda krogrunda!</p>", "en": "<p>The Tour of Choirs is organised again this year, in grand and magnificent fashion, for the 30th time!</p><p>This choir event – one of the biggest in Finland – kicks off with a joint concert to celebrate the anniversary year on Thursday 13 August at 18.00 on Senate Square. The large choir is conducted by Marjukka Riihimäki.</p><p>After the joint concert, the choirs perform at restaurants and other venues around the city between 19.00 and 22.30. The Tour of Choirs features over 120 choirs and thousands of singers. More than 300 concerts are held over the course of the evening. Two choirs perform on Espa Stage: the first starts at 20.00 and the second at 20.30.</p><p>Join us for a celebration of song on the world’s loudest pub crawl!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kuorojen Kierros järjestetään jälleen tänä vuonna suurena, ihanana ja 30. kerran!", "sv": "Den stora och underbara körfestivalen Kuorojen kierros ordnas också i år, för 30:e gången!", "en": "The Tour of Choirs is organised again this year, in grand and magnificent fashion, for the 30th time!" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D62A27052BE34F905FFA524DF12F3F65/Kuorojen_kierros_Espalla_Vivace_Leidit_Grex_Musicus", "sv": "http://www.espanlava.fi/sv/evenemang/event/D62A27052BE34F905FFA524DF12F3F65/Kuorojen_kierros_pa_Esplanaden_Vivace_Leidit_Grex_Musicus", "en": "http://www.espanlava.fi/en/events/event/D62A27052BE34F905FFA524DF12F3F65/Tour_of_Choirs_at_Espa_Vivace_Leidit_Grex_Musicus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69093/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68245", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?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": 1643197, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T13:13:58.489784Z", "last_modified_time": "2026-03-16T13:13:58.489800Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786458.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1643197/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T13:13:58.369761Z", "last_modified_time": "2026-08-03T10:13:38.666572Z", "date_published": null, "start_time": "2026-05-13", "end_time": "2026-12-31", "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": "Made in Vuosaari – Vuosaaren kirjastossa", "sv": "Made in Vuosaari – Vuosaaren kirjastossa", "en": "Made in Vuosaari – Vuosaaren kirjastossa" }, "description": { "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita?</p><p>Vuosaarelaisten lahjoittamista tarpeettomista tavaroista on tehty koosteita kirjaston elämäkertaosastoille. Esinekoosteet näyttäytyvät alueen asukkaiden muotokuvina. Lahjoitetut esineet on skannattu ja tulostettu uuteen kokonaisuuteen 3D-tulostimella. Näin näyttelyn osaksi tuodaan paikallisten asukkaiden läsnäoloa ja mikrohistoriaa.</p><p>Alueen asukkailta kerätyt esineet ovat suurelta osin Kiinassa massatuotettuja tavaroita, joiden merkitys on hävinnyt uutuusarvon kadottua. Ehkä juuri tässä piilee nykyhetkessämme kytevä kriisi: maailma täyttyy muovista ja tavarasta, jota kukaan ei arvosta tai halua. Miten muuttaisimme suhteemme esineisiin vaalivaksi ja arvostavaksi? Miten oppisimme näkemään uutuusarvon ohi ja suosimaan kestäväksi suunniteltuja, korjattavissa olevia, tarinoiden kyllästämiä tavaroita?</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus. Lue lisää:https://anneroininen.com/</p><p>Löydät teokset Elämäkerta-hyllyistä, Vuosaaren kirjaston puolelta.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari_", "en": "http://www.vuotalo.fi/en/events/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68245/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp23v3e5i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385653, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-04T08:06:11.047248Z", "last_modified_time": "2025-06-04T08:06:11.047261Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/dd7b89f1-9f20-496a-a708-585a388bbda2.png", "name": "", "cropping": "164,0,639,476", "photographer_name": "", "alt_text": "Kuvassa lukee adg- Asian dancing group", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385653/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-29T12:03:09.959959Z", "last_modified_time": "2026-08-03T08:18:43.031461Z", "date_published": null, "start_time": "2026-08-29T10:00:00Z", "end_time": "2026-08-29T13: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": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "name": { "fi": "Embrace the Rhythm of Asia - tapahtuma", "sv": "”Upplev Asiens rytm” – evenemang", "en": "Embrace the Rhythm of Asia - Espoo Päivä 29th of August" }, "description": { "fi": "<p>Ohjelmassa on tanssia,laulua, esityksiä ja paljon muuta. Tervetuloa! Tapahtuma on englanniksi ja suomeksi.</p><p><br></p><p>Tapahtuman ohjelma englanniksi:</p><p>13:00-13:30 welcome ceremony </p><p>13:30 Chinese long Fan damce (Jasmine ) by ADG</p><p>13':35, Solo(烛光里的妈妈),(我的深情为你守候)by Silja Han</p><p>13:50:Mengolian dance(AuBao appointment ) by jade dance group </p><p>13:55:kpop dance itzy的 (motto) by ADG</p><p>14:00 Chinese dance (FuRong rain) by happy dance group </p><p>14:05 kid play piano by mengya Chinese class </p><p>14:10 flute play by Da Yu</p><p>14:15 round fan damce (flower in the rain ) by ADG</p><p>14:20 Chinese dance (xue long yin) by happy dance group</p><p>14:25 poeme +piano play by Chang chang</p><p>14:30</p><p>Break </p><p><br></p><p>15:00 dance (the legend )by ADG</p><p>15:05 indian kid dance by by The Finnish Thai Association </p><p>15:10 heavy music by ice cat band </p><p>15: 25 poems singing by mengya Chinese class </p><p>15: 30: Vietnamese martial arts by phan duc Anh </p><p>15:40 Chinese dance (he tang yue se) by jade dance group </p><p>16:05 Thai kid dance by The Finnish Thai Association </p><p>16:10: indian dance workshop</p><p>by The Finnish Thai Association </p><p><br></p><p>Our Asian Dancing Group is dedicated to bringing the rich and diverse dance traditions of Asia to life. From traditional folk dances to contemporary interpretations, we celebrate the artistry, culture, and beauty of Asian movement. Event is held in Lippulaiva Library's Salonki space.</p><p>There will be dance, signing, music instruments performances and more!</p><p><br></p><p>Free entrance!</p><p>More information: asddance0@gmail.com</p><p>asiandancegroup.fi</p><p><br></p><p>The event is in English and Finnish.</p>", "sv": "<p>Vår asiatiska dansgrupp har som mål att levandegöra Asiens rika och mångfacetterade danstraditioner. Från traditionella folkdanser till samtida tolkningar hyllar vi konstnärskapet, kulturen och skönheten i asiatiska rörelser. Evenemanget hålls i Salonki-lokalen på Lippulaiva-biblioteket.</p><p><br></p><p>Det blir dans, sång, musikframträdanden och mycket mer!</p><p><br></p><p>Fri entré!</p><p>Mer information: asddance0@gmail.com</p><p>asiandancegroup.fi</p>", "en": "<p>Our Asian Dancing Group is dedicated to bringing the rich and diverse dance traditions of Asia to life. From traditional folk dances to contemporary interpretations, we celebrate the artistry, culture, and beauty of Asian movement. Event is held in Lippulaiva Library's Salonki space.</p><p>There will be dance, signing, music instruments performances and more!</p><p>Free entrance!</p><p><br></p><p>Program:</p><p>13:00-13:30 welcome ceremony </p><p>13:30 Chinese long Fan damce (Jasmine ) by ADG</p><p>13':35, Solo(烛光里的妈妈),(我的深情为你守候)by Silja Han</p><p>13:50:Mengolian dance(AuBao appointment ) by jade dance group </p><p>13:55:kpop dance itzy的 (motto) by ADG</p><p>14:00 Chinese dance (FuRong rain) by happy dance group </p><p>14:05 kid play piano by mengya Chinese class </p><p>14:10 flute play by Da Yu</p><p>14:15 round fan damce (flower in the rain ) by ADG</p><p>14:20 Chinese dance (xue long yin) by happy dance group</p><p>14:25 poeme +piano play by Chang chang</p><p>14:30</p><p>Break </p><p><br></p><p>15:00 dance (the legend )by ADG</p><p>15:05 indian kid dance by by The Finnish Thai Association </p><p>15:10 heavy music by ice cat band </p><p>15: 25 poems singing by mengya Chinese class </p><p>15: 30: Vietnamese martial arts by phan duc Anh </p><p>15:40 Chinese dance (he tang yue se) by jade dance group </p><p>16:05 Thai kid dance by The Finnish Thai Association </p><p>16:10: indian dance workshop</p><p>by The Finnish Thai Association </p><p><br></p><p>More information: asddance0@gmail.com</p><p>asiandancegroup.fi</p><p>The event is in English and Finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Embrace the rhythm of Asia-tapahtumaan Salonkiin Espoo-päivänä!", "sv": "Välkommen till evenemanget ”Embrace the rhythm of Asia”! Det blir dans, sång, musikframträdanden\noch mycket mer!", "en": "Welcome to Embrace the rhythm of Asia event! There will be dance, signing, music instruments\nperformances and more!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp23v3e5i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpifnsn6y", "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: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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2384796, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T10:03:50.241555Z", "last_modified_time": "2026-06-01T10:03:50.241566Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0d1dcffa-c40f-474d-be9c-1e9c6df883a5.jpg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Teppo Hovi ja kirjan kansikuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384796/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T10:03:57.038378Z", "last_modified_time": "2026-08-03T06:32:54.145080Z", "date_published": null, "start_time": "2026-08-18T15:00:00Z", "end_time": "2026-08-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": null, "name": { "fi": "Kirjailijavieraana Teppo Hovi", "sv": "Författare Teppo Hovi", "en": "Author Teppo Hovi" }, "description": { "fi": "<p>Teppo Hovilla on yli 15 vuoden kokemus tv-sisällöistä ja fiktiosarjojen kehittämisestä, käsikirjoittamisesta ja tuottamisesta. Hän on ollut mukana tuotannoissa kuten Modernit miehet, Etsijät, Rakkaat lapset ja Kullannuput. Rikosromaani Enkelit jotka katosivat on Hovin esikoiskirja, joka avaa Kasper Wik -sarjan. Hovi asuu Helsingissä.</p><p><br></p><p>Enkelit jotka katosivat aloittaa Kasper Wik -sarjan, joka tuo rikoskirjallisuuden parrasvaloihin uuden kiinnostavan päähenkilön. Julkisuuden kiroista kärsivästä tubettajasta kehittyy omaa polkuaan kulkeva, rikollisia paljastava videojournalisti. Jännittävä ja koukuttava rikosromaani osoittaa, kuinka ammattirikollisuus hyödyntää globaaleja kriisejä ja uhkakuvia.</p>", "sv": "<p>Kriminalromanen ”Änglarna som försvann” är Hovs debutroman och den första boken i Kasper Wik-serien. Evengemang är på finska.</p>", "en": "<p>The crime novel *The Angels Who Disappeared* is Hovi’s debut novel, which kicks off the Kasper Wik series. Event is in Finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Rikosromaani Enkelit jotka katosivat on Hovin esikoiskirja, joka avaa Kasper Wik -sarjan. ", "sv": "Kriminalromanen ”Änglarna som försvann” är Hovs debutroman och den första boken i Kasper Wik-serien. Evengemang är på finska.", "en": "The crime novel *The Angels Who Disappeared* is Hovi’s debut novel, which kicks off the Kasper Wik series. Event is in Finnish." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsn6y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agppjkepfq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agppjkepx4/?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": 2385307, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T07:22:27.682923Z", "last_modified_time": "2024-03-19T07:22:27.682943Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ibmoon-kim-DWzJXQBKlr4-unsplash.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "Kim Ibmoon", "alt_text": "Kuvassa lautapelihahmot ja lautapeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385307/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-23T12:18:57.360801Z", "last_modified_time": "2026-07-31T07:41:09.048552Z", "date_published": null, "start_time": "2026-08-07T14:30:00Z", "end_time": "2026-08-07T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kajuutta", "sv": "Kajuutta", "en": "Kajuutta" }, "provider": null, "name": { "fi": "Aikuisten lautapelikerho", "sv": "Brädspelsklubb för vuxna", "en": "Board game club for adults" }, "description": { "fi": "<p>Lautapeli-illat on matalankynnyksen iltoja, johon voit tulla ihan omana itsenäsi. Viikoittain 7.8. -27.11. klo 17:30 – 20:00 (Huom. ei tapahtumaa pe 13.11.).</p><p>Iltoihin ei tarvitse aikaisempaa kokemusta, koska käymme läpi pelisäännöt ennen pelaamista.</p><p>Pidämme 15 min tauon pelien lomassa, jolloin voit keittää kahvia/teetä (omat kahvit ja teet)tai lämmittää ruokaa kirjaston keittiössä.</p><p>Iltaan voi tulla kesken pelien.</p><p>Omia pelejä voi tuoda tullessaan.</p><p>Pelikieli on suomi.</p><p>Lautapeli-iltaan ei tarvitse ilmoittautua.</p><p>Tapahtumaa ei järjestetä arkipyhinä.</p>", "sv": "<p>Brädspelskvällar är kvällar med låg tröskel där du kan komma som dig själv.</p><p>Ingen tidigare erfarenhet behövs eftersom vi går igenom spelreglerna innan vi börjar spela.</p><p>Vi tar en 15 minuters paus mellan spelen, under vilken du kan koka kaffe/te (ta med ditt eget kaffe och te) eller värma lite mat i bibliotekets kök.</p><p>Du kan ansluta dig till oss för kvällen mitt i spelen.</p><p>Du kan ta med dina egna spel.</p><p>Evenemanget är på finska</p><p>Du behöver inte anmäla dig till brädspelskvällen före spelkvällen.</p><p>Evenemanget kommer inte att äga rum på allmänna helgdagar.</p>", "en": "<p>Board game nights are low-threshold evenings where you can come as yourself.</p><p>No previous experience is necessary as we go through the rules of the games before we start playing.</p><p>We take a 15 minutes break between games, during which you can make coffee/tea (bring your own coffee and tea) or heat up some food in the library kitchen.</p><p>You can join us for the evening in the middle of the games.</p><p>You can bring your own games.</p><p>The game language is Finnish.</p><p>No need to sign up for the board game night before the game night.</p><p>The event will not take place on public holidays.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa aikuisten lautapeli-iltaan perjantaisin ", "sv": "Välkommen till brädspelskvällen för vuxna på fredagar", "en": "Welcome to the adult board game night on Fridays" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agppjkepfq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp3odzitm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385659, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-31T06:23:41.043047Z", "last_modified_time": "2026-07-31T06:23:41.043129Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ab274121-e6c1-4a8c-a792-11992c0b8135.jpg", "name": "", "cropping": "72,0,535,462", "photographer_name": "", "alt_text": "Kuvassa on kirjailija Anton Monti ja hänen kirjansa Ultrat- kansikuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385659/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-31T06:35:42.216471Z", "last_modified_time": "2026-07-31T06:35:42.216488Z", "date_published": null, "start_time": "2026-09-17T15:00:00Z", "end_time": "2026-09-17T15: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": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "name": { "fi": "Kirjailijavieraana Anton Monti - Ultrat - Väkivalta ja mafia Italian jalkapallokatsomoissa", "sv": "Författarbesök med Anton Monti", "en": "Author visit: Anton Monti" }, "description": { "fi": "<p>Tervetuloa kuuntelemaan Anton Montin kirjailijavierailua Salonkiin torstaina 17.9. klo 18 alkaen.</p><p>Jalkapallon intohimoisimpia faniryhmiä kutsutaan ultriksi. Nimitys tarkoittaa äärimmäistä. Ultrat arvostavat lojaaliutta, yhteisöllisyyttä ja riippumattomuutta, ja he pitävät itseään jalkapalloseurojensa sieluna. Italiassa heitä joutuvat kuuntelemaan seurapomotkin.</p><p>Pahimmillaan ultrien välisissä yhteenotoissa kuolee ja loukkaantuu ihmisiä. Pian pandemian jälkeen Italiassa ultrien katsomonosiin ilmestyi kuitenkin uusia, entistä vaarallisempia toimijoita. Mafian edustajat olivat huomanneet, että ultrilla oli valtaa. Sen he halusivat itselleen – keinoja kaihtamatta.</p><p>Anton Montin hyytävä tietokirja paljastaa, miten korruptio, väkivalta ja huumekauppa pesiytyivät italialaiseen jalkapalloon, ja kuinka mafia soluttautui kaiken sen keskelle. </p>", "sv": "<p>Kom och träffa författaren Anton Monti på Salonki torsdagen den 17 september, med start kl. 18.00.</p><p><br></p><p>De mest hängivna grupperna av fotbollsfans kallas ultras. Termen betyder ”extrem”. Ultras värdesätter lojalitet, gemenskap och självständighet, och de ser sig själva som sina fotbollsklubbar själ. I Italien måste till och med klubbledningen lyssna på dem.</p><p><br></p><p>I värsta fall leder sammandrabbningar mellan ultras till dödsfall och skador. Kort efter pandemin dök dock nya och ännu farligare aktörer upp på ultrasläktarna i Italien. Representanter för maffian hade insett att ultras hade makten. De ville ha den makten för sig själva – till varje pris.</p><p><br></p><p>Anton Montis skrämmande faktabok avslöjar hur korruption, våld och narkotikahandel slog rot i den italienska fotbollen, och hur maffian infiltrerade det hela.</p>", "en": "<p>Join us for Anton Monti’s author visit at Salonki on Thursday, September 17, starting at 6 pm.</p><p><br></p><p>The most passionate groups of soccer fans are called ultras. The term means “extreme.” Ultras value loyalty, community, and independence, and they consider themselves the soul of their soccer clubs. In Italy, even club executives have to listen to them.</p><p><br></p><p>At their worst, clashes between ultras result in deaths and injuries. Shortly after the pandemic, however, new and even more dangerous players appeared in the ultras’ stands in Italy. Mafia representatives had realized that the ultras held power. They wanted that power for themselves by any means necessary.</p><p><br></p><p>Anton Monti’s chilling non-fiction book reveals how corruption, violence, and drug trafficking took root in Italian soccer, and how the Mafia infiltrated it all.</p><p><br></p><p>The event is in Finnish. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kuuntelemaan Anton Montin kirjailijavierailua Salonkiin torstaina 17.9. klo 18 alkaen.", "sv": "Författarbesök med Anton Monti på Lippulaiva biblioteket 17.9. kl. 18-18:45", "en": "Author visit at Lippulaiva library September 17th 2026 6pm-6.45 pm" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp3odzitm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69301", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385657, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-31T06:14:41.082177Z", "last_modified_time": "2026-07-31T06:14:41.082199Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793724.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385657/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-31T06:14:40.869618Z", "last_modified_time": "2026-07-31T06:14:41.348892Z", "date_published": null, "start_time": "2026-09-16T06:15:00Z", "end_time": "2026-09-16T08: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": "Alakoulukino: Ronja Ryövärintytär", "sv": "Lågstadiekino: Ronja Rövardotter", "en": "Alakoulukino: Ronia, the Robber’s Daughter" }, "description": { "fi": "<p>Ronjan syntymä oli yhtä suurta juhlaa. Salamat leimusivat ja ukkosen jylinä kiiri halki vuorten ja metsien.</p><p>Ryöväripäällikkö Mattis oli haljeta onnesta! Mattisin suku jatkuisi ja Ronjasta tulisi uusi ryöväripäällikkö. Niin hän ainakin luuli. Hän ei nimittäin tiennyt, että samana yönä syntyi toinenkin ryöväripäällikkö...</p><p>Maa: Ruotsi 1984<br>Genre: Koko perheen elokuva <br>Ohjaus: Tage Danielsson<br>Kesto n. 2 h ja 20 min.<br>Paikka: teatterisali</p>", "sv": "<p>Ronjas födelse var en enda stor fest. Blixtarna slog ner och åskans dunder ekade genom bergen och skogarna.</p><p>Rövarhövdingen Mattis var överlycklig! Mattis släkt skulle leva vidare och Ronja skulle bli den nya rövarhövdingen. Det var i alla fall vad han trodde. Han visste nämligen inte att det samma natt föddes också en annan rövarhövding...</p><p>Land: Sverige 1984<br>Genre: En film för hela familjen <br>Regi: Tage Danielsson<br>Längd: ca 2 h 20 min.</p>", "en": "<p>Ronia’s birth was one big celebration. Lightnings flashed and the rumble of thunder swept through the mountains and forests.</p><p>Matt, the chief of a clan of robbers, was over the moon! Matt’s bloodline would continue, and Ronia would become the new chief of the robbers. Or so he thought, as unbeknownst to him, another robber chief had been born that very same night…</p><p>Country: Sweden, 1984.<br>Genre: A film for the whole family <br>Direction: Tage Danielsson<br>Duration: roughly 2 h 20 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ronjan syntymä oli yhtä suurta juhlaa. Salamat leimusivat ja ukkosen jylinä kiiri halki vuorten ja metsien.", "sv": "Ronjas födelse var en enda stor fest. Blixtarna slog ner och åskans dunder ekade genom bergen och skogarna.", "en": "Ronia’s birth was one big celebration. Lightnings flashed and the rumble of thunder swept through the mountains and forests." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/EFADCB8C085305E03A2F5B864656D90F/Alakoulukino_Ronja_Ryovarintytar", "sv": "http://www.stoa.fi/sv/evenemang/event/EFADCB8C085305E03A2F5B864656D90F/Lagstadiekino_Ronja_Rovardotter", "en": "http://www.stoa.fi/en/events/event/EFADCB8C085305E03A2F5B864656D90F/Alakoulukino_Ronia_the_Robber_s_Daughter" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69301/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68183", "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/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": 1543043, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-06T12:13:13.817968Z", "last_modified_time": "2026-03-06T12:13:13.817981Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781901.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1543043/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-06T12:13:13.702077Z", "last_modified_time": "2026-07-31T05:14:13.914313Z", "date_published": null, "start_time": "2026-06-12", "end_time": "2026-08-02", "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": "Mila Milax: Soul of Helsinki – Study of soul from a city perspective", "sv": "Mila Milax: Soul of Helsinki – Study of soul from a city perspective", "en": "Mila Milax: Soul of Helsinki – Study of soul from a city perspective" }, "description": { "fi": "<p>Soul of Helsinki on valokuvallinen kaupunkitutkimus, joka tarkastelee Helsingin identiteettiä, ihmisiä ja tiloja.</p><p>Tässä kaupungissa paljon on mahdollista. Kaupunki, joka on sekä yksilöllinen että yhteisöllinen kokemus, jonka jokainen meistä elää omalla tavallaan. Päivittäinen metromatka, aamiainen merenrannalla, iltapyöräily, kahvila, josta aina saa neuvoa, rakkaat ihmiset, nuoret tanssimassa aukioilla, lempipaikka luoda, ystävän ystävä, jonka olet kohtaamassa, hidden gem, katu, jota pitkin kävelet töihin ja uusi mahdollisuus, joka päivä.</p><p>Valokuvissaan Mila tutkii Helsingin sielukkuutta miksaamalla eri medioita, todellisuuden kerroksia, tyhjiä katuja, luovia ihmisiä ja heidän unelmiaan yhdeksi kokonaisuudeksi. Kaikki täällä liittyy toisiinsa, mutta miten tunnet olevasi osa näitä tiloja ja yhteisöjä? Mitä nämä tilat pitävät sisällään ja ihmiset luovat? Miten elämme ja hengitämme tätä kulttuuria luomalla yhteyksiä toisillemme? Vastaus tähän on jo sinussa itsessäsi - voi olla kuka vaan, ja silti olla helsinkiläinen. Kuulua.</p><p>Soul of Helsinki debytoi Stoassa vuonna 2024. Viime vuosina olen kerännyt lisää havaintoja. Uusia katuja, joita olen kulkenut, ihmisiä, joita olen tavannut, ja yhteyksiä, joita olen löytänyt. Uutta Helsingin inspiraatiota, tuoreesti miksattuna. Tutkimus sielusta kaupungin näkökulmasta.</p><p>Tervetuloa,<br>Soul of Helsinki</p><p>Näyttely Stoan Parvigalleriassa 12.6.-9.8.2026.<br>Avajaiset Helsinki-päivänä 12.6.2026. klo 17-19<br>Vapaa pääsy</p>", "sv": "<p>Soul of Helsinki är ett fotografiskt stadsprojekt som utforskar Helsingfors identitet, människor och platser.</p><p>I den här staden är mycket möjligt. En stad som är både en individuell och en gemensam upplevelse, som var och en av oss upplever på sitt eget sätt. En daglig tunnelbanetur, en frukost vid havet, en cykeltur på kvällen, ett kafé där du alltid kan få råd, dina favoritmänniskor, ungdomar som bryter sig in i stadskärnan, en plats för skapande, en väns vän som du snart ska träffa, en dold pärla, en gata du går längs på väg till jobbet och en ny möjlighet, varje dag.</p><p>Genom sina fotografier utforskar Mila Helsingfors själ genom att blanda medier och lager av verklighet, tomma gator, kreativa människor och deras drömmar till en helhet. Allt här hänger ihop, men hur känner man sig som en del av dessa platser och gemenskaper? Vad bevarar dessa platser och vad skapar människorna? Hur lever och andas vi denna kultur genom att knyta band till varandra? Svaret på den frågan finns redan inom dig – du kan vara vem som helst och ändå vara helsingforsbo. Höra hemma.</p><p>Soul of Helsinki hade premiär på Stoa 2024. Under de senaste åren har jag samlat fler iakttagelser.<br>Nya gator jag har gått på, människor jag har träffat och kontakter jag har knutit. Ny inspiration från Helsingfors, nyblandad. En studie av själ ur ett stadsperspektiv.</p><p>Du är inbjuden,<br>Soul of Helsinki</p><p>Utställning på Stoas Parvi-galleri, 12 juni–9 augusti 2026.<br>Vernissage på Helsingforsdagen, 12 juni 2026, kl. 17–19</p>", "en": "<p>Soul of Helsinki is a photographic city research through the identity, people and spaces of Helsinki.</p><p>In this city, a lot of things are possible. A city that is both an individual and a communal experience, that each of us lives through in their own way. A daily metro ride, a seashore breakfast, an evening bike ride, a cafe you can always come for advice, your favorite people, youth breaking on the city squares, a go-to space for creating, friend of a friend you’re about to meet, a hidden gem, a street you walk along on the way to work and a new opportunity, every day.</p><p>Through her photographs, Mila studies the soulfulness of Helsinki through mixing medias and layers of reality, empty streets, creatives and their dreams into one. Everything here is related, but how do you feel a part of these spaces and communities? What do these spaces keep and people create? How do we live and breathe this culture by connecting with each other? The answer to this lies within you - you can be anyone and still be from Helsinki. Belong.</p><p>Soul of Helsinki debuted at Stoa in 2024. In the past few years I collected more observations. <br>New streets I walked, people I met and connections found. New Helsinki inspiration, freshly mixed. A study of soul from a city perspective.</p><p>You are invited,<br>Soul of Helsinki</p><p>Exhibition at Stoa’s Parvi Gallery, June 12–August 9, 2026.<br>Opening on Helsinki Day, June 12, 2026, 17-19<br>Free entry</p>" }, "provider_contact_info": null, "short_description": { "fi": "Soul of Helsinki on valokuvallinen kaupunkitutkimus, joka tarkastelee Helsingin identiteettiä, ihmisiä ja tiloja.", "sv": "Soul of Helsinki är ett fotografiskt stadsprojekt som utforskar Helsingfors identitet, människor och platser.", "en": "Soul of Helsinki is a photographic city research through the identity, people and spaces of Helsinki." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_Study_of_soul_from_a_city_perspective_", "sv": "http://www.stoa.fi/sv/evenemang/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_Study_of_soul_from_a_city_perspective", "en": "http://www.stoa.fi/en/events/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_Study_of_soul_from_a_city_perspective" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68183/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp3ewi2g4", "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:p11617/?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:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385654, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-30T09:09:26.432763Z", "last_modified_time": "2026-07-30T09:09:26.432776Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/08563865-c203-4213-b778-5b5d0b96995e.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Tilaisuuden mainos", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385654/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-30T09:10:03.890491Z", "last_modified_time": "2026-07-30T09:10:03.890508Z", "date_published": null, "start_time": "2026-08-24T10:30:00Z", "end_time": "2026-08-24T11: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": "Info oppimisesta ja mielen hyvinvoinnista", "sv": "Information om lärande och psykiskt välbefinnande på finska", "en": "Information on learning and mental wellbeing in Finnish" }, "description": { "fi": "<p>Tule kuulemaan aikuisten ja nuorten ( vähintään 16-vuotiaat) oppimisen vaikeuksista sekä maksuttomista palveluista ja materiaaleista.</p><p><br></p><p>Tilaisuuden lopussa voi kysyä psykologian asiantuntijalta aikuisten oppimisesta, oppimista helpottavista keinoista sekä oppijan mielen hyvinvoinnin tukemisesta.</p><p><br></p><p>Tilaisuus on tarkoitettu erityisesti oppimisen vaikeuksia kokeville aikuisille ja nuorille ja heidän läheisilleen.</p>", "sv": "<p>Information om lärande och psykiskt välbefinnande på finska</p>", "en": "<p>Information on learning and mental wellbeing in Finnish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Info oppimisesta ja mielen hyvinvoinnista", "sv": "Information om lärande och psykiskt välbefinnande på finska", "en": "Information on learning and mental wellbeing in Finnish" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp3ewi2g4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp3ewi5qy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385656, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-30T08:21:12.016345Z", "last_modified_time": "2026-07-30T08:21:12.016359Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/514e0e25-eb5a-4d0d-b6a4-5c1c12cee015.jpeg", "name": "", "cropping": "0,82,2184,2267", "photographer_name": "", "alt_text": "Kuvassa on kirjailija Eveliina Mulenga", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385656/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-30T08:25:58.417484Z", "last_modified_time": "2026-07-30T08:25:58.417507Z", "date_published": null, "start_time": "2026-09-12T13:00:00Z", "end_time": "2026-09-12T14: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": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "name": { "fi": "Kirjailijavieraana Eveliina Mulenga", "sv": "Författarbesök med Eveliina Mulenga", "en": "Author visit: Eveliina Mulenga" }, "description": { "fi": "<p>Eveliina Mulengan kirjanjulkaisutilaisuus 12.9.2026 klo 16-17.30 Lippulaivan kirjastossa, Salonki tilassa. Kirjailijahaastattelu ja kirjamyynti. Tarjolla pikkupurtavaa!</p><p> </p><p>Olet oikein lämpimästi tervetullut! </p>", "sv": "<p>Eveliina Mulengas boklansering den 12 september 2026, kl. 16.00–17.30 på Lippulaiva-biblioteket, i rummet Salonki. Författarintervju och bokförsäljning. Det bjuds på lättare förtäring!</p><p>Ni är hjärtligt välkomna!</p>", "en": "<p>Eveliina Mulenga’s book launch on September 12, 2026, from 4:00 to 5:30 p.m. at the Lippulaiva Library, in the Salonki room. Author interview and book sale. Light refreshments will be served!</p><p>You are most warmly welcome!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Eveliina Mulengan kirjanjulkaisutilaisuus 12.9.2026 klo 16-17.30 Lippulaivan kirjastossa, Salonki tilassa. ", "sv": "Författarbesök med Eva Frantz på Lippulaiva bibliotek 12.9 kl. 16-17.30.", "en": "Author visit at Lippulaiva library September 12th 2026 4pm-5.30 pm" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp3ewi5qy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agprqd7aye", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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: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:agprqd7bga/?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": 2385434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-30T09:15:00.329644Z", "last_modified_time": "2026-06-30T09:15:00.329658Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9e437fe1-9a06-474c-9e78-e0c22f9d57ad.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Flukyfluky, Getty Images", "alt_text": "Kissa katsoo pensaasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-06-30T09:18:28.121384Z", "last_modified_time": "2026-07-29T12:09:20.527062Z", "date_published": null, "start_time": "2026-09-02T15:00:00Z", "end_time": "2026-09-02T16: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": { "fi": "Kulma", "sv": "Kulma", "en": "Kulma" }, "provider": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "name": { "fi": "Soturikissaklubi", "sv": "Warriorsklubben", "en": "Warriors Cat Club" }, "description": { "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentila Kulmassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>", "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning Kulma.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>", "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space Kulma.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!", "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ", "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprqd7aye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agprqd7alq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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: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:agprqd7bga/?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": 2385434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-30T09:15:00.329644Z", "last_modified_time": "2026-06-30T09:15:00.329658Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9e437fe1-9a06-474c-9e78-e0c22f9d57ad.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Flukyfluky, Getty Images", "alt_text": "Kissa katsoo pensaasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-06-30T09:18:28.335854Z", "last_modified_time": "2026-07-29T12:09:20.479735Z", "date_published": null, "start_time": "2026-09-16T15:00:00Z", "end_time": "2026-09-16T16: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": { "fi": "Kulma", "sv": "Kulma", "en": "Kulma" }, "provider": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "name": { "fi": "Soturikissaklubi", "sv": "Warriorsklubben", "en": "Warriors Cat Club" }, "description": { "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentila Kulmassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>", "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning Kulma.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>", "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space Kulma.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!", "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ", "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprqd7alq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agprqd676a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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: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:agprqd7bga/?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": 2385434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-30T09:15:00.329644Z", "last_modified_time": "2026-06-30T09:15:00.329658Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9e437fe1-9a06-474c-9e78-e0c22f9d57ad.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Flukyfluky, Getty Images", "alt_text": "Kissa katsoo pensaasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-06-30T09:18:28.493456Z", "last_modified_time": "2026-07-29T12:09:20.433475Z", "date_published": null, "start_time": "2026-09-30T15:00:00Z", "end_time": "2026-09-30T16: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": { "fi": "Kulma", "sv": "Kulma", "en": "Kulma" }, "provider": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "name": { "fi": "Soturikissaklubi", "sv": "Warriorsklubben", "en": "Warriors Cat Club" }, "description": { "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentila Kulmassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>", "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning Kulma.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>", "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space Kulma.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!", "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ", "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprqd676a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agprqd67ra", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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: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:agprqd7bga/?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": 2385434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-30T09:15:00.329644Z", "last_modified_time": "2026-06-30T09:15:00.329658Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9e437fe1-9a06-474c-9e78-e0c22f9d57ad.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Flukyfluky, Getty Images", "alt_text": "Kissa katsoo pensaasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-06-30T09:18:28.684483Z", "last_modified_time": "2026-07-29T12:09:20.389579Z", "date_published": null, "start_time": "2026-10-14T15:00:00Z", "end_time": "2026-10-14T16: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": { "fi": "Kulma", "sv": "Kulma", "en": "Kulma" }, "provider": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "name": { "fi": "Soturikissaklubi", "sv": "Warriorsklubben", "en": "Warriors Cat Club" }, "description": { "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentila Kulmassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>", "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning Kulma.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>", "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space Kulma.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!", "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ", "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprqd67ra/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agprqd67dq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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: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:agprqd7bga/?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": 2385434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-30T09:15:00.329644Z", "last_modified_time": "2026-06-30T09:15:00.329658Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9e437fe1-9a06-474c-9e78-e0c22f9d57ad.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Flukyfluky, Getty Images", "alt_text": "Kissa katsoo pensaasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-06-30T09:18:28.930036Z", "last_modified_time": "2026-07-29T12:09:20.337320Z", "date_published": null, "start_time": "2026-10-28T16:00:00Z", "end_time": "2026-10-28T17: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": { "fi": "Kulma", "sv": "Kulma", "en": "Kulma" }, "provider": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "name": { "fi": "Soturikissaklubi", "sv": "Warriorsklubben", "en": "Warriors Cat Club" }, "description": { "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentila Kulmassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>", "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning Kulma.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>", "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space Kulma.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!", "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ", "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprqd67dq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }