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&is_free=true&page=6
{ "meta": { "count": 27764, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=5" }, "data": [ { "id": "kulke:68170", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1518238, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-04T07:13:18.286079Z", "last_modified_time": "2026-03-04T07:13:18.286095Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785960.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1518238/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-04T07:13:18.139245Z", "last_modified_time": "2026-03-20T01:14:13.237151Z", "date_published": null, "start_time": "2026-04-27T16: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, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit", "en": "http://www.malmitalo.fi/en/events/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit" }, "description": { "fi": "<p>Ammattiopiskelijoista koostuvat bändit saapuvat Malmitaloon ja illassa nähdään kaksi konserttia:</p><p>Unelmiin mä jään -Disney-musikaali</p><p>Unelmiin mä jään -Disneymusikaali kertoo kahden eri taustoista tulevan nuoren ystävyydestä. Cindy (Jenna Mikkanen) ja Rosie (Aino Oikarinen) kohtaavat musiikkikoulussa yhteisen unelmansa äärellä, ja heidän välinen ystävyys alkaa kuin itsestään. Vanhat tuulet puhaltavat koulun käytäville, mikä saa ystävysten välit rakoilemaan, ja entisen elämän vaietut salaisuudet nousevat jälleen pintaan. Miksi menneisyyttä salataan? Kuka huijaa ketä? Miten Cindyn ja Rosien ystävyydelle käy?</p><p>Unelmiin mä jään” on Helsingin Pop & Jazz konservatorion opiskelijoiden käsikirjoittama ja ohjaama teos. Lavalla nähdään yli 20-henkinen kokoonpano, joka herättää eloon uuden tarinan Disneyn klassikoiden säestämänä. Tule näkemään, kun satukirja avautuu, ja kuule lempi Disney-kappaleesi livenä.</p><p>Solistit:<br>Laulu - Jenna Mikkanen<br>Laulu - Aino OIkarinen</p><p>Bändi:<br>Piano - Helmi Ketola<br>Kitara - Elvan Deveci<br>Basso - Daniel Boswell<br>Rummut - Vilppu Lokki<br>Perkat - Joel Mäntyvaara</p><p>Orkesteri:<br>Alttoviulu - Elena Rusakova<br>Viulu - Ellen Hellberg <br>Viulu - Riina Åmann<br>Sello - Olivia Sirén<br>Saksofoni - Eemeli Ylianttila<br>Klarinetti - Silja Muttonen<br>Huilu - Anniina Tuomaala<br>Pasuuna - Emily Miettunen<br>Trumpetti - Joona Hirvonen</p><p>Ensemble:<br>Taustalaulu - Aino Kallio<br>Taustalaulu - Minttu Tenhovirta<br>Taustalaulu - Aurora Konttinen<br>Taustalaulu - Ruut Särkijärvi</p><p>Laulu - Panu Laakso<br>Kertoja - Axel Arttio</p><p>GAGA - The Mayhem Miniature' on kokonaisvaltainen pienoismalli Lady Gagan 2025-2026 konserttikiertueesta The Mayhem Ball Tour. Lavashow'sta on tehty artistinsa arvoinen, mikä sisältää kahden koreografin tanssikoreografiat, kahdeksan hengen livebändin, sekä laulusolistin sovituksen ja ohjauksen läpi ohjelmiston. Solistina toimii kokonaisvaltainen esiintyjä ja ammattilaulaja Saimi Räty.</p><p>Ohjelmisto on monipuolinen, kuten Gagan omalla kiertueellakin. Tulet esimerkiksi kuulemaan kappaleita legendaariselta The Fame -albumilta, sekä myös uusimmalta läpilyöneeltä albumilta Mayhem. Olitpa sitten Gaga -fani taikka et, tämä on mahdollisuus nauttia taidokkaimmista laulunuoteista, vahvan elektronisen musiikin voimasta, sekä ammattitason tanssijoista, laulusolisti tanssijana mukaanlukien. Tervetuloa Mayhemiin!</p><p>Saimi Räty - voc<br>Onni Koivisto - drums<br>Sofía Kaipainen - bass, synth bass<br>Elli Astikainen - synth, synth bass<br>Aamu Kallio - keys, synth<br>Pyry Aaltonen - guitar<br>Elizabeth Krause - B voc</p><p>Kesto: 2 t, sis 20min väliajan</p><p>Vapaa pääsy, tervetuloa!</p>" }, "name": { "fi": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit", "sv": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit", "en": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68170/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68022", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494628, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T10:12:59.394133Z", "last_modified_time": "2026-01-26T10:12:59.394145Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777685.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494628/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T10:12:59.296387Z", "last_modified_time": "2026-03-20T01:14:13.114629Z", "date_published": null, "start_time": "2026-04-27T13:00:00Z", "end_time": "2026-04-27T15: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, "short_description": { "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.", "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.", "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D7E6BE36D309F5C3FA61877105AC331B/Nuorten_suunnittelemat_iltapaivat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D7E6BE36D309F5C3FA61877105AC331B/Eftermiddagar_planerade_av_unga", "en": "http://www.vuotalo.fi/en/events/event/D7E6BE36D309F5C3FA61877105AC331B/Afternoons_planned_by_young_people" }, "description": { "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>", "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>", "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>" }, "name": { "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi", "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi", "en": "Afternoons planned by young people – Operation Pulse!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68022/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68187", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1585995, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T08:13:01.924077Z", "last_modified_time": "2026-03-10T08:13:01.924090Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786113.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1585995/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T08:13:01.816146Z", "last_modified_time": "2026-03-20T01:14:11.605005Z", "date_published": null, "start_time": "2026-04-25T07:00:00Z", "end_time": "2026-04-25T11: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, "short_description": { "fi": "Tervetuloa kannelmäkeläisten yhteisiin siivoustalkoisiin lauantaina 25. huhtikuuta klo 10–14!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5656C54C86FCF39EB6B9EDDB47440954/Kannelmaen_siivoustalkoot_Kotiseutu_kesakuntoon", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5656C54C86FCF39EB6B9EDDB47440954/Kannelmaen_siivoustalkoot_Kotiseutu_kesakuntoon", "en": "http://www.kanneltalo.fi/en/events/event/5656C54C86FCF39EB6B9EDDB47440954/Kannelmaen_siivoustalkoot_Kotiseutu_kesakuntoon" }, "description": { "fi": "<p>Tervetuloa kannelmäkeläisten yhteisiin siivoustalkoisiin lauantaina 25. huhtikuuta klo 10–14!</p><p>Talkootapahtuma on lähtöisin asukkaan ajatuksesta ja toiveesta ja se toteutetaan yhteistyössä Kanneltalon ja muiden toimijoiden kanssa.</p><p>Talkoiden tukikohtana toimii Sitratori, josta saat mukaasi roskapihdit ja -pussin. Henkilökunta päivystää torilla koko tapahtuman ajan, joten voit osallistua itsellesi parhaiten sopivaan aikaan. Huonon sään sattuessa tukikohta siirtyy Kanneltalon aulaan. Ympäristöä säästääksemme emme jaa tapahtumassa kertakäyttöhanskoja, vaan halutessasi voit ottaa omat pestävät käsineet käsien suojaksi. Roskapihtien kanssa hanskat eivät ole kuitenkaan välttämättömät!</p><p>Kanneltalo tarjoaa jokaiselle pihdit palauttaneelle kerääjälle pientä talkooevästä.</p><p>Talkoot ovat avoimet kaikenikäisille. Tule siis mukaan yksin, kaverin kanssa tai koko perheen voimin.</p><p>P.S. Sanna Pelliccionin ihana osallistava Onni on olla -näyttely on avoinna talkoiden aikana viimeistä päivää, joten siivouslenkin lomassa kannattaa piipahtaa myös Kanneltalon gallerian puolella.</p><p>Haluatko olla apuna tapahtuman järjestämisessä? Ota yhteyttä Kanneltalon yhteisötuottajaan Taru Honkaseen: taru.honkanen@hel.fi</p>" }, "name": { "fi": "Kannelmäen siivoustalkoot – Kotiseutu kesäkuntoon", "sv": "Kannelmäen siivoustalkoot – Kotiseutu kesäkuntoon", "en": "Kannelmäen siivoustalkoot – Kotiseutu kesäkuntoon" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68187/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68081", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494800, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T10:13:06.533238Z", "last_modified_time": "2026-02-09T10:13:06.533252Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782110.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494800/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2026-02-09T10:13:06.383916Z", "last_modified_time": "2026-03-20T01:14:10.800806Z", "date_published": null, "start_time": "2026-04-24T13: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, "short_description": { "fi": "Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60–80-luvuilta iltapäivädiskossa!", "sv": "Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960–80-talet!", "en": "The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco", "en": "http://www.vuotalo.fi/en/events/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco" }, "description": { "fi": "<p>Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60–80-luvuilta iltapäivädiskossa!</p><p>Kesto noin 2 tuntia <br>Vapaa pääsy</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>", "sv": "<p>Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960–80-talet!</p><p>Längd cirka 2 timmar</p><p>Fri entré</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>", "en": "<p>The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco!</p><p>Duration approximately 2 hours</p><p>Free admission</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>" }, "name": { "fi": "DJ Börje: Retro-Disco", "sv": "DJ Börje: Retro-Disco", "en": "DJ Börje: Retro-Disco" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68066", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-19T11:13:03.126492Z", "last_modified_time": "2026-02-19T11:13:03.126526Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783813.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494904/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-19T11:13:02.999817Z", "last_modified_time": "2026-03-20T01:14:10.480975Z", "date_published": null, "start_time": "2026-04-24T07: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, "short_description": { "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.", "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.", "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre", "sv": "http://www.annantalo.fi/sv/evenemang/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre_Virvel", "en": "http://www.annantalo.fi/en/events/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre" }, "description": { "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi<br>esineet, materiaalit myös äänen ja valon. Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen. Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla. Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella.</p><p>Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p><p>ryhmille, paikkavaraukset 23.3. klo 8.00 alkaen, kultus.hel.fi</p>", "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara<br>föremål och material, utan också ljud och ljus. Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder.</p><p>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och<br>får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026. Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter. Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>", "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only<br>objects and materials, but also sound and light. Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement. Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026. The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents. In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>" }, "name": { "fi": "Circo Aereo: Pyörre", "sv": "Circo Aereo: Pyörre – Virvel", "en": "Circo Aereo: Pyörre" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68066/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67241", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?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:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494311, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T10:14:03.391997Z", "last_modified_time": "2025-12-23T10:14:03.392014Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780203.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494311/?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": "2025-12-23T10:14:03.257308Z", "last_modified_time": "2026-03-20T01:14:10.314801Z", "date_published": null, "start_time": "2026-04-24", "end_time": "2026-09-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Yksityiskohtaisia lyijykynäpiirroksia, joissa pohditaan elämän eri teemoja eläinhahmojen, luonnon ja erilaisten esineiden kautta.", "sv": "Detaljerade blyertsteckningar som reflekterar över olika teman i livet genom djurfigurer, naturen och olika föremål.", "en": "Detailed pencil drawings that reflect on different themes of life through animal characters, nature and various objects." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/02C71E1267C537CB7EA90E294FF4F9C5/Heli_Kemilainen_Connecting_", "sv": "http://www.annantalo.fi/sv/evenemang/event/02C71E1267C537CB7EA90E294FF4F9C5/Heli_Kemilainen_Connecting", "en": "http://www.annantalo.fi/en/events/event/02C71E1267C537CB7EA90E294FF4F9C5/Heli_Kemilainen_Connecting" }, "description": { "fi": "<p>Yksityiskohtaisia lyijykynäpiirroksia, joissa pohditaan elämän eri teemoja eläinhahmojen, luonnon ja erilaisten esineiden kautta.</p><p>Connecting - teoskokonaisuus koostuu yli kymmenestä lyijykynäpiirustuksesta, joissa keskiössä on yhteyden etsiminen itseensä, tunteisiin, toisiin ihmisiin sekä luontoon. Sarja koostuu yksityiskohtaisista lyijykynä piirustuksista, joissa katsoja saa pysähtyä havainnoimaan ja tutkimaan näkemäänsä. Työt ovat tarinoita, joissa jokaisessa on oma ilmiö taustalla. Näyttely koostuu lyijykynäteoksista, joissa pohdin elämän eri teemoja eläinhahmojen ja luonnon elementtien kautta. Näyttely nojaa lyijykynäpiirtämisen perinteeseen.</p><p>Teokset ovat prosessi, jossa syvennytään pitkäksi aikaa ihmettelemään lyijykynän monipuolisia mahdollisuuksia. Piirtäminen luovana menetelmänä itsessään on arvokas matka tarinoiden sisään - parhaimmillaan se tarjoaa mahdollisuuden mietiskelyyn, meditatiivisen tilan.</p><p>Avajaiset 23.4. klo 17-19 – Tervetuloa!</p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kevään 2025 aikana hakuun tuli 230 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kuusi taiteilijaa toisen kerroksen gallerioihin sekä alakerran yhteisnäyttelyyn.</p>", "sv": "<p>Detaljerade blyertsteckningar som reflekterar över olika teman i livet genom djurfigurer, naturen och olika föremål.</p><p>Connecting-utställningens verkhelhet består av mer än tio blyertsteckningar, som fokuserar på sökandet efter samhörighet med sig själv samt med känslor, andra människor och naturen. Serien består av detaljerade blyertsteckningar som ger betraktaren möjlighet att stanna upp för att iaktta och utforska vad hen ser. Verken är berättelser, var och en med sitt eget underliggande fenomen. Utställningen består av verk i blyerts som reflekterar över olika teman i livet genom djurfigurer och naturelement. Utställningen bygger på blyertsteckningstraditionen.</p><p>Verken är en process där man under en längre tid fördjupar sig i en förundran över blyertspennans mångsidiga möjligheter. Teckning som kreativ metod är i sig en värdefull resa in i berättelser – när den är som bäst erbjuder den en möjlighet till kontemplation, ett meditativt tillstånd.</p><p>Vernissage 23.4. kl. 17–19 – Välkommen!</p><p>Utställningen har tagits med i programmet genom Annegårdens öppna ansökan. Under våren 2025 inkom 230 ansökningar, bland vilka Annegårdens elevjury valde ut sex konstnärer till gallerierna på andra våningen och till den gemensamma utställningen på nedre våningen.</p>", "en": "<p>Detailed pencil drawings that reflect on different themes of life through animal characters, nature and various objects.</p><p>The Connecting exhibition consists of more than ten pencil drawings that focus on the search for connection with oneself, emotions, other people and nature. The series consists of detailed pencil drawings that allow the viewer to stop to observe and explore what they see. The works are stories, each with its own underlying phenomenon. The exhibition consists of pencil works in which I reflect on different themes of life through animal characters and elements of nature. The exhibition draws on the tradition of pencil drawing.</p><p>The works are a process, taking time to marvel at the versatile possibilities of a pencil. Drawing as a creative method is in itself a valuable journey into stories – at its best, it offers an opportunity for contemplation, a meditative state.</p><p>Opening event on 23 April at 17.00–19.00 – hope to see you there!</p><p>The exhibition was selected for the programme through an open call at Annantalo. During the spring of 2025, Annantalo received 230 applications, from which the Annantalo student jury selected six artists for the second floor galleries and the joint exhibition downstairs.</p>" }, "name": { "fi": "Heli Kemiläinen: Connecting – Piirrosnäyttely", "sv": "Heli Kemiläinen: Connecting – Teckningsutställning", "en": "Heli Kemiläinen: Connecting – Exhibition of drawings" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67241/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68220", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1609712, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-13T09:13:34.854832Z", "last_modified_time": "2026-03-13T09:13:34.854844Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786284.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1609712/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-13T09:13:34.756563Z", "last_modified_time": "2026-03-20T01:14:09.884868Z", "date_published": null, "start_time": "2026-04-23T15: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, "short_description": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/911E661EC8E5541ED06B5639DB05EFFE/CaisaKallio_esittaa_", "sv": "http://www.caisa.fi/sv/evenemang/event/911E661EC8E5541ED06B5639DB05EFFE/CaisaKallio_esittaa_", "en": "http://www.caisa.fi/en/events/event/911E661EC8E5541ED06B5639DB05EFFE/CaisaKallio_esittaa_" }, "description": { "fi": "<p>CaisaKalliossa nähdään torstaina otteita kirjallisen ilmaisun lopputöistä. Niitä lukevat Erika von Boehm, Liia Hokkanen, Emma Knuuti, Aura Koivukangas, Jay Tauslahti, Ilmari Tommola ja Veera Valkila.</p><p>Kesto on noin tunti. Vapaa pääsy.</p>" }, "name": { "fi": "CaisaKallio esittää: – Kirjallisen ilmaisun lopputöitä", "sv": "CaisaKallio esittää:", "en": "CaisaKallio esittää:" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68093", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494827, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T09:13:06.243504Z", "last_modified_time": "2026-02-10T09:13:06.243542Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780509.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494827/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T09:13:06.087621Z", "last_modified_time": "2026-03-20T01:14:09.548738Z", "date_published": null, "start_time": "2026-04-23T15: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, "short_description": { "fi": "Tämän nuoren liettualaisen pianovirtuoosin konserttiohjelma ulottuu barokin eleganssista intohimoiseen romantiikan aikaan.", "sv": "Denna unga litauiska pianovirtuos bjuder på ett konsertprogram som sträcker sig från barockens elegans till den passionerade romantikens tid.", "en": "This young Lithuanian piano virtuoso’s concert programme ranges from Baroque elegance to passionate Romanticism." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/918652C8591EB1FEED4BCECDBB5CD946/Flyygelikuu_Gabriel_Bajorait_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/918652C8591EB1FEED4BCECDBB5CD946/Flyygelikuu_Gabriel_Bajorait_", "en": "http://www.vuotalo.fi/en/events/event/918652C8591EB1FEED4BCECDBB5CD946/Flyygelikuu_Gabriel_Bajorait_" }, "description": { "fi": "<p>Tämän nuoren liettualaisen pianovirtuoosin konserttiohjelma ulottuu barokin eleganssista intohimoiseen romantiikan aikaan.</p><p>Teokset tutkivat musiikin muuttuvaa kieltä tarkkuudesta ja hillitystä tyylikkyydestä vapauteen ja tulisuuteen.</p><p>Gabrielė Agilė Bajoraitė valmistui M. K. Čiurlionisin taidekoulusta vuonna 2020. Samana vuonna hän jatkoi opintojaan Liettuan musiikki- ja teatteriakatemiassa. Vuonna 2025 hän suoritti Sibelius-Akatemiassa kandidaatin tutkinnon Niklas Pokin luokalla, ja jatkaa nyt maisteriopintojaan Tuija Hakkilan ja Antti Siiralan johdolla.<br> <br>Gabrielė on esiintynyt Liettuan merkittävimmissä konserttisaleissa, mutta myös konsertoinut Puolassa, Virossa, Tanskassa, Islannissa ja Suomessa. Vuonna 2024 hän voitti Yamaha-säätiön apurahan Suomen jaossa, ja hänen viimeisin saavutuksensa on kolmas palkinto Suomen arvostetuimmassa kansallisessa kilpailussa, Tampereen pianokilpailussa toukokuussa 2025.<br> <br>Pianisti on osallistunut mestarikursseille, joita ovat pitäneet muun muassa Pavel Nersesiyan, Mūza Rubackytė, Ana Malikova, Philip Gusiano, Andrius Žlabys, Vera Nosina, Erik T. Tawaststjerna, William Fong, Fabio Bidini ja Jonathan Biss</p><p>Kesto noin 45 min<br>Vapaa pääsy</p>", "sv": "<p>Denna unga litauiska pianovirtuos bjuder på ett konsertprogram som sträcker sig från barockens elegans till den passionerade romantikens tid.</p><p>Verken utforskar musikens föränderliga språk, från exakthet och behärskad stil till frihet och eldighet.</p><p>Gabrielė Agilė Bajoraitė tog examen från M. K. Čiurlionis konstskola 2020. Samma år fortsatte hon sina studier vid Litauens musik- och teaterakademi. År 2025 avlade hon en kandidatexamen vid Sibelius-Akademin i Niklas Pokkis klass, och nu avlägger hon magisterstudier under ledning av Tuija Hakkila och Antti Siirala.<br> <br>Gabrielė har uppträtt i de mest betydande konserthusen i Litauen, men har också gett konserter i Polen, Estland, Danmark, Island och Finland. År 2024 vann hon ett stipendium från Yamaha-stiftelsen i utdelningen i Finland, och hennes senaste prestation är tredje pris i Finlands mest prestigefyllda nationella tävling, pianotävlingen i Tammerfors, i maj 2025.<br> <br>Pianisten har deltagit i mästarkurser med bland andra Pavel Nersesiyan, Mūza Rubackytė, Ana Malikova, Philip Gusiano, Andrius Žlabys, Vera Nosina, Erik T. Tawaststjerna, William Fong, Fabio Bidini och Jonathan Biss</p><p>Längd cirka 45 min<br>Fritt inträde</p>", "en": "<p>This young Lithuanian piano virtuoso’s concert programme ranges from Baroque elegance to passionate Romanticism.</p><p>The works explore the changing language of music, from precision and understated elegance to freedom and fire.</p><p>Gabrielė Agilė Bajoraitė graduated from National M. K. Čiurlionis School of Art in 2020. The same year, she continued her studies at the Lithuanian Academy of Music and Theatre. In 2025, she completed her bachelor’s degree at Sibelius Academy under Niklas Pokki, and she is now pursuing her master’s degree under Tuija Hakkila and Antti Siirala.<br> <br>Gabrielė has performed in the most important concert halls in Lithuania, but she has also given concerts in Poland, Estonia, Denmark, Iceland and Finland. In 2024, she won a Yamaha Foundation scholarship in the Finnish division, and her latest achievement is third prize in Finland’s most prestigious national competition, the Tampere Piano Competition, in May 2025.<br> <br>The pianist has participated in masterclasses held by artists such as Pavel Nersesiyan, Mūza Rubackytė, Ana Malikova, Philip Gusiano, Andrius Žlabys, Vera Nosina, Erik T. Tawaststjerna, William Fong, Fabio Bidini and Jonathan Biss.</p><p>Duration: roughly 45 min<br>Free entry</p>" }, "name": { "fi": "Flyygelikuu: Gabrielė Bajoraitė", "sv": "Flyygelikuu: Gabrielė Bajoraitė", "en": "Flyygelikuu: Gabrielė Bajoraitė" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68093/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68106", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494852, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-12T12:14:11.577729Z", "last_modified_time": "2026-02-12T12:14:11.577749Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782652.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494852/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-12T12:14:11.479431Z", "last_modified_time": "2026-03-20T01:14:09.446837Z", "date_published": null, "start_time": "2026-04-23T13:30: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, "short_description": { "fi": "Tapaa tekijä Stoan aulassa kutsuu yleisön kohtaamaan taiteilijoita ja muita tekijöitä, joiden teoksia nähdään Stoassa tulevan kuukauden aikana.", "sv": "Träffa skaparna i Stoas lobby bjuder in publiken att möta konstnärer och andra kreatörer vars verk visas på Stoa under kommande månad.", "en": "Meet the Maker at Stoa’s lobby invites the audience to encounter artists and other creators whose works will be presented at Stoa in the coming month." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9D89C7B4C5AC1B101435D5649F68BF6E/Tapaa_tekija_Stoan_aulassa", "sv": "http://www.stoa.fi/sv/evenemang/event/9D89C7B4C5AC1B101435D5649F68BF6E/Traffa_skaparna_i_Stoas_lobby", "en": "http://www.stoa.fi/en/events/event/9D89C7B4C5AC1B101435D5649F68BF6E/Meet_the_Maker_at_Stoa_s_lobby" }, "description": { "fi": "<p>Tapaa tekijä Stoan aulassa kutsuu yleisön kohtaamaan taiteilijoita ja muita tekijöitä, joiden teoksia nähdään Stoassa tulevan kuukauden aikana.</p><p>Stoa on teatterin, tapahtumien ja kuvataiteen kohtaamispaikka, jossa taide syntyy, näkyy ja herättää keskustelua. Tilaisuus on rento ja vuorovaikutteinen keskustelu, jossa tekijät esittelevät itsensä ja tulevat projektinsa Stoassa. Keskustelua moderoivat Stoan tuottajat Sara Hirn ja Ahmed Al-Nawas.</p><p>Yleisö on lämpimästi tervetullut esittämään kysymyksiä ja osallistumaan keskusteluun. Tapaa tekijä Stoan aulassa järjestetään kuun viimeisenä torstaina (huhtikuussa poikkeuksellisesti toiseksi viimeisenä torstaina) ja se on avoin kaikille taiteesta kiinnostuneille – myös ensikertalaisille.</p><p>Tilaisuus on maksuton ja kaksikielinen (suomi–englanti). Kysymyksiä voi esittää myös tekijöiden äidinkielellä.</p>", "sv": "<p>Träffa skaparna i Stoas lobby bjuder in publiken att möta konstnärer och andra kreatörer vars verk visas på Stoa under kommande månad.</p><p>Stoa är en mötesplats för teater, evenemang och bildkonst, där konst skapas, visas och väcker diskussion. Evenemanget är en avslappnad och interaktiv diskussion där konstnärerna presenterar sig själva och sina kommande projekt på Stoa. Producenterna Sara Hirn och Ahmed Al-Nawas modererar samtalet. Vi gör vårt bästa för att svara även på svenska vid behov.</p><p>Publiken är varmt välkommen att ställa frågor och delta i diskussionen. Träffa skaparna i Stoas lobby hålls den sista torsdagen i månaden (förutom i april, då det hålls den näst sista torsdagen) och är öppet för alla som är intresserade av konst – även för förstabesökare.</p><p>Evenemanget är kostnadsfritt och tvåspråkigt (finska–engelska). Frågor kan även ställas på konstnärernas modersmål.</p>", "en": "<p>Meet the Maker at Stoa’s lobby invites the audience to encounter artists and other creators whose works will be presented at Stoa in the coming month.</p><p>Stoa is a meeting place for theatre, events, and visual arts, where art is created, displayed, and sparks conversation. The event is a relaxed, interactive discussion in which the artists introduce themselves and their upcoming projects at Stoa. The conversation is moderated by Sara Hirn and Ahmed Al-Nawas.</p><p>The audience is warmly invited to ask questions and join the conversation. Meet the Maker at Stoa’s lobby takes place on the last Thursday of each month (except in April, when it is held on the second-to-last Thursday) and is open to everyone interested in art – including first-time visitors.</p><p>The event is free and bilingual (Finnish–English). Questions can be asked in the artists’ mother tongue as well.</p>" }, "name": { "fi": "Tapaa tekijä Stoan aulassa", "sv": "Träffa skaparna i Stoas lobby", "en": "Meet the Maker at Stoa’s lobby" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68106/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68070", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494903, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-19T11:13:02.455719Z", "last_modified_time": "2026-02-19T11:13:02.455739Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785384.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494903/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-19T11:13:02.290907Z", "last_modified_time": "2026-03-20T01:14:09.250836Z", "date_published": null, "start_time": "2026-04-23T07: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, "short_description": { "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.", "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.", "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1D1F7FBC665C5744C311D169E0ED5E93/Circo_Aereo_Pyorre", "sv": "http://www.annantalo.fi/sv/evenemang/event/1D1F7FBC665C5744C311D169E0ED5E93/Circo_Aereo_Pyorre_Virvel", "en": "http://www.annantalo.fi/en/events/event/1D1F7FBC665C5744C311D169E0ED5E93/Circo_Aereo_Pyorre" }, "description": { "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi<br>esineet, materiaalit myös äänen ja valon. Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen. Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla. Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella.</p><p>Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p><p>ryhmille, paikkavaraukset 23.3. klo 8.00 alkaen, kultus.hel.fi</p>", "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara<br>föremål och material, utan också ljud och ljus. Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder.</p><p>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och<br>får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026. Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter. Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>", "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only<br>objects and materials, but also sound and light. Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement. Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026. The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents. In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>" }, "name": { "fi": "Circo Aereo: Pyörre", "sv": "Circo Aereo: Pyörre – Virvel", "en": "Circo Aereo: Pyörre" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68070/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67594", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1597908, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-12T07:13:10.120933Z", "last_modified_time": "2026-03-12T07:13:10.120948Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781990.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1597908/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-12T07:13:09.933441Z", "last_modified_time": "2026-03-20T01:14:09.068735Z", "date_published": null, "start_time": "2026-04-23T06:30:00Z", "end_time": "2026-04-23T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4F4408AD83D3F58A5DE1FB682DD4C10B/Itsetuntemusfestarit_yhdessa_kohti_eheampaa_yhteiskuntaa_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4F4408AD83D3F58A5DE1FB682DD4C10B/Itsetuntemusfestarit_yhdessa_kohti_eheampaa_yhteiskuntaa_", "en": "http://www.malmitalo.fi/en/events/event/4F4408AD83D3F58A5DE1FB682DD4C10B/Itsetuntemusfestarit_yhdessa_kohti_eheampaa_yhteiskuntaa_" }, "description": { "fi": "<p>Keitä me olemme ja millaisen käsikirjoituksen haluamme kirjoittaa tulevaisuudelle? Itsetuntemus on avain. Kun pysähdymme tutkimaan itseämme, voimme katkaista sukupolvien ketjuja: tekemätöntä työtä, kantamattomia taakkoja ja sanoittamattomia tarinoita. Kun uskallamme kohdata ne, voimme luoda uuden alun – yhteiskunnan, jossa hyvinvointi lisääntyy ja pahoinvointi vähenee.</p><p>Maria Akatemian järjestämät Itsetuntemusfestarit kutsuvat sinut mukaan tutkimaan, mitä voimme tehdä yksin ja yhdessä, jotta huomisen tarina olisi eheämpi, lempeämpi ja toiveikkaampi. Tervetuloa pysähtymään itsetuntemuksen äärelle: luvassa on työpajatyöskentelyä ja seminaari.</p><p>Itsetuntemustyöpajat<br>Malmitalon 2. krs., max 25 hlö/työpaja</p><p>klo 9.30–10.15 Jos olisin puu</p><p>Kun pysähdymme miettimään, mistä olemme tulleet ja millaisia kokemuksia, oppeja ja tapoja olemme saaneet, voimme tunnistaa oman elämämme maaperän. Millaiseen maaperään olen juurtunut ja kasvanut? Miten minut on kohdattu ja miten minuun on suhtauduttu elämäni eri ikävaiheissa?</p><p>klo 10.30–11.15 Tulevaisuuspuu</p><p>Minkälaista tarinaa kerromme itsestämme/ yhteisöstämme/ tulevaisuudesta?<br>Minkälaista tulevaisuutta haluamme jättää jälkeemme?<br>Mitä minä voin tehdä sen eteen?</p><p>Työpajoissa työskennellään yksilöllisesti, ja työskentelyn pohjalta luodaan yhteisöllinen tuotos. Ilmoittaudu työpajoihin: https://forms.office.com/e/akPaR0pQBs</p><p>Seminaariohjelma<br>Malmitalon pieni sali, max. 100 hlö</p><p>klo 12.30–12.40 avauspuheenvuoro, Sari Nyberg, Maria Akatemian toiminnanjohtaja</p><p>klo 12.40–13.25 Se jokin Sinussa on: Sydämen sisu avaimena turvalliseen tulevaisuuteen, Elisabet Lahti, tietokirjailija ja sisututkija</p><p>klo 13.25–13.55 Voiko itsetuntemuksella muuttaa maailmaa? Maria Lindroos ja Elina Rajaniemi, Maria Akatemian ehkäisevän väkivaltatyön asiantuntijat</p><p>klo 13.55–14.15 tauko</p><p>klo 14.15–15.05 Paneelikeskustelu: ”Yhteiskunnan tarina ja yksilön rooli: kuka kirjoittaa käsikirjoituksen?”</p><p>Keskustelijat:</p><p>Elisabet Lahti, tietokirjailija ja sisututkija<br>Markku Tynkkynen, työelämäasiantuntija ja kouluttaja<br>Maria Lindroos, ehkäisevän väkivaltatyön johtava asiantuntija, Maria Akatemia<br>Tuomo Perälä, vastaava väkivaltatyöntekijä, Miessakit<br>Johanna Linner-Matikka, sosiaalialan moniosaaja, kouluttaja ja tietokirjailija, fasilitoi keskustelun</p><p>klo 15.05–15.20 Sing & Shine -kuorojen lapset ja nuoret, johtaa Sanna Valvanne</p><p>klo 15.20–15.30 loppusanat, Tatjana Pajamäki, Maria Akatemian hallituksen puheenjohtaja</p><p>Osallistuminen on maksutonta, mutta vaatii ilmoittautumisen: https://forms.office.com/e/p2fJPgwKr3</p>" }, "name": { "fi": "Itsetuntemusfestarit – yhdessä kohti eheämpää yhteiskuntaa", "sv": "Itsetuntemusfestarit – yhdessä kohti eheämpää yhteiskuntaa", "en": "Itsetuntemusfestarit – yhdessä kohti eheämpää yhteiskuntaa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67594/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68219", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1609711, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-13T09:13:34.174361Z", "last_modified_time": "2026-03-13T09:13:34.174374Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786282.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1609711/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-13T09:13:34.064693Z", "last_modified_time": "2026-03-20T01:14:08.640882Z", "date_published": null, "start_time": "2026-04-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, "short_description": { "fi": "CaisaKalliossa nähdään keskiviikkona erilaisia puhetaideteoksia." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9652F8A42B10BE6EA01BBD0E776EB99A/CaisaKallio_esittaa_", "sv": "http://www.caisa.fi/sv/evenemang/event/9652F8A42B10BE6EA01BBD0E776EB99A/CaisaKallio_esittaa_", "en": "http://www.caisa.fi/en/events/event/9652F8A42B10BE6EA01BBD0E776EB99A/CaisaKallio_esittaa_" }, "description": { "fi": "<p>CaisaKalliossa nähdään keskiviikkona erilaisia puhetaideteoksia.</p><p>Ilta sisältää kaksi puheilmaisun lopputyötä sekä yhden audioteoksen. Lopputyöt ovat opiskelijoille mahdollisuus näyttää osaamistaan ja kokeilla siipiensä kantavuutta taiteellisen produktion valmistamisessa.<br> <br>Kesto on noin 40 minuuttia. Vapaa pääsy.<br> <br>CaisaKallion keskiviikossa nähdään seuraavat teokset:<br> <br>Inka Sulaoja: Vesipisara jonka tapasin joskus, siellä, jossain (lopputyö)<br> <br>Ihminen jota en voi vastustaa. Hän tunkeutuu takaisin elämääni kuten vesipisarat, jotka suihkun jälkeen valuvat kehoani alaspäin, ja jalkani kastuvat kerta toisensa jälkeen uudestaan ja uudestaan. Vain, koska häntä ei vaan voi vastustaa. <br> <br>Jay Tauslahti: Rakkaudella sinun (lopputyö)<br> <br>Rakkaus on iankaikkinen lahja Jumalalta, jumalilta, hypotalamukselta tai ihan vain toisen kanssa jaetulta hetkeltä. Vastaus sen todellisesta alkuperästä ja luonteesta piilee rakastajan sydämessä. Kuulin kerran tarinan rakkaudesta, se oli ihmeellinen. Haluaisin kertoa sen. <br> <br>Riina Nurmela: Keskiviikko, 12.11. klo 16:29 (audio)<br> <br>Henkilö Riina😤🥵 lähetti sinulle ääniviestin.<br>Henkilö Riina😤🥵 lähetti sinulle viestin: \"Toi oli niin tyhmä mut niin hyvä ja totta et se voitais soittaa vaik mun hautajaisissa\"</p>" }, "name": { "fi": "CaisaKallio esittää: – Puhetaidetta", "sv": "CaisaKallio esittää:", "en": "CaisaKallio esittää:" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68162", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1590173, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-11T15:40:00.093970Z", "last_modified_time": "2026-03-11T15:40:00.093983Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1590173/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-03-11T15:39:59.980563Z", "last_modified_time": "2026-03-20T01:14:08.525037Z", "date_published": null, "start_time": "2026-04-22T14: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, "short_description": { "fi": "PodiKlubi on matalan kynnyksen kohtaamispaikka kaikille podcasteista kiinnostuneille nuorille.", "sv": "PodiKlubi är en mötesplats med låg tröskel för alla som är intresserade av poddar.", "en": "PodiKlubi is a low-threshold meeting place for anyone interested in podcasts." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3F7E297E5F4693E5CC8A76E4F6FC398E/PodiKlubi_", "sv": "http://www.stoa.fi/sv/evenemang/event/3F7E297E5F4693E5CC8A76E4F6FC398E/PodiKlubi_", "en": "http://www.stoa.fi/en/events/event/3F7E297E5F4693E5CC8A76E4F6FC398E/PodiKlubi_" }, "description": { "fi": "<p>PodiKlubi on matalan kynnyksen kohtaamispaikka kaikille podcasteista kiinnostuneille nuorille.</p><p>Tapahtumassa osallistujat pääsevät esittelemään omaa podcastiaan muille: kuuntelemme lyhyen pätkän jaksosta ja vaihdamme ajatuksia sen herättämistä teemoista.</p><p>Jokainen esitys saa hetken valokeilassa, mutta tunnelma pysyy rennon keskusteleva – ei paineita, ei kilpailua.</p><p>Tuo oma podcastisi tai tule vain kuuntelemaan ja inspiroitumaan!</p><p>Tapahtuma on ilmainen ja päihteetön.</p><p>Tapahtuman järjestää Kipinän Signaalimedia.</p><p>Kesto: 2 tuntia</p><p>Kieli: monikielinen</p><p>Vapaa pääsy</p>", "sv": "<p>PodiKlubi är en mötesplats med låg tröskel för alla som är intresserade av poddar.</p><p>Ta med din egen podd eller kom bara för att lyssna och inspireras!</p><p>Under evenemanget får deltagarna presentera sina poddar för andra: vi lyssnar på ett kort utdrag ur ett avsnitt och utbyter tankar om dess teman.</p><p>Varje framträdande får en stund i rampljuset, men atmosfären förblir avslappnad och samtalsbetonad – ingen press, ingen konkurrens.</p><p>Evenemanget är gratis och rusmedelsfritt.</p><p>Längd: 2 timmar</p><p>Språk: flerspråkig</p>", "en": "<p>PodiKlubi is a low-threshold meeting place for anyone interested in podcasts.</p><p>Bring your own podcast or just come and listen and be inspired!</p><p>The event will give participants the chance to present their podcast to others: we will listen to a short clip from an episode and exchange ideas on the themes it raises.</p><p>Each podcast will have its moment in the spotlight, but the atmosphere will remain relaxed and conversational – no pressure, no competition.</p><p>Admission is free and the event is drug and alcohol free.</p><p>Duration: 2 hours</p><p>Language: multilingual</p>" }, "name": { "fi": "PodiKlubi", "sv": "PodiKlubi", "en": "PodiKlubi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68162/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67805", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494391, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-07T12:13:10.567467Z", "last_modified_time": "2026-01-07T12:13:10.567479Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782916.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494391/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-07T12:13:10.445092Z", "last_modified_time": "2026-03-20T01:14:08.107398Z", "date_published": null, "start_time": "2026-04-22T09: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, "short_description": { "fi": "Dokumenttielokuva Kapina elämän puolesta kuvaa Elokapina-yhteisön toimia sisältäpäin.", "sv": "Dokumentärfilmen Kapina elämän puolesta visar Elokapina-rörelsens verksamhet inifrån.", "en": "The documentary film Kapina elämän puolesta (Rebellion for Future) shows the work of the Elokapina community from the inside." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/628F1DF1AEF8AA0147A0F86B28AC405E/Ylakoulukino_Kapina_elaman_puolesta_2025_", "sv": "http://www.stoa.fi/sv/evenemang/event/628F1DF1AEF8AA0147A0F86B28AC405E/Hogstadiekino_Kapina_elaman_puolesta_", "en": "http://www.stoa.fi/en/events/event/628F1DF1AEF8AA0147A0F86B28AC405E/Ylakoulukino_Kapina_elaman_puolesta_" }, "description": { "fi": "<p>Dokumenttielokuva Kapina elämän puolesta kuvaa Elokapina-yhteisön toimia sisältäpäin.</p><p>Kamera seuraa tapahtumia tiiviisti kahden vuoden ajan niin Lapissa kuin Helsingin kaduillakin. Elokuvan henkilöt peräänkuuluttavat vastuunkantoa ilmastokriisiä ja luontokatoa eniten kiihdyttäviltä. Aktivistit haluavat elinkelpoisen planeetan, mutta huomaavat kerta toisensa jälkeen, että ihmiskunnan tulevaisuutta tärkeämpää on, ettei rekkajono sellutehtaalle pysähdy hetkeksikään.</p><p>Minkä hinnan yhteiskunnassa vallitsevien käytäntöjen kritisoimisesta joutuu maksamaan? Miltä tuntuu, kun vastassa ovat valtaapitävät viranomaiset ja kovat otteet? Saku Soukan esikoisohjaus tuo esiin ihmiset Elokapinan aktioiden takana. He eivät haluaisi olla sylkykuppeina, mutta eivät näe muutakaan vaihtoehtoa. ”En enää keksinyt, mikä muu toimisi”, kapinallinen kertoo. Pyrkiessään hillitsemään ilmastokriisiä ja luontokatoa kapinalliset käyttävät omia kehojaan, joilla he blokkaavat tehtaita, tuotantovälineitä ja katuja. Keskustelut ja yhteenotot poliisin kanssa ovat jännitteisiä, ja kapinalliset joutuvat välillä putkaan, oikeuden eteen ja myös väkivallan kohteeksi.</p><p>Dokumentti tuo esiin epäoikeudenmukaisuutta, mutta hopeareunus paistaa epätoivon keskeltä. Aktivistien yhteisöllisyys, solidaarisuus ja välittäminen tuntuvat katsojan sydänjuurissa asti. Ehkä on vielä toivoa, että ihmiskunta ja luonto pelastuvat. Ainakaan elokapinalliset eivät ole luovuttaneet.</p><p>Elokuvan on käsikirjoittanut, ohjannut ja kuvannut valokuvaajana tunnettu Saku Soukka. Elokuvan tekemisessä häntä kiehtoo mahdollisuus kertovampaan teosmuotoon, jossa yhdistyvät monet hänen aiemmin käyttämänsä ilmaisumuodot. Dokumenttielokuvaa tehdessään hän pyrkii siihen, että kuvattavat tapahtumat pääsevät tapahtumaan mahdollisimman vapaasti kuvaamisesta huolimatta.</p><p>Elokuvan yhteydessä on ohjaajatapaaminen.</p><p>Ohjaus: Saku Soukka<br>Kielet: suomi, englanti<br>Tekstitykset: osittain englanti, osittain suomi<br>Ikäsuositus: yläkoulu ja toinen aste<br>Kesto: 80 min+ ohjaajavierailu 20-30 min<br>Teema: Fight the Power<br>Avainsanat: Luontosuhde, Yhteiskunta, Ihmisoikeudet<br> <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset kultus.hel.fi 13.1. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Dokumentärfilmen Kapina elämän puolesta visar Elokapina-rörelsens verksamhet inifrån.</p><p>Kameran följer verksamheten på nära håll under två år, både i Lappland och på gatorna i Helsingfors. Personerna i filmen kräver att de som bidrar mest till klimatkrisen och förlusten av biologisk mångfald ska ta ansvar. Aktivisterna vill ha en livsduglig planet, men ser gång på gång att det är viktigare att hålla igång långtradartrafiken till cellulosafabriken än att trygga mänsklighetens framtid.</p><p>Vilket pris får man betala för att kritisera det rådande systemet i samhället? Hur känns det att mötas av maktutövande myndigheter och hårda tag? Saku Soukkas debutfilm lyfter fram människorna bakom Elokapinas aktioner. De vill inte vara spottkoppar, men de ser inget annat alternativ. ”Jag kunde inte längre komma på vad annat som skulle funka”, berättar en aktivist. I sina försök att bromsa klimatkrisen och biodiversitetsförlusten använder aktivisterna sina egna kroppar för att blockera fabriker, produktionsutrustning och gator. Diskussionerna och konfrontationerna med polisen är spända, och aktivisterna hamnar ibland i häktet och i domstol och utsätts till och med för våld.</p><p>Dokumentären belyser orättvisor, men en ljusglimt skymtar i mörkret. Gemenskapen, solidariteten och omtanken bland aktivisterna känns ända in i tittarens hjärta. Kanske finns det fortfarande hopp om att mänskligheten och naturen ska räddas. Åtminstone Elokapina-aktivisterna har inte gett upp.</p><p>Saku Soukka, som är känd som fotograf, har skrivit manus, regisserat och filmat filmen. I filmskapandet fascineras han av möjligheten till en mer berättande form av verk, som kombinerar många av de uttrycksformer han använt tidigare. När han gör en dokumentärfilm strävar han efter att de händelser som han filmar ska kunna utspela sig så fritt som möjligt, trots att de filmas.</p><p>I samband med filmen ordnas en träff med regissören.</p><p>Regi: Saku Soukka<br>Språk: finska, engelska<br>Textning: delvis på engelska, delvis på finska<br>Åldersrekommendation: högstadiet och andra stadiet<br>Längd: 80 min. + regissörsbesök 20–30 min.<br>Tema: Fight the Power<br>Nyckelord: Förhållandet till naturen, Samhälle, Mänskliga rättigheter<br> <br>Fritt inträde, obligatorisk anmälan för grupper, kultus.hel.fi från 13.1 kl. 10.</p>", "en": "<p>The documentary film Kapina elämän puolesta (Rebellion for Future) shows the work of the Elokapina community from the inside.</p><p>The camera follows events closely over two years, both in Lapland and on the streets of Helsinki. The people in the film call for responsibility from those most responsible for the climate crisis and biodiversity loss. The activists want a viable planet, but time and time again they find that ensuring that the never-ending queue of trucks to the pulp mill can continue trumps the future of humanity.</p><p>What is the price to pay for criticising the status quo? How does it feel to be confronted with powerful authorities and heavy-handedness? Saku Soukka's debut film brings to light the people behind the actions of Elokapina. They do not want to be vilified, but they see no other option. \"I couldn't think of anything else that would work,\" says a rebel. In an effort to contain the climate crisis and biodiversity loss, the rebels are using their own bodies to block factories, means of production and streets. Discussions and confrontations with the police are tense, and the rebels sometimes end up in custody, on trial and also subjected to violence.</p><p>The documentary film highlights injustice, but a silver lining shines through the despair. The activists' sense of community, solidarity and care for each other will pull at the heartstrings of the viewer. Perhaps there is still hope that humanity and nature will be saved. At least the rebels have not given up.</p><p>The film is written, directed and shot by photographer Saku Soukka. In filmmaking, he is fascinated by the possibility of a more narrative form of work that combines many of the forms of expression he has used in the past. When making a documentary film, he tries to ensure that the events being filmed can take place as freely as possible, despite being filmed.</p><p>The film will be accompanied by a meeting with the director.</p><p>Directed by: Saku Soukka<br>Languages: Finnish, English<br>Subtitles: partly in English, partly in Finnish<br>Recommended age: lower secondary school and upper secondary level<br>Duration: 80 min + director meeting 20–30 min<br>Theme: Fight the Power<br>Keywords: Relationship with nature, Society, Human rights<br> <br>Free admission, groups are required to register in advance: kultus.hel.fi from 13 January from 10.00 onwards.</p>" }, "name": { "fi": "Yläkoulukino: Kapina elämän puolesta (2025)", "sv": "Högstadiekino: Kapina elämän puolesta", "en": "Yläkoulukino: Kapina elämän puolesta" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67805/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68092", "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:29/?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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494824, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T08:12:08.213092Z", "last_modified_time": "2026-02-10T08:12:08.213103Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783885.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494824/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T08:12:08.167323Z", "last_modified_time": "2026-03-20T01:14:07.982055Z", "date_published": null, "start_time": "2026-04-22T08: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, "short_description": { "fi": "Kevään Skidikinossa moikataan myyrää! Myyrä saa uuden ystävän, pienen kotkan. Erilaisuudestaan huolimatta heidän ystävyytensä kestää jokaisen koettelemuksen." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/78C670D44CA8E4C0F3713ED261872D5D/Skidikino_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/78C670D44CA8E4C0F3713ED261872D5D/Skidikino_S_", "en": "http://www.vuotalo.fi/en/events/event/78C670D44CA8E4C0F3713ED261872D5D/Skidikino_S_" }, "description": { "fi": "<p>Kevään Skidikinossa moikataan myyrää! Myyrä saa uuden ystävän, pienen kotkan. Erilaisuudestaan huolimatta heidän ystävyytensä kestää jokaisen koettelemuksen.</p><p>Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa ihastuttavan riemukkaita hetkiä kaikenikäisille! Elokuvassa on musiikkisäestys. Soveltuu myös perheen pienimmille.</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. Vuotalo - Taidekasvatus</p><p>Kieli: sanaton <br>Kesto: n. 30 min</p><p>Ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi<br>Lisätietoja: salla.fornaro@hel.fi</p>", "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.<br> <br>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus<br> <br>Längd: ca. 30 min<br>Språk: ordlös<br>Anmälan för grupper på kultus.hel.fi<br>Mera info: salla.fornaro@hel.fi</p>", "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus<br> <br>Duration: 30 min<br>Language: no dialogue<br>Registration for daycare groups at kultus.hel.fi<br>More information: salla.fornaro@hel.fi</p>" }, "name": { "fi": "Skidikino (S) – Myyrä ja kotka", "sv": "Skidikino (S) – Myyrä ja kotka", "en": "Skidikino (S) – Myyrä ja kotka" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68092/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67876", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494511, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T13:13:44.992819Z", "last_modified_time": "2026-01-16T13:13:44.992841Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780533.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494511/?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-01-16T13:13:44.819301Z", "last_modified_time": "2026-03-20T01:14:07.809739Z", "date_published": null, "start_time": "2026-04-22T07:00:00Z", "end_time": "2026-04-22T09: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, "short_description": { "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!", "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!", "en": "In these imaginatively modified play environments, play gets to run wild!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FF3213435B006D043370C46B458671A4/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/FF3213435B006D043370C46B458671A4/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/FF3213435B006D043370C46B458671A4/Art_games_a_space_for_play" }, "description": { "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin.</p><p>Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 10–12 (nonstop) <br>Ikäryhmä: 0-3v<br>Kieli: suomi <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>", "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen. <br>Regi: Noora Puranen <br>Tid: kl. 10–12 (non-stop) <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>", "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor.</p><p>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen <br>Time: 10.00–12.00 (non-stop) <br>Age group: 0–3<br>Language: Finnish <br>Free of charge</p>" }, "name": { "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa", "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen", "en": "Art games – a space for play – Children aged 0–3 with an adult" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67876/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67804", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494385, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T15:13:15.436187Z", "last_modified_time": "2026-01-05T15:13:15.436201Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782915.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494385/?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-01-05T15:13:15.340590Z", "last_modified_time": "2026-03-20T01:14:07.646591Z", "date_published": null, "start_time": "2026-04-22T06:30: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, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.", "en": "Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D5321F60AF4C1D3C0F4C6F3387D332E7/Skidikino_Muumien_maailma", "sv": "http://www.stoa.fi/sv/evenemang/event/D5321F60AF4C1D3C0F4C6F3387D332E7/Skidikino_Mumintrollens_varld", "en": "http://www.stoa.fi/en/events/event/D5321F60AF4C1D3C0F4C6F3387D332E7/Skidikino_The_world_of_Moomins" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä 2026 nähdään rakastetun Muumiperheen seikkailuja restauroidun klassikko-nukkeanimaation muodossa. Maaliskuun Skidikinossa seurataan talvisia tarinoita, ja huhtikuussa ollaan jo keväisemmissä tunnelmissa.<br> <br>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. <br> <br>ikäsuositus: Päiväkoti-ikäisille <br>Paikka: teatterisali<br>Kesto n. 35-40 min <br>Kieli: suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: Kultus.hel.fi 13.1. klo 10 alkaen. <br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.</p><p>Våren 2026 får vi se den älskade muminfamiljens äventyr i form av en restaurerad klassisk dockanimation. På Skidikino i mars får vi ta del av vinterberättelser, och i april är det redan vårstämning.<br> <br>Till Skidikino hör Pikkukroko-läromedel, som kan laddas ner från Stoas webbplats. Biobesök är temat i det illustrerade materialet.</p><p>Åldersrekommendation: Barn i daghemsåldern <br>Plats: teatersalen<br>Längd: cirka 35–40 min. <br>Språk: finska <br>Fri entré, obligatorisk anmälan för grupper: Kultus.hel.fi från 13.1 kl. 10.</p>", "en": "<p>Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them.</p><p>In spring 2026, the adventures of the beloved Moomin family will be presented in a restored classic puppet animation. In March, Skidikino will present winter stories, and in April, viewers will be treated to spring vibes.<br> <br>The Skidikino events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from the Stoa website. The illustrated material revolves around going to the cinema. <br> <br>Recommended age: For daycare-age children <br>Location: theatre hall<br>Duration approx. 35–40 minutes <br>Language: Finnish <br>Free admission, registration required for groups: Kultus.hel.fi from 13 January from 10.00 onwards.</p>" }, "name": { "fi": "Skidikino: Muumien maailma", "sv": "Skidikino: Mumintrollens värld", "en": "Skidikino: The world of Moomins" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67804/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68091", "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:29/?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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494823, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T08:12:07.952817Z", "last_modified_time": "2026-02-10T08:12:07.952830Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783884.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494823/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T08:12:07.865887Z", "last_modified_time": "2026-03-20T01:14:07.508541Z", "date_published": null, "start_time": "2026-04-22T06: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, "short_description": { "fi": "Kevään Skidikinossa moikataan myyrää! Myyrä saa uuden ystävän, pienen kotkan. Erilaisuudestaan huolimatta heidän ystävyytensä kestää jokaisen koettelemuksen." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/56073FB9D17BC8C34525D58D6213C9FC/Skidikino_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/56073FB9D17BC8C34525D58D6213C9FC/Skidikino_S_", "en": "http://www.vuotalo.fi/en/events/event/56073FB9D17BC8C34525D58D6213C9FC/Skidikino_S_" }, "description": { "fi": "<p>Kevään Skidikinossa moikataan myyrää! Myyrä saa uuden ystävän, pienen kotkan. Erilaisuudestaan huolimatta heidän ystävyytensä kestää jokaisen koettelemuksen.</p><p>Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa ihastuttavan riemukkaita hetkiä kaikenikäisille! Elokuvassa on musiikkisäestys. Soveltuu myös perheen pienimmille.</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. Vuotalo - Taidekasvatus</p><p>Kieli: sanaton <br>Kesto: n. 30 min</p><p>Ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi<br>Lisätietoja: salla.fornaro@hel.fi</p>", "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.<br> <br>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus<br> <br>Längd: ca. 30 min<br>Språk: ordlös<br>Anmälan för grupper på kultus.hel.fi<br>Mera info: salla.fornaro@hel.fi</p>", "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus<br> <br>Duration: 30 min<br>Language: no dialogue<br>Registration for daycare groups at kultus.hel.fi<br>More information: salla.fornaro@hel.fi</p>" }, "name": { "fi": "Skidikino (S) – Myyrä ja kotka", "sv": "Skidikino (S) – Myyrä ja kotka", "en": "Skidikino (S) – Myyrä ja kotka" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68091/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68218", "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: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1609710, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-13T09:13:33.474762Z", "last_modified_time": "2026-03-13T09:13:33.474775Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786280.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1609710/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-13T09:13:33.359104Z", "last_modified_time": "2026-03-20T01:14:07.380044Z", "date_published": null, "start_time": "2026-04-21T15: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, "short_description": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C6A7ABA9B524E1B42CC627359106A63B/CaisaKallio_esittaa_", "sv": "http://www.caisa.fi/sv/evenemang/event/C6A7ABA9B524E1B42CC627359106A63B/CaisaKallio_esittaa_", "en": "http://www.caisa.fi/en/events/event/C6A7ABA9B524E1B42CC627359106A63B/CaisaKallio_esittaa_" }, "description": { "fi": "<p>Tanssin lukiodiplomit tarjoavat ainutlaatuisen mahdollisuuden kurkistaa nuorten tekijöiden taiteelliseen ajatteluun ja tulevaisuuden tanssitaiteeseen. Teoksissa opiskelijat voivat toimia joko koreografina ja/tai tanssijana.<br> <br>Lukuvuoden 2025-2026 aikana on ollut yli 20 tanssin lukiodiplomin tekijää. Näyttämöllä nähdään mm. nykytanssia, hip hopia ja j-popia.</p><p>Esityksen kokonaiskesto on noin tunti. Vapaa pääsy.</p>" }, "name": { "fi": "CaisaKallio esittää: – Tanssin lukiodiplomit", "sv": "CaisaKallio esittää:", "en": "CaisaKallio esittää:" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68218/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68193", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1586460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T09:13:10.361751Z", "last_modified_time": "2026-03-10T09:13:10.361765Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782248.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586460/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T09:13:10.238570Z", "last_modified_time": "2026-03-20T01:14:07.098009Z", "date_published": null, "start_time": "2026-04-21T12:00:00Z", "end_time": "2026-04-21T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CB2FE532BEF4D80173631A23C18F059D/Roskasta_kaunista_-tyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CB2FE532BEF4D80173631A23C18F059D/Roskasta_kaunista_-tyopajat", "en": "http://www.vuotalo.fi/en/events/event/CB2FE532BEF4D80173631A23C18F059D/Roskasta_kaunista_-tyopajat" }, "description": { "fi": "<p>Tule mukaan tekemään roskasta kaunista! Pääset harjoittamaan kädentaitojasi ja kokeilemaan, miten erilaiset materiaalit taipuvat uuteen käyttöön.</p><p>Huhtikuussa järjestetään kolme työpajaa Roskaa!-näyttelyn keskellä, Vuotalon aulassa. Saat kaikki tarvittavat materiaalit paikan päältä. Työpajat eivät maksa mitään. Työpajat sopivat kaiken ikäisille, mutta alle kouluikäiset voivat osallistua vain oman aikuisen seurassa.</p><p>Roskasta kaunista -pajat toteutetaan yhteistyössä Työväenopiston kanssa. Työpajoja ohjaa Kristiina Tergujeff. Ohjauskieli on suomi.</p><p>Ohjelma:</p><p>ti 7.4. klo 15.00-18.15<br>Kukkia karkkipaperista</p><p>ti 14.4. klo 15.00-18.15<br>Napit kiertoon</p><p>ti 21.4. klo 15.00-18.15<br>Kierrätä pitsejä</p>" }, "name": { "fi": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa", "sv": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa", "en": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68193/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }