Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=82
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=83", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=81" }, "data": [ { "id": "espoo_le:agp5ocld4i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-08-06T11:44:33.433306Z", "last_modified_time": "2026-08-24T12:08:12.764009Z", "date_published": null, "start_time": "2026-09-26T12:30:00Z", "end_time": "2026-09-26T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5ocld4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5ocleka", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-08-06T11:44:33.330262Z", "last_modified_time": "2026-08-24T12:08:12.726172Z", "date_published": null, "start_time": "2026-09-19T12:30:00Z", "end_time": "2026-09-19T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5ocleka/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclewy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-08-06T11:44:33.224509Z", "last_modified_time": "2026-08-24T12:08:12.689632Z", "date_published": null, "start_time": "2026-09-12T12:30:00Z", "end_time": "2026-09-12T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclewy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclfeu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-08-06T11:44:33.104182Z", "last_modified_time": "2026-08-24T12:08:12.654550Z", "date_published": null, "start_time": "2026-09-05T12:30:00Z", "end_time": "2026-09-05T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclfeu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclfra", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-08-06T11:44:32.975218Z", "last_modified_time": "2026-08-24T12:08:12.615714Z", "date_published": null, "start_time": "2026-08-29T12:30:00Z", "end_time": "2026-08-29T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclfra/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68549", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385517, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:14:01.736549Z", "last_modified_time": "2026-07-07T10:14:01.736566Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790987.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385517/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T10:14:01.640630Z", "last_modified_time": "2026-08-24T11:23:17.898220Z", "date_published": null, "start_time": "2026-12-10T17:00:00Z", "end_time": "2026-12-10T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Amanda & Lydia: Traces of Your Skin | Ensi-ilta", "sv": "Amanda & Lydia: Traces of Your Skin | Premiär", "en": "Amanda & Lydia: Traces of Your Skin | Premiere" }, "description": { "fi": "<p>Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta.</p><p>Siskous ei ole annettu.</p><p>Se syntyy katseessa, joka tunnistaa. Kosketuksessa, joka jää. Päätöksessä olla toiselle lähellä, yhä uudelleen, vaikka läsnäolo ei ole koskaan yksiselitteistä.</p><p><i>Traces of Your Skin</i> on nykytanssiteos kahden transnaisen välisestä siskoudesta. Se tarkastelee valittua perhettä suhteena, joka syntyy tekemisessä: koskettamisessa, kannattelussa ja katseessa. Siskous ei perustu yhteiseen lapsuuteen, vaan jaettuihin kokemuksiin, samaistumiseen ja päätökseen olla toiselle olemassa.</p><p>Esityksessä kehot koskettavat, kannattelevat ja ohjaavat toisiaan. Ne silittävät, harovat, pitävät kiinni ja irrottavat. Liike rakentuu suhteesta, jossa toinen keho on samanaikaisesti tuttu ja muuttuva. Iho toimii pintana, johon muistot ja odotukset jättävät jäljen. Turva ja lohtu kietoutuvat pelkoon, kateuteen ja kipuun.</p><p>Feminiinisyys näyttäytyy jaettuna kokemuksena ja materiaalina, joka tuntuu omalta, mutta on muotoutunut muistojen ja odotusten kautta. Näyttämöllä se saa levätä ilman ulkopuolista määrittelyä, asettuen syliin ja lempeään läheisyyteen.</p><p>**</p><p>Teoksen koreografit ja esiintyjät <b>Amanda 007</b> ja <b>Lydia Ofi Teresia</b> ovat työskennelleet yhdessä yli 15 vuoden ajan ystävinä, siskoina ja taiteellisina kumppaneina Amanda & Lydia -duona. Heidän yhteinen liikekielensä on syntynyt pitkäkestoisessa vuoropuhelussa ja jaetuissa kokemuksissa transtaustaisina esiintyjinä. Teos liikkuu nykytanssin, performatiivisuuden ja ballroomin vaikutteiden risteyksessä, mutta rakentuu ennen kaikkea esiintyjien välisestä suhteesta.</p><p>Työryhmään kuuluvat lisäksi äänisuunnittelija <b>Olli Lautiola</b>, valosuunnittelija <b>Kristian Palmu</b>, pukusuunnittelija <b>Joona Huotari-Andreou</b> sekä skenografi <b>Landys Roimola</b>, joiden työ kytkeytyy osaksi teoksen liikettä, kehoa ja tilaa.</p><p><i>Traces of Your Skin</i> viipyy siinä, mitä kahden kehon välillä tapahtuu, kun ei tarvitse selittää tai esittää. <br> <br><b>Koreografia, tanssi</b>: Lydia Ofi Teresia <br><b>Koreografia, tanssi</b>: Amanda 007 <br><b>Äänisuunnittelu</b>: Olli Lautiola <br><b>Valosuunnittelu</b>: Kristian Palmu <br><b>Pukusuunnittelu</b>: Huotari-Andreou Joona <br><b>Skenografia</b>: Landys Roimola <br> <br>Sisältöhuomio: Esitys sisältää alastomuutta, kovaa ääntä, teatterisavua ja välkkyviä valoja. <br>Ikäraja: 18</p>" }, "provider_contact_info": null, "short_description": { "fi": "Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FBBC6804A0D3FE560FC2AE26EB4C27F8/Amanda_Lydia_Traces_of_Your_Skin_Ensi-ilta", "sv": "http://www.caisa.fi/sv/evenemang/event/FBBC6804A0D3FE560FC2AE26EB4C27F8/Amanda_Lydia_Traces_of_Your_Skin_Premiar", "en": "http://www.caisa.fi/en/events/event/FBBC6804A0D3FE560FC2AE26EB4C27F8/Amanda_Lydia_Traces_of_Your_Skin_Premiere" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68549/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68677", "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:30/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385323, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-24T08:13:50.009406Z", "last_modified_time": "2026-06-24T08:13:50.009418Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791559.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385323/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-24T08:13:49.906626Z", "last_modified_time": "2026-08-24T11:23:04.287592Z", "date_published": null, "start_time": "2026-10-24T08:00:00Z", "end_time": "2026-10-24T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Annantalon taidelauantai: Kuulento", "sv": "Annegårdens konstlördag: Månfärd", "en": "Annantalo Art Saturday: Moon Flight" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p>Oletko tarkastellut kuuta kirkkaana yönä? Minkälaisia kuvioita kuun pinnalla näkyy?</p><p>Osallistujat hahmottelevat kuvitelmiaan siitä, minkälaisia kuvioita kuun pinnalla voi nähdä. Inspiraatiota saamme mm. kuulennosta kuun pimeälle puolelle, rohtoa valmistavasta jäniksestä, ja siitä, miten kukin kuun pinnan kuviot itse näkee. Kollaasi toteutetaan pahvista ja keltaisen sävyisistä silkkipapereista. Työpajassa syntyneet teokset tulevat esille Annantalon julkisivun ikkunoihin.</p><p><b> Kuulento on yksi Spektri-yhteisteokseen liittyvistä työpajoista. </b></p><p>Syksyllä 2026 Annantalon työpajoissa ja taideryhmissä toteutetaan yhteinen valotaideteos Spektri. Tämä työpaja on yksi monista, joissa työstetään teoksen eri osia. Tule mukaan tekemään oma osuutesi Annankadun puolelle sijoitettaviin, spektrin väreissä hehkuviin ikkunateoksiin. Spektri-valoteoksen avajaisia juhlitaan 9.12. klo 18, jolloin Annantalon ikkunat syttyvät väriloistoon. Tule mukaan rakentamaan yhteistä Spektriä!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i verkstäder som är öppna för alla och där man kan stanna en kortare eller längre stund.</p><p>Har du tittat på månen en klar natt? Vilka mönster syns på månens yta?</p><p>Deltagarna skisserar sina föreställningar om hurdana mönster man kan se på månens yta. Vi hämtar inspiration bland annat från en resa till månens mörka sida, från haren som tillverkar medikamenter och från hur varje mönster på månens yta ser ut i sig. Kollaget skapas av kartong och silkespapper i gula nyanser. De verk som skapats under verkstaden ställs ut i Annegårdens fönster.</p><p><b>Kuulento är en av verkstäderna i samband med det kollektiva verket Spektri</b> <br> <br>Under hösten 2026 skapas ett gemensamt ljuskonstverk i verkstäderna och konstgrupperna på Annegården: Spektri. Den här verkstaden är en av många där deltagarna arbetar med verkets olika delar. Kom och bidra med din del i de fönsterkonstverk som ska placeras längs Annegatan och som kommer att lysa i alla färger i spektrumet. <br> <br>Invigningen av ljusverket Spektri firas den 9 december kl. 18, då Annegårdens fönster lyser upp i ett färgsprakande sken. Kom med och bygg upp ett gemensamt spektrum! <br> <br>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – stop by briefly or stay for a longer visit.</p><p>Have you ever taken a closer look at the moon on a clear night? What sort of patterns can be seen on the moon’s surface?</p><p>The participants sketch their ideas of what kind of patterns might be seen on the surface of the moon. We draw inspiration from sources such as a flight to the dark side of the moon, a potion-making hare, and how each person sees the patterns on the moon’s surface. The collage is made from cardboard and tissue paper in shades of yellow. The works created during the workshop will be displayed in the facade windows of Annantalo.</p><p><b>Moon Flight is one of the workshops linked to the jointly created ‘Spectrum’ artwork</b> <br> <br>In autumn 2026, Annantalo’s workshops and art groups will create a collaborative light art installation entitled Spectrum. This workshop is one of many in which different parts of the work are created. Come and make your contribution to the window installations to be displayed on the Annankatu side, glowing in the different colours of the spectrum. <br> <br>The opening ceremony for the Spectrum light installation will be held on 9 December at 18.00, illuminating the windows of Annantalo in a blaze of colour. Come and join us in building our shared spectrum! <br> <br>No prior skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. Annantalo Art Saturdays are free-of-charge and suitable for participants from all language backgrounds. <br> <br>The workshop will be hosted by Annantalo art educators. <br> <br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i verkstäder som är öppna för alla och där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – stop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6A8FB88584E505C10A5CAA229AE880B0/Annantalon_taidelauantai_Kuulento", "sv": "http://www.annantalo.fi/sv/evenemang/event/6A8FB88584E505C10A5CAA229AE880B0/Annegardens_konstlordag_Manfard", "en": "http://www.annantalo.fi/en/events/event/6A8FB88584E505C10A5CAA229AE880B0/Annantalo_Art_Saturday_Moon_Flight_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68677/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68474", "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: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: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:99/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385818, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-17T12:19:08.754863Z", "last_modified_time": "2026-08-17T12:19:08.754879Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789803.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385818/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-08-17T12:19:08.638419Z", "last_modified_time": "2026-08-24T11:23:03.538933Z", "date_published": null, "start_time": "2026-10-23T07: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, "location_extra_info": null, "provider": null, "name": { "fi": "Satu Tuittila & Co: Pienet ja tärkeät", "sv": "Satu Tuittila & Co: De små & viktiga", "en": "Satu Tuittila & Co: Small & Significant" }, "description": { "fi": "<p>Alakouluikäisille suunnattu tanssiesitys luonnolle ja ihmiskunnalle pienistä ja tärkeistä, mutta samalla niin suurista asioista!</p><p>Tanssiesityksessä tutustutaan kukkaniityn asukkien ihmeelliseen elämään ja esitys tarjoilee ohessa jännittävää tietoa luonnolle ja ihmiskunnalle tärkeistä pölyttäjähyönteisistä: mehiläisistä, kimalaisista, kukkakärpäsistä, perhosista ja kovakuoriaisista. Rohkaisemme ja innostamme omaan havainnointiin ja pienimuotoisiin luontoa tukeviin tekoihin lähiympäristössä.</p><p><i>Pienet ja tärkeät</i> yhdistää taiteellista työskentelyä ja tieteellistä tutkimusta sekä hyödyntää monipuolista tapaa katsoa ja kokea tanssia. Tanssin kautta voi lähestyä aihepiiriä vauhdikkaasti ja leikkisästi. Kokemuksellinen ja osallistava tietoiskumateriaali esityksen yhteydessä pyrkii välittämään tiedon ymmärrettävästi ja mieleen jäävällä tavalla.</p><p>Maailman villeistä kukkakasveista 90 % ja viljelykasveista 75 % on ainakin osittain pölyttäjistä riippuvaisia. Pölyttäjähyönteisten määrä on laskenut viime aikoina huolestuttavan nopeasti kaikkialla maailmassa. Elinympäristöjen tuhoutuminen, torjunta-aineiden käyttö, tehomaatalous ja kaupunkiluonnon köyhtyminen uhkaavat edelleen pölyttäjiä.</p><p>Konsepti ja koreografia: Satu Tuittila<br>Tanssijat: Jonna Aaltonen ja Ilona Salonen/Jenny Kallio, esiintyjä Satu Tuittila<br>Valosuunnittelu: Vespa Laine<br>Visuaalinen suunnittelu ja puvustus: Kirsi Vaara<br>Sävellys ja äänisuunnittelu: Mikko Väärälä<br>Tietoinfo ja työpajat: Satu Tuittila, Elli Herranen, tanssijat ja Katoava luonto <br>tutkimusryhmä.</p><p>Esityksen kesto n. 45–50 min.<br>Kieli: esitys on sanaton; juonnot pidetään yleisön kielitarpeiden mukaisesti</p><p>Hanketta tukevat Koneen säätiö, Läntinen tanssin aluekeskus, Suomen kulttuurirahasto, Turun Seikkailupuisto, TOP –säätiö, Vuokon Luonnonsuojelusäätiö, Kokko 1721 residenssi ja Svenska Kulturfonden.</p><p>Ilmainen ryhmille, https://kultus.hel.fi/fi</p>", "sv": "<p>En dansföreställning riktad till lågstadieelever om de små och viktiga, men samtidigt så stora, sakerna i naturen och mänskligheten!</p><p>I dansföreställningen får man en inblick i det häpnadsväckande livet för invånarna på blomsterängen, och föreställningen bjuder samtidigt på spännande fakta om de pollinerande insekterna som är så viktiga för naturen och mänskligheten: bin, humlor, blomflugor, fjärilar och skalbaggar. Vi uppmuntrar och inspirerar till egna iakttagelser och småskaliga gärningar som främjar naturen i närmiljön.</p><p><i>De små & viktiga</i> kombinerar konstnärligt skapande och vetenskaplig forskning samt utnyttjar ett mångsidigt sätt att se på och uppleva dans. Genom dansen kan man närma sig ämnet på ett fartfyllt och lekfullt sätt. Det upplevelsebaserade och interaktiva informationsmaterialet som presenteras i samband med föreställningen syftar till att förmedla informationen på ett begripligt och minnesvärt sätt.</p><p>90 procent av världens vilda blomväxter och 75 procent av odlingsväxterna är åtminstone delvis beroende av pollinerare. Antalet pollinerande insekter har på senare tid minskat i oroväckande snabb takt över hela världen. Förstörelsen av livsmiljöer, användningen av bekämpningsmedel, intensivt jordbruk och utarmningen av stadsnaturen utgör fortfarande ett hot mot pollinerarna.</p><p>Koncept och koreografi: Satu Tuittila <br>Dansare: Jonna Aaltonen och Ilona Salonen/Jenny Kallio, på scenen Satu Tuittila <br>Ljusdesign: Vespa Laine <br>Visuell design och kostymdesign: Kirsi Vaara <br>Tonsättning och ljuddesign: Mikko Väärälä <br>Information och verkstäder: Satu Tuittila, Elli Herranen, dansarna och forskargruppen <br>Katoava luonto.</p><p>Föreställningens längd är ca 45–50 minuter.</p><p>Språk: föreställningen är ordlös; mellanpratet anpassas efter publikens språkbehov</p><p>Projektet stöds av Konestiftelsen, Regionala danscentret i Västra Finland, Finska kulturfonden, Åbo äventyrspark, TOP-stiftelsen, Vuokon Luonnonsuojelusäätiö, Kokko 1721-residenset och Svenska Kulturfonden.</p>", "en": "<p>A dance performance for primary school children about things important to nature and humanity that are small and significant, but so big at the same time!</p><p>This dance performance delves into the marvellous lives of the inhabitants of a flower meadow, while also providing fascinating information about pollinating insects that are significant to nature and humanity: bees, bumblebees, hoverflies, butterflies and beetles. We encourage and inspire the audience to make their own observations and take small steps to support nature in their local area.</p><p><i>Small & Significant</i> combines artistic work with scientific research and draws on a multifaceted approach to viewing and experiencing dance. Dance provides a lively and playful way to approach the subject. The experiential and participatory information material accompanying the performance aims to convey information in a way that is easy to understand and memorable.</p><p>90% of the world’s wild flowering plants and 75% of cultivated plants are at least partly dependent on pollinators. The numbers of pollinating insects have been declining at an alarming rate all over the world in recent times. The destruction of habitats, the use of pesticides, intensive farming and biodiversity loss in urban nature continue to pose a threat to pollinators.</p><p>Concept and choreography: Satu Tuittila <br>Dancers: Jonna Aaltonen and Ilona Salonen/Jenny Kallio, performer Satu Tuittila <br>Lighting design: Vespa Laine <br>Visual design and costume design: Kirsi Vaara <br>Music and sound design: Mikko Väärälä <br>Information material and workshops: Satu Tuittila, Elli Herranen, the dancers and the Katoava luonto <br>research group.</p><p>Performance duration: roughly 45–50 min</p><p>Language: the performance is non-verbal; the event is hosted in accordance with the audience’s language needs</p><p>The project is supported by the Kone Foundation, the Regional Dance Centre of Western Finland, the Finnish Cultural Foundation, Turku Adventure Park, TOP Foundation, Vuokko Foundation for Nature Conservation, the Kokko1721 residence and Svenska Kulturfonden.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Alakouluikäisille suunnattu tanssiesitys luonnolle ja ihmiskunnalle pienistä ja tärkeistä, mutta samalla niin suurista asioista!", "sv": "En dansföreställning riktad till lågstadieelever om de små och viktiga, men samtidigt så stora, sakerna i naturen och mänskligheten!", "en": "A dance performance for primary school children about things important to nature and humanity that are small and significant, but so big at the same time!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/029CD32B9954C36F0BF84FFAD021F38F/Satu_Tuittila_Co_Pienet_ja_tarkeat", "sv": "http://www.annantalo.fi/sv/evenemang/event/029CD32B9954C36F0BF84FFAD021F38F/Satu_Tuittila_Co_De_sma_viktiga", "en": "http://www.annantalo.fi/en/events/event/029CD32B9954C36F0BF84FFAD021F38F/Satu_Tuittila_Co_Small_Significant" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68474/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68473", "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: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: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:99/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385817, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-17T12:19:08.242700Z", "last_modified_time": "2026-08-17T12:19:08.242716Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789802.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-08-17T12:19:08.100738Z", "last_modified_time": "2026-08-24T11:23:03.326560Z", "date_published": null, "start_time": "2026-10-23T06:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Satu Tuittila & Co: Pienet ja tärkeät", "sv": "Satu Tuittila & Co: De små & viktiga", "en": "Satu Tuittila & Co: Small & Significant" }, "description": { "fi": "<p>Alakouluikäisille suunnattu tanssiesitys luonnolle ja ihmiskunnalle pienistä ja tärkeistä, mutta samalla niin suurista asioista!</p><p>Tanssiesityksessä tutustutaan kukkaniityn asukkien ihmeelliseen elämään ja esitys tarjoilee ohessa jännittävää tietoa luonnolle ja ihmiskunnalle tärkeistä pölyttäjähyönteisistä: mehiläisistä, kimalaisista, kukkakärpäsistä, perhosista ja kovakuoriaisista. Rohkaisemme ja innostamme omaan havainnointiin ja pienimuotoisiin luontoa tukeviin tekoihin lähiympäristössä.</p><p><i>Pienet ja tärkeät</i> yhdistää taiteellista työskentelyä ja tieteellistä tutkimusta sekä hyödyntää monipuolista tapaa katsoa ja kokea tanssia. Tanssin kautta voi lähestyä aihepiiriä vauhdikkaasti ja leikkisästi. Kokemuksellinen ja osallistava tietoiskumateriaali esityksen yhteydessä pyrkii välittämään tiedon ymmärrettävästi ja mieleen jäävällä tavalla.</p><p>Maailman villeistä kukkakasveista 90 % ja viljelykasveista 75 % on ainakin osittain pölyttäjistä riippuvaisia. Pölyttäjähyönteisten määrä on laskenut viime aikoina huolestuttavan nopeasti kaikkialla maailmassa. Elinympäristöjen tuhoutuminen, torjunta-aineiden käyttö, tehomaatalous ja kaupunkiluonnon köyhtyminen uhkaavat edelleen pölyttäjiä.</p><p>Konsepti ja koreografia: Satu Tuittila<br>Tanssijat: Jonna Aaltonen ja Ilona Salonen/Jenny Kallio, esiintyjä Satu Tuittila<br>Valosuunnittelu: Vespa Laine<br>Visuaalinen suunnittelu ja puvustus: Kirsi Vaara<br>Sävellys ja äänisuunnittelu: Mikko Väärälä<br>Tietoinfo ja työpajat: Satu Tuittila, Elli Herranen, tanssijat ja Katoava luonto <br>tutkimusryhmä.</p><p>Esityksen kesto n. 45–50 min.<br>Kieli: esitys on sanaton; juonnot pidetään yleisön kielitarpeiden mukaisesti</p><p>Hanketta tukevat Koneen säätiö, Läntinen tanssin aluekeskus, Suomen kulttuurirahasto, Turun Seikkailupuisto, TOP –säätiö, Vuokon Luonnonsuojelusäätiö, Kokko 1721 residenssi ja Svenska Kulturfonden.</p><p>Ilmainen ryhmille, https://kultus.hel.fi/fi</p>", "sv": "<p>En dansföreställning riktad till lågstadieelever om de små och viktiga, men samtidigt så stora, sakerna i naturen och mänskligheten!</p><p>I dansföreställningen får man en inblick i det häpnadsväckande livet för invånarna på blomsterängen, och föreställningen bjuder samtidigt på spännande fakta om de pollinerande insekterna som är så viktiga för naturen och mänskligheten: bin, humlor, blomflugor, fjärilar och skalbaggar. Vi uppmuntrar och inspirerar till egna iakttagelser och småskaliga gärningar som främjar naturen i närmiljön.</p><p><i>De små & viktiga</i> kombinerar konstnärligt skapande och vetenskaplig forskning samt utnyttjar ett mångsidigt sätt att se på och uppleva dans. Genom dansen kan man närma sig ämnet på ett fartfyllt och lekfullt sätt. Det upplevelsebaserade och interaktiva informationsmaterialet som presenteras i samband med föreställningen syftar till att förmedla informationen på ett begripligt och minnesvärt sätt.</p><p>90 procent av världens vilda blomväxter och 75 procent av odlingsväxterna är åtminstone delvis beroende av pollinerare. Antalet pollinerande insekter har på senare tid minskat i oroväckande snabb takt över hela världen. Förstörelsen av livsmiljöer, användningen av bekämpningsmedel, intensivt jordbruk och utarmningen av stadsnaturen utgör fortfarande ett hot mot pollinerarna.</p><p>Koncept och koreografi: Satu Tuittila <br>Dansare: Jonna Aaltonen och Ilona Salonen/Jenny Kallio, på scenen Satu Tuittila <br>Ljusdesign: Vespa Laine <br>Visuell design och kostymdesign: Kirsi Vaara <br>Tonsättning och ljuddesign: Mikko Väärälä <br>Information och verkstäder: Satu Tuittila, Elli Herranen, dansarna och forskargruppen <br>Katoava luonto.</p><p>Föreställningens längd är ca 45–50 minuter.</p><p>Språk: föreställningen är ordlös; mellanpratet anpassas efter publikens språkbehov</p><p>Projektet stöds av Konestiftelsen, Regionala danscentret i Västra Finland, Finska kulturfonden, Åbo äventyrspark, TOP-stiftelsen, Vuokon Luonnonsuojelusäätiö, Kokko 1721-residenset och Svenska Kulturfonden.</p>", "en": "<p>A dance performance for primary school children about things important to nature and humanity that are small and significant, but so big at the same time!</p><p>This dance performance delves into the marvellous lives of the inhabitants of a flower meadow, while also providing fascinating information about pollinating insects that are significant to nature and humanity: bees, bumblebees, hoverflies, butterflies and beetles. We encourage and inspire the audience to make their own observations and take small steps to support nature in their local area.</p><p><i>Small & Significant</i> combines artistic work with scientific research and draws on a multifaceted approach to viewing and experiencing dance. Dance provides a lively and playful way to approach the subject. The experiential and participatory information material accompanying the performance aims to convey information in a way that is easy to understand and memorable.</p><p>90% of the world’s wild flowering plants and 75% of cultivated plants are at least partly dependent on pollinators. The numbers of pollinating insects have been declining at an alarming rate all over the world in recent times. The destruction of habitats, the use of pesticides, intensive farming and biodiversity loss in urban nature continue to pose a threat to pollinators.</p><p>Concept and choreography: Satu Tuittila <br>Dancers: Jonna Aaltonen and Ilona Salonen/Jenny Kallio, performer Satu Tuittila <br>Lighting design: Vespa Laine <br>Visual design and costume design: Kirsi Vaara <br>Music and sound design: Mikko Väärälä <br>Information material and workshops: Satu Tuittila, Elli Herranen, the dancers and the Katoava luonto <br>research group.</p><p>Performance duration: roughly 45–50 min</p><p>Language: the performance is non-verbal; the event is hosted in accordance with the audience’s language needs</p><p>The project is supported by the Kone Foundation, the Regional Dance Centre of Western Finland, the Finnish Cultural Foundation, Turku Adventure Park, TOP Foundation, Vuokko Foundation for Nature Conservation, the Kokko1721 residence and Svenska Kulturfonden.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Alakouluikäisille suunnattu tanssiesitys luonnolle ja ihmiskunnalle pienistä ja tärkeistä, mutta samalla niin suurista asioista!", "sv": "En dansföreställning riktad till lågstadieelever om de små och viktiga, men samtidigt så stora, sakerna i naturen och mänskligheten!", "en": "A dance performance for primary school children about things important to nature and humanity that are small and significant, but so big at the same time!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A72DB1539AE0760B18E8343D096002CA/Satu_Tuittila_Co_Pienet_ja_tarkeat", "sv": "http://www.annantalo.fi/sv/evenemang/event/A72DB1539AE0760B18E8343D096002CA/Satu_Tuittila_Co_De_sma_viktiga", "en": "http://www.annantalo.fi/en/events/event/A72DB1539AE0760B18E8343D096002CA/Satu_Tuittila_Co_Small_Significant" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68473/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68472", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "6€", "sv": "6€", "en": "6€" }, "info_url": { "fi": "https://www.lippu.fi/event/annantalo-satu-tuittila-co-pienet-ja-tarkeat-annantalo-22020044/", "sv": "https://www.lippu.fi/event/annantalo-satu-tuittila-co-pienet-ja-tarkeat-annantalo-22020044/", "en": "https://www.lippu.fi/event/annantalo-satu-tuittila-co-pienet-ja-tarkeat-annantalo-22020044/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385799, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-14T07:23:34.918735Z", "last_modified_time": "2026-08-14T07:23:34.918752Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789800.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385799/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-08-14T07:23:34.751036Z", "last_modified_time": "2026-08-24T11:23:03.020227Z", "date_published": null, "start_time": "2026-10-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, "location_extra_info": null, "provider": null, "name": { "fi": "Satu Tuittila & Co: Pienet ja tärkeät", "sv": "Satu Tuittila & Co: De små & viktiga", "en": "Satu Tuittila & Co: Small & Significant" }, "description": { "fi": "<p>Alakouluikäisille suunnattu tanssiesitys luonnolle ja ihmiskunnalle pienistä ja tärkeistä, mutta samalla niin suurista asioista!</p><p>Tanssiesityksessä tutustutaan kukkaniityn asukkien ihmeelliseen elämään ja esitys tarjoilee ohessa jännittävää tietoa luonnolle ja ihmiskunnalle tärkeistä pölyttäjähyönteisistä: mehiläisistä, kimalaisista, kukkakärpäsistä, perhosista ja kovakuoriaisista. Rohkaisemme ja innostamme omaan havainnointiin ja pienimuotoisiin luontoa tukeviin tekoihin lähiympäristössä.</p><p><i>Pienet ja tärkeät</i> yhdistää taiteellista työskentelyä ja tieteellistä tutkimusta sekä hyödyntää monipuolista tapaa katsoa ja kokea tanssia. Tanssin kautta voi lähestyä aihepiiriä vauhdikkaasti ja leikkisästi. Kokemuksellinen ja osallistava tietoiskumateriaali esityksen yhteydessä pyrkii välittämään tiedon ymmärrettävästi ja mieleen jäävällä tavalla.</p><p>Maailman villeistä kukkakasveista 90 % ja viljelykasveista 75 % on ainakin osittain pölyttäjistä riippuvaisia. Pölyttäjähyönteisten määrä on laskenut viime aikoina huolestuttavan nopeasti kaikkialla maailmassa. Elinympäristöjen tuhoutuminen, torjunta-aineiden käyttö, tehomaatalous ja kaupunkiluonnon köyhtyminen uhkaavat edelleen pölyttäjiä.</p><p>Konsepti ja koreografia: Satu Tuittila<br>Tanssijat: Jonna Aaltonen ja Ilona Salonen/Jenny Kallio, esiintyjä Satu Tuittila<br>Valosuunnittelu: Vespa Laine<br>Visuaalinen suunnittelu ja puvustus: Kirsi Vaara<br>Sävellys ja äänisuunnittelu: Mikko Väärälä<br>Tietoinfo ja työpajat: Satu Tuittila, Elli Herranen, tanssijat ja Katoava luonto <br>tutkimusryhmä.</p><p>Esityksen kesto n. 45–50 min.<br>Kieli: esitys on sanaton; juonnot pidetään yleisön kielitarpeiden mukaisesti</p><p>Hanketta tukevat Koneen säätiö, Läntinen tanssin aluekeskus, Suomen kulttuurirahasto, Turun Seikkailupuisto, TOP –säätiö, Vuokon Luonnonsuojelusäätiö, Kokko 1721 residenssi ja Svenska Kulturfonden.</p>", "sv": "<p>En dansföreställning riktad till lågstadieelever om de små och viktiga, men samtidigt så stora, sakerna i naturen och mänskligheten!</p><p>I dansföreställningen får man en inblick i det häpnadsväckande livet för invånarna på blomsterängen, och föreställningen bjuder samtidigt på spännande fakta om de pollinerande insekterna som är så viktiga för naturen och mänskligheten: bin, humlor, blomflugor, fjärilar och skalbaggar. Vi uppmuntrar och inspirerar till egna iakttagelser och småskaliga gärningar som främjar naturen i närmiljön.</p><p><i>De små & viktiga</i> kombinerar konstnärligt skapande och vetenskaplig forskning samt utnyttjar ett mångsidigt sätt att se på och uppleva dans. Genom dansen kan man närma sig ämnet på ett fartfyllt och lekfullt sätt. Det upplevelsebaserade och interaktiva informationsmaterialet som presenteras i samband med föreställningen syftar till att förmedla informationen på ett begripligt och minnesvärt sätt.</p><p>90 procent av världens vilda blomväxter och 75 procent av odlingsväxterna är åtminstone delvis beroende av pollinerare. Antalet pollinerande insekter har på senare tid minskat i oroväckande snabb takt över hela världen. Förstörelsen av livsmiljöer, användningen av bekämpningsmedel, intensivt jordbruk och utarmningen av stadsnaturen utgör fortfarande ett hot mot pollinerarna.</p><p>Koncept och koreografi: Satu Tuittila</p><p>Dansare: Jonna Aaltonen och Ilona Salonen/Jenny Kallio, på scenen Satu Tuittila</p><p>Ljusdesign: Vespa Laine <br>Visuell design och kostymdesign: Kirsi Vaara <br>Tonsättning och ljuddesign: Mikko Väärälä <br>Information och verkstäder: Satu Tuittila, Elli Herranen, dansarna och forskargruppen <br>Katoava luonto.</p><p>Föreställningens längd är ca 45–50 minuter.</p><p>Språk: föreställningen är ordlös; mellanpratet anpassas efter publikens språkbehov</p><p>Projektet stöds av Konestiftelsen, Regionala danscentret i Västra Finland, Finska kulturfonden, Åbo äventyrspark, TOP-stiftelsen, Vuokon Luonnonsuojelusäätiö, Kokko 1721-residenset och Svenska Kulturfonden.</p>", "en": "<p>A dance performance for primary school children about things important to nature and humanity that are small and significant, but so big at the same time!</p><p>This dance performance delves into the marvellous lives of the inhabitants of a flower meadow, while also providing fascinating information about pollinating insects that are significant to nature and humanity: bees, bumblebees, hoverflies, butterflies and beetles. We encourage and inspire the audience to make their own observations and take small steps to support nature in their local area.</p><p><i>Small & Significant</i> combines artistic work with scientific research and draws on a multifaceted approach to viewing and experiencing dance. Dance provides a lively and playful way to approach the subject. The experiential and participatory information material accompanying the performance aims to convey information in a way that is easy to understand and memorable.</p><p>90% of the world’s wild flowering plants and 75% of cultivated plants are at least partly dependent on pollinators. The numbers of pollinating insects have been declining at an alarming rate all over the world in recent times. The destruction of habitats, the use of pesticides, intensive farming and biodiversity loss in urban nature continue to pose a threat to pollinators.</p><p>Concept and choreography: Satu Tuittila <br>Dancers: Jonna Aaltonen and Ilona Salonen/Jenny Kallio, performer Satu Tuittila <br>Lighting design: Vespa Laine <br>Visual design and costume design: Kirsi Vaara <br>Music and sound design: Mikko Väärälä <br>Information material and workshops: Satu Tuittila, Elli Herranen, the dancers and the Katoava luonto <br>research group.</p><p>Performance duration: roughly 45–50 min</p><p>Language: the performance is non-verbal; the event is hosted in accordance with the audience’s language needs</p><p>The project is supported by the Kone Foundation, the Regional Dance Centre of Western Finland, the Finnish Cultural Foundation, Turku Adventure Park, TOP Foundation, Vuokko Foundation for Nature Conservation, the Kokko1721 residence and Svenska Kulturfonden.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Alakouluikäisille suunnattu tanssiesitys luonnolle ja ihmiskunnalle pienistä ja tärkeistä, mutta samalla niin suurista asioista!", "sv": "En dansföreställning riktad till lågstadieelever om de små och viktiga, men samtidigt så stora, sakerna i naturen och mänskligheten!", "en": "A dance performance for primary school children about things important to nature and humanity that are small and significant, but so big at the same time!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D733DE9DBC83F952952C0A605C95C30E/Satu_Tuittila_Co_Pienet_ja_tarkeat", "sv": "http://www.annantalo.fi/sv/evenemang/event/D733DE9DBC83F952952C0A605C95C30E/Satu_Tuittila_Co_De_sma_viktiga", "en": "http://www.annantalo.fi/en/events/event/D733DE9DBC83F952952C0A605C95C30E/Satu_Tuittila_Co_Small_Significant_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68472/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68994", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385322, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-24T08:13:48.794187Z", "last_modified_time": "2026-06-24T08:13:48.794200Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792390.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385322/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-24T08:13:48.690471Z", "last_modified_time": "2026-08-24T11:23:01.362105Z", "date_published": null, "start_time": "2026-10-17T11:00:00Z", "end_time": "2026-10-17T11:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Teatteri Rollo: Melkein Supersankarit – Tarina ihan tavallisista sankareista", "sv": "Teatteri Rollo: Melkein Supersankarit – En berättelse om helt vanliga hjältar", "en": "Teatteri Rollo: Melkein Supersankarit – A story about ordinary heroes" }, "description": { "fi": "<p>Eläkepäiviä odotteleva supersankari Siinior Suurihehku Bos saa yllättäen avunpyynnön: tarvitaan supersankari kiireelliseen tehtävään.</p><p>Ikävä kyllä Batman, Teräsmies, Spiderman ja muut tunnetut sankarit ovat kiinni omissa tehtävissään. Niinpä Bos kutsuu apuun melkein supersankarit – uraansa aloittelevat Kapteeni Murskaajaäijämies Mänin ja Telekinotor Boin.</p><p>Tarvitaanko sankaruuteen yliluonnollisia voimia, vai syntyykö todellinen sankaruus yhteistyöstä ja ystävyydestä?</p><p>Ohjaus: Sanna Monto<br>Käsikirjoitus: työryhmä<br>Esiintyjät: Visa Heinonen (Telekinotor Boi), Janne Immonen (Siinior Suurihehku Bos), Iiro Ristola (Kapteeni Murskaajaäijämies Män)<br>Musiikki: Janne Immonen<br>Laulujen sanat: Visa Heinonen<br>Puvustus: Niina Huovinen<br>Valot: Pasi Pehkonen<br>Tekniikka: Juha Skukin<br>Kuvat: Nanna Saarhelo<br>Graafinen suunnittelu: Juha Räty</p><p>Ikäsuositus: 3 +<br>Kesto: noin 40 min<br>Kieli: suomi</p><p>Liput: 10 €, tai vähintään 4 hengen perhelippu 8 € / henkilö. Lippuvaraukset sähköpostitse osoitteeseen rollo@rollo.fi, tai puoli tuntia ennen esitystä salin ovelta.</p>", "sv": "<p>Superhjälten Siinior Suurihehku Bos, som väntar på sin pension, får plötsligt en begäran om hjälp: det behövs en superhjälte för ett brådskande uppdrag.</p><p>Tyvärr är Batman, Stålmannen, Spiderman och alla andra kända hjältar upptagna med sina egna uppdrag. Därför kallar Bos in nästan superhjältar till undsättning – Kapteeni Murskaajaäijämies Män och Telekinotor Boi som just har inlett sina karriärer. <br> <br>Behöver man övernaturliga krafter för att vara en hjälte, eller uppstår äkta hjältemod genom samarbete och vänskap?</p><p>Regi: Sanna Monto <br>Manus: arbetsgrupp <br>På scenen: Visa Heinonen (Telekinotor Boi), Janne Immonen (Siinior Suurihehku Bos), Iiro Ristola (Kapteeni Murskaajaäijämies Män) <br>Musik: Janne Immonen <br>Sångtexter: Visa Heinonen <br>Kostymer: Niina Huovinen <br>Belysning: Pasi Pehkonen <br>Teknik: Juha Skukin <br>Bilder: Nanna Saarhelo <br>Grafisk design: Juha Räty <br> <br>Åldersrekommendation: 3+ <br>Längd: ca 40 min. <br>Språk: finska</p><p>Biljetter: 10 €, eller familjebiljett för minst 4 personer: 8 €/person. Biljettbokningar per e-post till adressen rollo@rollo.fi, eller en halvtimme före föreställningen vid ingången till salen.</p>", "en": "<p>Siinior Suurihehku Bos, a superhero looking forward to retirement, unexpectedly receives a call for help: a superhero is needed for an urgent mission.</p><p>Unfortunately, Batman, Superman, Spider-Man and other well-known heroes are busy with their own missions. As a backup plan, Bos calls in helpers who are almost superheroes – Kapteeni Murskaajaäijämies Män and Telekinotor Boi, two upstarts at the beginning of their careers. <br> <br>Do you need supernatural powers to be a hero, or does true heroism come from teamwork and friendship?</p><p>Direction: Sanna Monto <br>Script: the creative team <br>Performers: Visa Heinonen (Telekinotor Boi), Janne Immonen (Siinior Suurihehku Bos), Iiro Ristola (Kapteeni Murskaajaäijämies Män) <br>Music: Janne Immonen <br>Song lyrics: Visa Heinonen <br>Costume design: Niina Huovinen <br>Lighting: Pasi Pehkonen <br>Tech: Juha Skukin <br>Images: Nanna Saarhelo <br>Graphic design: Juha Räty <br> <br>Recommended age: 3+ <br>Duration: roughly 40 min <br>Language: Finnish</p><p>Tickets: €10, or a family ticket for at least four people at €8/person. You can reserve a ticket by emailing rollo@rollo.fi, or at the hall entrance half an hour before the performance.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Eläkepäiviä odotteleva supersankari Siinior Suurihehku Bos saa yllättäen avunpyynnön: tarvitaan supersankari kiireelliseen tehtävään.", "sv": "Superhjälten Siinior Suurihehku Bos, som väntar på sin pension, får plötsligt en begäran om hjälp: det behövs en superhjälte för ett brådskande uppdrag.", "en": "Siinior Suurihehku Bos, a superhero looking forward to retirement, unexpectedly receives a call for help: a superhero is needed for an urgent mission." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/70EFB9C0E673F4E51488E82C27B78D4F/Teatteri_Rollo_Melkein_Supersankarit", "sv": "http://www.annantalo.fi/sv/evenemang/event/70EFB9C0E673F4E51488E82C27B78D4F/Teatteri_Rollo_Melkein_Supersankarit", "en": "http://www.annantalo.fi/en/events/event/70EFB9C0E673F4E51488E82C27B78D4F/Teatteri_Rollo_Melkein_Supersankarit" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68994/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69696", "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:351/?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:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/olema-nykysirkusesitys-4182233/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/olema-nykysirkusesitys-4182233/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/olema-nykysirkusesitys-4182233/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385790, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-13T10:15:48.499271Z", "last_modified_time": "2026-08-13T10:15:48.499286Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794265.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385790/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-13T10:15:48.274964Z", "last_modified_time": "2026-08-24T11:22:39.642894Z", "date_published": null, "start_time": "2026-08-25T16:00:00Z", "end_time": "2026-08-25T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "OLEMA | Ensi-ilta", "sv": "OLEMA", "en": "OLEMA" }, "description": { "fi": "<p>OLEMA on nykysirkusnäyttämöteos, joka tutkii ja tunnustelee ihmiskeskeisyyden purkamista ja yhteyden kokemista.</p><p>Teos pohjautuu tarinaan sukupuuttoon kuolleesta linnusta, jonka yksin jäänyt laulu päättyy hiljaisuuteen. Näyttämöllä akrobatia, tanssi, musiikki ja visuaalisuus kietoutuvat yhteen. Esitys kysyy, mitä menetysten jälkeen jää jäljelle ja voiko kadonnut silti näkyä kehossa, äänessä ja liikkeessä. <br> <br> ***<br> <br>Sirkus tarjoaa esityksen teemojen tutkimukselle ainutlaatuisen kontekstin: sen historia on kietoutunut ihmisen ja muunlajisten rajapintoihin; käärmenaisiin, pedonkesyttäjiin ja kehollisen epäinhimillistämisen perintöihin. <br> <br>Teoksen dramaturginen ydin kasvaa kauainkiharapyrstön sukupuuttotarinasta. Lintulajin viimeinen koiras jäi laulamaan yksin dueton puolikasta viimeisen naaraan kadottua hurrikaani Iwan mukana vuonna 1982. Esityksessä kuultavalla Cornellin yliopiston vuoden 1987 nauhoituksella lauluun avautuu yhä pidempiä hiljaisuuksia – paikkoja toiselle äänelle, joka ei enää vastaa.<br> <br>Näyttämöllä sirkustaiteilijat liikkuvat akrobatian, tanssin, tasapainoilun ja muunlajiseksi kurottavan kehollisuuden rajapinnoilla. Elektroakustinen musiikki tuo kuuluviin elämän sykkeen ja sukupuuton lopullisuuden. Pukusuunnittelijan työ tuo teokseen liikettä vasten asettuvia pintoja: kitkaa ja liukua, kiiltoa ja sameutta, olentojen ääriä. Valo- ja lavastussuunnittelija loihtii näyttämölle sisäisyydestä kumpuavan maailman, jossa muodot, liike, heijastukset, harhat ja materiat varjoineen ovat omia hahmojaan esityksen kudelmassa.<br> <br>Monitaiteelliset elementit kietoutuvat näyttämöllä yhteen kysymykseksi siitä, mitä menetyksistä jää jäljelle, ja voiko peruuttamattomasti loppunutta kantaa elävässä kehossa, katseessa, äänessä ja liikkeessä?<br> <br> <br>Työryhmä:<br>Felicia Hedman, Ella Jaakkola, Riina Leea Nieminen, Aino Savolainen, Saana Volanen<br>Esiintyjät: Felicia Hedman, Ella Jaakkola, Aino Savolainen<br>Ohjaus ja dramaturgia: Felicia Hedman, Ella Jaakkola, Riina Leea Nieminen, Aino Savolainen, Saana Volanen<br>Nykysirkuskoreografia: Felicia Hedman, Aino Savolainen<br>Sävellys, musiikki ja äänisuunnittelu: Ella Jaakkola<br>Valosuunnittelu ja lavastus: Saana Volanen<br>Pukusuunnittelu: Riina Leea Nieminen<br>Materiaalitutkimus: Jenni Räsänen<br>Lavastuksen valmistus: Bea Tornberg, Saana Volanen<br>Pukujen valmistus: Jenni Räsänen, Riina Leea Nieminen<br>Taiteellinen tuki: Henna Kaikula, Anni Koskinen<br>Maskeerauskonsultaatio: Riikka Virtanen<br>Esityskuvat: Venla Helenius<br>Koollekutsujat: Ghia Lumia, Aino Savolainen<br>Taiteellinen esityö ja tuotanto: Ella Jaakkola, Ghia Lumia, Aino Savolainen<br>Markkinointi: Aino Savolainen</p><p>Tukijat: Koneen Säätiö, Taike (Taiteen edistämiskeskus), SKR (Suomen Kulttuurirahasto), Kulttuurikeskus Caisa, Cirko – Uuden sirkuksen keskus, CircusNext, La Grainerie, Subtopia, Soiva Metsä -festivaali, Tanssiteatteri Hurjaruuth, R.E.D. Arena Norway</p><p>Kiitokset: Stella Kanto, András Nádasi, Rasmus Strandell</p><p>Esityskieli: esitys ei sisällä puhetta <br>Ikäsuositus: 14-v. + <br>Esityksen kesto: 60 min</p>", "sv": "<p>Poesikonferensen är ett seminarieliknande evenemang för poeter, författare, litteraturforskare och alla som är intresserade av poetiska frågor.</p><p>Konferensen är öppen för alla och en fortsättning på traditionen från Helsingfors poetikkonferens, som grundades för 20 år sedan som ett parallellarrangemang till Runokuu och som ordnades i olika former och många olika sammanhang under åren 2005–2012. Syftet med poesikonferensen är att upprätthålla en dialog mellan forskare, poeter, konstnärer från andra områden och publiken. Publiken uppmuntras att diskutera inte bara med föreläsarna utan också med varandra.</p><p>Talare på konferensen är <b>Jonis Hartman, A. V. Marraccini, Merima Dizdarević, Antti Salminen</b> och <b>Berta García Faet</b>. <br> <br> <br>Diskussionens språk: engelska och finska</p><p><u><a href=\"https://runokuu.fi/\">Läs mer om festivalen och programmet (sidan finns på finska och engelska)</u></a>.</p><p>OLEMA <br>OLEMA är en samtida cirkusföreställning som utforskar och undersöker nedmonteringen av antropocentrismen och upplevelsen av gemenskap.</p><p>Verket bygger på en berättelse om en utdöd fågel, vars ensamma sång tystnar. På scenen flätas akrobatik, dans, musik och scenografi samman. Föreställningen ställer frågan om vad som återstår efter förlusterna och om det förlorade ändå kan synas i kroppen, rösten och rörelserna.</p><p>Cirkusen erbjuder en unik kontext för att utforska föreställningens teman: dess historia är sammanslingrad med gränssnittet mellan människan och övriga arter; ormmänniskor, djurtämjare och arvet efter kroppslig dehumanisering.</p><p>Verkets dramaturgiska kärna växer fram ur berättelsen om utrotningen av kauai-oon. Den sista hanen av arten blev ensam kvar och sjöng sin halva av duetten efter att den sista honan försvann i samband med orkanen Iwan 1982. I en inspelning från Cornell University från 1987 som spelas upp i föreställningen uppstår allt längre tystnader i sången – pauser för en annan röst som inte längre svarar.</p><p>På scenen rör sig cirkusartisterna i gränslandet mellan akrobatik, dans och balanskonst samt kroppslighet som leker med uttryckskraften hos andra arter. Den elektroakustiska musiken som kompositören och musikern Ella Jaakkola framför på scenen ger uttryck för livets puls och utrotningens oåterkallelighet. Kostymdesignern arbete tillför verket ytor som står i kontrast till rörelsen: friktion och glidning, glans och grumlighet, varelsernas ytterligheter. På scenen skapar ljusdesign och scenografi en värld som växer fram inifrån, där former, rörelser, reflektioner, illusioner och material med sina skuggor utgör egna karaktärer i föreställningens väv.</p><p>De tvärkonstnärliga elementen vävs samman på scenen till en enda fråga: Vad återstår av förlusterna, och kan det som oåterkalleligt har upphört att existera fortleva i den levande kroppen, blicken, rösten och rörelsen?</p><p>Föreställningens språk: föreställningen innehåller inget tal<br>Åldersrekommendation: 14 år och äldre<br>Föreställningens längd: 60 min.</p>", "en": "<p>OLEMA is a contemporary circus performance exploring and attuning itself to the experience of connection and the undoing of anthropocentrism.</p><p>The piece takes its inspiration from the story of an extinct bird, whose solitary song ends in silence. On the stage, acrobatics, dance, music and visual art meld together. The performance asks, what is left after a loss, and if what has been lost can still be found in the body, voice, and movement. <br> <br> ** <br> <br>Circus offers a singular context for this inquiry: its history is entwined with the thresholds between the human and the more-than-human – from the serpent-like contortionists (käärmeihminen, ‘snake-human’ in Finnish), to beast tamers, and legacies of bodily dehumanisation. <br> <br>The dramaturgical core of the work grows from the extinction story of the Kauaʻi ʻōʻō bird species. The last male of the species continued to sing its duet-form mating call even after the last female had disappeared in a hurricane in 1982. In the 1987 recording by the Cornell Lab of Ornithology, heard during the performance, ever-lengthening silences open within the song – spaces for another voice to enter, a voice that no longer answers. <br> <br>On stage, the circus artists move at the thresholds of acrobatics, dance, balance, and a corporeality that reaches toward the more-than-human. The electroacoustic music brings forth the pulse of the living and the finality of extinction. The work of costume designer introduces surfaces that meet and resist movement: friction and glide, gloss and opacity, the edges of beings. Lighting and set design conjures a stage world in which the forms, movements, reflections, illusions, materials, and shadows of the surrounding world become figures in their own right within the weave of the performance. <br> <br>The multidisciplinary elements intertwine on stage into a question: what remains after loss, and can that which has irreversibly ended be carried in a living body, gaze, voice, and movement? <br> <br> Working group:<br>Felicia Hedman, Ella Jaakkola, Riina Leea Nieminen, Aino Savolainen, Saana Volanen</p><p>Performers: Felicia Hedman, Ella Jaakkola, Aino Savolainen<br>Direction and dramaturgy: Felicia Hedman, Ella Jaakkola, Riina Leea Nieminen, Aino Savolainen, Saana Volanen<br>Contemporary circus choreography: Felicia Hedman, Aino Savolainen<br>Composition, music and sound design: Ella Jaakkola<br>Lighting design and scenography: Saana Volanen<br>Costume design: Riina Leea Nieminen<br>Material research: Jenni Räsänen</p><p>Execution of set: Bea Tornberg, Saana Volanen<br>Costume making: Jenni Räsänen, Riina Leea Nieminen<br>Artistic support: Henna Kaikula, Anni Koskinen<br>Make up consultation: Riikka Virtanen<br>Photography of performance: Venla Helenius</p><p>Conveners: Ghia Lumia, Aino Savolainen<br>Artistic development and production: Ella Jaakkola, Ghia Lumia, Aino Savolainen<br>Marketing: Aino Savolainen</p><p>In support: Kone Foundation, Arts Promotion Centre Finland (Taike), Finnish Cultural Foundation (SKR), Cultural Centre Caisa, CircusNext, La Grainerie, Cirko – Center for New Circus, Subtopia, Dance Theatre Hurjaruuth, Soiva Metsä Festival, R.E.D. Arena Norway<br>Special thanks: Stella Kanto, András Nádasi, Rasmus Strandell</p><p>Performance language: wordless; non-language-specific <br>Age recommendation: 14 years old and up <br>Performance duration: 60 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "OLEMA on nykysirkusnäyttämöteos, joka tutkii ja tunnustelee ihmiskeskeisyyden purkamista ja yhteyden kokemista.", "sv": "Poesikonferensen är ett seminarieliknande evenemang för poeter, författare, litteraturforskare och alla som är intresserade av poetiska frågor.", "en": "OLEMA is a contemporary circus performance exploring and attuning itself to the experience of connection and the undoing of anthropocentrism." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/02EFFE10CFB5538AA1A760EAA14C0B6C/OLEMA_Ensi-ilta", "sv": "http://www.caisa.fi/sv/evenemang/event/02EFFE10CFB5538AA1A760EAA14C0B6C/OLEMA", "en": "http://www.caisa.fi/en/events/event/02EFFE10CFB5538AA1A760EAA14C0B6C/OLEMA" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69696/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplc7ufge", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T11:36:24.803466Z", "last_modified_time": "2026-08-24T10:50:06.605379Z", "date_published": null, "start_time": "2026-09-26T07:30:00Z", "end_time": "2026-09-26T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider": null, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 26.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 26.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 26.9, 17.10, 21.11 & 19.12.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ufge/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplc7uerq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T11:36:24.936708Z", "last_modified_time": "2026-08-24T10:50:06.559322Z", "date_published": null, "start_time": "2026-10-17T07:30:00Z", "end_time": "2026-10-17T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider": null, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 26.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 26.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 26.9, 17.10, 21.11 & 19.12.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7uerq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplc7udru", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T11:36:25.074153Z", "last_modified_time": "2026-08-24T10:50:06.502567Z", "date_published": null, "start_time": "2026-12-19T08:30:00Z", "end_time": "2026-12-19T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider": null, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 26.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 26.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 26.9, 17.10, 21.11 & 19.12.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7udru/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplxe5x34", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-12T10:53:25.178677Z", "last_modified_time": "2026-08-24T10:50:06.449064Z", "date_published": null, "start_time": "2026-11-21T08:30:00Z", "end_time": "2026-11-21T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider": null, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 26.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 26.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 26.9, 17.10, 21.11 & 19.12.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5x34/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68504", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385816, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-17T11:14:52.527572Z", "last_modified_time": "2026-08-17T11:14:52.527587Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790031.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385816/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-17T11:14:52.424662Z", "last_modified_time": "2026-08-24T10:23:03.325619Z", "date_published": null, "start_time": "2026-10-07T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Teatteri QO: Susi pöksyssä", "sv": "Teatteri QO: Susi pöksyssä", "en": "Teatteri QO: Susi pöksyssä" }, "description": { "fi": "<p>Susi pöksyssä on leikkisä nukketeatteriesitys, jossa yhteiskunnalliset ja filosofiset kysymykset ovat lasten asia!</p><p><i>Koko metsä ja sen asukkaat elävät pelossa joutua seuraavana suden syömäksi. Mutta kun susi laskeutuu kallioltaan, mikään metsässä ei ole enää ennallaan… </i></p><p>Susi pöksyssä on esineteatteria, nukketeatteria ja tarinankerrontaa yhdistelevä, herkullisen visuaalinen ja hykerryttävän hassunkurinen faabeli koko perheelle.</p><p>Kesto: 35 min<br>Kieli: suomi<br>Ikäsuositus: 6 +</p><p>Käsikirjoitus: Mila Nirhamo, Perrine Ferrafiat <br>Lavastus ja nuket: Anna Uschanov <br>Näyttämöllä: Sirpa Järvenpää, Perrine Ferrafiat<br>Äänisuunnittelu: Perrine Ferrafiat <br>Valosuunnittelu: Sisu Nojonen</p><p>Alkuperäisteos: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz <br>Kuvat: Jussi Virkkumaa <br>Tuotanto: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p><p>maksuton ryhmille, https://kultus.hel.fi/fi</p>", "sv": "<p>Susi pöksyssä är en lekfull dockteaterföreställning där samhällsfrågor och filosofiska frågor är något som berör barnen!</p><p><i>Hela skogen och dess invånare lever i rädsla för att bli nästa offer för vargen. Men när vargen hoppar ner från sin klippa är ingenting i skogen längre som förut… </i></p><p>Susi Pöksyssä är en fabel för hela familjen som kombinerar objektteater, dockteater och berättarkonst till en läckert visuell och tokrolig berättelse.</p><p>Längd: 35 min. <br>Språk: finska <br>Åldersrekommendation: 6+</p><p>Manus: Mila Nirhamo, Perrine Ferrafiat <br>Scenografi och dockor: Anna Uschanov <br>På scenen: Sirpa Järvenpää, Perrine Ferrafiat <br>Ljuddesign: Perrine Ferrafiat <br>Ljusdesign: Sisu Nojonen <br> <br>Ursprungligt verk: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz <br>Bilder: Jussi Virkkumaa <br>Produktion: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p>", "en": "<p>Susi pöksyssä is a playful puppet theatre performance where societal and philosophical questions are children's business!</p><p><i>Everyone in the forest lives in fear of the local wolf. But when the wolf comes down from its rock, he is not quite as expected…</i></p><p>Susi pöksyssä combines object theatre, puppet theatre and storytelling into a deliciously visual and chucklingly silly fable for the whole family.</p><p>Duration: 35 minutes<br>Language: Finnish<br>Age recommendation: 6 +</p><p>Script: Mila Nirhamo, Perrine Ferrafiat<br>Staging and puppets: Anna Uschanov<br>On stage: Sirpa Järvenpää, Perrine Ferrafiat<br>Sound design: Perrine Ferrafiat<br>Light design: Sisu Nojonen</p><p>Original work: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz<br>Photos: Jussi Virkkumaa<br>Production: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p>" }, "provider_contact_info": null, "short_description": { "fi": "Susi pöksyssä on leikkisä nukketeatteriesitys, jossa yhteiskunnalliset ja filosofiset kysymykset ovat lasten asia!", "sv": "Susi pöksyssä är en lekfull dockteaterföreställning där samhällsfrågor och filosofiska frågor är något som berör barnen!", "en": "Susi pöksyssä is a playful puppet theatre performance where societal and philosophical questions are children's business!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E2ADA559BD96A23B9D0B2FF21BD82618/Teatteri_QO_Susi_poksyssa", "sv": "http://www.annantalo.fi/sv/evenemang/event/E2ADA559BD96A23B9D0B2FF21BD82618/Teatteri_QO_Susi_poksyssa", "en": "http://www.annantalo.fi/en/events/event/E2ADA559BD96A23B9D0B2FF21BD82618/Teatteri_QO_Susi_poksyssa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68504/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68503", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385815, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-17T11:14:52.182533Z", "last_modified_time": "2026-08-17T11:14:52.182548Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790029.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385815/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-17T11:14:52.088363Z", "last_modified_time": "2026-08-24T10:23:02.738283Z", "date_published": null, "start_time": "2026-10-06T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Teatteri QO: Susi pöksyssä", "sv": "Teatteri QO: Susi pöksyssä", "en": "Teatteri QO: Susi pöksyssä" }, "description": { "fi": "<p>Susi pöksyssä on leikkisä nukketeatteriesitys, jossa yhteiskunnalliset ja filosofiset kysymykset ovat lasten asia!</p><p><i>Koko metsä ja sen asukkaat elävät pelossa joutua seuraavana suden syömäksi. Mutta kun susi laskeutuu kallioltaan, mikään metsässä ei ole enää ennallaan… </i></p><p>Susi pöksyssä on esineteatteria, nukketeatteria ja tarinankerrontaa yhdistelevä, herkullisen visuaalinen ja hykerryttävän hassunkurinen faabeli koko perheelle.</p><p>Kesto: 35 min<br>Kieli: suomi<br>Ikäsuositus: 6 +</p><p>Käsikirjoitus: Mila Nirhamo, Perrine Ferrafiat <br>Lavastus ja nuket: Anna Uschanov <br>Näyttämöllä: Sirpa Järvenpää, Perrine Ferrafiat<br>Äänisuunnittelu: Perrine Ferrafiat <br>Valosuunnittelu: Sisu Nojonen</p><p>Alkuperäisteos: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz <br>Kuvat: Jussi Virkkumaa <br>Tuotanto: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p><p>maksuton ryhmille, https://kultus.hel.fi/fi</p>", "sv": "<p>Susi pöksyssä är en lekfull dockteaterföreställning där samhällsfrågor och filosofiska frågor är något som berör barnen!</p><p><i>Hela skogen och dess invånare lever i rädsla för att bli nästa offer för vargen. Men när vargen hoppar ner från sin klippa är ingenting i skogen längre som förut… </i></p><p>Susi Pöksyssä är en fabel för hela familjen som kombinerar objektteater, dockteater och berättarkonst till en läckert visuell och tokrolig berättelse.</p><p>Längd: 35 min. <br>Språk: finska <br>Åldersrekommendation: 6+</p><p>Manus: Mila Nirhamo, Perrine Ferrafiat <br>Scenografi och dockor: Anna Uschanov <br>På scenen: Sirpa Järvenpää, Perrine Ferrafiat <br>Ljuddesign: Perrine Ferrafiat <br>Ljusdesign: Sisu Nojonen <br> <br>Ursprungligt verk: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz <br>Bilder: Jussi Virkkumaa <br>Produktion: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p>", "en": "<p>Susi pöksyssä is a playful puppet theatre performance where societal and philosophical questions are children's business!</p><p><i>Everyone in the forest lives in fear of the local wolf. But when the wolf comes down from its rock, he is not quite as expected…</i></p><p>Susi pöksyssä combines object theatre, puppet theatre and storytelling into a deliciously visual and chucklingly silly fable for the whole family.</p><p>Duration: 35 minutes<br>Language: Finnish<br>Age recommendation: 6 +</p><p>Script: Mila Nirhamo, Perrine Ferrafiat<br>Staging and puppets: Anna Uschanov<br>On stage: Sirpa Järvenpää, Perrine Ferrafiat<br>Sound design: Perrine Ferrafiat<br>Light design: Sisu Nojonen</p><p>Original work: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz<br>Photos: Jussi Virkkumaa<br>Production: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p>" }, "provider_contact_info": null, "short_description": { "fi": "Susi pöksyssä on leikkisä nukketeatteriesitys, jossa yhteiskunnalliset ja filosofiset kysymykset ovat lasten asia!", "sv": "Susi pöksyssä är en lekfull dockteaterföreställning där samhällsfrågor och filosofiska frågor är något som berör barnen!", "en": "Susi pöksyssä is a playful puppet theatre performance where societal and philosophical questions are children's business!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BF7BEF37B52D6648DE17A8091BF296A6/Teatteri_QO_Susi_poksyssa", "sv": "http://www.annantalo.fi/sv/evenemang/event/BF7BEF37B52D6648DE17A8091BF296A6/Teatteri_QO_Susi_poksyssa", "en": "http://www.annantalo.fi/en/events/event/BF7BEF37B52D6648DE17A8091BF296A6/Teatteri_QO_Susi_poksyssa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68503/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68454", "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:102/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "6€", "sv": "6€", "en": "6€" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/teatteriqo-susi-poeksyssae-4220081/", "sv": "https://www.lippu.fi/eventseries/teatteriqo-susi-poeksyssae-4220081/", "en": "https://www.lippu.fi/eventseries/teatteriqo-susi-poeksyssae-4220081/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385797, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-14T06:23:28.616604Z", "last_modified_time": "2026-08-14T06:23:28.616618Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789668.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385797/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-08-14T06:23:28.451144Z", "last_modified_time": "2026-08-24T10:23:01.573639Z", "date_published": null, "start_time": "2026-10-03T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Teatteri QO: Susi pöksyssä", "sv": "Teatteri QO: Susi pöksyssä", "en": "Teatteri QO: Susi pöksyssä" }, "description": { "fi": "<p>Susi pöksyssä on leikkisä nukketeatteriesitys, jossa yhteiskunnalliset ja filosofiset kysymykset ovat lasten asia!</p><p><i>Koko metsä ja sen asukkaat elävät pelossa joutua seuraavana suden syömäksi. Mutta kun susi laskeutuu kallioltaan, mikään metsässä ei ole enää ennallaan… </i></p><p>Susi pöksyssä on esineteatteria, nukketeatteria ja tarinankerrontaa yhdistelevä, herkullisen visuaalinen ja hykerryttävän hassunkurinen faabeli koko perheelle.</p><p>Kesto: 35 min<br>Kieli: suomi<br>Ikäsuositus: 6 +</p><p>Käsikirjoitus: Mila Nirhamo, Perrine Ferrafiat <br>Lavastus ja nuket: Anna Uschanov <br>Näyttämöllä: Sirpa Järvenpää, Perrine Ferrafiat<br>Äänisuunnittelu: Perrine Ferrafiat <br>Valosuunnittelu: Sisu Nojonen</p><p>Alkuperäisteos: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz <br>Kuvat: Jussi Virkkumaa <br>Tuotanto: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p>", "sv": "<p>Susi pöksyssä är en lekfull dockteaterföreställning där samhällsfrågor och filosofiska frågor är något som berör barnen!</p><p><i>Hela skogen och dess invånare lever i rädsla för att bli nästa offer för vargen. Men när vargen hoppar ner från sin klippa är ingenting i skogen längre som förut… </i></p><p>Susi Pöksyssä är en fabel för hela familjen som kombinerar objektteater, dockteater och berättarkonst till en läckert visuell och tokrolig berättelse.</p><p>Längd: 35 min. <br>Språk: finska <br>Åldersrekommendation: 6+</p><p>Manus: Mila Nirhamo, Perrine Ferrafiat <br>Scenografi och dockor: Anna Uschanov <br>På scenen: Sirpa Järvenpää, Perrine Ferrafiat <br>Ljuddesign: Perrine Ferrafiat <br>Ljusdesign: Sisu Nojonen <br> <br>Ursprungligt verk: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz <br>Bilder: Jussi Virkkumaa <br>Produktion: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p>", "en": "<p>Susi pöksyssä is a playful puppet theatre performance where societal and philosophical questions are children's business!</p><p><i>Everyone in the forest lives in fear of the local wolf. But when the wolf comes down from its rock, he is not quite as expected…</i></p><p>Susi pöksyssä combines object theatre, puppet theatre and storytelling into a deliciously visual and chucklingly silly fable for the whole family.</p><p>Duration: 35 minutes<br>Language: Finnish<br>Age recommendation: 6 +</p><p>Script: Mila Nirhamo, Perrine Ferrafiat<br>Staging and puppets: Anna Uschanov<br>On stage: Sirpa Järvenpää, Perrine Ferrafiat<br>Sound design: Perrine Ferrafiat<br>Light design: Sisu Nojonen</p><p>Original work: Paul Cauuet, Wilfrid Lupano, Mayana Itoïz<br>Photos: Jussi Virkkumaa<br>Production: Tehdas Teatteri, Aura of Puppets, Metropolitan Puppets</p>" }, "provider_contact_info": null, "short_description": { "fi": "Susi pöksyssä on leikkisä nukketeatteriesitys, jossa yhteiskunnalliset ja filosofiset kysymykset ovat lasten asia!", "sv": "Susi pöksyssä är en lekfull dockteaterföreställning där samhällsfrågor och filosofiska frågor är något som berör barnen!", "en": "Susi pöksyssä is a playful puppet theatre performance where societal and philosophical questions are children's business!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E34A1663FEDA149D08983694F27C7A2D/Teatteri_QO_Susi_poksyssa", "sv": "http://www.annantalo.fi/sv/evenemang/event/E34A1663FEDA149D08983694F27C7A2D/Teatteri_QO_Susi_poksyssa", "en": "http://www.annantalo.fi/en/events/event/E34A1663FEDA149D08983694F27C7A2D/Teatteri_QO_Susi_poksyssa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68454/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68675", "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:30/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385303, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-23T12:13:51.961750Z", "last_modified_time": "2026-06-23T12:13:51.961769Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791555.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385303/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-23T12:13:51.828725Z", "last_modified_time": "2026-08-24T10:23:01.249626Z", "date_published": null, "start_time": "2026-10-03T08:00:00Z", "end_time": "2026-10-03T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Annantalon taidelauantai: Lasimaalaukset Matissen hengessä", "sv": "Annegårdens konstlördag: Glasmålningar i Matisse anda", "en": "Annantalo Art Saturday: Stained-glass Windows in the Spirit of Matisse" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b> Lasimaalaukset Matissen hengessä </b></p><p>Kuinka vahvasti sininen väri voi hehkua ja elää! Henri Matisse teki myöhäiskaudellaan sarjan sinisiä teoksia, joissa hän tutki muodon, liikkeen ja värin voimaa mahdollisimman pelkistetyin keinoin. Annantalon taidelauantaissa sukelletaan sinisen värin maailmaan ja työskennellään Matissen hengessä “piirtäen saksilla”. Teemme omia “lasimaalauksia” leikkaamalla ja liimaamalla sinistä silkkipaperia kerroksiksi. Millaisia muotoja ja kuvia sinun saksesi synnyttävät?</p><p><b>Lasimaalaukset Matissen hengessä on yksi Spektri-yhteisteokseen liittyvistä työpajoista. </b></p><p>Syksyllä 2026 Annantalon työpajoissa ja taideryhmissä toteutetaan yhteinen valotaideteos Spektri. Tämä työpaja on yksi monista, joissa työstetään teoksen eri osia. Tule mukaan tekemään oma osuutesi Annankadun puolelle sijoitettaviin, spektrin väreissä hehkuviin ikkunateoksiin.</p><p>Spektri-valoteoksen avajaisia juhlitaan 9.12. klo 18, jolloin Annantalon ikkunat syttyvät väriloistoon. Tule mukaan rakentamaan yhteistä Spektriä!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i verkstäder som är öppna för alla och där man kan stanna en kortare eller längre stund.</p><p>Hur starkt den blå färgen kan glöda och leva! Under sin sena period skapade Henri Matisse en serie blå verk, där han utforskade formens, rörelsens och färgens kraft med så enkla medel som möjligt. <br> <br>Under Annegårdens konstlördag dyker vi in i den blå färgens värld och arbetar i Matisse anda genom att ”rita med sax”. Vi skapar våra egna ”glasmålningar” genom att klippa och limma ihop blått silkespapper i flera lager. Vilka former och bilder skapar du med din sax?</p><p><b>Lasimaalaukset Matissen hengessä är en av verkstäderna i samband med det kollektiva verket Spektri</b></p><p>Under hösten 2026 skapas ett gemensamt ljuskonstverk i verkstäderna och konstgrupperna på Annegården: Spektri. Den här verkstaden är en av många där deltagarna arbetar med verkets olika delar. Kom och bidra med din del i de fönsterkonstverk som ska placeras längs Annegatan och som kommer att lysa i alla färger i spektrumet.</p><p>Invigningen av ljusverket Spektri firas den 9 december kl. 18, då Annegårdens fönster lyser upp i ett färgsprakande sken. Kom med och bygg upp ett gemensamt spektrum!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – stop by briefly or stay for a longer visit.</p><p>How vivid and glowing the colour blue can be! In his later years, Henri Matisse produced a series of blue works in which he explored the power of form, movement and colour by using the simplest possible means. <br> <br>On this Annantalo Art Saturday, we dive into the world of the colour blue and work in the spirit of Matisse by “drawing with scissors”. We make our own “stained-glass windows” by cutting and gluing layers of blue tissue paper. What sort of shapes and images will your scissors create?</p><p><b>Stained-glass Windows in the Spirit of Matisse is one of the workshops linked to the jointly created ‘Spectrum’ artwork</b> <br> <br>In autumn 2026, Annantalo’s workshops and art groups will create a collaborative light art installation entitled Spectrum. This workshop is one of many in which different parts of the work are created. Come and make your contribution to the window installations to be displayed on the Annankatu side, glowing in the different colours of the spectrum. <br> <br>The opening ceremony for the Spectrum light installation will be held on 9 December at 18.00, illuminating the windows of Annantalo in a blaze of colour. Come and join us in building our shared spectrum! <br> <br>No prior skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. Annantalo Art Saturdays are free-of-charge and suitable for participants from all language backgrounds. <br> <br>The workshop will be hosted by Annantalo art educators. <br> <br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i verkstäder som är öppna för alla och där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – stop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7D0FE6A251EE4A86F19B30FAFADD391E/Annantalon_taidelauantai_Lasimaalaukset_Matissen_hengessa", "sv": "http://www.annantalo.fi/sv/evenemang/event/7D0FE6A251EE4A86F19B30FAFADD391E/Annegardens_konstlordag_Glasmalningar_i_Matisse_anda", "en": "http://www.annantalo.fi/en/events/event/7D0FE6A251EE4A86F19B30FAFADD391E/Annantalo_Art_Saturday_Stained-glass_Windows_in_the_Spirit_of_Matisse_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68675/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }