Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=34
{ "meta": { "count": 22771, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=35", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=33" }, "data": [ { "id": "kulke:69009", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201276, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T09:13:56.454883Z", "last_modified_time": "2026-05-13T09:13:56.454904Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792397.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201276/?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-05-13T09:13:56.325315Z", "last_modified_time": "2026-05-13T09:13:56.655105Z", "date_published": null, "start_time": "2026-06-13T11:00:00Z", "end_time": "2026-06-13T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Metsän ötökät ja otukset - savimuovailutyöpaja", "sv": "Metsän ötökät ja otukset - savimuovailutyöpaja", "en": "Metsän ötökät ja otukset - savimuovailutyöpaja" }, "short_description": { "fi": "Tule muovailemaan oma mielikuvituksellinen ötökkä suomalaisesta punasavesta!" }, "description": { "fi": "<p>Tule muovailemaan oma mielikuvituksellinen ötökkä suomalaisesta punasavesta!</p><p>Työpajan inspiraationa ovat erilaiset uhanalaiset ötökät ja eläimet, erityisesti sellaiset, joita Stansvikin alueella asustaa. Metsä on suojaisa koti vaikkapa viitasammakoille ja liito-oraville. Monet pienet metsän ötökät ovat myös tärkeitä luonnon kiertokulussa esimerkiksi lintujen ruokana.<br> <br>Valmistuneen saviotuksen voit joko valokuvata ja jättää osaksi kasvavaa installaatiota kesän yli nähtävillä olevaan taidenäyttelyyn, tai halutessasi kuljettaa kotiin. Työpaja on maksuton.<br> <br>Työpaja sopii kaikenikäisille. Käytettävissä oleva tila rajaa sitä kuinka moni mahtuu osallistumaan samaan aikaan. Alle 10-vuotiaiden lasten osallistuminen huoltajan seurassa. <br> <br>Ohjaamassa:<br>Minttu Pyykkönen<br>Emiel Riiko</p><p>Työpaja on osa Stoan galleriassa esillä olevan Luontosuhteita-näyttelyn oheisohjelmaa.</p><p>Paja pidetään Terraario-luokassa Stoan aulan 2. kerroksessa.<br>Vapaa pääsy.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7E8B049BE2A0ADC1635DF78878B88833/Metsan_otokat_ja_otukset_-_savimuovailutyopaja", "sv": "http://www.stoa.fi/sv/evenemang/event/7E8B049BE2A0ADC1635DF78878B88833/Metsan_otokat_ja_otukset_-_savimuovailutyopaja", "en": "http://www.stoa.fi/en/events/event/7E8B049BE2A0ADC1635DF78878B88833/Metsan_otokat_ja_otukset_-_savimuovailutyopaja" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69009/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68118", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494887, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T13:13:40.748552Z", "last_modified_time": "2026-02-17T13:13:40.748570Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780771.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494887/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-17T13:13:40.625436Z", "last_modified_time": "2026-05-13T09:13:56.015987Z", "date_published": null, "start_time": "2026-06-13T09: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, "name": { "fi": "Stoa Hip Hop Saturday", "sv": "Stoa Hip Hop Saturday", "en": "Stoa Hip Hop Saturday" }, "short_description": { "fi": "Stoan sisätilat ja aukio täyttyvät katukulttuurilla lauantaina 13.6!", "sv": "Stoas lokaler och Stoaplatsen fylls av gatukultur lördagen den 13 juni!", "en": "Stoa's interior spaces and Stoa square will be filled with street culture on Saturday 13 June!" }, "description": { "fi": "<p>Stoan sisätilat ja aukio täyttyvät katukulttuurilla lauantaina 13.6!</p><p>Stoa Hip Hop Saturday on nuorille ja nuorille aikuisille sekä kaikille hip hopista ja katukulttuurista kiinnostuneille suunnattu katukulttuuritapahtuma.</p><p>Tapahtumassa voit sukeltaa hip hopin saloihin, oppia uutta, hikoilla, nauttia muiden tekemisestä, fiilistellä hyvää meininkiä tai tehdä katumuotilöytöjä.</p><p>Tapahtuma toteutetaan yhteistyössä useiden Hip Hop- ja katukulttuuritoimijoiden kanssa sekä Stoan toimijoiden kesken. Mukana mm. musiikkia, tanssia, graffitia ja muotia.</p><p><b>Päivän aikataulu ja paikat</b></p><p><b>Stoan aukio</b></p><p>Juontaja: Pyry Aalto<br>klo 12.00 Katutaidetoimisto: graffiti- ja piirrostyöpajoja<br>klo 12.00 DJ Academy: DJ-toimintaa ja open mic<br>klo 13.30 Will Funk for Food: A Fistful of Funk<br>klo 14.15 HOT GIRL CLUB DJ’s / DJ M-BABY & ULRIKAx<br>klo 14.30 Pass-The-Aux <br>n. klo 15.30 Toistuvat Yllätykset</p><p><b>Musiikkisali, Stoa</b><br>Klo 12.30 Next Step showcases: <br>klo 14.00 The FUNK YARD – ringittelyjamit ja saifferit</p><p><b>Teatterisali, Stoa</b><br>Klo 12.15 Style Wars -elokuva<br>klo 14.30 (arvio) Pass-The-Aux – demojen kuuntelutilaisuus musiikintekijöille</p><p><b>Parvigalleria, Stoa</b><br>Taiteilija tavattavissa :klo 13 alkaen Mila Milax<br>Näyttely: Soul of Helsinki – Study of soul from a city perspective</p><p><b>Katutaidetoimisto (klo 12–)</b><br>Graffitimaalausta ja työpajoja katutaidenuorten vetämänä. Aukiolle tuodaan katutaidevaunu, johon maalataan päivän aikana teos. Työpajassa voi piirtää omia graffiteja tusseilla, vesiväreillä ja puuväreillä.</p><p><b>DJ Academy (klo 12–)</b><br>DJ-toimintaa ja avoin mikrofoni päivän alusta alkaen.<br><b>Will Funk for Food: A Fistful of Funk (klo 13.30)</b><br>Katutanssia, teatteria ja livemusiikkia yhdistävä humoristinen esitys, joka tutkii ystävyyttä ja maskuliinisuuden roolimalleja locking-tanssityylin karakterin kautta. Tämä suosittu esitys kannattaa nähdä! Esityskieli on englanti.</p><p><b>The FUNK YARD (klo 14)</b><br>Tanssijamit musiikkisalissa. Saifferit avoimia kaikille tanssityyleille. Ei kilpailuja; kunnioittavat call out -battlet sallittuja. Musiikista vastaavat R2ISDJ2 ja Joose the Sax Machine.</p><p><b>HOT GIRL CLUB DJ’s (klo 14.15)</b><br>DJ M-BABY ja ULRIKAx tuovat aukiolle klubitunnelmaa 90–00-lukujen R&B:n, popin ja hiphopin rytmein. Show korostaa yhteisöllisyyttä ja tanssin iloa.</p><p><b>Pass-The-Aux (klo 14.30)</b><br>Tuotatko musiikkia ja haluaisit verkostoitua muiden tekijöiden kanssa? Haluaisitko soittaa demosi yleisölle ja testata miltä se kuulostaa laadukkaalla äänentoistolla? Malmöstä Stoaan – Pass-The-Aux (PTX) nyt ensimmäistä kertaa Suomessa!</p><p>Näin PTX toimii:<br>•\tMitä mukaan? Tuo mukanasi 1 demo tai julkaisematon kappale.<br>•\tFormaatti: Soita musiikkisi suoraan puhelimeltasi (tilan mikseristä löytyy aux-kaapeli / adapterit).<br>•\tAika: Jokaisella tuottajalla on pari minuuttia aikaa esitellä kappaleensa.</p><p>Voit ilmoittautua ennakkoon oheisen linkin kautta, tai vain ilmestyä paikalle. https://docs.google.com/forms/d/e/1FAIpQLScESRB1gDtNLL7O7sd30CuBgxq8pjs792Tc8yb14uxaeGWlzQ/viewform?usp=header</p><p><b>Toistuvat Yllätykset (n. klo 15.30)</b><br>Monipuolinen hiphop-kollektiivi, joka tunnetaan energisistä keikoistaan sekä kappaleistaan ”Housut” ja <br>”Pane Älä Tappele”.</p><p><b>Työpajat<br>Farkkutakin kustomointi ja graffitisketsaus</b><br>Tuo oma farkkuvaate tuunattavaksi tai tule harjoittelemaan graffitien luonnostelua. Ohjaajana taiteilija ja tanssija Gabriel, joka on erikoistunut graffititaiteeseen.</p><p><b>Vinyylipaja</b><br>Tule Vinyylipajaan lämpöprässäämään siisti Stoa-tägi kangaskassiin.<br>Yksi kassi per prässääjä.<br>Kassi on ilmainen!<br>Huom. Kasseja riittää sadalle ensimmäiselle.<br>Pajan kesto 12.00-15.00.</p><p><b>Pinssipaja</b><br>Tule Pinssipajaan tekemään oma pinssisi.<br>Voit käyttää tussia tai valmiita Stoa-tägejä.<br>Yksi kappale per pinssintekijä.<br>Pinssi on ilmainen!<br>Pajan kesto 12.00-15.00.</p><p>Suunnittele vaikka oma tägi ja tee siitä pinssi!</p><p><b>Katumuotikirppis</b><br>Auki koko päivän a</p>", "sv": "<p>Stoas lokaler och Stoaplatsen fylls av gatukultur lördagen den 13 juni!</p><p>Stoa Hip Hop Saturday är ett gatukulturevenemang för ungdomar, unga vuxna och alla som är intresserade av hiphop och gatukultur. Under evenemanget kan du dyka ner i hiphopens hemligheter, lära dig nya saker, svettas, njuta av det som andra gör, ta del av den goda stämningen och göra gatumodefynd. <br>Evenemanget arrangeras i samarbete med flera olika aktörer inom hiphop och gatukultur samt Stoa. Det bjuds bland annat på musik, dans, graffiti och mode. <br><b>Dagens tidtabell och platser</b><br><b>Stoaplatsen</b><br>kl. 12.00 Gatukonstbyrån: graffiti- och teckningsverkstäder<br>kl. 12.00 DJ Academy: DJ-aktiviteter och open mic<br>kl. 13.30 Will Funk for Food: A Fistful of Funk<br>kl. 14.15 HOT GIRL CLUB DJs/DJ M-BABY & ULRIKAx<br>ca kl. 15.30 Toistuvat Yllätykset<br><b>Musiksalen, Stoa</b><br>kl. 14.00 The FUNK YARD – cypher-jam och cypher<br><b>Teatersalen, Stoa</b><br>kl. ca 14.30 Pass-The-Aux – tillfälle för musikskapare att lyssna på demos<br><b>Balkonggalleriet, Stoa</b><br>Träffa konstnären: Mila Milax<br>Utställning: Soul of Helsinki – Study of soul from a city perspective</p><p><b>Katutaidetoimisto (Gatukonstbyrån) (kl. 12.00–)</b><br>Graffitimålning och verkstäder under ledning av gatukonstens ungdomar. En gatukonstvagn hämtas till platsen, på vilken man målar ett verk under dagen. I verkstaden kan man rita sin egen graffiti med tuschpennor, vattenfärger och trämålarfärger.<br><b>DJ Academy (klo 12–)</b><br>DJ-aktiviteter och open mic från början av dagen.<br><b>Will Funk for Food: A Fistful of Funk (kl. 13.30)</b><br>En humoristisk föreställning som kombinerar gatudans, teater och livemusik, och som utforskar vänskap och förebilder för maskulinitet med hjälp av dansstilen locking. Denna populära föreställning är sevärd! Föreställningens språk är engelska.<br><b>The FUNK YARD (klo 14)</b><br>Dansjam i musiksalen. Cypher är öppna för alla dansstilar. Inga tävlingar; respektfulla call out-battles tillåtna. För musiken svarar R2ISDJ2 och Joose the Sax Machine.<br><b>HOT GIRL CLUB DJs (klo 14.15)</b><br>DJ M-BABY och ULRIKAx skapar klubbkänsla på platsen med 90- och 00-tals R&B, pop- och hiphop-rytmer. Föreställningen betonar gemenskap och dansglädje.<br><b>Toistuvat Yllätykset (ca kl. 15.30)</b><br>Ett mångsidigt hiphop-kollektiv som är känt för sina energiska shower och sina låtar ”Housut” och <br>”Pane Älä Tappele”.</p><p><b>Verkstäder<br>Dekorera jeansjackan och skissera graffiti</b><br>Ta med ditt eget jeansplagg att stajla eller kom och öva på att skissera graffiti. Handledare är konstnären och dansaren Gabriel, som specialiserar sig på graffitikonst.</p><p><b>Pinssipaja (Prydnadsnålsverkstad)</b><br>Designa en egen tagg och gör en prydnadsnål av den!<br><b>Katumuotikirppis (Gatumodeloppis)</b><br>Öppet hela dagen på platsen och i aulan. Mer detaljerade instruktioner om loppmarknaden kommer senare.</p><p><b>Balkonggalleriet – Mila Milax</b><br>Utställningen Soul of Helsinki är en berättande fotografisk resa om det helsingforsiska, människor och platser – genom frånvaron av människor. Konstnären är anträffbar under evenemanget!</p><p>Mer information om evenemanget kommer närmare dagen. Ändringar är möjliga.<br>Evenemangen har fritt inträde!</p>", "en": "<p>Stoa's interior spaces and Stoa square will be filled with street culture on Saturday 13 June!</p><p>Stoa Hip Hop Saturday is a street culture event for young people and young adults along with anyone interested in street culture. At the event, you can delve into the world of hip hop, learn something new, sweat, enjoy what others are doing, savour the atmosphere or discover street fashion pieces. <br>The event is organised in collaboration with several hip hop and street culture operators and Stoa operators. The event will feature music, dance, graffiti and fashion. <br><b>Schedule and venues for the day</b><br><b>Stoa square</b><br>12.00 Katutaidetoimisto (‘Street art office’): graffiti and drawing workshops<br>12.00 DJ Academy: DJ activities and open mic<br>13.30 Will Funk for Food: A Fistful of Funk<br>14.15 HOT GIRL CLUB DJ's / DJ M-BABY & ULRIKAx<br>approx. 15.30 Toistuvat Yllätykset<br><b>Stoa music hall</b><br>14.00 The FUNK YARD – cypher jams and freestyle battles<br><b>Stoa theatre hall</b><br>14.30 (estimate) Pass-The-Aux – demo-listening event for music makers<br><b>Stoa loft gallery</b><br>Meet the artist: Mila Milax<br>Exhibition: Soul of Helsinki – Study of soul from a city perspective</p><p><b>Katutaidetoimisto (‘Street art office’) (12.00–)</b><br>Graffiti painting and workshops led by street art young people. A street art trolley will be brought to the square, where a work will be painted during the day. In the workshop you can draw your own graffiti with markers, watercolours and coloured pencils.<br><b>DJ Academy (12.00–)</b><br>DJ activities and an open mic from the start of the day.<br><b>Will Funk for Food: A Fistful of Funk (13.30)</b><br>A humorous performance combining street dance, theatre and live music exploring friendship and masculine role models through the character of the locking dance style. This popular show is worth seeing! The language of the performance is English.<br><b>The FUNK YARD (14.00)</b><br>Dance jam in the music hall. The cyphers are open to all dance styles. No contests; respectful call-out battles allowed. The music will be provided by R2ISDJ2 and Joose the Sax Machine.<br><b>HOT GIRL CLUB DJ's (14.15)</b><br>DJ M-BABY and ULRIKAx will bring a club atmosphere to the square, with ‘90s and ‘00s R&B, pop and hip hop rhythms. The show will emphasise community and the joy of dance.<br><b>Toistuvat Yllätykset (approx. 15.30)</b><br>A versatile hip-hop collective known for their energetic shows and their songs Housut and <br>Pane Älä Tappele.</p><p><b>Workshops<br>Customizing denim jackets and graffiti sketching</b><br>Bring your own denim to be jazzed up or come and practise sketching graffiti. Instructed by Artist and Dancer Gabriel, who specialises in graffiti art.</p><p><b>Pin workshop</b><br>Design your own tag and make it into a pin!<br><b>Second-hand street fashion market</b><br>Open all day in the square and lobby. More detailed instructions on the second-hand market will be available later.</p><p><b>Loft gallery – Mila Milax</b><br>The exhibition Soul of Helsinki is a narrative photographic journey through Helsinki, its people and places – seen through the absence of people. You can meet the artist on the day of the event!</p><p>Event details will be specified closer to the date of the event. Changes are possible.<br>Entry to the events is free of charge!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_", "sv": "http://www.stoa.fi/sv/evenemang/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_", "en": "http://www.stoa.fi/en/events/event/83EFA0506392238403F7D5E7E49CA6F6/Stoa_Hip_Hop_Saturday_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68118/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68446", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1807818, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-10T12:13:11.489710Z", "last_modified_time": "2026-04-10T12:13:11.489723Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_788820.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1807818/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-10T12:13:11.372773Z", "last_modified_time": "2026-05-13T09:13:55.128465Z", "date_published": null, "start_time": "2026-06-12", "end_time": "2026-08-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luontosuhteita", "sv": "Luontosuhteita (Förhållandet till naturen)", "en": "Luontosuhteita (‘Relations to nature’)" }, "short_description": { "fi": "Monitaiteinen näyttely pureutuu metsään ja luontosuhteeseen, ja herättää pohtimaan tunteita, kiertokulkuja ja omaa toimijuutta luonnon suojelussa.", "sv": "Den multikonstnärliga utställningen utforskar skogen och förhållandet till naturen, och uppmuntrar till att reflektera över känslor, kretsloppet och det egna engagemanget i naturskydd.", "en": "This multi-arts exhibition will explore the forest and our relationship with nature, and encourages visitors to reflect on emotions, cycles and personal involvement in nature conservation." }, "description": { "fi": "<p>Monitaiteinen näyttely pureutuu metsään ja luontosuhteeseen, ja herättää pohtimaan tunteita, kiertokulkuja ja omaa toimijuutta luonnon suojelussa.</p><p>Stoan alakerran galleria täyttyy monitaiteisesta kokonaisuudesta, joka tarkastelee metsää, luonnon kiertokulkuja ja niihin liittyviä tunteita lohdusta epätoivoon. Luontosuhteita-näyttely kutsuu pohtimaan omaa suhdetta luontoon ja sen suojeluun.</p><p>Esillä on maalausta, valokuvaa, tanssia, äänitaidetta, kuvanveistoa ja installaatioita sekä osallistavia työpajoja. Taiteilijaryhmän juuret ovat osin Stansvikin luontoaktivismissa, ja näyttelyn ytimessä on dialogi luonnon ja ihmisen toimijuuden välillä.</p><p><b>Taiteilijat:</b><br>KATOAVA-kollektiivi<br>Olli Kaukonen Lindholm<br>Lauri Lähteenmäki<br>Minttu Pyykkönen<br>Emiel Riiko</p><p>Näyttelyn avajaisia vietetään Helsinki-päivänä pe 12.6. klo 17-19. Lämpimästi tervetuloa!</p><p>Näyttelyn oheisohjelmana Stoassa järjestetään työpajoja, joihin toivotaan yleisöä eri taustoista ja ikäryhmistä. Olet lämpimästi tervetullut sellaisena kuin olet. Työpajat julkaistaan myöhemmin.</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa.</p><p>Lue lisää: https://www.stoa.fi/fi/esittely#Ymp%C3%A4rist%C3%B6vastuu</p>", "sv": "<p>Den multikonstnärliga utställningen utforskar skogen och förhållandet till naturen, och uppmuntrar till att reflektera över känslor, kretsloppet och det egna engagemanget i naturskydd.</p><p>Galleriet i nedre våningen på Stoa fylls av en multikonstnärlig helhet som utforskar skogen, naturens kretslopp och relaterade känslor, från tröst till förtvivlan. Utställningen Förhållandet till naturen uppmuntrar till att reflektera över vårt eget förhållande till naturen och skyddandet av den.</p><p>I utställningen ingår måleri, fotografi, dans, ljudkonst, skulptur och installationer samt inkluderande verkstäder. Konstgruppen har delvis sina rötter i Stansviks naturaktivism, och kärnan i utställningen är en dialog mellan naturen och människan.</p><p><b>Konstnärer:</b><br>Olli Kaukonen Lindholm<br>Lauri Lähteenmäki<br>Valde Paananen<br>Minttu Pyykkönen<br>Emiel Riiko</p><p>Som kompletterande program till utställningen på Stoa ordnas verkstäder, där publik från alla bakgrunder och åldersgrupper är välkomna. Du är varmt välkommen som du är. Verkstäderna publiceras senare.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram. Läs mer: https://www.stoa.fi/fi/esittely#Ymp%C3%A4rist%C3%B6vastuu</p><p>Fritt inträde</p>", "en": "<p>This multi-arts exhibition will explore the forest and our relationship with nature, and encourages visitors to reflect on emotions, cycles and personal involvement in nature conservation.</p><p>The Stoa downstairs gallery will be filled with a multi-arts entity that explores the forest, the cycles of nature and related emotions ranging from comfort to despair. The Luontosuhteita (‘Relations to nature’) exhibition invites you to reflect on your own relationship with nature and its conservation.</p><p>The exhibition will feature paintings, photography, dance, sound art, sculpture and installations, as well as participatory workshops. The group's roots are partly in nature activism in Stansvik, and at the heart of the exhibition is a dialogue between nature and human agency.</p><p><b>Artists:</b><br>Olli Kaukonen Lindholm<br>Lauri Lähteenmäki<br>Valde Paananen<br>Minttu Pyykkönen<br>Emiel Riiko</p><p>At Stoa, the exhibition will be accompanied by workshops, where participants from all backgrounds and age groups are welcome. You are warmly welcome as you are. Details of the workshops will be published later.</p><p>The exhibition and events are part of the environmental programme of the City of Helsinki Cultural Services. Read more: https://www.stoa.fi/fi/esittely#Ymp%C3%A4rist%C3%B6vastuu</p><p>Free entry</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F2E50462006DF628DE768041D5EE7228/Luontosuhteita", "sv": "http://www.stoa.fi/sv/evenemang/event/F2E50462006DF628DE768041D5EE7228/Luontosuhteita_Forhallandet_till_naturen_", "en": "http://www.stoa.fi/en/events/event/F2E50462006DF628DE768041D5EE7228/Luontosuhteita_Relations_to_nature_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68446/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpca3tftm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494690, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T10:17:19.144695Z", "last_modified_time": "2026-01-30T10:17:52.625930Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/32c5657e-b8f5-4f71-992b-931af2f7b624.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Kuvat koirien kotialbumeista.", "alt_text": "lukukoirat Nekku, Pätkis, Lloyd", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494690/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-05-13T07:41:44.701895Z", "last_modified_time": "2026-05-13T07:41:44.701914Z", "date_published": null, "start_time": "2026-06-08T15:00:00Z", "end_time": "2026-06-08T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira tavattavissa", "sv": "Läshund finns tillgänglig", "en": "Reading dog available" }, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!", "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!", "en": "Hello reader! On Mondays in the library you can read to a reading dog!" }, "description": { "fi": "Hei lukemista harjoitteleva!\n<br><p>Haluaisitko harjoitella ääneen lukemista? Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää. Lukukoiran kanssa lukutaito kehittyy!</p><p><strong>Maanantaisin kirjastossa voit lukea lukukoiralle klo 18-19.</strong></p>", "sv": "Hej, läsövning!<p> </p><p>Vill du öva på att läsa högt? En läshund är en tålmodig lyssnare, så du behöver inte vara nervös för att läsa. Läshundar hjälper dig att förbättra dina läsfärdigheter!</p><p><br></p><p><strong>På måndagar på biblioteket kan du läsa för en läshund kl. 18 - 19.</strong></p>", "en": "Hey, reading practice!<p> </p><p>Would you like to practice reading aloud? A reading dog is a patient listener, so you don't need to feel nervous about reading. Reading with a reading dog helps improve your reading skills!</p><p><br></p><p><strong>On Mondays at the library, you can read to a reading dog from 6 to 7 p.m.</strong></p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpca3tftm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68100", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494840, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T12:12:46.421221Z", "last_modified_time": "2026-02-10T12:12:46.421235Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777736.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494840/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T12:12:46.269514Z", "last_modified_time": "2026-05-13T07:13:08.423777Z", "date_published": null, "start_time": "2026-05-29", "end_time": "2026-08-08", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ihmisen luonto – Lasten ja nuorten taidetta Vuotalon galleriassa", "sv": "Sagor och fantasi – Konst av barn och unga i Nordhusets galleri", "en": "Fairytales and imagination – Children’s and young people’s art in the Vuotalo gallery" }, "short_description": { "fi": "Helsingin kuvataidekoulun laajassa kesänäyttelyssä on esillä 6–20-vuotiaiden helsinkiläisten lasten ja nuorten taidetta lukuvuodelta 2025–26.", "sv": "I Helsingin kuvataidekoulus stora sommarutställning visas konst av helsingforsare i åldern 6–20 år från läsåret 2025–26.", "en": "Fairytales and imagination Children’s and young people’s art in the Vuotalo gallery" }, "description": { "fi": "<p>Helsingin kuvataidekoulun laajassa kesänäyttelyssä on esillä 6–20-vuotiaiden helsinkiläisten lasten ja nuorten taidetta lukuvuodelta 2025–26.</p><p>Lukuvuoden teema -Sadut ja mielikuvitus- on inspiroinut Helsingin kuvataidekoulun oppilaita luomaan kuvia, animaatioita ja veistoksia, jotka tuovat lapsen ja nuoren ajattelun ja mielikuvituksen näkyväksi. Satujen ja tarinoiden maailmat kertovat mielen salaisuuksista, luovuudesta ja leikistä. Satujen ja fantasian maailma tarjoaa seikkailuja kaikenikäisille.</p><p>Esillä näyttelyssä ovat myös kuvataidekoulussa useita vuosia opiskelleiden, lähes kolmenkymmenen nuoren toteuttamat itsenäiset lopputyöt. Teosten aiheet ovat nuoria kiinnostaneista, itse valitsemista teemoista. Esillä on mm. piirroksia, maalauksia ja keramiikkaa sekä lopputyötyöprosessista kertovat, aihetta syventävät portfoliot.</p>", "sv": "<p>I Helsingin kuvataidekoulus stora sommarutställning visas konst av helsingforsare i åldern 6–20 år från läsåret 2025–26.</p><p>Läsårets tema – sagor och fantasi – har inspirerat bildkonstskolans elever att skapa bilder, animationer och skulpturer, som synliggör barnens och ungdomarnas tänkande och fantasi. Sagornas och berättelsernas världar berättar om sinnets hemligheter, kreativitet och lek. Sagornas och fantasins värld bjuder på äventyr för alla åldrar.</p><p>I utställningen ingår också självständiga slutarbeten av nästan trettio ungdomar som har studerat vid bildkonstskolan i flera år. Temana för verken är sådana som ungdomarna själva valt och som intresserar dem. I utställningen visas bland annat teckningar, målningar och keramik samt fördjupande portfolior som berättar om slutarbetsprocessen.</p>", "en": "<p>Fairytales and imagination Children’s and young people’s art in the Vuotalo gallery</p><p>The theme of the academic year – fairytales and imagination – has inspired the students of Helsinki Upper Secondary School of Visual Arts to create images, animations and sculptures that bring to life the thinking and imagination of children and young people. The worlds of fairytales and stories focus on the secrets of the mind, creativity and play. The world of fairytales and fantasy provides adventures for all ages.</p><p>The exhibition also features independent final works by nearly thirty young people who have been studying at the School of Visual Arts for several years. The works focus on themes that interested and were selected by the young people themselves. The exhibition will feature works such as drawings, paintings and ceramics, as well as portfolios that document the final work process and provide more in-depth information on the subject.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2BE8011B9819C0AD6A4BE6B41EE573D5/Ihmisen_luonto", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2BE8011B9819C0AD6A4BE6B41EE573D5/Sagor_och_fantasi", "en": "http://www.vuotalo.fi/en/events/event/2BE8011B9819C0AD6A4BE6B41EE573D5/Fairytales_and_imagination" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68100/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "linkedevents:agg-797", "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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68962/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69011/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69008/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69012/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-13T06:14:46.342042Z", "last_modified_time": "2026-05-13T06:14:46.342055Z", "date_published": null, "start_time": "2026-07-27T13:00:00Z", "end_time": "2026-07-29T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jazz Suomi 100 -keskustelu: Jazz ja rauha | Lauri Kallion yhtye – Jazz-Espa", "sv": "Jazz i Finland 100 -diskussion: “Jazz och fred” | Lauri Kallion yhtye – Jazz-Espa", "en": "Jazz in Finland 100 discussion: “Jazz and peace” | Lauri Kallion yhtye – Jazz-Espa" }, "short_description": { "fi": "Kaupungin helteisintä jazzia", "sv": "Stadens hetaste jazz", "en": "Hottest Jazz in the City" }, "description": null, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-797/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67718", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kannelmaen-voimistelijat-ry-kannelmaen-voimistelijoiden-kevatnaytos-kanneltalo-21552017/", "sv": "https://www.lippu.fi/event/kannelmaen-voimistelijat-ry-kannelmaen-voimistelijoiden-kevatnaytos-kanneltalo-21552017/", "en": "https://www.lippu.fi/event/kannelmaen-voimistelijat-ry-kannelmaen-voimistelijoiden-kevatnaytos-kanneltalo-21552017/" }, "price": { "fi": "15,30€ / 8,10€", "sv": "15,30€ / 8,10€", "en": "15,30€ / 8,10€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1730104, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-25T09:14:00.942090Z", "last_modified_time": "2026-03-25T09:14:00.942104Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782582.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1730104/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-03-25T09:14:00.843724Z", "last_modified_time": "2026-05-13T06:14:16.173670Z", "date_published": null, "start_time": "2026-05-23T14: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, "name": { "fi": "Kannelmäen Voimistelijoiden kevätnäytös", "sv": "Våruppvisning av Kannelmäen Voimistelijat", "en": "Spring Performance of Kannelmäen Voimistelijat" }, "short_description": { "fi": "Kannelmäen Voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.", "sv": "De traditionella våruppvisningarna av Kannelmäen Voimistelijat hålls återigen på Gamlasgården.", "en": "The traditional spring performances of Kannelmäen Voimistelijat will once again be held at Kanneltalo." }, "description": { "fi": "<p>Kannelmäen Voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.</p><p>Tiedot näytöksissä esiintyvistä ryhmistä löytyvät Kannelmäen voimistelijoiden verkkosivuilta: https://www.kannelmaenvoimistelijat.fi/</p><p>Kesto: n. 1 h</p>", "sv": "<p>De traditionella våruppvisningarna av Kannelmäen Voimistelijat hålls återigen på Gamlasgården.</p><p>Information om de grupper som uppträder på uppvisningarna finns på Kannelmäen voimistelijats webbplats: https://www.kannelmaenvoimistelijat.fi/</p>", "en": "<p>The traditional spring performances of Kannelmäen Voimistelijat will once again be held at Kanneltalo.</p><p>Details about the performing groups can be found on the Kannelmäen voimistelijat website: https://www.kannelmaenvoimistelijat.fi/</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0F14FDD1E9AD06EDDFC549757E7CA14E/Kannelmaen_Voimistelijoiden_kevatnaytos_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0F14FDD1E9AD06EDDFC549757E7CA14E/Varuppvisning_av_Kannelmaen_Voimistelijat", "en": "http://www.kanneltalo.fi/en/events/event/0F14FDD1E9AD06EDDFC549757E7CA14E/Spring_Performance_of_Kannelmaen_Voimistelijat" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67718/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67966", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kannelmaen-voimistelijat-ry-kannelmaen-voimistelijoiden-kevatnaytos-kanneltalo-21552016/", "sv": "https://www.lippu.fi/event/kannelmaen-voimistelijat-ry-kannelmaen-voimistelijoiden-kevatnaytos-kanneltalo-21552016/", "en": "https://www.lippu.fi/event/kannelmaen-voimistelijat-ry-kannelmaen-voimistelijoiden-kevatnaytos-kanneltalo-21552016/" }, "price": { "fi": "15,30€ / 8,10€", "sv": "15,30€ / 8,10€", "en": "15,30€ / 8,10€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1730103, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-25T09:14:00.472436Z", "last_modified_time": "2026-03-25T09:14:00.472454Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782581.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1730103/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-03-25T09:14:00.328834Z", "last_modified_time": "2026-05-13T06:14:15.880304Z", "date_published": null, "start_time": "2026-05-23T12: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, "name": { "fi": "Kannelmäen Voimistelijoiden kevätnäytös", "sv": "Våruppvisning av Kannelmäen Voimistelijat", "en": "Spring Performance of Kannelmäen Voimistelijat" }, "short_description": { "fi": "Kannelmäen Voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.", "sv": "De traditionella våruppvisningarna av Kannelmäen Voimistelijat hålls återigen på Gamlasgården.", "en": "The traditional spring performances of Kannelmäen Voimistelijat will once again be held at Kanneltalo." }, "description": { "fi": "<p>Kannelmäen Voimistelijoiden perinteiset kevätnäytökset nähdään jälleen Kanneltalolla.</p><p>Tiedot näytöksissä esiintyvistä ryhmistä löytyvät Kannelmäen voimistelijoiden verkkosivuilta: https://www.kannelmaenvoimistelijat.fi/</p><p>Kesto: n. 1 h</p>", "sv": "<p>De traditionella våruppvisningarna av Kannelmäen Voimistelijat hålls återigen på Gamlasgården.</p><p>Information om de grupper som uppträder på uppvisningarna finns på Kannelmäen voimistelijats webbplats: https://www.kannelmaenvoimistelijat.fi/</p>", "en": "<p>The traditional spring performances of Kannelmäen Voimistelijat will once again be held at Kanneltalo.</p><p>Details about the performing groups can be found on the Kannelmäen voimistelijat website: https://www.kannelmaenvoimistelijat.fi/</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/686BE90F816B56D62FD1FEA39C8CE93E/Kannelmaen_Voimistelijoiden_kevatnaytos_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/686BE90F816B56D62FD1FEA39C8CE93E/Varuppvisning_av_Kannelmaen_Voimistelijat", "en": "http://www.kanneltalo.fi/en/events/event/686BE90F816B56D62FD1FEA39C8CE93E/Spring_Performance_of_Kannelmaen_Voimistelijat" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67966/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpcaave3q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2201270, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T06:00:52.946084Z", "last_modified_time": "2026-05-13T06:00:52.946102Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/10c8d154-a942-43c1-856a-989280150346.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Ari Kauppila", "alt_text": "Kuvassa Minna Kaaronen tanssiesityksessään kotilöytöjä, esiintymisasu päällään, ikean kassit olalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201270/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-05-13T06:08:21.689377Z", "last_modified_time": "2026-05-13T06:08:21.689392Z", "date_published": null, "start_time": "2026-06-11T14:30:00Z", "end_time": "2026-06-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Home Findings / Kotilöytöjä -tanssiesitys lapsille", "en": "Home Findings / \"Kotilöytöjä\" – A Dance Performance for Children" }, "short_description": { "fi": "Esitys on erityisesti lapsiperheille suunnattu, mutta sopii kaikille kepeyttä ja luovuutta kaipaaville. Esitys ei ole osallistava, eikä vaadi kielitaitoa. ", "en": "The performance is aimed specifically at families, but suitable for anyone. The performance is not interactive and does not require any language skills." }, "description": { "fi": "Home Findings / Kotilöytöjä -tanssiesitys lapsille<p><br></p><p>Teoskuvaus:</p><p>Home Findings – Kotilöytöjä on tanssiteos, jossa esiintyjän omasta kodista löytyneet materiaalit muuntuvat asuiksi, musiikiksi ja liikkeeksi. Ikea-kasseista esiin kaivetut hahmot hykerryttävät katsojaa olemuksellaan ja imaisevat mukaan mielikuvitusta avaavaan liikeretkeen.</p><p>Esitys on erityisesti lapsiperheille suunnattu, mutta sopii myös kaikille kepeyttä ja luovuutta arkipäiväänsä kaipaaville. Esitys ei ole osallistava, eikä vaadi kielitaitoa. Kommunikointi tapahtuu liikkeen ja höpöpuheen välityksellä. Tsök!</p><p><br></p><p><strong>Kesto: max 30min</strong></p><p><strong>Esiintyjä: Minna Kaaronen</strong></p><p><strong>Pukusuunnittelu ja toteutus: Minna Kaaronen</strong></p><p><strong>Äänisuunnittelu: Olli Lautiola</strong></p><p><br></p><p>Työskentelyä ovat tukeneet Taiteen edistämiskeskus ja Suomen kulttuurirahasto.</p><p><br></p><p>#HelloEspoo</p>", "en": "Home Findings / A Dance Performance for Children<p><br></p><p>Synopsis:</p><p>Home Findings is a dance performance in which materials found in the performer’s own home are transformed into costumes, music, and movement. Characters unearthed from Ikea bags captivate the audience with their presence and draw them into a journey of movement that opens the imagination.</p><p>The performance is aimed specifically at families with children, but is also suitable for anyone seeking a touch of lightheartedness and creativity in their everyday lives. The performance is not participatory and does not require language skills. Communication takes place through movement and gibberish. Tsök!</p><p><br></p><p><strong>Duration: max 30 min</strong></p><p><strong>Performer: Minna Kaaronen</strong></p><p><strong>Costume design and production: Minna Kaaronen</strong></p><p><strong>Sound design: Olli Lautiola</strong></p><p><br></p><p>This work has been supported by the Arts Promotion Center Finland and the Finnish Cultural Foundation.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Estradi", "en": "Estradi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpcaave3q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68299", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/", "sv": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/", "en": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/" }, "price": { "fi": "20€ / 7€", "sv": "20€ / 7€", "en": "20€ / 7€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1711285, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-23T10:13:08.546985Z", "last_modified_time": "2026-03-23T10:13:08.547001Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786600.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1711285/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-23T10:13:08.459065Z", "last_modified_time": "2026-05-13T05:13:14.058456Z", "date_published": null, "start_time": "2026-06-14T12: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, "name": { "fi": "Kahlekuningatar", "sv": "Kahlekuningatar", "en": "Kahlekuningatar" }, "short_description": { "fi": "Kahlekuningatar on nykysirkusesitys, jossa metalliketjuilla toteutettu ilma-akrobatia avaa näkymiä vallan, kontrollin ja kehon välisiin suhteisiin.", "sv": "Kahlekuningatar är en modern cirkusföreställning där luftakrobatik med metallkedjor öppnar upp perspektiv på relationerna mellan makt, kontroll och kroppen.", "en": "Kahlekuningatar is a contemporary circus performance in which aerial acrobatics utilising metal chains open up perspectives on the relationships between power, control and the body." }, "description": { "fi": "<p>Kahlekuningatar on nykysirkusesitys, jossa metalliketjuilla toteutettu ilma-akrobatia avaa näkymiä vallan, kontrollin ja kehon välisiin suhteisiin.</p><p>Sirkustaiteilija Saana Leppäsen sooloesitys Kahlekuningatar käsittelee sukupuolten epätasa-arvoa sirkuksen keinoin. Kahlekuningatar sukeltaa vallan, sukupuolen ja kehon risteyskohtiin: ei nöyrästi, vaan kruunu päässä.<br> <br>Lavalla nähdään henkilö, jonka ilma-akrobatia metalliketjuilla on yhtä aikaa brutaalia ja kaunista. Ketjut ovat sekä este että mahdollistaja, vallan väline ja vapauden symboli.<br> <br> Esitys leikittelee sukupuolen muodoilla ja merkityksillä, purkaa rooleja ja paljastaa niiden naurettavat valtarakenteet. Drag-estetiikka, sukupuolen stereotypioita korostava kehollisuus ja räiskyvän flirttaileva energia kietoutuvat fyysiseen sirkustaiteeseen.<br> <br> Kahlekuningatar on kunnianosoitus niille, jotka rikkovat kahleitaan ja pitävät meteliä oikeuksistaan.<br>Konsepti ja esiintyminen: Saana Leppänen<br>Sävellys ja musiikki: Thibaud Rancoeur<br>Valosuunnittelu: Jaakko Sirainen</p><p>Dramaturginen ja ohjauksellinen apu: Meri-Maija Näykki<br>Puvustus ja verho-ompelu: Ella Kauppinen<br>Tuotanto: Sirkus Aikamoinen<br>Esityksen kesto: 45 min<br>Ikäsuositus: +12-v<br>Ikäraja: K-7<br>Esitys on sanaton.</p><p>Sisältöhuomiot: Esityksessä käytetään välkkyviä valoja ja teatterisavua. Lisäksi metalliketjujen käyttö voi herättää väkivaltaisia mielleyhtymiä rajoittamisesta ja vapautumisesta.</p>", "sv": "<p>Kahlekuningatar är en modern cirkusföreställning där luftakrobatik med metallkedjor öppnar upp perspektiv på relationerna mellan makt, kontroll och kroppen.</p><p>Cirkuskonstnären Saana Leppänens soloföreställning Kahlekuningatar tar upp ojämlikhet mellan könen genom cirkusen. Kahlekuningatar dyker ner i skärningspunkterna mellan makt, kön och kroppen: inte ödmjukt, utan med en krona på huvudet.<br> <br>På scenen ser vi en person vars luftakrobatik på metallkedjor är både brutal och vacker. Kedjorna är både ett hinder och en möjliggörare, ett maktinstrument och en frihetssymbol.<br> <br> Föreställningen leker med könets former och betydelser, luckrar upp rollerna och avslöjar deras löjliga maktstrukturer. Drag-estetik, en kroppslighet som framhäver könsstereotyper och en sprakande flörtig energi flätas samman med fysisk cirkuskonst.<br> <br> Kahlekuningatar är en hyllning till dem som bryter sina kedjor och gör väsen av sina rättigheter.<br>Koncept och framförande: Saana Leppänen<br>Komposition och musik: Thibaud Rancoeur<br>Ljusdesign: Jaakko Sirainen<br>Produktion: Sirkus Aikamoinen<br>Föreställningens längd: 45 min.<br>Åldersrekommendation: 12+ år<br>Åldersgräns: 7 år<br>Föreställningen är ordlös.</p><p>Innehållsvarningar: I föreställningen används blinkande ljus och teaterrök. Dessutom kan användningen av metallkedjor väcka associationer till våld, begränsning och frigörelse.</p>", "en": "<p>Kahlekuningatar is a contemporary circus performance in which aerial acrobatics utilising metal chains open up perspectives on the relationships between power, control and the body.</p><p>Circus artist Saana Leppänen’s solo performance Kahlekuningatar examines gender inequality through circus. The titular ‘Queen of Chains’ dives into intersections of power, gender and the body: not humbly, but with a crown on her head.<br> <br>On stage, we will see a person whose aerial acrobatics featuring metal chains are simultaneously brutal and beautiful. The chains are both an obstacle and a facilitator, an instrument of power and a symbol of freedom.<br> <br> The performance plays with forms and meanings of gender, unravelling roles and exposing their ridiculous power structures. Drag aesthetics, bodiliness that highlights gender stereotypes and flashy flirtatious energy are intertwined with physical circus art.<br> <br> Kahlekuningatar is a tribute to those who break their chains and make noise about their rights.<br>Concept and performance: Saana Leppänen<br>Composition and music: Thibaud Rancoeur<br>Lighting design: Jaakko Sirainen<br>Production: Sirkus Aikamoinen<br>Performance duration: 45 min<br>Recommended age: 12+<br>Age rating: 7<br>The performance is non-verbal.</p><p>Content notes: The performance uses flickering lights and artificial fog. Furthermore, the use of metal chains may evoke violent associations with restraint and liberation.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D6EFA83B81970CA8E0ED0A0B43861F2A/Kahlekuningatar", "sv": "http://www.caisa.fi/sv/evenemang/event/D6EFA83B81970CA8E0ED0A0B43861F2A/Kahlekuningatar", "en": "http://www.caisa.fi/en/events/event/D6EFA83B81970CA8E0ED0A0B43861F2A/Kahlekuningatar" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68299/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68296", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/", "sv": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/", "en": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/" }, "price": { "fi": "20€ / 7€", "sv": "20€ / 7€", "en": "20€ / 7€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1711284, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-23T10:13:08.270462Z", "last_modified_time": "2026-03-23T10:13:08.270478Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786599.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1711284/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-23T10:13:08.189395Z", "last_modified_time": "2026-05-13T05:13:13.878860Z", "date_published": null, "start_time": "2026-06-13T15: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, "name": { "fi": "Kahlekuningatar", "sv": "Kahlekuningatar", "en": "Kahlekuningatar" }, "short_description": { "fi": "Kahlekuningatar on nykysirkusesitys, jossa metalliketjuilla toteutettu ilma-akrobatia avaa näkymiä vallan, kontrollin ja kehon välisiin suhteisiin.", "sv": "Kahlekuningatar är en modern cirkusföreställning där luftakrobatik med metallkedjor öppnar upp perspektiv på relationerna mellan makt, kontroll och kroppen.", "en": "Kahlekuningatar is a contemporary circus performance in which aerial acrobatics utilising metal chains open up perspectives on the relationships between power, control and the body." }, "description": { "fi": "<p>Kahlekuningatar on nykysirkusesitys, jossa metalliketjuilla toteutettu ilma-akrobatia avaa näkymiä vallan, kontrollin ja kehon välisiin suhteisiin.</p><p>Sirkustaiteilija Saana Leppäsen sooloesitys Kahlekuningatar käsittelee sukupuolten epätasa-arvoa sirkuksen keinoin. Kahlekuningatar sukeltaa vallan, sukupuolen ja kehon risteyskohtiin: ei nöyrästi, vaan kruunu päässä.<br> <br>Lavalla nähdään henkilö, jonka ilma-akrobatia metalliketjuilla on yhtä aikaa brutaalia ja kaunista. Ketjut ovat sekä este että mahdollistaja, vallan väline ja vapauden symboli.<br> <br> Esitys leikittelee sukupuolen muodoilla ja merkityksillä, purkaa rooleja ja paljastaa niiden naurettavat valtarakenteet. Drag-estetiikka, sukupuolen stereotypioita korostava kehollisuus ja räiskyvän flirttaileva energia kietoutuvat fyysiseen sirkustaiteeseen.<br> <br> Kahlekuningatar on kunnianosoitus niille, jotka rikkovat kahleitaan ja pitävät meteliä oikeuksistaan.<br>Konsepti ja esiintyminen: Saana Leppänen<br>Sävellys ja musiikki: Thibaud Rancoeur<br>Valosuunnittelu: Jaakko Sirainen</p><p>Dramaturginen ja ohjauksellinen apu: Meri-Maija Näykki<br>Puvustus ja verho-ompelu: Ella Kauppinen<br>Tuotanto: Sirkus Aikamoinen<br>Esityksen kesto: 45 min<br>Ikäsuositus: +12-v<br>Ikäraja: K-7<br>Esitys on sanaton.</p><p>Sisältöhuomiot: Esityksessä käytetään välkkyviä valoja ja teatterisavua. Lisäksi metalliketjujen käyttö voi herättää väkivaltaisia mielleyhtymiä rajoittamisesta ja vapautumisesta.</p>", "sv": "<p>Kahlekuningatar är en modern cirkusföreställning där luftakrobatik med metallkedjor öppnar upp perspektiv på relationerna mellan makt, kontroll och kroppen.</p><p>Cirkuskonstnären Saana Leppänens soloföreställning Kahlekuningatar tar upp ojämlikhet mellan könen genom cirkusen. Kahlekuningatar dyker ner i skärningspunkterna mellan makt, kön och kroppen: inte ödmjukt, utan med en krona på huvudet.<br> <br>På scenen ser vi en person vars luftakrobatik på metallkedjor är både brutal och vacker. Kedjorna är både ett hinder och en möjliggörare, ett maktinstrument och en frihetssymbol.<br> <br> Föreställningen leker med könets former och betydelser, luckrar upp rollerna och avslöjar deras löjliga maktstrukturer. Drag-estetik, en kroppslighet som framhäver könsstereotyper och en sprakande flörtig energi flätas samman med fysisk cirkuskonst.<br> <br> Kahlekuningatar är en hyllning till dem som bryter sina kedjor och gör väsen av sina rättigheter.<br>Koncept och framförande: Saana Leppänen<br>Komposition och musik: Thibaud Rancoeur<br>Ljusdesign: Jaakko Sirainen<br>Produktion: Sirkus Aikamoinen<br>Föreställningens längd: 45 min.<br>Åldersrekommendation: 12+ år<br>Åldersgräns: 7 år<br>Föreställningen är ordlös.</p><p>Innehållsvarningar: I föreställningen används blinkande ljus och teaterrök. Dessutom kan användningen av metallkedjor väcka associationer till våld, begränsning och frigörelse.</p>", "en": "<p>Kahlekuningatar is a contemporary circus performance in which aerial acrobatics utilising metal chains open up perspectives on the relationships between power, control and the body.</p><p>Circus artist Saana Leppänen’s solo performance Kahlekuningatar examines gender inequality through circus. The titular ‘Queen of Chains’ dives into intersections of power, gender and the body: not humbly, but with a crown on her head.<br> <br>On stage, we will see a person whose aerial acrobatics featuring metal chains are simultaneously brutal and beautiful. The chains are both an obstacle and a facilitator, an instrument of power and a symbol of freedom.<br> <br> The performance plays with forms and meanings of gender, unravelling roles and exposing their ridiculous power structures. Drag aesthetics, bodiliness that highlights gender stereotypes and flashy flirtatious energy are intertwined with physical circus art.<br> <br> Kahlekuningatar is a tribute to those who break their chains and make noise about their rights.<br>Concept and performance: Saana Leppänen<br>Composition and music: Thibaud Rancoeur<br>Lighting design: Jaakko Sirainen<br>Production: Sirkus Aikamoinen<br>Performance duration: 45 min<br>Recommended age: 12+<br>Age rating: 7<br>The performance is non-verbal.</p><p>Content notes: The performance uses flickering lights and artificial fog. Furthermore, the use of metal chains may evoke violent associations with restraint and liberation.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DAE88FCD84E8608FB3B1AB4FF550A076/Kahlekuningatar", "sv": "http://www.caisa.fi/sv/evenemang/event/DAE88FCD84E8608FB3B1AB4FF550A076/Kahlekuningatar", "en": "http://www.caisa.fi/en/events/event/DAE88FCD84E8608FB3B1AB4FF550A076/Kahlekuningatar" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68296/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68293", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/", "sv": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/", "en": "https://www.lippu.fi/event/kahlekuningatar-kulttuurikeskus-caisa-21472370/" }, "price": { "fi": "20€ / 7€", "sv": "20€ / 7€", "en": "20€ / 7€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1711282, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-23T10:13:07.561977Z", "last_modified_time": "2026-03-23T10:13:07.561994Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786597.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1711282/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-23T10:13:07.283208Z", "last_modified_time": "2026-05-13T05:13:12.911209Z", "date_published": null, "start_time": "2026-06-11T16: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, "name": { "fi": "Kahlekuningatar", "sv": "Kahlekuningatar", "en": "Kahlekuningatar" }, "short_description": { "fi": "Kahlekuningatar on nykysirkusesitys, jossa metalliketjuilla toteutettu ilma-akrobatia avaa näkymiä vallan, kontrollin ja kehon välisiin suhteisiin.", "sv": "Kahlekuningatar är en modern cirkusföreställning där luftakrobatik med metallkedjor öppnar upp perspektiv på relationerna mellan makt, kontroll och kroppen.", "en": "Kahlekuningatar is a contemporary circus performance in which aerial acrobatics utilising metal chains open up perspectives on the relationships between power, control and the body." }, "description": { "fi": "<p>Kahlekuningatar on nykysirkusesitys, jossa metalliketjuilla toteutettu ilma-akrobatia avaa näkymiä vallan, kontrollin ja kehon välisiin suhteisiin.</p><p>Sirkustaiteilija Saana Leppäsen sooloesitys Kahlekuningatar käsittelee sukupuolten epätasa-arvoa sirkuksen keinoin. Kahlekuningatar sukeltaa vallan, sukupuolen ja kehon risteyskohtiin: ei nöyrästi, vaan kruunu päässä.<br> <br>Lavalla nähdään henkilö, jonka ilma-akrobatia metalliketjuilla on yhtä aikaa brutaalia ja kaunista. Ketjut ovat sekä este että mahdollistaja, vallan väline ja vapauden symboli.<br> <br> Esitys leikittelee sukupuolen muodoilla ja merkityksillä, purkaa rooleja ja paljastaa niiden naurettavat valtarakenteet. Drag-estetiikka, sukupuolen stereotypioita korostava kehollisuus ja räiskyvän flirttaileva energia kietoutuvat fyysiseen sirkustaiteeseen.<br> <br> Kahlekuningatar on kunnianosoitus niille, jotka rikkovat kahleitaan ja pitävät meteliä oikeuksistaan.<br>Konsepti ja esiintyminen: Saana Leppänen<br>Sävellys ja musiikki: Thibaud Rancoeur<br>Valosuunnittelu: Jaakko Sirainen</p><p>Dramaturginen ja ohjauksellinen apu: Meri-Maija Näykki<br>Puvustus ja verho-ompelu: Ella Kauppinen<br>Tuotanto: Sirkus Aikamoinen<br>Esityksen kesto: 45 min<br>Ikäsuositus: +12-v<br>Ikäraja: K-7<br>Esitys on sanaton.</p><p>Sisältöhuomiot: Esityksessä käytetään välkkyviä valoja ja teatterisavua. Lisäksi metalliketjujen käyttö voi herättää väkivaltaisia mielleyhtymiä rajoittamisesta ja vapautumisesta.</p>", "sv": "<p>Kahlekuningatar är en modern cirkusföreställning där luftakrobatik med metallkedjor öppnar upp perspektiv på relationerna mellan makt, kontroll och kroppen.</p><p>Cirkuskonstnären Saana Leppänens soloföreställning Kahlekuningatar tar upp ojämlikhet mellan könen genom cirkusen. Kahlekuningatar dyker ner i skärningspunkterna mellan makt, kön och kroppen: inte ödmjukt, utan med en krona på huvudet.<br> <br>På scenen ser vi en person vars luftakrobatik på metallkedjor är både brutal och vacker. Kedjorna är både ett hinder och en möjliggörare, ett maktinstrument och en frihetssymbol.<br> <br> Föreställningen leker med könets former och betydelser, luckrar upp rollerna och avslöjar deras löjliga maktstrukturer. Drag-estetik, en kroppslighet som framhäver könsstereotyper och en sprakande flörtig energi flätas samman med fysisk cirkuskonst.<br> <br> Kahlekuningatar är en hyllning till dem som bryter sina kedjor och gör väsen av sina rättigheter.<br>Koncept och framförande: Saana Leppänen<br>Komposition och musik: Thibaud Rancoeur<br>Ljusdesign: Jaakko Sirainen<br>Produktion: Sirkus Aikamoinen<br>Föreställningens längd: 45 min.<br>Åldersrekommendation: 12+ år<br>Åldersgräns: 7 år<br>Föreställningen är ordlös.</p><p>Innehållsvarningar: I föreställningen används blinkande ljus och teaterrök. Dessutom kan användningen av metallkedjor väcka associationer till våld, begränsning och frigörelse.</p>", "en": "<p>Kahlekuningatar is a contemporary circus performance in which aerial acrobatics utilising metal chains open up perspectives on the relationships between power, control and the body.</p><p>Circus artist Saana Leppänen’s solo performance Kahlekuningatar examines gender inequality through circus. The titular ‘Queen of Chains’ dives into intersections of power, gender and the body: not humbly, but with a crown on her head.<br> <br>On stage, we will see a person whose aerial acrobatics featuring metal chains are simultaneously brutal and beautiful. The chains are both an obstacle and a facilitator, an instrument of power and a symbol of freedom.<br> <br> The performance plays with forms and meanings of gender, unravelling roles and exposing their ridiculous power structures. Drag aesthetics, bodiliness that highlights gender stereotypes and flashy flirtatious energy are intertwined with physical circus art.<br> <br> Kahlekuningatar is a tribute to those who break their chains and make noise about their rights.<br>Concept and performance: Saana Leppänen<br>Composition and music: Thibaud Rancoeur<br>Lighting design: Jaakko Sirainen<br>Production: Sirkus Aikamoinen<br>Performance duration: 45 min<br>Recommended age: 12+<br>Age rating: 7<br>The performance is non-verbal.</p><p>Content notes: The performance uses flickering lights and artificial fog. Furthermore, the use of metal chains may evoke violent associations with restraint and liberation.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F65C60F52F60402FB01F990FAFE5017F/Kahlekuningatar", "sv": "http://www.caisa.fi/sv/evenemang/event/F65C60F52F60402FB01F990FAFE5017F/Kahlekuningatar", "en": "http://www.caisa.fi/en/events/event/F65C60F52F60402FB01F990FAFE5017F/Kahlekuningatar" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68293/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpb7erqim", "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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2201267, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T04:09:39.751558Z", "last_modified_time": "2026-05-13T04:09:39.751572Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d0e43e3c-a196-42c6-aac3-20db9cac1ebd.jpg", "name": "", "cropping": "516,0,2841,2325", "photographer_name": "", "alt_text": "Aluevaltuutetut Simo Grönroos, Ari Ampuja ja Henna Kajava", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201267/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-13T04:09:48.837986Z", "last_modified_time": "2026-05-13T04:09:48.837997Z", "date_published": null, "start_time": "2026-05-27T14:30:00Z", "end_time": "2026-05-27T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Miten terveyspalveluita kehitetään ja mikä on aluevaltuustossa ajankohtaista" }, "short_description": { "fi": "Haluatko kuulla, miten terveyspalveluita kehitetään parhaillaan ja mikä on aluevaltuustossa tällä hetkellä ajankohtaista?" }, "description": { "fi": "<p>Hyvinvointialueemme aluevaltuutettuja (ps) tavattavissa Sellon kirjaston lavalla keskiviikkona 27.5. klo 17:30-19. Haluatko kuulla, miten terveyspalveluita kehitetään parhaillaan ja mikä on aluevaltuustossa tällä hetkellä ajankohtaista? Menemällä paikan päälle voit myös jakaa kokemuksesi ja huolesi, sillä yhteiselle keskustelulle on varattu paljon aikaa. Aluevaltuutetuista paikalla ovat Simo Grönroos, Ari Ampuja ja Henna Kajava</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Lava" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpb7erqim/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpbmbf3ei", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbfxty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbfynq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbfyym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbfzfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbfzra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbfz5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbf2ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbf2xy/?format=api" } ], "images": [ { "id": 1490916, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T08:03:45.481404Z", "last_modified_time": "2024-05-23T08:03:45.481484Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Muistikerho.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Muistikerho", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490916/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-05-11T06:36:57.216307Z", "last_modified_time": "2026-05-13T03:24:47.135899Z", "date_published": null, "start_time": "2026-09-14T10:00:00Z", "end_time": "2026-12-21T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Leppävaaran senioreiden aivojumppa" }, "short_description": { "fi": "Leppävaaran seniorit kokoontuvat aivojumpan merkeissä." }, "description": { "fi": "<p>Leppävaaran seniorit kokoontuvat aivojumpan merkeissä.</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Akseli" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbmbf3ei/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68729", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/savoy-giitu-kiitos-yhteinen-kylae-naeyttelyn-avajaiskonsertti-4152156/" }, "price": { "fi": "17-37 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201266, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T15:13:19.497380Z", "last_modified_time": "2026-05-12T15:13:19.497399Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791650.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201266/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T15:13:19.359552Z", "last_modified_time": "2026-05-12T15:13:19.652002Z", "date_published": null, "start_time": "2026-11-06T17: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, "name": { "fi": "Giitu – Kiitos – Saamelaisuus Helsingissä: Yhteinen kylä -näyttelyn avajaiskonsertti" }, "short_description": { "fi": "Pohjoisen joikuperinne kohtaa urbaanin nykyhetken ainutkertaisessa konsertti-illassa Savoyssa" }, "description": { "fi": "<p>Pohjoisen joikuperinne kohtaa urbaanin nykyhetken ainutkertaisessa konsertti-illassa Savoyssa</p><p>Illan kohokohtana kuullaan <i>Giitu – Kiitos</i> -teoksen kantaesitys, jossa saamelaisartisti Ulla Pirttijärven joikuperinne yhdistyy helsinkiläisen Ilma Vocal Ensemblen ilmaisuun. Teoksen on säveltänyt Frode Fjellheim Pirttijärven joikujen pohjalta, kantaesityksen johtaa Jennifer Moir. Lavalle nousee myös Pirttijärven norjalainen Aššu-yhtye.</p><p>Konsertti toimii emotionaalisena lähtölaukauksena samana päivänä Helsingin kaupunginmuseossa avautuvalle laajalle Yhteinen kylä -näyttelylle. Näyttely tarkastelee saamelaisuutta urbaanissa kontekstissa sekä saamelaisyhteisön historiaa, oikeuksia ja nykyistä asemaa suomalaisessa yhteiskunnassa.</p><p>Konsertin ytimessä on uusi tilausteos, joka tuo yhteen pohjoissaamelaisen joikuperinteen, nykyaikaisen kuoromusiikin ja yhteispohjoismaisen taiteellisen dialogin. Teoksen lähtökohtana on saamelaisartisti Ulla Pirttijärven musiikillinen ilmaisu ja perinne, jota norjalainen säveltäjä Frode Fjellheim on säveltänyt ja sovittanut helsinkiläiselle Ilma Vocal Ensemblelle.</p><p>Konsertti tuo yhteen taiteilijoita Suomesta, Norjasta ja Saamenmaalta sekä rakentaa tilaa aidolle pohjoismaiselle yhteistyölle. Ulla Pirttijärvi edustaa Suomen pohjoissaamelaista kulttuuria Utsjoelta, Frode Fjellheim norjalaista saamelaisperinnettä, ja Ilma Vocal Ensemble toimii Helsinkiin kiinnittyvänä, korkeatasoisena kuorona.</p><p>Giitu - Kiitos.</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sis. väliajan</p><p>Yhteistyössä Savoy-teatteri ja Helsingin kaupunginmuseo</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1343B7395595F55E3D78FC7055FF577A/Giitu_Kiitos" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri ja Helsingin kaupunginmuseo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68729/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpbywrzuq", "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/helmet:11727/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywrwnm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywrxpu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywrygm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywry5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbze2ik4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbze2jwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbze2kwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbze2lwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbze2mwm/?format=api" } ], "images": [ { "id": 1493935, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T10:56:01.330324Z", "last_modified_time": "2025-11-27T10:56:01.330340Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/39006b2b-94af-417b-8e50-05780f069792.jpg", "name": "Mikko Airaksinen", "cropping": "100,0,533,434", "photographer_name": "Maru Peltonen", "alt_text": "Mikko Airaksinen Lukupiirin vetäjä kirja kädessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493935/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T13:09:19.804190Z", "last_modified_time": "2026-05-12T13:19:31.016231Z", "date_published": null, "start_time": "2026-09-30T15:00:00Z", "end_time": "2027-05-26T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lippulaivan kirjaston lukupiiri", "sv": "Bokcirkel på finska", "en": "Book club in Finnish" }, "short_description": { "fi": "Tervetuloa keskustelemaan kirjoista keskiviikkoisin 30.9, 28.10., 25.11. & 30.12 klo 18-19:30.", "sv": "Välkommen till våra bokdiskussioner onsdagarna den 30 september, 28 oktober, 25 november och 30 december, kl. 18.00–19.30.", "en": "Join us for a book discussion on Wednesdays, September 30, October 28, November 25, and December 30, from 6:00 to 7:30 p.m." }, "description": { "fi": "<p>Tervetuloa Lippulaivan kirjaston lukupiiriin keskiviikkoisin 30.9, 28.10., 25.11. & 30.12 klo 18-19:30. Lukupiiriin ovat kaikki ovat tervetulleita. Mukaan saa liittyä kesken kauden, saa tulla vaikka ei olisi lukenut kirjaa, tai olisi, muttei pitänyt siitä. Jokaisen osallistujan tulisi varata kirja itse etukäteen.</p><p><br></p><p>Vetäjä: Johtava kirjastopedagogi Mikko Airaksinen</p><p>Paikkana Lippulaivan kirjaston pieni kokoustila Hytti.</p><p><br></p><p><strong>Syksyn 2026 kirjat:</strong></p><p>30.9. Agualusa, José Eduardo</p><p>28.10. Fosse, Jon: Aamu ja ilta</p><p>25.11. Westö, Kjell: Tritonus</p><p>30.12. Levy, Deborah: Kuumaa maitoa</p><p><br></p><p><strong>Kevään 2027 kirjat:</strong></p><p>27.1. Coetzee, J.M.: Jeesuksen lapsuus</p><p>24.2. Pihelgas, Carolina: Rajalinja</p><p>31.3. Ratinen, Suvi: Pakolainen</p><p>28.4. Räinä, Jenni: Vaino</p><p>26.5. Strout, Elizabeth: Haluan kuulla kaiken</p>", "sv": "<p>bibliotekets bokcirkel diskuterar deltagarna tillsammans den bok som valts ut för mötet, som de har läst eller velat läsa. Bokcirkeln hålls på finska.</p><p><br></p><p>Höstens böcker 2026 för varje bokklubbsdatum:</p><p>30.9. Agualusa, José Eduardo</p><p>28.10. Fosse, Jon: Aamu ja ilta</p><p>25.11. Westö, Kjell: Tritonus</p><p>30.12. Levy, Deborah: Kuumaa maitoa</p>", "en": "<p>In the library book club, the participants discuss together the book selected for the meeting, which they have read or have wanted to read. The book club is in Finnish.</p><p><br></p><p>Autumn 2026 books for each book club date:</p><p>30.9. Agualusa, José Eduardo</p><p>28.10. Fosse, Jon: Aamu ja ilta</p><p>25.11. Westö, Kjell: Tritonus</p><p>30.12. Levy, Deborah: Kuumaa maitoa</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Hytti", "sv": "Hytti", "en": "Hytti" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywrzuq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68940", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/lasseliemola/etkot-lasse-liemola-muistojen-bulevardilla-4149819/" }, "price": { "fi": "37,40-59,10 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201264, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T13:13:01.337591Z", "last_modified_time": "2026-05-12T13:13:01.337606Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791189.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201264/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T13:13:01.261298Z", "last_modified_time": "2026-05-12T13:13:01.618223Z", "date_published": null, "start_time": "2026-09-05T15: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, "name": { "fi": "ETKOT Lasse Liemola Muistojen Bulevardilla" }, "short_description": { "fi": "ETKOT Lasse Liemola ystävineen muistojen bulevardilla" }, "description": { "fi": "<p>ETKOT Lasse Liemola ystävineen muistojen bulevardilla</p><p><b>Viaton viiskytluku Golden Fifties</b><br>Pirkko Mannola ja Lasse Liemola Iskelmäketju-elokuvan tähdet vauhdissa.</p><p><b>Kapinallinen kuuskytluku</b><br>Harri Saksala ja Lasse, slangijengin \"kingit\", bamlaa ja sjungaa.<br> <br><b>The Young Ones Meet The Old Ones</b> <br>Amalia (19v) nuori rytmi kitaralla.<br>Chiara Orlandi (23v) jazzlaulaja Italian Veronasta.</p><p><b>Sädehtivä Broadway</b><br>Upea Hanna-Liina Vösa ja konserttipianisti Johan Randvere Virosta vievät meidät musikaalien kiehtovaan maailmaan.</p><p>Höpinät ja tekstit Markku \"Mape\" Veijalainen</p><p>Suurten tunteiden tulkkina Markku Renkon johtama Arcadics Jazz Orcestra</p><p>Tule mukaan nostalgiamatkalle.<br>Varaa lippusi heti!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E48187177C56CB87C55DF5ACE2DE6238/ETKOT_Lasse_Liemola_Muistojen_Bulevardilla" }, "location_extra_info": null, "provider": { "fi": "Myyntiohjelma Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68940/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69003", "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:348/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201263, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T13:12:59.782598Z", "last_modified_time": "2026-05-12T13:12:59.782614Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785719.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201263/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T13:12:59.703906Z", "last_modified_time": "2026-05-12T13:12:59.876885Z", "date_published": null, "start_time": "2026-07-25T12: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, "name": { "fi": "Eternal Erection", "sv": "Eternal Erection", "en": "Eternal Erection" }, "short_description": { "fi": "Eternal Erectionin komea paluu keikkalavoille jatkuu The Return Of The Funk -kiertueella.", "sv": "Eternal Erections comeback turné The Return Of The Funk fortsätter.", "en": "Eternal Erection is back, bringing The Return Of The Funk tour on the road, celebrating their 30-year-long career." }, "description": { "fi": "<p>Eternal Erectionin komea paluu keikkalavoille jatkuu The Return Of The Funk -kiertueella.</p><p>Eternal Erectionin musiikki pohjautuu mustalle funkille, soulille ja diskolle, ryyditettynä hip hop-, pop- ja rockvaikutteilla. Bändi on keikkaillut useassa maassa, lämmitellyt mm. George Clintonin P-Funk All Starsia, julkaissut kuusi albumia, lukuisia singlejä ja musiikkivideoita.</p><p>Rick Lover: laulu & koskettimet<br>Ray Slick: kitara & laulu<br>Chanell: basso<br>Jack Russel: rummut<br>The Hook: perkussiot & laulu<br>Furillo: saksofoni<br>T-Roy: trumpetti</p>", "sv": "<p>Eternal Erections comeback turné The Return Of The Funk fortsätter.</p><p>Bandet är känt för sina oemotståndliga live shower. Eternal Erections musik baserar sig på 70- och 80-tals svart funk, soul och disco, uppiffad med inslag av hip hop, pop och rock. ”Vi har alltid fått folk och dansa, t.om försatt dem i trans, vår musik har befrämjat folks sex liv”, säger Rick Lover, bandets frontfigur och sångare.</p><p>Rick Lover: sång & keyboard<br>Ray Slick: gitarr & sång<br>Chanell: bas<br>Jack Russel: trummor<br>The Hook: perkussioner & sång<br>Furillo: saxofon<br>T-Roy: trumpet</p>", "en": "<p>Eternal Erection is back, bringing The Return Of The Funk tour on the road, celebrating their 30-year-long career.</p><p>Eternal Erection’s music is a mix between 70’s and 80’s black funk, soul and disco stirred up with hip hop, pop and rock. \"We’ve always made people dance, even induced trance, we’ve cured people’s sex life. We want to bring joy to everyone\", says frontman and singer Rick Lover.</p><p>Rick Lover: vocals & keyboards<br>Ray Slick: guitar & vocals<br>Chanell: bass<br>Jack Russel: drums<br>The Hook: percussions & vocals<br>Furillo: saxophone<br>T-Roy: trumpet</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/239BA9D8004768E8E80EBFCFD09B453B/Eternal_Erection", "sv": "http://www.espanlava.fi/sv/evenemang/event/239BA9D8004768E8E80EBFCFD09B453B/Eternal_Erection", "en": "http://www.espanlava.fi/en/events/event/239BA9D8004768E8E80EBFCFD09B453B/Eternal_Erection" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69003/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpbyjmef4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@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:agggfz66i4/?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:agggfz66oi/?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:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agn6agzgh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwdz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwe4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwecy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwegu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwer4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cweue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwexi/?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:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com/seikkailutaidekoulu", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2201256, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-05-12T11:04:47.592668Z", "last_modified_time": "2026-05-12T11:04:47.592680Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/cd6587ce-396d-4385-9bee-140b600b6b89.jpg", "name": "", "cropping": "236,0,844,607", "photographer_name": "Joni Luumi", "alt_text": "Kesäinen kuva kirjastoautosta, edessä auringonlasku ja tyhjä tie.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201256/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-05-12T11:33:00.859408Z", "last_modified_time": "2026-05-12T13:04:32.616961Z", "date_published": "2026-05-12T11:02:00Z", "start_time": "2026-06-22T07:00:00Z", "end_time": "2026-07-31T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesädösä Välkky", "sv": "Sommarbussen Välkky", "en": "Summer bus Välkky" }, "short_description": { "fi": "Välkky kiertää ympäri Espoota kesälomalla. Kirjojen lisäksi mukaan lastataan taidetarvikkeita ja Seikkailutaidekoulun lystikkäitä kesätaidetehtäviä!", "sv": "Esbobibliotekens bok- och kulturbus Välkky turnerar i Esbo under sommaren. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo's library and culture bus Välkky is touring Espoo in the summer. There are books for all ages and fun activites for families with children!" }, "description": { "fi": "<p>Espoon kirjasto- ja kulttuuriauto Välkky kiertää ympäri Espoota kesälomalla. Kirjojen lisäksi mukaan lastataan taidetarvikkeita ja Seikkailutaidekoulun lystikkäitä kesätaidetehtäviä!</p><p>Kesädösästä löydät kirjoja ja hauskaa puuhaa kaikenikäisille! Tule mukaan kiertueelle taiteilemaan, lukemaan ja viettämään kesälomaa! Pääset tekemään jättimaalausta, runokuvituksia ja mikroskooppitaidetta! </p><p><br></p><p><br></p><p><br></p>\nMaanantaisin <p>22.6., 29.6., 6.7., 13.7., 20.7. ja 27.7.</p><p>Klo 10-11:30 Tapiolan asukaspuisto</p><p>Klo 13-14:30 Leppävaaran Angry Birds -puisto</p><p><br></p>\nKeskiviikkoisin<p>24.6., 1.7., 8.7., 15.7., 22.7. ja 29.7.</p><p>Klo 10-11:30 Latokasken asukaspuisto</p><p>24.6. ja 15.7. klo 13-14:30 Syvänsalmenpuiston leikkipaikka</p><p>1.7. ja 22.7. klo 13-14:30 Painiityn päiväkoti</p><p>8.7. ja 29.7. klo 13-14:30 Kompassitori (Saunalahti)</p>\n<br>\nTorstaisin <p>25.6., 2.7., 9.7., 16.7., 23.7. ja 30.7.</p><p>klo 10-11:30 Suvelan asukaspuisto</p><p>klo 13-14:30 Oittaan Angry Birds -puisto</p><p><br></p>\nPerjantaisin<p>26.6., 3.7., 10.7., 17.7., 24.7. ja 31.7. klo 10-11:30 Matinkylän asukaspuisto</p><p>26.6. ja 17.7. klo 13-14:30 Nokkalan majakka</p><p>3.7. ja 24.7. klo 13-14:30 Olarin asukaspuisto</p><p>10.7. ja 31.7. klo 13-14:30 Klobbenin uimaranta</p><p><br></p><p>#kirjastoauto</p><p>#HelloEspoo</p>", "sv": "<p>Esbobibliotekens bok- och kulturbus Välkky turnerar i Esbo under sommaren. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!</p><p><br></p><p><br></p><p><br></p>\nMåndagar<p>22.6., 29.6., 6.7., 13.7., 20.7. och 27.7. </p><p>Kl. 10–11.30 Hagalunds invånarpark</p><p>Kl. 13–14.30 Angry Birds-parken i Alberga</p><p><br></p>\nOnsdagar<p>24.6., 1.7., 8.7., 15.7., 22.7. och 29.7. Kl. 10–11.30 Ladusveds invånarpark</p><p>24.6 och 15.7 kl. 13–14.30 Djupsundsparken lekplats</p><p>1.7. och 22.7 kl. 13–14.30 Painiitty daghem</p><p>8.7 och 29.7 kl. 13–14.30 Kompassitori (Bastvik)</p><p><br></p>\nTorsdagar<p>25.6., 2.7., 9.7., 16.7., 23.7. och 30.7. </p><p>Kl. 10–11.30 Södriks invånarpark</p><p>Kl. 13–14.30 Angry Birds-parken i Oitans</p><p><br></p>\nFredagar<p>26.6., 3.7., 10.7., 17.7., 24.7. och 31.7. Kl. 10–11.30 Mattby invånarpark</p><p>26.6 och 17.7 kl. 13–14.30 Nokkala fyr</p><p>3.7 och 24.7 kl. 13–14.30 Olars invånarpark</p><p>10.7 och 31.7 kl. 13–14.30 Klobbens badstrand (Sökö)</p>", "en": "<p>Espoo's library and culture bus Välkky is touring Espoo in the summer. There are books for all ages and fun activites for families with children!</p><p><br></p><p><br></p><p><br></p>\nMondays<p>22.6., 29.6., 6.7., 13.7., 20.7. and 27.7.</p><p>10:00–11:30 Tapiola residents’ park</p><p>13:00–14:30 Angry Birds Park in Leppävaara</p><p><br></p>\nWednesdays<p>24.6., 1.7., 8.7., 15.7., 22.7. and 29.7 at 10:00–11:30 Latokaski residents’ park</p><p>24.6 and 15.7. at 13:00–14:30 Syvänsalmi Park playground</p><p>1.7. and 22.7. at 13:00–14:30 Painiitty daycare centre</p><p>8.7. and 29.7. at 13:00–14:30 Kompassitori (Saunalahti)</p><p><br></p><p><br></p><p><br></p>\nThursdays<p>25.6., 2.7., 9.7., 16.7., 23.7. and 30.7.</p><p>10:00–11:30 Suvela residents’ park</p><p>13:00–14:30 Angry Birds Park in Oittaa</p><p><br></p>\nFridays<p>26.6., 3.7., 10.7., 17.7., 24.7. and 31.7.at 10:00–11:30 Matinkylä residents’ park</p><p>26.6 and 17.7 at 13:00–14:30 Nokkalan majakka</p><p>3.7 and 24.7 at 13:00–14:30 Olari residents’ park</p><p>10.7 and 31.7 at 13:00–14:30 Klobben beach (Soukka)</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": { "fi": "Espoon kaupunginkirjasto ja Seikkailutaidekoulu", "sv": "Esbo Stadsbiblioteket och Seikkailutaidekoulu", "en": "Espoo City Library and Seikkailutaidekoulu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbyjmef4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68048", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-vuotalo-4036749/", "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-vuotalo-4036749/", "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-vuotalo-4036749/" }, "price": { "fi": "23€/15€/10€", "sv": "23€/15€/10€", "en": "23€/15€/10€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494677, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T16:13:09.762759Z", "last_modified_time": "2026-01-28T16:13:09.762776Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784208.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494677/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-28T16:13:09.650106Z", "last_modified_time": "2026-05-12T12:14:08.447320Z", "date_published": null, "start_time": "2026-05-22T15: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, "name": { "fi": "Susanna Leinonen Company / Rajatila – Nykytanssi & paneelikeskustelu", "sv": "Susanna Leinonen Company / Rajatila", "en": "Susanna Leinonen Company / Rajatila" }, "short_description": { "fi": "Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan. Paneelikeskustelun puhujat: laulaja Arja Saijonmaa, kirjailija Kati Reijonen, somevaikuttaja Tiia Koivusalo sekä kirjailija & terapeutti Anja Snellman.", "sv": "Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.", "en": "Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life." }, "description": { "fi": "<p>Susanna Leinonen Companyn herkkä ja voimakas tanssiteos vie ikäihmiset ja ammattitanssijat yhteiselle matkalle kehon, kokemuksen ja rajojen maailmaan. Paneelikeskustelun puhujat: laulaja Arja Saijonmaa, kirjailija Kati Reijonen, somevaikuttaja Tiia Koivusalo sekä kirjailija & terapeutti Anja Snellman.</p><p>Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja. Teos jatkaa Susanna Leinonen Companyn ikäihmisten kanssa toteutettua teossarjaa ja muodostaa sen viidennen itsenäisen osan.</p><p>Teoksen koreografi Tatiana Urteva haluaa tutkia teoksessa elämää kokeneiden kehojen fyysistä ja emotionaalista voimaa – liikettä, rytmiä ja ilmaisua, joka kumpuaa vuosikymmenten kokemuksesta.<br>Rajatila kutsuu pohtimaan, miten psykologiset ja fyysiset rajat ohjaavat arkeamme, miten niitä koetellaan ja miten ne lopulta muovaavat identiteettiämme. Näyttämöllä kohtaavat ilmaisuvoimaiset ikäihmiset ja ammattitanssijat. Ikäihmisten elämänkokemus ja kehollinen viisaus kietoutuvat yhteen tanssijoiden fyysisyyden ja tarkkuuden kanssa, synnyttäen koskettavan ja voimakkaan kokonaisuuden.</p><p>Rajatila on teos ihmisyydestä, muutoksesta ja kestävyydestä. Se haastaa käsitykset siitä, miltä tanssi voi näyttää ja kuka saa olla sen tekijä.</p><p>Teos on osa Helsingin kaupungin iäkkäiden kulttuuritoiminnan edistämishanketta.</p><p>Koreografia Tatiana Urteva<br>Musiikki Kasperi Laine<br>Valot Marianne Lagus<br>Puvut Sari Nuttunen<br>Kesto: 45 min<br>Kieli: suomi</p><p>**</p><p>klo 19.20 - Paneelikeskustelu: Ikääntyvä keho ja mieli muutoksessa – kuka minä olen? <br> <br>Huikean suosion saanut paneelikeskustelu saa jatkoa!<br> <br>Tällä kertaa lavalle nousevat neljä vahvaa naista: laulaja Arja Saijonmaa, kirjailija Kati Reijonen, somevaikuttaja Tiia Koivusalo sekä kirjailija & terapeutti Anja Snellman. <br> <br>Paneelissa tarkastellaan ikääntymistä nimenomaan naisen näkökulmasta: kehossa, mielessä ja identiteetissä tapahtuvia muutoksia. <br> <br>Miltä tuntuu elää muuttuvassa kehossa ja miten muutokset heijastuvat minäkuvaan ja elämänvalintoihin? Miten löytää yhteys itseensä uudella tavalla ja rakentaa suhdetta omaan naisellisuuteen eri elämänvaiheissa?<br> <br>Keskustelu sukeltaa kehon ja mielen yhteyteen nostaen esiin myös usein vaiettuja teemoja, kuten seksuaalisuuden ja deittailun myöhemmässä elämänvaiheessa naisten omasta kokemuksesta käsin.<br> <br>Keskustelun vetää Matilda Peltonen. <br> <br>Paneelikeskustelu sisältyy perjantain iltanäytöksen hintaan.</p>", "sv": "<p>Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.</p><p>Verket fortsätter den serie av verk som Susanna Leinonen Company genomfört tillsammans med äldre personer och utgör den femte självständiga delen av den.<br>Verkets koreograf Tatiana Urteva vill i verket undersöka den fysiska och emotionella styrkan i de kroppar som har upplevt livet – rörelsen, rytmen och uttrycket som väller fram på grund av årtionden av erfarenhet. Gränsområdet inbjuder oss att reflektera över hur psykologiska och fysiska gränser styr vår vardag, hur de prövas och hur de slutligen formar vår identitet.</p><p>På scenen möts uttryksfulla äldre och professionella dansare. De äldres livserfarenhet och fysiska visdom sveper sig samman med dansarnas fysik och precision samt skapar en gripande och kraftfull helhet.</p><p>Rajatila är ett verk om mänsklighet, förändring och hållbarhet. Den utmanar uppfattningar om hur dans kan se ut och vem som får skapa den.</p><p>Verket är en del av Helsingfors stads projekt för att främja kulturverksamhet för äldre.</p><p>Koreografi: Tatiana Urteva<br>Musik: Kasperi Laine<br>Ljus: Marianne Lagus<br>Kostymer: Sari Nuttunen</p><p>Längd: 45 min.</p>", "en": "<p>Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life.</p><p>The piece continues the Susanna Leinonen Company's series of works created together with older people and forms the fifth independent part of the series.<br>Through this work,Choreographer Tatiana Urteva wishes to explore the physical and emotional power of bodies that have experienced life – their movement, rhythm and expression that comes from decades of experience. Rajatila invites us to reflect on how psychological and physical borders guide our everyday lives, how they are tested and how they ultimately shape our identity.</p><p>On the stage, expressive elderly people come together with professional dancers. The life experience and physical wisdom of older people intertwine with the physicality and precision of the dancers, creating a moving and powerful ensemble.</p><p>Rajatila is a work about humanity, change and resilience. It challenges notions of what dance can look like and who can create dance.</p><p>The work is part of the City of Helsinki's project to promote cultural activities for older people.</p><p>Choreography Tatiana Urteva<br>Music Kasperi Laine<br>Lights Marianne Lagus<br>Costumes Sari Nuttunen</p><p>Duration: 45 min</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5CDF6C8AD2028262D793960E1DB75567/Susanna_Leinonen_Company_Rajatila", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5CDF6C8AD2028262D793960E1DB75567/Susanna_Leinonen_Company_Rajatila", "en": "http://www.vuotalo.fi/en/events/event/5CDF6C8AD2028262D793960E1DB75567/Susanna_Leinonen_Company_Rajatila" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68048/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }