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&page=152&weekday=6%2C7
{ "meta": { "count": 6643, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=153&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=151&weekday=6%2C7" }, "data": [ { "id": "tet:agkysvv4fa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:mannerheimintie_86_helsinki/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:10/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:12/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "info_url": null, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 329531, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-12T07:50:35.774261Z", "last_modified_time": "2025-03-12T07:53:34.851947Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/_MG_0780-pienempi.jpg", "name": "notset", "cropping": "280,0,1640,1360", "photographer_name": "smoisala", "alt_text": null, "data_source": "tet", "publisher": "ahjo:00001", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/329531/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-03-12T07:51:57.801016Z", "last_modified_time": "2025-03-12T07:53:34.235551Z", "date_published": "2025-03-11T22:00:00Z", "start_time": "2025-02-12", "end_time": "2025-03-12", "custom_data": { "spots": "1", "org_name": "Testiyritys", "website_url": "https://www.yle.fi", "contact_email": "kerrokantasi@hel.fi", "contact_phone": "0509876543", "contact_last_name": "Testaaja", "contact_first_name": "Yrittäjä" }, "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, "provider": { "fi": "Hvenerik Testbolag AB", "sv": "7009773-3" }, "short_description": { "fi": "Harjoittelija" }, "description": { "fi": "Harjoittelija" }, "info_url": null, "name": { "fi": "yrityksen harjoittelija" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agkysvv4fa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agkyss2ism", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:6/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:7/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p84/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "info_url": null, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 329530, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-12T07:37:17.654758Z", "last_modified_time": "2025-03-12T07:39:28.485346Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/_MG_0879_2.jpg", "name": "notset", "cropping": "452,0,1468,1016", "photographer_name": "smoisala", "alt_text": null, "data_source": "tet", "publisher": "ahjo:00001", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/329530/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-03-12T07:39:27.299659Z", "last_modified_time": "2025-03-12T07:39:27.299678Z", "date_published": "2025-03-12T07:39:26.815000Z", "start_time": "2025-03-20", "end_time": "2025-05-31", "custom_data": { "spots": "1", "org_name": "Digiyksikkö", "editor_oid": "6aa436fe-b496-4bd3-a19e-d5aefc9b03e7", "website_url": "https://www.hel.fi", "contact_email": "kerrokantasi@hel.fi", "contact_phone": "0401234567", "contact_last_name": "Testaaja", "contact_first_name": "Testi" }, "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, "provider": { "fi": "Helsingin kaupunki" }, "short_description": { "fi": "Testataan toiminnallisuuksia." }, "description": { "fi": "Testataan toiminnallisuuksia." }, "info_url": null, "name": { "fi": "Kokemusasiantuntija" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agkyss2ism/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dlpm", "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:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le: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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4934/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dk2q/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-03-11T12:40:15.585219Z", "last_modified_time": "2025-03-11T12:40:15.585234Z", "date_published": null, "start_time": "2025-03-25T10:00:00Z", "end_time": "2025-05-27T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Asiaa ja iloa Espoon senioreille", "sv": "Kunskap och glädje för seniorer i Esbo", "en": "Information and joy for Espoo seniors" }, "description": { "fi": "<p>TIISTAINA 25.3. KELLO 12-14 - Aiheena etsivä vanhustyö </p><p>TIISTAINA 22.4. KELLO 12-14 - Teemana turvallisuus</p><p>TORSTAINA 27.5. KELLO 12-14 - Pureudumme Digitaitoihin ja Alueen eläkeläisjärjestöt esittäytyvät. </p><p>Myös Seniori-info on paikalla joka kerta kello 12-15. </p><p>Lämpimästi tervetuloa mukaan saamaan tietoa ja oppimaan ja tutustumaan alueen ihmisiin. Kohtaamiskahvilaan saa jäädä istuskelemaan ja juttelemaan kello 15 asti.</p>", "sv": "<p>TISDAG 25.3. KL. 12–14 – Tema: Uppsökande äldrearbete</p><p>TISDAG 22.4. KL. 12–14 – Tema: Säkerhet</p><p>TORSDAG 27.5. KL. 12–14 – Vi fördjupar oss i digitala färdigheter, och pensionärsorganisationer i området presenterar sig.</p><p>Seniorinfo är också på plats varje gång kl. 12–15.</p><p>Varmt välkommen att ta del av information, lära dig nytt och träffa människor i området. Mötescaféet är öppet för att sitta och samtala fram till kl. 15.</p>", "en": "<p>TUESDAY, MARCH 25, 12:00–14:00 – Topic: Outreach work for the elderly</p><p>TUESDAY, APRIL 22, 12:00–14:00 – Theme: Security</p><p>THURSDAY, MAY 27, 12:00–14:00 – We will explore digital skills, and local pensioners' organizations will introduce themselves.</p><p>Senior Info will also be present each time from 12:00 to 15:00.</p><p>You are warmly welcome to receive information, learn new things, and meet people from the area. The meeting café will remain open for sitting and chatting until 15:00.</p>" }, "info_url": null, "name": { "fi": "Ompun kohtaamiskahvila", "sv": "Omppus mötescafé", "en": "Omppu's Meeting Café" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dlpm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65596", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/malmijazz/malmijazz-torino-unlimited-noise-it-ja-aki-himanen-aleksi-kinnunen-this-is-techno-jazz-3834355/", "sv": "https://www.lippu.fi/artist/malmijazz/malmijazz-torino-unlimited-noise-it-ja-aki-himanen-aleksi-kinnunen-this-is-techno-jazz-3834355/", "en": "https://www.lippu.fi/artist/malmijazz/malmijazz-torino-unlimited-noise-it-ja-aki-himanen-aleksi-kinnunen-this-is-techno-jazz-3834355/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 221070, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-13T12:14:49.617899Z", "last_modified_time": "2025-02-13T12:14:49.617915Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765485.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221070/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-13T12:14:49.573028Z", "last_modified_time": "2025-03-11T12:14:50.451763Z", "date_published": null, "start_time": "2025-04-04T16: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, "provider": null, "short_description": { "fi": "Jazz-musiikki kohtaa teknon hypnoottiset rytmit, kun lavalla nähdään italialainen Torino Unlimited Noise ja suomalainen duo Aki Himanen & Aleksi Kinnunen.", "sv": "Jazzmusik möter technons hypnotiska rytmer när Torino Unlimited Noise från Italien och den finska duon Aki Himanen & Aleksi Kinnunen går upp på scenen.", "en": "Jazz music meets techno’s hypnotic rhythms when the stage features Italian Torino Unlimited Noise and Finnish duo Aki Himanen & Aleksi Kinnunen." }, "description": { "fi": "<p>Jazz-musiikki kohtaa teknon hypnoottiset rytmit, kun lavalla nähdään italialainen Torino Unlimited Noise ja suomalainen duo Aki Himanen & Aleksi Kinnunen.</p><p>TUN, eli Torino Unlimited Noise, on voimakas yhtye, jossa soittaa Italian kiinnostavimpia jazzmuusikoita. TUN rikkoo genrerajoja yhdistämällä teknon rytmit jazziin luoden samalla raikasta ja ainutlaatuista uutta soundia.</p><p>TUNin kokoonpanossa soittaa mm. palkittu pianisti Fabio Giachino, joka on saanut tunnustusta niin Italiassa kuin kansainvälisesti ja valittu useasti maan parhaiden jazzmuusikoiden joukkoon.</p><p><b>Torino Unlimited Noise</b><br>Gianni Denitto, saksofoni<br>Fabio Giachino, syntetisaattorit<br>Mattia Barbieri, rummut</p><p>Italian collective Torino Unlimited Noise is at the forefront of a new sound, drawing on the history of jazz and futurism of techno to cook up brand new sounds that are challenging yet compelling. <br>— Itsoundsfuture.com</p><p>Trumpetisti Aki Himanen ja rumpali Aleksi Kinnunen ovat muusikoita sekä elektronisen musiikin tuottajia, jotka yhdistelevät ennakkoluulottomasti teknomusiikin tanssittavaa sykettä ja jazz-musiikin spontaaniutta. He pyrkivät jatkuvasti löytämään uusia keinoja ihmisen ja koneiden väliselle vuorovaikutukselle improvisaation sekä musiikillisen kommunikaation keinoin.</p><p>Aki Himanen & Aleksi Kinnunen on tunnettu myös tanssilattian räjäyttävistä live-esiintymisistään, joita on kuultu niin teknoklubeilla kuin suurilla Keski-Euroopan jazz-festivaaleillakin. Viime vuonna duo soitti loppuunmyydyn keikan Berliinin Kantine am Berghain:ssa, joka on maailman kenties arvostetuimman teknoinstituution live-klubi.</p><p>Kesto 2 tuntia 10min, sisältäen väliajan 20min</p>", "sv": "<p>Jazzmusik möter technons hypnotiska rytmer när Torino Unlimited Noise från Italien och den finska duon Aki Himanen & Aleksi Kinnunen går upp på scenen.</p><p>TUN, Torino Unlimited Noise, är en powertrio av några av Italiens mest intressanta jazzmusiker. TUN bryter genregränser genom att kombinera technorytmer med jazz och samtidigt skapa ett nytt, fräscht och unikt sound.</p><p>I TUN:s sammansättning ingår bland annat den prisbelönte pianisten Fabio Giachino, som har uppmärksammats både i Italien och internationellt och som vid flera tillfällen har valts till en av landets bästa jazzmusiker.</p><p><b>Torino Unlimited Noise</b><br>Gianni Denitto, saxofon<br>Fabio Giachino, synthar<br>Mattia Barbieri, trummor</p><p>Trumpetisten Aki Himanen och trumslagaren Aleksi Kinnunen är musiker och producenter av elektronisk musik som fördomsfritt kombinerar technomusikens dansanta puls med jazzmusikens spontanitet. De söker ständigt nya sätt för människor och maskiner att växelverka genom improvisation och musikalisk kommunikation.</p><p>Aki Himanen & Aleksi Kinnunen är också kända för sina liveframträdanden som får det att vimla på dansgolvet och som har hörts på såväl technoklubbar som på stora centraleuropeiska jazzfestivaler. Förra året spelade duon en utsåld spelning på Kantine am Berghain i Berlin, liveklubben hos världens kanske mest uppskattade technoinstitution.</p><p>Längd 2 timmar 10 min, inklusive 20 minuters paus</p>", "en": "<p>Jazz music meets techno’s hypnotic rhythms when the stage features Italian Torino Unlimited Noise and Finnish duo Aki Himanen & Aleksi Kinnunen.</p><p>TUN, or Turin Unlimited Noise, is a power trio including some of Italy’s most interesting jazz musicians. TUN breaks genre boundaries by combining techno rhythms with jazz to create a fresh and unique new sound.</p><p>Among others, TUN’s line-up consists of the award-winning pianist Fabio Giachino, who has received recognition both in Italy and internationally and has been selected several times as one of the country's best jazz musicians.</p><p><b>Turin Unlimited Noise</b><br>Gianni Denitto, saxophone<br>Fabio Giachino, synthesisers<br>Mattia Barbieri, drums</p><p>Trumpetist Aki Himanen and drummer Aleksi Kinnunen are musicians and electronic music producers who open-mindedly combine the dancing heartbeat of techno music and the spontaneity of jazz music. They are constantly striving to find new ways of human-machine interaction through improvisation and musical communication.</p><p>Aki Himanen and Aleksi Kinnunen are also known for their live performances energising the dance floor, which have been heard in techno clubs as well as in major Central European jazz festivals. Last year, the duo played a sold-out gig at Berlin’s Kantine am Berghain, a live club from perhaps the world’s most prestigious tech institution.</p><p>Duration: 2 hours, including a 20-minute intermission</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/16C4A795A2672CF9FE3D8025ECFB234A/Torino_Unlimited_Noise_IT_Aki_Himanen_Aleksi_Kinnunen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/16C4A795A2672CF9FE3D8025ECFB234A/Torino_Unlimited_Noise_IT_Aki_Himanen_Aleksi_Kinnunen", "en": "http://www.malmitalo.fi/en/events/event/16C4A795A2672CF9FE3D8025ECFB234A/Torino_Unlimited_Noise_IT_Aki_Himanen_Aleksi_Kinnunen" }, "name": { "fi": "Torino Unlimited Noise (IT) + Aki Himanen & Aleksi Kinnunen – MalmiJazz", "sv": "Torino Unlimited Noise (IT) + Aki Himanen & Aleksi Kinnunen – MalmiJazz", "en": "Torino Unlimited Noise (IT) + Aki Himanen & Aleksi Kinnunen – MalmiJazz" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65596/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dm2m", "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:agggfz66ky/?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/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dmc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dmoy/?format=api" } ], "images": [ { "id": 150479, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-08T11:19:23.769532Z", "last_modified_time": "2024-03-08T11:19:23.769564Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg", "name": "Sigmund W / Unsplash", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:31:56.758647Z", "last_modified_time": "2025-03-11T11:45:02.749432Z", "date_published": null, "start_time": "2025-01-21T13:30:00Z", "end_time": "2025-05-28T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "info_url": null, "name": { "fi": "Pajailtapäivä ", "sv": "Pysseleftermiddag i bibliotekets Makerspace", "en": "Arts and crafts afternoon in the library’s Makerspace" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dm2m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65711", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 325005, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-11T11:15:02.819434Z", "last_modified_time": "2025-03-11T11:15:02.819460Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764112.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/325005/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-11T11:15:02.774909Z", "last_modified_time": "2025-03-11T11:15:02.903198Z", "date_published": null, "start_time": "2025-05-17T09:00:00Z", "end_time": "2025-05-17T11: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, "provider": null, "short_description": { "fi": "Tervetuloa Satutuokion tAIkaa -työpajaan, jossa mielikuvitus ja teknologia kohtaavat!", "sv": "Välkommen till verkstaden Sagostundens magi med AI där fantasi och teknik möter!", "en": "Welcome to the fAIry tale magic workshop, where imagination and technology meet!" }, "description": { "fi": "<p>Tervetuloa Satutuokion tAIkaa -työpajaan, jossa mielikuvitus ja teknologia kohtaavat!</p><p>Työpajassa sukellamme tarinoiden ja kuvien maailmaan generatiivisen tekoälyn avulla. Pääset luomaan omia ainutlaatuisia tarinoita ja kuvia tekoälyn avustamana. Onko mielessäsi satumainen prinsessaseikkailu, jännittävä avaruusmatka tai hauska eläintarina?</p><p>Vain mielikuvitus on rajana!</p><p>Ikäsuositus: alle 9 v. aikuisen seurassa<br>Paikka: Vuotalon aula</p><p>Avoin ja maksuton nonstop-työpaja – tule mukaan silloin, kun sinulle sopii!</p><p>Järjestäjä: Aalto-yliopisto Junior, Tekoälytaiturit-hanke</p>", "sv": "<p>Välkommen till verkstaden Sagostundens magi med AI där fantasi och teknik möter!</p><p>I den här verkstaden dyker vi in i berättelsernas och bildernas värld med hjälp av generativ artificiell intelligens. Du får skapa egna unika berättelser och bilder med hjälp av artificiell intelligens. Vill du skapa ett sagoliknande prinsessäventyr, en spännande rymdresa eller en rolig djurberättelse?</p><p>Bara fantasin sätter gränser!</p><p>Åldersrekommendation: under 9-åringar i sällskap av en vuxen<br>Plats: Nordhusets lobby</p><p>Öppen och gratis nonstop-workshop – kom med när det passar dig!</p><p>Arrangeras av: Aalto-universitet Junior, projektet Tekoälytaiturit</p>", "en": "<p>Welcome to the fAIry tale magic workshop, where imagination and technology meet!</p><p>In the workshop, we will dive into the world of stories and images with the help of generative artificial intelligence. You will be able to create your own unique stories and images with the help of AI. Do you have a fabulous princess adventure, an exciting space trip or a funny animal story in mind?</p><p>Imagination is the limit!</p><p>Recommended age: under 9 years with an adult</p><p>Place: Vuotalo lobby</p><p>Free and open nonstop workshop – join in whenever it suits you!</p><p>Organised by: Aalto University Junior, Tekoälytaiturit initiative</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/542A6F0758B297378EC129AAD7D159F3/Satutuokion_tAIkaa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/542A6F0758B297378EC129AAD7D159F3/Sagostundens_magi_med_AI_", "en": "http://www.vuotalo.fi/en/events/event/542A6F0758B297378EC129AAD7D159F3/fAIrytale_Magic" }, "name": { "fi": "Satutuokion tAIkaa – Luovaa kertomusta ja kuvitusta tekoälyllä", "sv": "Sagostundens magi med AI – Kreativa berättelser och illustrationer med artificiell intelligens", "en": "fAIrytale Magic – Creative storytelling and illustration with AI" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65711/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64981", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166310, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:09:40.008634Z", "last_modified_time": "2025-01-24T11:09:40.008650Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763299.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166310/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T11:09:39.981230Z", "last_modified_time": "2025-03-10T13:15:58.920104Z", "date_published": null, "start_time": "2025-03-24", "end_time": "2025-03-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "SIIRTYY keväälle 2026. Stoan galleriaan rakentuu Kaisu Koiviston ja Gabriela Aldanan yhteinen installaatio, joka tarjoaa tilan hidastumiseen ja lepoon.", "sv": "I Stoas galleri byggs en gemensam installation av Kaisu Koivisto och Gabriela Aldana upp, som ger besökarna en plats för att sakta ner och vila.", "en": "Kaisu Koivisto and Gabriela Aldana’s joint installation at Stoa Gallery provides a space for slowing down and resting." }, "description": { "fi": "<p>SIIRTYY keväälle 2026. Stoan galleriaan rakentuu Kaisu Koiviston ja Gabriela Aldanan yhteinen installaatio, joka tarjoaa tilan hidastumiseen ja lepoon.</p><p>Teos tutkii liikkeen, äänen ja kosketuksen kautta kollektiivisia hoivan periaatteita ja solullisen toiminnan suhdetta kehossa oleviin muistiin. Samalla tutkitaan kehon ajatonta olemusta, kehoa luontona, joka läsnäolonsa kautta nostaa esille yhteiskunnan toiminnan ja kehon aitojen tarpeiden ristiriitaa.</p><p>Stoan Galleriaan rakennetaan installaatio, jonka ympäröimänä esitykset tapahtuvat.</p><p>Esitysten ajankohdat ilmoitetaan myöhemmin keväällä.</p><p><b>Työryhmä:</b><br>Gabriela Aldana: Koreografi, esiintyjä, äänitaiteilija<br>Riina Huhtanen: Esiintyjä<br>Taru Koski: Esiintyjä<br>Kaisu Koivisto: Installaatio</p><p>Vapaa pääsy</p>", "sv": "<p>I Stoas galleri byggs en gemensam installation av Kaisu Koivisto och Gabriela Aldana upp, som ger besökarna en plats för att sakta ner och vila.</p><p>Genom rörelse, ljud och beröring utforskar verket principerna för kollektiv omvårdnad och förhållandet mellan cellulär aktivitet och kroppsminnen. Samtidigt utforskas kroppens tidlösa väsen, kroppen som natur, som genom sin närvaro belyser motsättningen mellan samhällets agerande, och kroppens genuina behov.</p><p>I Stoas galleri byggs en installation upp, och runt den kommer föreställningarna att äga rum. <br>Tidpunkter för föreställningarna meddelas under våren.</p><p><b>Arbetsgrupp:</b><br>Gabriela Aldana: Koreografi, framträdande, ljudkonst<br>Riina Huhtanen: Framträdande<br>Taru Koski: Framträdande<br>Kaisu Koivisto: Installation</p><p>Fritt inträde</p>", "en": "<p>Kaisu Koivisto and Gabriela Aldana’s joint installation at Stoa Gallery provides a space for slowing down and resting.</p><p>Through movement, sound and touch, the work explores the collective principles of care and the relationship of cellular activity with the memory in the body. At the same time, we study the timeless nature of the body, the body as nature, which, through its presence, highlights the conflict between the functioning of society and the real needs of the body.</p><p>The installation will be built at Stoa Gallery, and performances will happen around it. <br>Performance dates will be announced in the spring.</p><p><b>Working Group:</b><br>Gabriela Aldana: choreographer, performer, sound artist<br>Riina Huhtanen: performer<br>Taru Koski: performer<br>Kaisu Koivisto: installation</p><p>Free admission</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/96EF8E0F4D5CD59053D3E2114626BBAB/The_Act_of_Revealing", "sv": "http://www.stoa.fi/sv/evenemang/event/96EF8E0F4D5CD59053D3E2114626BBAB/The_Act_of_Revealing", "en": "http://www.stoa.fi/en/events/event/96EF8E0F4D5CD59053D3E2114626BBAB/The_Act_of_Revealing" }, "name": { "fi": "The Act of Revealing", "sv": "The Act of Revealing", "en": "The Act of Revealing" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64981/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65440", "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: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: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/kulke:613/?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: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, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/" }, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153748, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-14T12:15:16.716904Z", "last_modified_time": "2025-01-14T12:15:16.716940Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761471.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-14T12:15:16.679684Z", "last_modified_time": "2025-03-10T10:14:27.334982Z", "date_published": null, "start_time": "2025-04-27T12: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, "provider": null, "short_description": { "fi": "Ranskankielinen esitys. Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.", "sv": "Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.", "en": "Every year, the twins prepare to celebrate the birthday of someone who is absent." }, "description": { "fi": "<p>Ranskankielinen esitys. Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.</p><p>Chaque année, les jumelles se préparent à célébrer l'anniversaire d’un absent.<br> <br>Coincées dans leurs pensées, solitaires, sans enfants et inutiles, elles partagent leurs échecs. Malgré leurs moments de découragement, elles restent optimistes et attendent encore une petite étincelle qui, ne serait-ce qu’un instant, éclaire leur bonheur fragile dans l’obscurité.<br> <br>Cette tragédie de comédie physique fait partie d’une trilogie de l’auteur dramatique contemporain martiniquais Alfred Alexandre, qui explore la figure de l’absent. Le texte original a été écrit en français.Le spectacle est mis en scène par la metteuse en scène franco-guyanaise Ewlyne Guillaume et interprété par les artistes finlandaises du théâtre physique et de la comédie Jenni Kallo et Niina Rinta-Opas, alias Kylmä et Kalma, nées en l’an 2000 dans L’île enchantée du Q-teatteri.<br> <br>La langue principale du spectacle est le théâtre physique, mais dans ce mélange de clown et de tragédie, différentes langues peuvent surgir, notamment le français et l’anglais, en plus du finnois. L’œuvre aborde des thèmes profonds et universels, touchant les spectateurs indépendamment de leur origine. Les expériences de vie et les émotions des personnages offrent des points de connexion et soulignent la diversité des expériences humaines.<br> <br>Fruit d’une collaboration internationale, cette création a eu sa première mondiale à Rovaniemi au Kulttuuritalo Wiljami en août 2024, dans le cadre de la scène d’accueil de Rimpparemmi. La première en version française verra le jour au festival Les Tréteaux du Maroni en Guyane française en avril 2025.<br> <br>Durée: 45 minutes<br> <br>Âge recommandé: 16+<br> <br>Langues: finnois, français<br> <br>Note: Le spectacle contient des sons forts, de l’alcool, des émotions intenses, des odeurs marquées et de l’humour.<br> <br>Équipe artistiqueMise en scène: Ewlyne Guillaume<br>Interprètes: Jenni Kallo & Niina Rinta-Opas<br>Texte: Alfred Alexandre<br>Musique: Harri Kuusijärvi<br>Lumières: Michael Creusy & Atte Herd<br>Costumes: Reija Laine<br> <br>Soutiens<br>Tanssiteatteri Rimpparemmi<br>Fonds culturel finlandais, section de Laponie<br>Institut Français<br>Culture Moves Europe</p><p>Juuttuneina omiin mietiskelyihinsä, yksinäisinä, lapsettomina ja tarpeettomina, he jakavat tappionsa. Huolimatta synkkiin ajatuksiin vaipumisista he pysyvät optimisteina ja odottavat yhä pientä kipinää, joka valaisee hetkeksi hauraan onnen pimeydessä.</p><p>Vuosipäivä on ranskan-guyanalais-martiniquelais-suomalainen yhteistyö. Teos on osa palkitun nykynäytelmäkirjailija <b>Alfred Alexandren</b> trilogiaa, joka käsittelee poissaolevaa henkilöä. Alkuperäisteksti on kirjoitettu ranskaksi.</p><p>Tämän fyysisen komedian tragedian on ohjannut ranskalais-guyanalainen Ewlyne Guillame ja esiintyjinä ovat suomalaiset fyysisen teatterin ja komedian taitajat Jenni Kallo ja Niina Rinta-Opas aka Kylmä ja Kalma, jotka syntyivät vuonna 2000 Q-teatterin Lumotussa Saaressa.</p><p>Esityksen pääkieli on fyysinen teatteri, mutta klovnerian ja tragedian summanmutikassa saattaa vilahtaa eri kieliä esimerkiksi ranskaa ja englantia suomen lisäksi. Teos käsittelee syvällisiä ja universaaleja teemoja, jotka koskettavat ihmisiä taustasta riippumatta. Hahmojen elämänkokemukset ja tunteet tarjoavat samaistumispintaa ja korostavat inhimillisten kokemusten moninaisuutta.</p><p>Tämä kansainvälisen yhteistyön hedelmä sai maailman ensi-iltansa Rovaniemellä Kulttuuritalo Wiljamissa osana Rimpparemmin vierailunäyttämöä elokuussa 2024. Ranskankielisen version ensi-ilta puolestaan näkee päivänvalon Les Tréteaux du Maroni festivaaleilla Ranskan Guayanassa huhtikuussa 2025.</p><p>Kesto: 45 minuuttia<br>Ikäsuositus: 16+<br>Kieli: suomi, ranska <br>Sisältöhuomio: Esitys sisältää kovia ääniä, alkoholia, vahvoja tunteita, voimakkaita hajuja ja huumoria.</p><p><b>Työryhmä</b><br>Ohjaus Ewelyne Guillame <br>Esiintyjät Jenni Kallo & Niina Rinta-Opas <br>Teksti Alfred Alexandre <br>Musiikki Harri Kuusijärvi <br>Valot Michael Creusy & Atte Herd <br>Pukusuunnittelu Reija Laine</p><p><b>Kulttuurikaveri-etu</b> <br>Voit pyytää esitykseen mukaasi kulttuurikaveri</p>", "sv": "<p>Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.</p><p>Fast i sina egna grubblerier, ensamma, barnlösa och värdelösa, delar de med sig av sina förluster. Trots sina dystra tankar är de optimistiska och väntar fortfarande på att en liten gnista ska lysa upp den bräckliga lyckans mörker för en stund.</p><p>Årsdagen är ett fransk-guyansk-martinikansk-finskt samarbete. Verket ingår i en trilogi av den prisbelönte martinikanske författaren <b>Alfred Alexandre</b> om en frånvarande person. Originaltexten är skriven på franska.</p><p>Denna tragedi inom fysisk komedi har regisserats av fransk-guyanske Ewlyne Guillame och framförs av de finländska artisterna inom fysisk teater och komedi Jenni Kallo och Niina Rinta-Opas aka Kylmä ja Kalma, som föddes år 2000 i Q-teatteris Lumottu Saari.</p><p>Föreställningens huvudspråk är fysisk teater, men i den slumpmässiga blandningen av clowneri och tragedi kan olika språk förekomma, utöver finska även franska och engelska. Verket behandlar djupa och universella teman som berör människor från alla bakgrunder. Karaktärernas livserfarenheter och känslor erbjuder igenkänningspunkter och framhäver mångfalden av mänskliga upplevelser.</p><p>Längd: 45 minuter<br>Åldersrekommendation: 16+<br>Språk: finska, franska <br>Observation om innehållet: Föreställningen innehåller höga ljud, alkohol, starka känslor, starka dofter och humor.</p><p><b>Arbetsgrupp</b><br>Regi Ewelyne Guillame <br>Artister Jenni Kallo & Niina Rinta-Opas <br>Text Alfred Alexandre <br>Musik Harri Kuusijärvi <br>Ljus Michael Creusy & Atte Herd <br>Kostymdesign Reija Laine</p>", "en": "<p>Every year, the twins prepare to celebrate the birthday of someone who is absent.</p><p>Stuck in their private reflections, lonely, childless and useless, they share their losses. Despite their lapses into gloomy thoughts, they remain optimists, waiting for a small spark to momentarily light up the darkness with fragile happiness.</p><p>Vuosipäivä (Anniversary) is a French-Guyanese-Martiniquan-Finnish collaboration. The work is part of a trilogy by award-winning Martiniquan author Alfred Alexandre that explores the absence of a person. The original text is written in French.</p><p>This physical tragicomedy is directed by French-Guyanese Ewlyne Guillame and performed by two Finnish talents in physical theatre and comedy, Jenni Kallo and Niina Rinta-Opas, also known as Kylmä and Kalma, who first performed at Q-teatteri’s Enchanted Island in 2000.</p><p>The main language of the performance is physical theatre, but in the mixture of clownery and tragedy, there may be a few snippets of different languages, such as French and English, in addition to Finnish. The work deals with profound and universal themes that will touch people from all backgrounds. The characters’ life experiences and emotions provide a space for identifying with them, highlighting the diversity of human experience.</p><p>Duration: 45 minutes<br>Age recommendation: 16+<br>Language: Finnish, French <br>Content warning: The performance includes loud sounds, alcohol, strong emotions, strong odours and humour.</p><p><b>Working Group</b><br>Director: Ewelyne Guillame <br>Performers: Jenni Kallo & Niina Rinta-Opas <br>Text: Alfred Alexandre <br>Music: Harri Kuusijärvi <br>Lights: Michael Creusy & Atte Herd <br>Costume design: Reija Laine</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8D810651D41E77B36D560DC3709AFE08/Vuosipaiva_Anniversary_Un_Anniversaire", "sv": "http://www.caisa.fi/sv/evenemang/event/8D810651D41E77B36D560DC3709AFE08/Vuosipaiva_Anniversary_Un_Anniversaire", "en": "http://www.caisa.fi/en/events/event/8D810651D41E77B36D560DC3709AFE08/Vuosipaiva_Anniversary_Un_Anniversaire" }, "name": { "fi": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas", "sv": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas", "en": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65440/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64874", "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:31/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 198513, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-06T13:14:40.856805Z", "last_modified_time": "2025-02-06T13:14:40.856827Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760603.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/198513/?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": "2025-02-06T13:14:40.800586Z", "last_modified_time": "2025-03-10T09:16:08.080271Z", "date_published": null, "start_time": "2025-04-12T07:00:00Z", "end_time": "2025-04-12T12: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, "provider": null, "short_description": { "fi": "Barnfesten saapuu jälleen Annantalolle! Juhlapäivä on täynnä iloa, luovuutta, hauskoja työpajoja sekä muuta kulttuuriohjelmaa.", "sv": "Den svenskspråkiga evenemangsdagen Barnfesten återvänder till Annegården!", "en": "Barnfesten arrives at Annantalo again! This celebration is full of joy, creativity, fun workshops and other cultural activities." }, "description": { "fi": "<p>Barnfesten saapuu jälleen Annantalolle! Juhlapäivä on täynnä iloa, luovuutta, hauskoja työpajoja sekä muuta kulttuuriohjelmaa.</p><p>Luckan Barnkultur ja Annantalo järjestävät jälleen Barnfest-tapahtumapäivän yhteistyössä 16 muun organisaation kanssa. Barnfesten painottaa moninaisuutta ja saavutettavuutta. Tapahtuma on maksuton ja kannustaa kaikenikäisiä lapsia taiteen ja kulttuurin pariin. Kaikki lapset ovat lämpimästi tervetulleita nauttimaan iloisesta lastenkulttuuripäivästä yhdessä läheistensä kanssa. Ohjelma on pääosin ruotsinkielinen.</p><p>Tapahtumassa on tarjolla monipuolista ohjelmaa, kuten avaruusteemaisia musiikkityöpajoja ja muita taidetyöpajoja, Den nordiska bokslukaren järjestämä työpaja sekä vierailu LillaLuckanin planetaarioon. Ted Forsström lukee otteita uudesta kirjastaan Stivens fat är utan mat. Pop-up-kirjasto Helmet tarjoaa jännittäviä avaruuskirjoja ja paikalle saapuu myös saavutettavuuskirjasto Celia. Ohjelmassa on lisäksi Babydisko, pistekirjoitusta, avaruusaiheista askartelua sekä pelailua BUU-sovelluksessa.</p><p>Lastenmusiikkiyhtye Trollsländan tarjoaa interaktiivisen avaruuskonsertin ja tanssiva lepakko Chiro leijailee ympäri tapahtumaa tuoden juhlatunnelmaa. Teatteri Taimine esittää ulkona leikkiä ja mielikuvitusta ylistävän esityksen Bobban. Yleisöä kehotetaan pukeutumaan sään mukaisesti!</p><p>Osa ohjelmasta on käynnissä koko päivän, mutta tietyt ohjelmat alkavat tiettyinä kellonaikoina ja niihin on rajoitettu osallistujamäärä. Paikkaliput jaetaan Annantalon sisäänkäynnin yhteydessä tapahtumapäivänä klo 10 alkaen. Rajoitettu määrä lippuja on myös saatavilla 7.–11.4 Luckan Helsingistä (Yrjönkatu 27).</p><p>Lisätietoa Barnfesten 2025 tapahtumasta löydät osoitteesta: <br>https://barnkultur.luckan.fi/barnfesten/</p>", "sv": "<p>Den svenskspråkiga evenemangsdagen Barnfesten återvänder till Annegården!</p><p>Luckan Barnkultur och Annantalo arrangerar återigen Barnfest-dagen i samarbete med 16 andra organisationer. Barnfesten är ett tillgängligt och kostnadsfritt evenemang och arrangörerna vill uppmuntra till kulturdelaktighet. Alla barn är välkomna att ta del av en festlig barnkulturdag tillsammans med nära och kära.</p><p>Under Barnfesten erbjuds bland annat verkstäder med Den nordiska bokslukaren, musikverkstäder med rymdtema och ett besök i LillaLuckans planetariumtält. Ted Forsström läser ur sin nya bok Stivens fat är utan mat och i Helmets Pop-up bibliotek finns spännande rymdböcker. Tillgänglighetsbiblioteket Celia är också på plats. I programmet ingår även rymdpyssel, Babydisco, rim och ramsor med tecken som stöd, punktskrift och spel i BUU-appen.</p><p>Barnmusikgruppen Trollsländan bjuder på en interaktiv rymdkonsert och den dansglada fladdermusen Chiro svävar runt och sprider feststämning. En utomhus teaterupplevelse med Teater Taimine hyllar leken och fantasin, publiken uppmanas vara förberedda med kläder enligt väder!</p><p>Vissa program pågår kontinuerligt medan andra startar vid bestämda tider och har ett begränsat antal platser. Under Barnfesten finns platsbiljetter att hämta i Annegårdens entré från kl. 10. Ett begränsat antal biljetter kan också hämtas på Luckan Helsingfors, Georgsgatan 27, mellan den 7 april och 11 april.</p><p>Läs mer om Barnfesten 2025:<br>https://barnkultur.luckan.fi/barnfesten/</p>", "en": "<p>Barnfesten arrives at Annantalo again! This celebration is full of joy, creativity, fun workshops and other cultural activities.</p><p>Luckan Barnkultur and Annantalo are once again organizing the Barnfest day in collaboration with 16 other organizations. Barnfesten takes diversity and accessibility into account. The event is free of charge and aims to encourage participation in culture. All children are welcome to enjoy a festive day of children's culture together with their loved ones. The program is mainly in Swedish.</p><p>The event will feature workshops by Den nordiska bokslukaren, art workshops, space-themed music workshops, and a visit to LillaLuckan’s planetarium. Ted Forsström will read excerpts from his new book Stivens fat är utan mat, and other exciting space books will be available at the Helmet pop-up library. The library for accessible literature Celia will also be present. Additionally, the program includes space-themed crafts, Babydisco, braille activities, and games in the BUU-application.</p><p>The children's music group Trollsländan will perform an interactive space concert, and the dancing bat Chiro will hover around, spreading a festive atmosphere. Teater Taimine’s play Bobban will be performed on the outdoor stage, celebrating play and imagination – the audience is encouraged to dress according to the weather!</p><p>Some activities will run throughout the day, while others start at specific times and have a limited number of spots. Tickets for these activities will be available at Annegården’s entrance starting at 10 AM. A limited number of tickets can also be collected in advance from Luckan Helsingfors (Georgsgatan 27) between April 7 and April 11.</p><p>More information about Barnfesten 2025 can be found at:<br>https://barnkultur.luckan.fi/barnfesten/</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3922BC50420329FA59E5EEF090B2D886/Barnfesten_2025_Mita_avaruudessa_on_", "sv": "http://www.annantalo.fi/sv/evenemang/event/3922BC50420329FA59E5EEF090B2D886/Barnfesten_2025_Vad_finns_i_rymden_", "en": "http://www.annantalo.fi/en/events/event/3922BC50420329FA59E5EEF090B2D886/Barnfesten_2025_How_about_space_" }, "name": { "fi": "Barnfesten 2025 – Mitä avaruudessa on?", "sv": "Barnfesten 2025 – Vad finns i rymden?", "en": "Barnfesten 2025 – How about space?" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64874/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65072", "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, "info_url": { "fi": "https://www.lippu.fi/artist/annantalo/teatteri-tuomikko-ihmeitae-ja-kummia-3814636/", "sv": "https://www.lippu.fi/artist/annantalo/teatteri-tuomikko-ihmeitae-ja-kummia-3814636/", "en": "https://www.lippu.fi/artist/annantalo/teatteri-tuomikko-ihmeitae-ja-kummia-3814636/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165102, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T13:15:47.115207Z", "last_modified_time": "2025-01-23T13:15:47.115227Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763796.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165102/?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": "2025-01-23T13:15:47.088210Z", "last_modified_time": "2025-03-09T17:14:13.407939Z", "date_published": null, "start_time": "2025-03-22T12: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, "provider": null, "short_description": { "fi": "Pienen tytön päiväkirja vuodelta 1987 avaa oven aikaan, jolloin ei ollut nettiä ja puhelinkin oli johdolla kiinni seinässä.", "sv": "En liten flickas dagbok från 1987 öppnar dörren till en tid då det inte fanns något internet och till och med telefonen var kopplad till väggen.", "en": "A small girl’s diary from 1987 opens the door to a time when there was no internet, and even the phone was plugged to the wall." }, "description": { "fi": "<p>Pienen tytön päiväkirja vuodelta 1987 avaa oven aikaan, jolloin ei ollut nettiä ja puhelinkin oli johdolla kiinni seinässä.</p><p>Kavereiden kanssa leikittiin ulkona ja tutkittiin luonnon ihmeellisyyksiä. Näistä pikku-Terhi kirjoitti tarinoita rakkaaseen päiväkirjaansa, jonka pinta oli pehmeää kangasta, ja jonka pikkuruisen lukon avain roikkui ketjussa hänen kaulassaan. Kun Terhi löytää päiväkirjan vuosikymmeniä myöhemmin, päättää hän herättää tarinat eloon, jotta nykyajan lapsetkin pääsisivät nauttimaan niistä.<br> <br>Nukketeatteriesitys koostuu pienistä tarinoista, jotka innostavat nostamaan kiviä paikoiltaan ja katsomaan luontoa lähempää. Ilon aiheita ja pieniä ihmeitä -esityksen näyttämönä toimii esiintyjän päällä oleva vaate, joka muuntuu muutamalla käännöksellä aina uuden pienen tarinan lavastukseksi ja hahmoiksi. Esityksen yksi ihme onkin näyttämö, jonka kätkemiä salaisuuksia ei ensi katsomalta voisi arvata.<br> <br>Esityksen tavoitteena on innostaa lapsia luonnon tarkkailuun ja tutkimiseen sekä auttaa heitä ymmärtämään luonnon ihmeitä ja monimuotoisuutta. Kuinka jännittävä maailma voikaan löytyä, kun nostaa pitkään paikallaan olleen kiven pois paikaltaan, tai kuinka paljon enemmän metsäpolulla näkyy elämää, kun menee kyykkyyn ja katsoo ihan läheltä.</p><p>Esitys ottaa yleisön mukaan ihmeelliselle tutkimusretkelle, jossa katsomisen lisäksi pääsee myös osallistumaan.</p><p>Ihmeitä ja kummia on vuoden 2025 ITU lastenteatteripalkinnon saanut uutuusesitys.</p><p>Kieli: suomi<br>Kesto: 35 min<br>Ikäsuositus 2 +</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 12 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>", "sv": "<p>En liten flickas dagbok från 1987 öppnar dörren till en tid då det inte fanns något internet och till och med telefonen var kopplad till väggen.</p><p>Tillsammans med vänner lekte vi utomhus och utforskade naturens underverk. Om allt detta skrev lilla Terhi i sin älskade dagbok, som hade en mjuk tygyta och ett litet lås med en nyckel som hängde i en kedja runt hennes hals. När Terhi hittar dagboken flera decennier senare bestämmer hon sig för att väcka berättelserna till liv så att även dagens barn kan ta del av dem.<br> <br>Dockteaterföreställningen består av små berättelser som inspirerar till att plocka upp stenar och titta närmare på naturen. Scenen för föreställningen Ilon aiheita ja pieniä ihmeitä (Glädjeämnen och små under) är det plagg som artisten bär, vilket genom några få vändningar alltid förvandlas till miljön och karaktärerna i en ny liten berättelse. Ett av undren i föreställningen är just scenen, vars dolda hemligheter man aldrig skulle kunna ana vid första anblicken.<br> <br>Syftet med programmet är att inspirera barn att observera och utforska naturen, och att hjälpa dem att förstå naturens underverk och mångfald. Man kan upptäcka en spännande värld när man plockar upp en sten som legat länge på sin plats, eller se mycket mer liv längs en skogsstig när man sätter sig på huk och tittar närmare.</p><p>Föreställningen tar med publiken på en förunderlig upptäcktsresa, där man både kan titta och delta.</p><p>Premiären för denna föreställning som belönats med årets Itu25-pris kommer att äga rum i februari 2025.</p><p>Språk: finska<br>Längd 35 min.<br>Åldersrekommendation 2+</p>", "en": "<p>A small girl’s diary from 1987 opens the door to a time when there was no internet, and even the phone was plugged to the wall.</p><p>We played outside with our friends and explored the wonders of nature. Little Terhi wrote stories of these adventures in her beloved diary, the surface of which was made of soft fabric. The key to the diary’s tiny lock hung on the chain around her neck. When Terhi finds the diary decades later, she decides to bring the stories to life so that the children of today can also enjoy them.<br> <br>The puppet show consists of small stories that inspire you to lift up stones and take a closer look at nature. The scene of the performance “Sources of Joy and Small Wonders” is the garment on top of the performer, which is transformed into the staging and characters of a new little story with just a few twists. It is actually one of the wonders of the performance, as you could never guess the secrets it hides at first glance.<br> <br>The aim of the performance is to inspire children to observe and explore nature as well as to help them understand the wonders and diversity of nature. What an exciting world you can find when you lift up a stone that has been in its place for a long time, or how much more life you can see on the forest path when you squat down and observe it up close.</p><p>The performance takes the audience on an amazing expedition, in which you can both watch and participate.</p><p>The premiere of the show, which is also the recipient of the Itu 25 Award, will take place in February 2025.</p><p>Language: Finnish<br>Duration: 35 min</p><p>Age recommendation: +2</p><p><b>Hurraa! Theatre Weeks <br>Take a Child to the Theatre</b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurrah! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Bring Your Child to the Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.<br> <br>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/473D0E4EEF43CAB1A1290FEB696A672F/Teatteri_Tuomikko_Ihmeita_ja_kummia", "sv": "http://www.annantalo.fi/sv/evenemang/event/473D0E4EEF43CAB1A1290FEB696A672F/Teater_Tuomikko_Ihmeita_ja_kummia_Under_och_markligheter_", "en": "http://www.annantalo.fi/en/events/event/473D0E4EEF43CAB1A1290FEB696A672F/Teatteri_Tuomikko_Wonders_Oddities" }, "name": { "fi": "Teatteri Tuomikko: Ihmeitä ja kummia – Hurraa! -teatteriviikot", "sv": "Teater Tuomikko: Ihmeitä ja kummia (Under och märkligheter) – Hurraa!-teaterveckor", "en": "Teatteri Tuomikko: Wonders & Oddities – Hurraa! theatre weeks" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65072/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65070", "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, "info_url": { "fi": "https://www.lippu.fi/artist/annantalo/teatteri-tuomikko-ihmeitae-ja-kummia-3814636/", "sv": "https://www.lippu.fi/artist/annantalo/teatteri-tuomikko-ihmeitae-ja-kummia-3814636/", "en": "https://www.lippu.fi/artist/annantalo/teatteri-tuomikko-ihmeitae-ja-kummia-3814636/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165101, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T13:15:46.836998Z", "last_modified_time": "2025-01-23T13:15:46.837018Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763795.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165101/?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": "2025-01-23T13:15:46.809922Z", "last_modified_time": "2025-03-09T17:14:13.164128Z", "date_published": null, "start_time": "2025-03-22T10: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, "provider": null, "short_description": { "fi": "Pienen tytön päiväkirja vuodelta 1987 avaa oven aikaan, jolloin ei ollut nettiä ja puhelinkin oli johdolla kiinni seinässä.", "sv": "En liten flickas dagbok från 1987 öppnar dörren till en tid då det inte fanns något internet och till och med telefonen var kopplad till väggen.", "en": "A small girl’s diary from 1987 opens the door to a time when there was no internet, and even the phone was plugged to the wall." }, "description": { "fi": "<p>Pienen tytön päiväkirja vuodelta 1987 avaa oven aikaan, jolloin ei ollut nettiä ja puhelinkin oli johdolla kiinni seinässä.</p><p>Kavereiden kanssa leikittiin ulkona ja tutkittiin luonnon ihmeellisyyksiä. Näistä pikku-Terhi kirjoitti tarinoita rakkaaseen päiväkirjaansa, jonka pinta oli pehmeää kangasta, ja jonka pikkuruisen lukon avain roikkui ketjussa hänen kaulassaan. Kun Terhi löytää päiväkirjan vuosikymmeniä myöhemmin, päättää hän herättää tarinat eloon, jotta nykyajan lapsetkin pääsisivät nauttimaan niistä.<br> <br>Nukketeatteriesitys koostuu pienistä tarinoista, jotka innostavat nostamaan kiviä paikoiltaan ja katsomaan luontoa lähempää. Ilon aiheita ja pieniä ihmeitä -esityksen näyttämönä toimii esiintyjän päällä oleva vaate, joka muuntuu muutamalla käännöksellä aina uuden pienen tarinan lavastukseksi ja hahmoiksi. Esityksen yksi ihme onkin näyttämö, jonka kätkemiä salaisuuksia ei ensi katsomalta voisi arvata.<br> <br>Esityksen tavoitteena on innostaa lapsia luonnon tarkkailuun ja tutkimiseen sekä auttaa heitä ymmärtämään luonnon ihmeitä ja monimuotoisuutta. Kuinka jännittävä maailma voikaan löytyä, kun nostaa pitkään paikallaan olleen kiven pois paikaltaan, tai kuinka paljon enemmän metsäpolulla näkyy elämää, kun menee kyykkyyn ja katsoo ihan läheltä.</p><p>Esitys ottaa yleisön mukaan ihmeelliselle tutkimusretkelle, jossa katsomisen lisäksi pääsee myös osallistumaan.</p><p>Ihmeitä ja kummia on vuoden 2025 ITU lastenteatteripalkinnon saanut uutuusesitys.</p><p>Kieli: suomi<br>Kesto: 35 min<br>Ikäsuositus 2 +</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 12 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>", "sv": "<p>En liten flickas dagbok från 1987 öppnar dörren till en tid då det inte fanns något internet och till och med telefonen var kopplad till väggen.</p><p>Tillsammans med vänner lekte vi utomhus och utforskade naturens underverk. Om allt detta skrev lilla Terhi i sin älskade dagbok, som hade en mjuk tygyta och ett litet lås med en nyckel som hängde i en kedja runt hennes hals. När Terhi hittar dagboken flera decennier senare bestämmer hon sig för att väcka berättelserna till liv så att även dagens barn kan ta del av dem.<br> <br>Dockteaterföreställningen består av små berättelser som inspirerar till att plocka upp stenar och titta närmare på naturen. Scenen för föreställningen Ilon aiheita ja pieniä ihmeitä (Glädjeämnen och små under) är det plagg som artisten bär, vilket genom några få vändningar alltid förvandlas till miljön och karaktärerna i en ny liten berättelse. Ett av undren i föreställningen är just scenen, vars dolda hemligheter man aldrig skulle kunna ana vid första anblicken.<br> <br>Syftet med programmet är att inspirera barn att observera och utforska naturen, och att hjälpa dem att förstå naturens underverk och mångfald. Man kan upptäcka en spännande värld när man plockar upp en sten som legat länge på sin plats, eller se mycket mer liv längs en skogsstig när man sätter sig på huk och tittar närmare.</p><p>Föreställningen tar med publiken på en förunderlig upptäcktsresa, där man både kan titta och delta.</p><p>Premiären för denna föreställning som belönats med årets Itu25-pris kommer att äga rum i februari 2025.</p><p>Språk: finska<br>Längd 35 min.<br>Åldersrekommendation 2+</p>", "en": "<p>A small girl’s diary from 1987 opens the door to a time when there was no internet, and even the phone was plugged to the wall.</p><p>We played outside with our friends and explored the wonders of nature. Little Terhi wrote stories of these adventures in her beloved diary, the surface of which was made of soft fabric. The key to the diary’s tiny lock hung on the chain around her neck. When Terhi finds the diary decades later, she decides to bring the stories to life so that the children of today can also enjoy them.<br> <br>The puppet show consists of small stories that inspire you to lift up stones and take a closer look at nature. The scene of the performance “Sources of Joy and Small Wonders” is the garment on top of the performer, which is transformed into the staging and characters of a new little story with just a few twists. It is actually one of the wonders of the performance, as you could never guess the secrets it hides at first glance.<br> <br>The aim of the performance is to inspire children to observe and explore nature as well as to help them understand the wonders and diversity of nature. What an exciting world you can find when you lift up a stone that has been in its place for a long time, or how much more life you can see on the forest path when you squat down and observe it up close.</p><p>The performance takes the audience on an amazing expedition, in which you can both watch and participate.</p><p>The premiere of the show, which is also the recipient of the Itu 25 Award, will take place in February 2025.</p><p>Language: Finnish<br>Duration: 35 min</p><p>Age recommendation: +2</p><p><b>Hurraa! Theatre Weeks <br>Take a Child to the Theatre</b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurrah! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Bring Your Child to the Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.<br> <br>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BABA8FD319008AB51C2456128E0D392C/Teatteri_Tuomikko_Ihmeita_ja_kummia", "sv": "http://www.annantalo.fi/sv/evenemang/event/BABA8FD319008AB51C2456128E0D392C/Teater_Tuomikko_Ihmeita_ja_kummia_Under_och_markligheter_", "en": "http://www.annantalo.fi/en/events/event/BABA8FD319008AB51C2456128E0D392C/Teatteri_Tuomikko_Wonders_Oddities" }, "name": { "fi": "Teatteri Tuomikko: Ihmeitä ja kummia – Hurraa! -teatteriviikot", "sv": "Teater Tuomikko: Ihmeitä ja kummia (Under och märkligheter) – Hurraa!-teaterveckor", "en": "Teatteri Tuomikko: Wonders & Oddities – Hurraa! theatre weeks" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65070/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65064", "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": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165098, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T13:15:46.150144Z", "last_modified_time": "2025-01-23T13:15:46.150166Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763782.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165098/?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": "2025-01-23T13:15:46.117976Z", "last_modified_time": "2025-03-09T17:14:12.564929Z", "date_published": null, "start_time": "2025-03-21T08: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, "provider": null, "short_description": { "fi": "Rapuooppera on musiikkipitoinen teatteriesitys lapsille, joka perustuu Leena Sainion samannimisen runoteokseen. Esitys juhlistaa Kansainvälistä Nukketeatteripäivää!", "sv": "Rapuooppera är en musikteaterföreställning för barn, baserad på Leena Sainios dikt med samma namn. I dag firar vi den internationella Dockteaterdagen", "en": "Rapuooppera is a musical theatre performance for children, based on Leena Sainio’s poem of the same name. We celebrate the International Puppet theatre Day!" }, "description": { "fi": "<p>Rapuooppera on musiikkipitoinen teatteriesitys lapsille, joka perustuu Leena Sainion samannimisen runoteokseen. Esitys juhlistaa Kansainvälistä Nukketeatteripäivää!</p><p>Pienistä tarinoista koostuva esitys sisältää musiikkia, tanssia, laulua ja minimalistista nukketeatteria sekä paljon hauskoja hahmoja! Runot käsittelevät ihmeellistä elämää, eläimiä ja luontoa sekä universumin mysteeriä.</p><p>Esitys sopii 3–7 –vuotiaille ja heidän perheilleen.</p><p>Ryhmäilmoittautuminen maksuttomiin aamuesityksiin: kultus.fi 3.2. alkaen</p><p>Klo 18 avoin näytös liput 6 €, Lippu.fi</p><p>Kesto n. 40 minuuttia. <br>Kieli: suomi<br>Leena Sainio: Rapuooppera (2021, Enostone).</p><p>Esiintyminen, musiikin sävellys, ohjaus ja koreografia: Talvikki Eerola <br>Nuket, pukusuunnittelu, visuaalinen suunnittelu: Janne Siltavuori <br>Dramaturginen apu: Arni Rajamäki <br>Ohjauksellinen apu: Henni Kervinen <br>Pukujen valmistus: Marita Kuusiniemi <br>Tuotanto: Wusheng Company <br>Kuvat: Janne Siltavuori</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>", "sv": "<p>Rapuooppera är en musikteaterföreställning för barn, baserad på Leena Sainios dikt med samma namn. I dag firar vi den internationella Dockteaterdagen</p><p>Föreställningen som består av korta berättelser innehåller musik, dans, sång och minimalistisk dockteater samt massor av skojiga figurer! Dikterna handlar om livets under, djur, natur och universums mysterier.</p><p>Föreställningen är lämplig för 3–7-åriga barn och deras familjer.</p><p>Längd ca 40 min.</p><p>Fritt inträde, anmälan från och med 3.2. på kultus.fi</p><p>Leena Sainio: Rapuooppera (2021, Enostone-kustannus).<br>I rollerna, musikkomposition, regi och koreografi: Talvikki Eerola<br>Dockor, kostymdesign, visuell design: Janne Siltavuori<br>Dramaturgisk assistans: Arni Rajamäki<br>Regiassistans: Henni Kervinen<br>Kostymtillverkning: Marita Kuusiniemi<br>Produktion: Wusheng Company</p>", "en": "<p>Rapuooppera is a musical theatre performance for children, based on Leena Sainio’s poem of the same name. We celebrate the International Puppet theatre Day!</p><p>The performance consists of small stories and includes music, dance, singing and minimalist puppetry, as well as lots of fun characters! The poems deal with wonderful life, animals and nature, as well as the mystery of the universe.</p><p>The performance is suitable for children aged 3–7 and their families.<br>Duration approx. 40 minutes.</p><p>Free entry, registration on 3 February at kultus.fi</p><p>Leena Sainio: Rapuooppera (2021, Enostone publish)<br>Performance, music composition, direction and choreography: Talvikki Eerola<br>Puppets, costume design, visual design: Janne Siltavuori<br>Dramaturgical help: Arni Rajamäki<br>Directional aid: Henni Kervinen<br>Costume manufacture: Marita Kuusiniemi<br>Production: Wusheng Company</p><p><b>Hurraa! Theatre Weeks <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/08E9C6E91ACB4E06B75F6A7270F69502/Talvikki_Eerola_Rapuooppera_", "sv": "http://www.annantalo.fi/sv/evenemang/event/08E9C6E91ACB4E06B75F6A7270F69502/Talvikki_Eerola_Rapuooppera_", "en": "http://www.annantalo.fi/en/events/event/08E9C6E91ACB4E06B75F6A7270F69502/Talvikki_Eerola_Rapuooppera_" }, "name": { "fi": "Talvikki Eerola: Rapuooppera – Hurraa! -teatteriviikot", "sv": "Talvikki Eerola: Rapuooppera – Hurraa! -teaterveckor", "en": "Talvikki Eerola: Rapuooppera – Hurraa! theatre weeks" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65064/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65062", "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": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165097, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T13:15:45.913462Z", "last_modified_time": "2025-01-23T13:15:45.913483Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763778.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165097/?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": "2025-01-23T13:15:45.885344Z", "last_modified_time": "2025-03-09T17:14:12.367200Z", "date_published": null, "start_time": "2025-03-21T07: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, "provider": null, "short_description": { "fi": "Rapuooppera on musiikkipitoinen teatteriesitys lapsille, joka perustuu Leena Sainion samannimisen runoteokseen. Esitys juhlistaa Kansainvälistä Nukketeatteripäivää!", "sv": "Rapuooppera är en musikteaterföreställning för barn, baserad på Leena Sainios dikt med samma namn. I dag firar vi den internationella Dockteaterdagen", "en": "Rapuooppera is a musical theatre performance for children, based on Leena Sainio’s poem of the same name. We celebrate the International Puppet theatre Day!" }, "description": { "fi": "<p>Rapuooppera on musiikkipitoinen teatteriesitys lapsille, joka perustuu Leena Sainion samannimisen runoteokseen. Esitys juhlistaa Kansainvälistä Nukketeatteripäivää!</p><p>Pienistä tarinoista koostuva esitys sisältää musiikkia, tanssia, laulua ja minimalistista nukketeatteria sekä paljon hauskoja hahmoja! Runot käsittelevät ihmeellistä elämää, eläimiä ja luontoa sekä universumin mysteeriä.</p><p>Esitys sopii 3–7 –vuotiaille ja heidän perheilleen.</p><p>Ryhmäilmoittautuminen maksuttomiin aamuesityksiin: kultus.fi 3.2. alkaen</p><p>Klo 18 avoin näytös liput 6 €, Lippu.fi</p><p>Kesto n. 40 minuuttia. <br>Kieli: suomi<br>Leena Sainio: Rapuooppera (2021, Enostone).</p><p>Esiintyminen, musiikin sävellys, ohjaus ja koreografia: Talvikki Eerola <br>Nuket, pukusuunnittelu, visuaalinen suunnittelu: Janne Siltavuori <br>Dramaturginen apu: Arni Rajamäki <br>Ohjauksellinen apu: Henni Kervinen <br>Pukujen valmistus: Marita Kuusiniemi <br>Tuotanto: Wusheng Company <br>Kuvat: Janne Siltavuori</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>", "sv": "<p>Rapuooppera är en musikteaterföreställning för barn, baserad på Leena Sainios dikt med samma namn. I dag firar vi den internationella Dockteaterdagen</p><p>Föreställningen som består av korta berättelser innehåller musik, dans, sång och minimalistisk dockteater samt massor av skojiga figurer! Dikterna handlar om livets under, djur, natur och universums mysterier.</p><p>Föreställningen är lämplig för 3–7-åriga barn och deras familjer.</p><p>Längd ca 40 min.</p><p>Fritt inträde, anmälan från och med 3.2. på kultus.fi</p><p>Leena Sainio: Rapuooppera (2021, Enostone-kustannus).<br>I rollerna, musikkomposition, regi och koreografi: Talvikki Eerola<br>Dockor, kostymdesign, visuell design: Janne Siltavuori<br>Dramaturgisk assistans: Arni Rajamäki<br>Regiassistans: Henni Kervinen<br>Kostymtillverkning: Marita Kuusiniemi<br>Produktion: Wusheng Company</p>", "en": "<p>Rapuooppera is a musical theatre performance for children, based on Leena Sainio’s poem of the same name. We celebrate the International Puppet theatre Day!</p><p>The performance consists of small stories and includes music, dance, singing and minimalist puppetry, as well as lots of fun characters! The poems deal with wonderful life, animals and nature, as well as the mystery of the universe.</p><p>The performance is suitable for children aged 3–7 and their families.<br>Duration approx. 40 minutes.</p><p>Free entry, registration on 3 February at kultus.fi</p><p>Leena Sainio: Rapuooppera (2021, Enostone publish)<br>Performance, music composition, direction and choreography: Talvikki Eerola<br>Puppets, costume design, visual design: Janne Siltavuori<br>Dramaturgical help: Arni Rajamäki<br>Directional aid: Henni Kervinen<br>Costume manufacture: Marita Kuusiniemi<br>Production: Wusheng Company</p><p><b>Hurraa! Theatre Weeks <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/807607E42B9BC787B0B329EC658D667F/Talvikki_Eerola_Rapuooppera_", "sv": "http://www.annantalo.fi/sv/evenemang/event/807607E42B9BC787B0B329EC658D667F/Talvikki_Eerola_Rapuooppera_", "en": "http://www.annantalo.fi/en/events/event/807607E42B9BC787B0B329EC658D667F/Talvikki_Eerola_Rapuooppera_" }, "name": { "fi": "Talvikki Eerola: Rapuooppera – Hurraa! -teatteriviikot", "sv": "Talvikki Eerola: Rapuooppera – Hurraa! -teaterveckor", "en": "Talvikki Eerola: Rapuooppera – Hurraa! theatre weeks" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65062/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65044", "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, "info_url": { "fi": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/", "sv": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/", "en": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153741, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-14T11:14:24.479318Z", "last_modified_time": "2025-01-14T11:14:24.479334Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763724.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153741/?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": "2025-01-14T11:14:24.455163Z", "last_modified_time": "2025-03-09T17:14:10.371738Z", "date_published": null, "start_time": "2025-03-16T12: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, "provider": null, "short_description": { "fi": "Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu Suomeen! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.", "sv": "Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Finland! Vi bjuder på en modern tolkning av Karagöz.", "en": "The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Finland. Karagöz is with you with a modern interpretation!" }, "description": { "fi": "<p>Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu Suomeen! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.</p><p>Perinteistä turkkilaista nukketeatteria esitetään nyt ensimmäisen kerran yhdistämällä melkein 700 vanhaa perinnettä moderniin ilmaisuun. Karagöz ja Hacivat ovat tarinan päähenkilöt. Tarina saa alkunsa seuraavasti: Karagöz on taas kerran työttömänä, ja Hacivat löytää hänelle työn Suomesta. Karagöz pääsee töihin pitseriaan, jossa hän ottaa vastaan tilauksia. Tilauksia tehdään eri kielillä, ja asiakkailla on monenlaisia erityistoiveita. Karagoziltä menevät kaikki tilaukset sekaisin, ja seuraa suuri sotku. Miten on mahdollista palauttaa järjestys ja sopusointu? Esityksen aiheena on rinnakkaiselo, ja sen metaforana toimii pitsa.</p><p>Karagöz-teatteriperinne nimettiin Unescon ihmiskunnan aineettoman kulttuuriperinnön luetteloon vuonna 2009. <br>Pizza Pizza Karagöz on vertauskuvallinen nukketeatteriesitys, joka kuvaa, miten kaikista eri taustoista tulevat ihmiset Suomessa voivat elää rauhassa ja sopusoinnussa eroistaan huolimatta. Pitsan tavoin erilaisista aineksista syntyy herkullinen kokonaisuus. Esityksen kieliä ovat ruotsi, somali, arabia ja turkki. Visuaalisesti nautittavaa esitystä täydentävät värikkäät hahmot ja asut esimerkiksi suomalaisesta, romani-, englantilaisesta ja virolaisesta kulttuurista.</p><p>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Kesto 40 min <br>Ikäsuositus: 7 +<br> <br>Kieli: monikielinen esitys. Kuullaan mm. turkkia, suomea, ruotsia, arabiaa ja viroa.</p><p><b> Hullunkurinen pizza -kuvataidepaja </b><br>Esitysten välissä, klo 12.45–13.45:<br>Miltä näyttäisi kahvimustikkapizza? Mahtuvatko merilevä, puolukka ja sinihernekukka samaan pizzaan? Maalaa oma pizzasi luonnonväreillä. Ohjaus, Marjut Maristo</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 12 eri esitystä ja 40 näytöstä ympäri Helsinkiä.<br> <br>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>", "sv": "<p>Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Finland! Vi bjuder på en modern tolkning av Karagöz.</p><p>För första gången intar den traditionella och nästan 700 år gamla dockteatern scenen i en kombination av traditionella och moderna stilar. Karagöz och Hacivat är de två huvudpersonerna. Så här lyder berättelsen: Karagöz är arbetslös, som vanligt, och Hacivat hittar ett jobb till honom i Finland. Karagöz tar emot beställningar på en pizzeria. Beställningarna görs på olika språk och kunderna har olika speciella önskemål. Karagöz blandar ihop alla beställningarna och allt blir en enda röra. Hur ska det kunna bli ordning och harmoni igen? Den här uppvisningen handlar om att samexistera och genom att använda pizza som en metafor.</p><p>Det traditionella verket ”Karagöz” skrevs 2009 in på Unescos (United Nations Educational Scientific and Cultural Organization) representativa lista över mänsklighetens immateriella kulturarv. <br>Pizza Pizza Karagöz är en metaforisk dockteater som handlar om att människor av olika ras som bor i Finland kan leva i fred och harmoni. Trots alla skillnader kan vi göra varandra glada i det stora hela, precis som en pizza. Föreställningen är svensk, somalisk, irakisk och turkisk. Den bjuder på trevliga visuella element bestående av de färggranna personligheterna och dräkterna hos personer från olika kulturer, som exempelvis finsk, engelsk, romsk och estnisk kultur. <br>Ålder: 7+<br>Längd: 40 mins.</p><p><b> Putslustig pizza -konstverkstad </b><br>Mellan föreställningar kl. 12.45-13.45<br>En pizza med blåbär och kaffe? Kan du föreställa dig en pizza med havstång, lingon och blåärt blomma? Måla din egen lustig pizza med naturfärjer. Instruktör: Marjut Maristo</p><p><b>Hurraa!-teaterveckor <br>Ta med ditt barn till teatern</b><br>Hurraa! teaterveckor syftar till att ge så många barn och ungdomar som möjligt chansen att se levande teater som är särskilt avsedd för dem.</p><p>Hurra!-teaterveckorna sätter fokus på kvalitetsscenkonst för barn och ungdomar. Programmet omfattar 12 olika föreställningar och 40 visningar runt om i Helsingfors.</p><p>Hurra!-teaterveckornas föreställningar kommer att presenteras i Helsingfors kulturcentrum 14–26 mars 2025. Föreställningarna äger rum i Annegården, Caisa, Gamlasgården, Malms kulturhus, Stoa och Nordhuset. Förutom i kulturcentrumen kommer föreställningarna att glädja barn och ungdomar även på Helsingfors Barnsjukhus.</p><p>Hurraa! arrangeras som en del av den internationella teaterkampanjveckan: Take a child to the theatre – ta med ett barn på teater. Under veckan uppmärksammas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>", "en": "<p>The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Finland. Karagöz is with you with a modern interpretation!</p><p>A traditional Turkish puppet theatre, nearly 700 years old, takes the stage for the first time combining traditional and modern styles. Karagöz and Hacivat are the two main characters. The story is as follows: Karagöz is unemployed, as always, and Hacivat finds him a job in Finland. Karagöz takes orders in a pizzeria. The orders are made in different languages and the customers have various special requests. Karagöz gets all the orders wrong and things become a mess. How can order and harmony be restored? This is a performance about coexistence which uses pizza as the metaphor.</p><p>The traditional play of Karagöz was inscribed in 2009 on the Representative List of the Intangible Cultural Heritage of Humanity of the United Nations Educational Scientific and Cultural Organization (UNESCO). <br>Pizza Pizza Karagöz show is a metaphorical puppet play that tells that people from all different races living in Finland can live in peace and harmony, despite all the differences, we can make each other happy as a whole like a pizza. The show is Swedish, Somali, Iraqi, Turkish. It offers an enjoyable visual with the colorful personalities and costumes of people from different cultures such as Finnish, English, Romani, and Estonian. <br> <br>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Duration 40 min <br>Age limit: 7 +<br> <br>Language: Turkish and sometimes characters speak in their own language - such as Swedish, Finnish, Arabic or Estonian.</p><p><b> Unbelievable pizza - visual art workshop </b><br>Between the two shows, at 12.45-13.45<br>A pizza with coffee and blueberry? Can you mix seaweed, lingonberry and blue pea flower? Paint your own crazy pizza with natural colours. Guidance: Marjut Maristo</p><p><b>Hurraa! Theatre Weeks <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/090121C4E32F6149C101450CAD3D2407/Pizza_Pizza_Karagoz", "sv": "http://www.annantalo.fi/sv/evenemang/event/090121C4E32F6149C101450CAD3D2407/Pizza_Pizza_Karagoz", "en": "http://www.annantalo.fi/en/events/event/090121C4E32F6149C101450CAD3D2407/Pizza_Pizza_Karagoz" }, "name": { "fi": "Pizza Pizza Karagöz – Hurraa! -teatteriviikot", "sv": "Pizza Pizza Karagöz – Hurraa!-teaterveckor", "en": "Pizza Pizza Karagöz – Hurraa! Theatre weeks" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65044/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65043", "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, "info_url": { "fi": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/", "sv": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/", "en": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153740, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-14T11:14:24.292786Z", "last_modified_time": "2025-01-14T11:14:24.292802Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763723.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153740/?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": "2025-01-14T11:14:24.252032Z", "last_modified_time": "2025-03-09T17:14:10.263721Z", "date_published": null, "start_time": "2025-03-16T10: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, "provider": null, "short_description": { "fi": "Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu Suomeen! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.", "sv": "Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Finland! Vi bjuder på en modern tolkning av Karagöz.", "en": "The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Finland. Karagöz is with you with a modern interpretation!" }, "description": { "fi": "<p>Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu Suomeen! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.</p><p>Perinteistä turkkilaista nukketeatteria esitetään nyt ensimmäisen kerran yhdistämällä melkein 700 vanhaa perinnettä moderniin ilmaisuun. Karagöz ja Hacivat ovat tarinan päähenkilöt. Tarina saa alkunsa seuraavasti: Karagöz on taas kerran työttömänä, ja Hacivat löytää hänelle työn Suomesta. Karagöz pääsee töihin pitseriaan, jossa hän ottaa vastaan tilauksia. Tilauksia tehdään eri kielillä, ja asiakkailla on monenlaisia erityistoiveita. Karagoziltä menevät kaikki tilaukset sekaisin, ja seuraa suuri sotku. Miten on mahdollista palauttaa järjestys ja sopusointu? Esityksen aiheena on rinnakkaiselo, ja sen metaforana toimii pitsa.</p><p>Karagöz-teatteriperinne nimettiin Unescon ihmiskunnan aineettoman kulttuuriperinnön luetteloon vuonna 2009. <br>Pizza Pizza Karagöz on vertauskuvallinen nukketeatteriesitys, joka kuvaa, miten kaikista eri taustoista tulevat ihmiset Suomessa voivat elää rauhassa ja sopusoinnussa eroistaan huolimatta. Pitsan tavoin erilaisista aineksista syntyy herkullinen kokonaisuus. Esityksen kieliä ovat ruotsi, somali, arabia ja turkki. Visuaalisesti nautittavaa esitystä täydentävät värikkäät hahmot ja asut esimerkiksi suomalaisesta, romani-, englantilaisesta ja virolaisesta kulttuurista.</p><p>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Kesto 40 min <br>Ikäsuositus: 7 +<br> <br>Kieli: monikielinen esitys. Kuullaan mm. turkkia, suomea, ruotsia, arabiaa ja viroa.</p><p><b> Hullunkurinen pizza -kuvataidepaja </b><br>Esitysten välissä, klo 12.45–13.45:<br>Miltä näyttäisi kahvimustikkapizza? Mahtuvatko merilevä, puolukka ja sinihernekukka samaan pizzaan? Maalaa oma pizzasi luonnonväreillä. Ohjaus, Marjut Maristo</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 12 eri esitystä ja 40 näytöstä ympäri Helsinkiä.<br> <br>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>", "sv": "<p>Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Finland! Vi bjuder på en modern tolkning av Karagöz.</p><p>För första gången intar den traditionella och nästan 700 år gamla dockteatern scenen i en kombination av traditionella och moderna stilar. Karagöz och Hacivat är de två huvudpersonerna. Så här lyder berättelsen: Karagöz är arbetslös, som vanligt, och Hacivat hittar ett jobb till honom i Finland. Karagöz tar emot beställningar på en pizzeria. Beställningarna görs på olika språk och kunderna har olika speciella önskemål. Karagöz blandar ihop alla beställningarna och allt blir en enda röra. Hur ska det kunna bli ordning och harmoni igen? Den här uppvisningen handlar om att samexistera och genom att använda pizza som en metafor.</p><p>Det traditionella verket ”Karagöz” skrevs 2009 in på Unescos (United Nations Educational Scientific and Cultural Organization) representativa lista över mänsklighetens immateriella kulturarv. <br>Pizza Pizza Karagöz är en metaforisk dockteater som handlar om att människor av olika ras som bor i Finland kan leva i fred och harmoni. Trots alla skillnader kan vi göra varandra glada i det stora hela, precis som en pizza. Föreställningen är svensk, somalisk, irakisk och turkisk. Den bjuder på trevliga visuella element bestående av de färggranna personligheterna och dräkterna hos personer från olika kulturer, som exempelvis finsk, engelsk, romsk och estnisk kultur. <br>Ålder: 7+<br>Längd: 40 mins.</p><p><b> Putslustig pizza -konstverkstad </b><br>Mellan föreställningar kl. 12.45-13.45<br>En pizza med blåbär och kaffe? Kan du föreställa dig en pizza med havstång, lingon och blåärt blomma? Måla din egen lustig pizza med naturfärjer. Instruktör: Marjut Maristo</p><p><b>Hurraa!-teaterveckor <br>Ta med ditt barn till teatern</b><br>Hurraa! teaterveckor syftar till att ge så många barn och ungdomar som möjligt chansen att se levande teater som är särskilt avsedd för dem.</p><p>Hurra!-teaterveckorna sätter fokus på kvalitetsscenkonst för barn och ungdomar. Programmet omfattar 12 olika föreställningar och 40 visningar runt om i Helsingfors.</p><p>Hurra!-teaterveckornas föreställningar kommer att presenteras i Helsingfors kulturcentrum 14–26 mars 2025. Föreställningarna äger rum i Annegården, Caisa, Gamlasgården, Malms kulturhus, Stoa och Nordhuset. Förutom i kulturcentrumen kommer föreställningarna att glädja barn och ungdomar även på Helsingfors Barnsjukhus.</p><p>Hurraa! arrangeras som en del av den internationella teaterkampanjveckan: Take a child to the theatre – ta med ett barn på teater. Under veckan uppmärksammas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>", "en": "<p>The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Finland. Karagöz is with you with a modern interpretation!</p><p>A traditional Turkish puppet theatre, nearly 700 years old, takes the stage for the first time combining traditional and modern styles. Karagöz and Hacivat are the two main characters. The story is as follows: Karagöz is unemployed, as always, and Hacivat finds him a job in Finland. Karagöz takes orders in a pizzeria. The orders are made in different languages and the customers have various special requests. Karagöz gets all the orders wrong and things become a mess. How can order and harmony be restored? This is a performance about coexistence which uses pizza as the metaphor.</p><p>The traditional play of Karagöz was inscribed in 2009 on the Representative List of the Intangible Cultural Heritage of Humanity of the United Nations Educational Scientific and Cultural Organization (UNESCO). <br>Pizza Pizza Karagöz show is a metaphorical puppet play that tells that people from all different races living in Finland can live in peace and harmony, despite all the differences, we can make each other happy as a whole like a pizza. The show is Swedish, Somali, Iraqi, Turkish. It offers an enjoyable visual with the colorful personalities and costumes of people from different cultures such as Finnish, English, Romani, and Estonian. <br> <br>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Duration 40 min <br>Age limit: 7 +<br> <br>Language: Turkish and sometimes characters speak in their own language - such as Swedish, Finnish, Arabic or Estonian.</p><p><b> Unbelievable pizza - visual art workshop </b><br>Between the two shows, at 12.45-13.45<br>A pizza with coffee and blueberry? Can you mix seaweed, lingonberry and blue pea flower? Paint your own crazy pizza with natural colours. Guidance: Marjut Maristo</p><p><b>Hurraa! Theatre Weeks <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9E3EFB165796942FBE5D97680DE03491/Pizza_Pizza_Karagoz", "sv": "http://www.annantalo.fi/sv/evenemang/event/9E3EFB165796942FBE5D97680DE03491/Pizza_Pizza_Karagoz", "en": "http://www.annantalo.fi/en/events/event/9E3EFB165796942FBE5D97680DE03491/Pizza_Pizza_Karagoz" }, "name": { "fi": "Pizza Pizza Karagöz – Hurraa! -teatteriviikot", "sv": "Pizza Pizza Karagöz – Hurraa!-teaterveckor", "en": "Pizza Pizza Karagöz – Hurraa! Theatre weeks" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65043/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19342906", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2039568/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-19342906/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-19342906/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-19342906/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235438, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:43.926542Z", "last_modified_time": "2025-02-17T11:16:43.926559Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/clubactone222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235438/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:16:50.902090Z", "last_modified_time": "2025-03-08T23:15:11.773519Z", "date_published": null, "start_time": "2025-03-08T19: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "CLUB ACT!ONE Studio Pasila on Suomen johtava stand up -komiikan estradi." }, "description": { "fi": "<p>Studio Pasila on Suomen johtava stand up -komiikan estradi. Lavalle nousevat maan eturivin stand up -koomikot. Stand up on irrottelua, vedätystä, itsensä alttiiksi panemista ja uuden esitystilanteen nopeaa oivaltamista.</p><p>Esitykset kestävät noin 2 tuntia, sisältäen lyhyen väliajan. Esitykset K-18.</p><p><br><strong>Helmikuu</strong><br>LA 1.2. 19:00 Köpi Kallio, Jukka Lindström, André Wickström, Saana Peltola<br>PE 7.2. 19:00 Köpi Kallio, Heli Sutela, Aatu Raitala, Ilari Johansson<br>PE 7.2. 19:00 arena Ali soolo<br>LA 8.2. 21:30 Inka Valima, Illusia Sarvas, Jamie MacDonald, Mikko Kauppinen<br>LA 15.2. 19:00 Mikko Vaismaa, Heli Sutela, Raisa Omaheimo, Antti Haapala<br>PE 21.2. 19:00 Pasila, Iikka Kivi Erityinen luontosuhde<br>LA 22.2. 21:30 Fathi Ahmed, Leo Holmström, Kaisa Pylkkänen, Miika Linna</p><p><strong>Maaliskuu</strong><br>LA 1.3. 19.00 Arena Kevätkarkelot<br>LA 1.3. klo 21.30 Mebe, Jaakko Antila, Pete Poskiparta, Amanda Hiekkataipale<br>LA 8.3. 21:30 Tomi Walamies, Jamie MacDonald, Anna Rimpelä, Salla Avelin<br>LA 15.3. 21:30 Aurora Vasama, Aatu Raitala, Matti Paalanen, Amir Amokrane<br>LA 22.3. 21:30 Helena Pöllänen, Roope Pettersson, Riku Sottinen, Pinja Salminen<br>LA 29.3. 21:30 Inka Valima, Miksu Pellikka, Eeva Vekki, Matti Patronen</p><p><strong>Huhtikuu</strong><br>LA 5.4. 21:30 Illusia Sarvas, Antti Haapala, Ray Zambino, Paul Westlake<br>LA 12.4. 21:30 Harri Soinila, Ida Grönlund, Anna Rimpelä, Pyry Valtonen</p><p>Yhteistyössä W&T Comedyn kanssa.</p>", "en": "<p><strong>CLUB ACT!ONE</strong></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=en" }, "name": { "en": "Club Act!One K-18" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila LÄMPIÖ" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19342906/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19350716", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748848/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350716/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350716/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350716/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235437, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:43.685563Z", "last_modified_time": "2025-02-17T11:16:43.685581Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/uusi-eden_222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235437/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:16:50.792996Z", "last_modified_time": "2025-03-08T23:15:11.729764Z", "date_published": null, "start_time": "2025-03-08T16: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Henri Lyysaari Uusi Eden Uusi Eden on karnevalistinen musikaalikomedia maailmanlopun jälkeisestä Pasilasta.", "en": "Juho Mantere" }, "description": { "fi": "Henri Lyysaari<br><strong>Uusi Eden</strong></p><p>Uusi Eden on karnevalistinen musikaalikomedia maailmanlopun jälkeisestä Pasilasta. Hillittömän hauskassa show’ssa Juho Mantereen groteski ote kohtaa Disney-musikaalin hengen.</p><p>Globaali ydinsota on pyyhkinyt planeetan yli, mutta sattuman oikusta eräs teatteri Pasilassa henkilökuntineen on säästynyt tuholta. Kun teatterilaisten vanhat ammatit osoittautuvat hyödyttömiksi post-apokalyptisessä todellisuudessa, he aloittavat neuvokkaan talkkarin johdolla uuden elämän rakennusprojektin.</p><p>Vanhan teatterin raunioille syntyy yhteisö, jota he kutsuvat Uudeksi Edeniksi. Yhdessä he vannovat, etteivät koskaan toista menneisyyden virheitä — mutta pian käy ilmi, ettei paratiisissakaan kaikki ole täydellistä.</p><p>Entinen näyttelijäopiskelija Sonja haaveilee edelleen roolista, jota ei koskaan saanut, ja ex-pizzakuski Petteri unelmoi saavuttamattomasta rakkaudesta. Samaan aikaan Edenin johtajaksi nousseella talkkarilla on salaisuus, joka uhkaa murentaa koko yhteisön.</p><p>Teatterissa ja rakkaudessa kaikki keinot ovat sallittuja, mutta missä kulkee raja, kun kyseessä on oma selviytyminen ja usko parempaan tulevaisuuteen?</p><p>Uusi Eden on Helsingin Kaupunginteatterin ja Q-teatterin yhteistuotanto, joka yhdistää mustan huumorin, ajankohtaiset teemat ja sykähdyttävän musiikin tavalla, jota et ole ennen kokenut. Se on hengästyttävän hauska ja sydäntäsärkevän kaunis tarina toivosta ja rakkaudesta — sekä siitä, miten pitkälle olemme valmiita menemään kamppailussa paremman maailman puolesta.</p><p>Musikaalin on kirjoittanut ja ohjannut Juho Mantere, jonka edellinen teos ”Uuteen nousuun – Laman lasten elämä ja teot” kohosi teatteritapaukseksi Q-teatterissa. Musiikin on säveltänyt Henri Lyysaari, yksi nuoren polven lupaavimmista säveltäjistä.</p><p>Rooleissa: Miiko Toiviainen, Anna-Sofia Tuominen, Tiina Peltonen, Niki Rautén, Ushma Olava, Leenamari Unho, Unto Nuora, Mikko Vihma</p><p>Kapellimestari: Henri Lyysaari<br>Muusikot: Ossi Maristo, Juhana Kiiski, Maria Lamminen</p><p>Käsikirjoitus, ohjaus sekä laulujen sanat: Juho Mantere<br>Sävellys: Henri Lyysaari<br>Lavastus ja valosuunnittelu: William Iles<br>Pukusuunnittelu Riina Leea Nieminen<br>Äänisuunnittelu: Jaakko Virmavirta<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Vastuudramaturgi: Ari-Pekka Lahti</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy</p>", "en": "<p>Juho Mantere" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=en" }, "name": { "fi": "Uusi Eden" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350716/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19350682", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748841/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350682/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350682/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350682/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235431, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.456387Z", "last_modified_time": "2025-02-17T11:16:41.456408Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235431/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:16:50.656512Z", "last_modified_time": "2025-03-08T23:15:11.688093Z", "date_published": null, "start_time": "2025-03-08T16: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri." }, "description": { "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en" }, "name": { "fi": "Eikä Yksikään Pelastunut" }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350682/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19327112", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3706017/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/lempi-helsingin-kaupunginteatteri-19327112/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lempi-helsingin-kaupunginteatteri-19327112/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lempi-helsingin-kaupunginteatteri-19327112/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.259210Z", "last_modified_time": "2025-02-17T11:16:42.259224Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hktlempi_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235434/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:16:50.535633Z", "last_modified_time": "2025-03-08T23:15:11.639917Z", "date_published": null, "start_time": "2025-03-08T16: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Minna Rytisalo - Miika Muranen - Sinikka Sanelma LEMPI On vuosi 1944." }, "description": { "fi": "<p>Minna Rytisalo - Miika Muranen - Sinikka Sanelma<br><strong>LEMPI</strong></p><p>On vuosi 1944. Rovaniemen kauppalassa kaksostytöt Lempi ja Sisko elävät nuoruuttaan saksalaissotilaiden huomion keskellä. Oman rakkautensa sotilaiden joukosta löytänyt Sisko haastaa sisarensa vedonlyöntiin, jonka seurauksena Lempi rakastuu nuoreen Viljamiin ja tulee raskaaksi.</p><p>Syttyy sota ja Lempi jää asumaan lappilaiseen syrjäkylään piikatyttö Ellin kanssa. Kun Viljami palaa kotiin rintamalta, Lempi on kadonnut. Kukaan ei tiedä, minne ja miksi. Lempiä, jonka ääniroolissa kuullaan Krista Kosonen, ei näytelmässä nähdä, vaan hänen elämäntarinansa avautuu Viljamin, Ellin ja Lempin kaksoissisaren Siskon kertoman pohjalta. Kuka Lempi todella oli? Mitä hänelle tapahtui?</p><p>Voiko toista ihmistä koskaan nähdä kokonaan?</p><p>Minna Rytisalon esikoisromaaniin pohjautuva Lempi on tiheätunnelmainen draama intohimosta, sattumasta ja rakkauden voimasta. Näytelmän ohjaa Miika Muranen, jonka edellistä ohjausta, Agatha Christien Hiirenloukkua esitettiin Arena-näyttämöllä ja suurella näyttämöllä täysille katsomoille 2023–2024.</p><p>Rooleissa: Vappu Nalbantoglu, Ursula Salo, Sauli Suonpää<br>Äänirooleissa: Krista Kosonen, Risto Kaskilahti, Lenno Paalanen, Alvar Paloniemi, Pekka Huotari, Jouko Klemettilä, Miika Muranen, Santeri Kinnunen, Helena Haaranen, Leenamari Unho<br>Alkuperäisteos: Minna Rytisalo<br>Ohjaus ja dramatisointi: Miika Muranen<br>Dramatisointi: Sinikka Sanelma<br>Lavastus-, projisointi- ja pukusuunnittelu: Reija Hirvikoski<br>Projisointien toteutus: Mika Haaranen<br>Valosuunnittelu: Kari Leppälä<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Tuula Kuittinen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri <br>Lipunvälittäjä: Lippupiste Oy</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lempi-3706017/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lempi-3706017/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lempi-3706017/?affiliate=ADV&language=en" }, "name": { "fi": "Lempi" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19327112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19036768", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036768/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036768/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036768/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:16:50.407506Z", "last_modified_time": "2025-03-08T23:15:11.588153Z", "date_published": null, "start_time": "2025-03-08T16: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Jyrki Kasper, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "name": { "fi": "Moulin Rouge! Musikaali" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036768/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }