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
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 ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=94
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=95", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=93" }, "data": [ { "id": "kulke:65395", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "50,70-69 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/3806920" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153703, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-10T10:15:12.972973Z", "last_modified_time": "2025-01-10T10:15:12.972990Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764540.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153703/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-10T10:15:12.933729Z", "last_modified_time": "2025-03-04T16:14:32.866104Z", "date_published": null, "start_time": "2025-05-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F640AC547C1EC095A64A725B777F2752/Blind_Boys_of_Alabama_USA_" }, "provider_contact_info": null, "short_description": null, "description": { "fi": "<p><b>Blind Boys of Alabama</b> tunnetaan kautta maailman gospelmusiikin elävinä legendoina. Sen jäsenet ovat yltäneet alansa korkeimpiin saavutuksiin yli 70 vuotta kestäneellä urallaan: heille on myönnetty National Endowment for the Arts (NEA) ja The Recording Academy/GRAMMYs -elämäntyöpalkinnot, heidät on nimetty Gospel Music Hall of Fameen ja he ovat voittaneet kuusi Grammy-palkintoa.</p><p>Blind Boys of Alabama on tunnettu siitä, että se ylittää useita musiikillisia rajoja tulkitsemalla hämmästyttävällä tavalla kaikkea perinteisistä gospel-suosikeista tämän päivän lauluntekijöiden, kuten Eric Claptonin ja Tom Waitsin hengelliseen materiaaliin.</p><p>Blind Boys of Alabama on levyttänyt lukuisten tunnettujen artistien, kuten Lou Reedin, Peter Gabrielin, Bonnie Raittin, Willie Nelsonin, Aaron Nevillen, Susan Tedeschin, Ben Harperin, Patty Griffinin ja Taj Mahalin kanssa.</p><p>Kesto n. 1 h 15 min, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>" }, "provider": { "fi": "Ramasound Oy" }, "name": { "fi": "Blind Boys of Alabama (USA)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65395/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agkwdohamy", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37992/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": { "fi": "https://www.hel.fi/fi" } } ], "data_source": "helsinki", "publisher": "others", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-03-04T15:14:20.955643Z", "last_modified_time": "2025-03-04T15:16:50.279477Z", "date_published": null, "start_time": "2027-03-25T08:00:00Z", "end_time": "2027-03-25T12:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 44, "minimum_attendee_capacity": 10, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "" }, "info_url": { "fi": "" }, "provider_contact_info": null, "short_description": { "fi": "lyhyt kuvaus" }, "description": { "fi": "<p>pitkä kuvaus</p>" }, "provider": { "fi": "Testaajat" }, "name": { "fi": "Testausta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agkwdohamy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65595", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 210717, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-10T09:14:32.477135Z", "last_modified_time": "2025-02-10T09:14:32.477166Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765470.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/210717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-10T09:14:32.420859Z", "last_modified_time": "2025-03-04T12:14:14.476210Z", "date_published": null, "start_time": "2025-03-05T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/387CD50910F61FB12885DB6970236598/Keskiviikkokino_Normaalii", "sv": "http://www.vuotalo.fi/sv/evenemang/event/387CD50910F61FB12885DB6970236598/Keskiviikkokino_Normaalii", "en": "http://www.vuotalo.fi/en/events/event/387CD50910F61FB12885DB6970236598/Keskiviikkokino_Normaalii" }, "provider_contact_info": null, "short_description": { "fi": "Normaalii kertoo neljän Itä-Helsingin lähiöissä asuvan, toisen sukupolven maahanmuuttajataustaisen nykysuomalaisen nuoren elämästä.", "sv": "Normaalii handlar om livet för fyra unga andra generationens finländare med invandrarbakgrund som bor i förorterna i östra Helsingfors.", "en": "Normaalii (Average) tells the story of four young modern Finns who are also second-generation immigrants, living in the suburbs of Eastern Helsinki." }, "description": { "fi": "<p>Normaalii kertoo neljän Itä-Helsingin lähiöissä asuvan, toisen sukupolven maahanmuuttajataustaisen nykysuomalaisen nuoren elämästä.</p><p>Ali, Nedim, Shahin ja Flamur ovat vanhoja ystäviä, joiden polut ovat kulkeneet eri suuntiin. Elokuva on komedialla ja draamalla höystetty rikostrilleri, joka tutkii aiheita kuten jengiytyminen, lähiöelämä ja se, mitä on olla suomalainen nykypäivänä.</p><p>Itä-Helsinki ja sen yhteisö yhdistivät voimansa mahdollistaakseen tämän pitkän indie-elokuvan toteutuksen. Normaalii on totuudenmukainen ja aito lopputulos, jonka tekivät ne ihmiset, joista elokuva itse kertoo - ilman sotkevia välikäsiä.</p><p>Lue lisää Helsingin Sanomien artikkelista: https://www.hs.fi/kaupunki/art-2000010116517.html</p><p>Ohjaus: Ali Al-Saffu</p><p>Kesto 2 tuntia<br>Kieli: suomi, tekstitykset: englanti</p><p>Vapaa pääsy</p>", "sv": "<p>Normaalii handlar om livet för fyra unga andra generationens finländare med invandrarbakgrund som bor i förorterna i östra Helsingfors.</p><p>Ali, Nedim, Shahin och Flamur är gamla vänner som har gått skilda vägar. Filmen är en kriminalthriller kryddad med komedi och drama som behandlar teman som gängkriminalitet, livet i förorter och vad det innebär att vara finländare i dag.</p><p>Östra Helsingfors och dess invånare förenade sina krafter för att denna långa indiefilm blev verklighet. Normaalii är en sanningsenlig och autentisk film som har gjorts av människor som själva filmen handlar om – utan röriga mellanhänder.</p><p>Regi: Ali Al-Saffu<br>Längd 2 timmar</p>", "en": "<p>Normaalii (Average) tells the story of four young modern Finns who are also second-generation immigrants, living in the suburbs of Eastern Helsinki.</p><p>Ali, Nedim, Shahin and Flamur are old friends whose paths have gone in different directions. The film is a crime thriller with some elements of comedy and drama. It explores topics such as gang forming, life in the suburbs and what it means to be Finnish today.</p><p>Eastern Helsinki and its community joined forces to make this feature indie film possible. Normaalii is the truthful and genuine result of these efforts, made by the people the film is about – without the messy middlemen.</p><p>Director: Ali Al-Saffu<br>Duration: 2 hours<br>Language: finnish, subtitles: english</p>" }, "provider": null, "name": { "fi": "Keskiviikkokino: Normaalii", "sv": "Keskiviikkokino: Normaalii", "en": "Keskiviikkokino: Normaalii" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65595/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65676", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 294279, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-03T15:14:33.681618Z", "last_modified_time": "2025-03-03T15:14:33.681630Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766000.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/294279/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-03T15:14:33.649712Z", "last_modified_time": "2025-03-03T16:14:29.410516Z", "date_published": null, "start_time": "2025-03-12T14:30:00Z", "end_time": "2025-03-12T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/13B45F04BB5E1C326B7D26FC34CB40B7/Keskustelutilaisuus_Kannelmaen_juna-aseman_peruskorjauksesta_ja_asemakaavasta_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/13B45F04BB5E1C326B7D26FC34CB40B7/Keskustelutilaisuus_Kannelmaen_juna-aseman_peruskorjauksesta_ja_asemakaavasta_", "en": "http://www.kanneltalo.fi/en/events/event/13B45F04BB5E1C326B7D26FC34CB40B7/Keskustelutilaisuus_Kannelmaen_juna-aseman_peruskorjauksesta_ja_asemakaavasta_" }, "provider_contact_info": null, "short_description": { "fi": "Kannelmäen juna-aseman peruskorjausta suunnitellaan – tervetuloa keskustelemaan 12.3. kello 16.30 alkaen." }, "description": { "fi": "<p>Kannelmäen juna-aseman peruskorjausta suunnitellaan – tervetuloa keskustelemaan 12.3. kello 16.30 alkaen.</p><p>Kannelmäen juna-asemalle suunnitellaan peruskorjausta. Peruskorjauksen suunnittelun yhteydessä tutkitaan, onko asemarakennuksen ja asemasillalta Kanneltalolle johtavan betonisen rampin purkaminen mahdollista. Kannelmäen peruskorjauksen yhteydessä juna-asemalle on tulossa uudet portaat, uusia katoksia ja pinnoitteita uusitaan. Suunnitelma vaatii asemakaavamuutoksen.</p><p>Aiheesta järjestetään keskustelutilaisuus asukkaille keskiviikkona 12.3. kello 16.30–18.00 Kanneltalossa (Klaneettitie 5). Tervetuloa kuulemaan lisää suunnitelmista!</p><p>Tutustu tarkemmin suunnitelmiin verkossa tai Kannelmäen kirjastossa 10.3.–31.3.</p><p>Kannelmäen juna-aseman peruskorjauksen suunnitelmaluonnokseen voi tutustua kaupungin verkkosivuilla (hel.fi/suunnitelmat) tai Kannelmäen kirjastossa (Klaneettitie 5) 10.3.–31.3.</p><p>Peruskorjaus toteutetaan mahdollisesti vuonna 2026</p><p>Kannelmäen juna-aseman peruskorjaus toteutetaan mahdollisesti vuonna 2026, jolloin junaliikenteeseen tulisi liikennekatko. Samaan aikaan Kannelmäen juna-aseman kanssa on tarkoitus peruskorjata myös Malminkartanon ja Pohjois-Haagan juna-asemat.</p>" }, "provider": null, "name": { "fi": "Keskustelutilaisuus Kannelmäen juna-aseman peruskorjauksesta ja asemakaavasta", "sv": "Keskustelutilaisuus Kannelmäen juna-aseman peruskorjauksesta ja asemakaavasta", "en": "Keskustelutilaisuus Kannelmäen juna-aseman peruskorjauksesta ja asemakaavasta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65676/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23doqu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dobu/?format=api" } ], "images": [ { "id": 153463, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-02T11:07:49.386482Z", "last_modified_time": "2024-12-02T11:07:49.386500Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/f7f1ab14-2d61-4528-8772-9583c2cbb489.png", "cropping": "200,0,1000,800", "photographer_name": "Pirkko Kolu-Pystynen", "alt_text": "Puunrungolla punainen neulegraffiti, jonka päällä keltainen kolmiulotteinen perhonen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153463/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-03T06:09:20.566939Z", "last_modified_time": "2025-03-03T06:09:20.566956Z", "date_published": null, "start_time": "2025-03-06T15:00:00Z", "end_time": "2025-05-22T16: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Neulegraffiti-ryhmä", "sv": "Neulegraffiti - grupp ", "en": "Neulegraffiti - group " }, "description": { "fi": "Torstaisin kirjastolla klo 17-19<p><br></p><p>Neulegraffiti-ryhmä on toiminut kirjastolla vuodesta 2016 lähtien.</p><p>\"Ryhmä on aina ollut maksuton ja avoin kaikille, mitään erityistaitoja ei tarvita. Olemme somistaneet ryhmässä tehdyillä neuleilla puita ja muutakin ympäristöä ympäri Espoota. Olemme myös järjestäneet näyttelyitä ryhmäläisten töistä, ja muitakin tapahtumia käsitöihin liittyen.\" - kertoo ryhmän perustajajäsen Pirkko Kolu-Pystynen</p><p><br></p><p>Huomioithan, että ryhmä kokoontuu tekemään käsitöitä yhdessä, toiminta ei ole erikseen ohjattua, mutta siihen saa liittyä mukaan.</p><p><br></p><p>Kirjastolta löytyy valmiiksi materiaaleja voit halutessasi ottaa myös omia tarvikkeita mukaan.</p>", "sv": "<p>Neulegraffiti grupp träffas på biblioteket på torsdagar kl. 17-19.00.</p>", "en": "<p>Neulegraffiti group meets at the library on Thursdays from 17-19:00.</p>" }, "provider": null, "name": { "fi": "Neulegraffiti - ryhmä ", "sv": "Neulegraffiti - grupp ", "en": "Neulegraffiti - group " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23doqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64890", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kanneltalo/molli-ja-ystaevyyden-talo-3779532/", "sv": "https://www.lippu.fi/artist/kanneltalo/molli-ja-ystaevyyden-talo-3779532/", "en": "https://www.lippu.fi/artist/kanneltalo/molli-ja-ystaevyyden-talo-3779532/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153359, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T12:14:44.654149Z", "last_modified_time": "2024-12-10T12:14:44.654173Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759430.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153359/?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": "2024-12-10T12:14:44.627457Z", "last_modified_time": "2025-02-28T14:14:23.078172Z", "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, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6368A0053ACBEEF676FD463CC8B1FC66/LOPPUUNMYYTY_Ahaa_Teatteri_Molli_ja_ystavyyden_talo", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6368A0053ACBEEF676FD463CC8B1FC66/SLUTSALD_Ahaa_Teatteri_Molli_ja_ystavyyden_talo_Molli_och_vanskapens_hus_", "en": "http://www.kanneltalo.fi/en/events/event/6368A0053ACBEEF676FD463CC8B1FC66/SOLD_OUT_Ahaa_Theatre_Molli_ja_ystavyyden_talo_Molli_and_the_House_of_Friendship_" }, "provider_contact_info": null, "short_description": { "fi": "Molli on asunut talossaan kauan. Yksin ja ihan ilman ystäviä. Eipä hän ole niitä kaivannutkaan, mutta nyt aika on käynyt pitkäksi ja talo muuttunut tylsäksi.", "sv": "Molli har bott länge i sitt hus. Ensam och utan vänner. Hon har inte heller längtat efter vänner, men nu har tiden blivit lång och huset blivit tråkigt.", "en": "Molli has lived in her house for a long time. Alone and without any friends. Molli hasn’t really needed friends, but now the time is passing slowly and the house has become boring." }, "description": { "fi": "<p>Molli on asunut talossaan kauan. Yksin ja ihan ilman ystäviä. Eipä hän ole niitä kaivannutkaan, mutta nyt aika on käynyt pitkäksi ja talo muuttunut tylsäksi.</p><p>Mikään ei oikein huvita, ei kaktuksen kasteleminen, ei maton hapsujen suoristus, ei lankarullan keriminen... kunnes ovelta kuuluu koputus!</p><p>Molli ja ystävyyden talo kertoo miltä tuntuu, kun yllättää itsensä ja rohkeasti lähtee kohti tuntematonta, vaikka se hetki sitten on tuntunut kaikkein pelottavimmalta asialta. Se kertoo ilon löytämisestä ja itsensä voittamisesta. Se kertoo miltä tuntuu, kun joku välittää ja siitä kuinka suuri onkaan ystävyyden voima.</p><p>Molli ja Sisu ovat epätavallinen pari: yksi on hidas tuumiskelija, toinen taas iloinen tapsuttelija. Yhdessä he opettelevat ystävyyden aakkoset ja lähtevät pienensuureen seikkailuun. Ystävän kanssa voi jopa kinata ja kiukutella, halata ja sopia ja sitten syödä lettuja. Koska se on ihan parasta!</p><p>Näytelmä pohjautuu Katri Kirkkopellon suosittuihin Molli-lastenkirjoihin.</p><p><b>Esiintyjät:</b><br>Molli: Sonja Salminen/Oskar Hartman<br>Sisu: Teemu Mäkinen/ Essi Särkijärvi</p><p><b>Tekijät ja työryhmä:</b><br>käsikirjoitus Katja Krohn ja Milko Lehto<br>ohjaus Katja Krohn<br>alkuperäisteksti ja piirros Katri Kirkkopelto<br>lavastus- ja pukusuunnittelu Aili Ojalo<br>musiikki- ja äänisuunnittelu Salla Markkanen<br>valosuunnittelu Antti Kauppi<br>esitystekniikka Janne Liukku<br>lavasterakennus Antti Kauppi, Aili Ojalo, Perttu Sinervo, Iivari Vanne<br>tarpeiston valmistus Janika Holm, Alex Saarela<br>nuket Pia Kalenius<br>pukujen toteutus Työhuone Hengari<br>graafinen suunnittelu Johanna Häkkilä<br>valokuvat Jari Kivelä</p><p>Kantaesitys Ahaa Teatterissa 6.9.2023</p><p>Kesto: 50 min. <br>Ikäsuositus: 3 v alkaen <br>Kieli: suomi</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 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>Molli har bott länge i sitt hus. Ensam och utan vänner. Hon har inte heller längtat efter vänner, men nu har tiden blivit lång och huset blivit tråkigt.</p><p>Hon har inte riktigt lust med någonting, inte att vattna kaktusarna, inte att räta till mattfransarna, inte att nysta upp trådrullen...men då knackar det på dörren!</p><p>Molli och vänskapens hus berättar hur det känns, då man överraskar sig själv och modigt reser mot det okända, trots att det för en stund sedan har känts som det mest skrämmande. Den berättar om att hitta glädje och övervinna sig själv. Den berättar om hur det känns när någon bryr sig, och hur stor vänskapens kraft egentligen är.</p><p>Molli och Sisu är ett ovanligt par: den ena är en sävlig grubblare, den andra en glad tassare. Tillsammans lär de sig vänskapens ABC och åker iväg på en stort litet äventyr. Med en vän kan man till och med tvista och trilskas, kramas och sämjas och sedan äta plättar. För det är det allra bästa!</p><p>Pjäsen grundar sig på Katri Kirkkopeltos populära barnböcker om Molli.</p><p>I rollerna:<br>Molli: Sonja Salminen/Oskar Hartman<br>Sisu: Teemu Mäkinen/ Essi Särkijärvi</p><p>Upphovsmän och arbetsgrupp:<br>manus Katja Krohn och Milko Lehto<br>regi Katja Krohn<br>originaltext och teckningar Katri Kirkkopelto<br>scenografi och kostymdesign Aili Ojalo<br>musik- och ljuddesign Salla Markkanen<br>ljusdesign Antti Kauppi<br>föreställningsteknik Janne Liukku<br>scenografibygge Antti Kauppi, Aili Ojalo, Perttu Sinervo, Iivari Vanne<br>tillverkning av rekvisita Janika Holm, Alex Saarela<br>dockor Pia Kalenius<br>genomförande av kostymer Työhuone Hengari<br>grafisk design Johanna Häkkilä<br>foto Jari Kivelä</p><p>Uruppförande på Ahaa Teatteri 6.9.2023</p><p>Längd: 50 min. <br>Åldersrekommendation: från 3 år <br>Språk: finska</p>", "en": "<p>Molli has lived in her house for a long time. Alone and without any friends. Molli hasn’t really needed friends, but now the time is passing slowly and the house has become boring.</p><p>Nothing seems interesting – not watering the cactus, not straightening the fringes of the rug, not winding up the yarn roll... until there’s a knock at the door!</p><p>Molli and the House of Friendship is about what it feels like to surprise yourself and brave the unknown, even if a moment ago it felt like the scariest thing. It’s about finding joy and overcoming yourself. It’s a story about what it feels like to have someone who cares and the power of friendship.</p><p>Molli and Sisu are an unusual pair: one is a slow thinker, the other a carefree spirit. Together, they learn the ABCs of friendship and embark on a little adventure with big results. You can even argue with a friend, then hug, make up, and eat pancakes. Because it’s the best!</p><p>The play is based on Katri Kirkkopelto’s popular Molli children’s books.</p><p>Performers:<br>Molli: Sonja Salminen/Oskar Hartman<br>Sisu: Teemu Mäkinen/Essi Särkijärvi</p><p>Creators and working group:<br>Script: Katja Krohn and Milko Lehto<br>Director: Katja Krohn<br>Original text and illustrations:Katri Kirkkopelto<br>Set and costume design:Aili Ojalo<br>Music and sound design: Salla Markkanen<br>Lighting design: Antti Kauppi<br>Performance technology: Janne Liukku<br>Set construction: Antti Kauppi, Aili Ojalo, Perttu Sinervo, Iivari Vanne<br>Prop fabrication: Janika Holm, Alex Saarela<br>Puppets: Pia Kalenius<br>Costume design: Työhuone Hengari<br>Graphic design: Johanna Häkkilä<br>Photos: Jari Kivelä</p><p>Premiere at Ahaa Theatre on 6 September 2023</p><p>Duration: 50 min <br>Age recommendation: 3+ <br>Language: Finnish</p><p><b>Hurraa! Theatre Weeks<br>Take a Child to the Theatre</b><br>Hurraa! Theatre Weeks offer live theatre specifically designed for children and young adults. The high-quality repertoire consists of 12 different performances and 37 shows all over Helsinki. <br> <br>The shows will 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. <br> <br>Hurraa! Theatre Weeks are arranged as part of the international Bring Your Child to the Theatre week. The World Day of Theatre for Children and Young People also takes place during the Hurraa! event. <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>" }, "provider": null, "name": { "fi": "LOPPUUNMYYTY Ahaa Teatteri: Molli ja ystävyyden talo – Hurraa! -teatteriviikot", "sv": "SLUTSÅLD Ahaa Teatteri: Molli ja ystävyyden talo (Molli och vänskapens hus) – Hurraa! -teaterveckor", "en": "SOLD OUT Ahaa Theatre: Molli ja ystävyyden talo (Molli and the House of Friendship) – Hurraa! Theatre Weeks" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64890/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65495", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/tehdas-teatteri-elaekoeoen-elaeimet-stoa-19802359/", "sv": "https://www.lippu.fi/event/tehdas-teatteri-elaekoeoen-elaeimet-stoa-19802359/", "en": "https://www.lippu.fi/event/tehdas-teatteri-elaekoeoen-elaeimet-stoa-19802359/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 163503, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-22T15:14:58.500415Z", "last_modified_time": "2025-01-22T15:14:58.500432Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763458.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163503/?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-22T15:14:58.474282Z", "last_modified_time": "2025-02-28T13:14:16.698332Z", "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, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/93FD7538279CC09364785E218C5EFC34/Tehdas_teatteri_ELAKOON_ELAIMET_", "sv": "http://www.stoa.fi/sv/evenemang/event/93FD7538279CC09364785E218C5EFC34/Tehdas_teatteri_LANGE_LEVE_DJUREN_", "en": "http://www.stoa.fi/en/events/event/93FD7538279CC09364785E218C5EFC34/Tehdas_teatteri_LONG_LIVE_THE_ANIMALS_" }, "provider_contact_info": null, "short_description": { "fi": "Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?", "sv": "Har du någonsin undrat hur en daggmask kan höra utan öron? Visste du att sengångaren bara kommer ner från sitt träd för att bajsa?", "en": "Have you ever wondered how an earthworm can hear without ears? Did you know that a sloth comes down from a tree just to poop?" }, "description": { "fi": "<p>Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?</p><p>Uskoisitko, että krokotiilin poikaset nukkuvat äitinsä suussa, terävien hampaiden suojassa? Ja että dinosauruksen lähin elossa oleva sukulainen on kana? Ja että ihminenkin on eläin?<br> <br>ELÄKÖÖN ELÄIMET! -esitys vastaa kysymyksiisi vallattomilla faktoilla, sydämellisellä huumorilla ja moni-ilmeisillä eläinnukkehahmoillaan. Teos on taidetta ja tiedettä yhdistävä koko perheen nukketeatteriesitys, jonka lähtökohtana ovat ihaillut, pelätyt, tavallisesti kummalliset eläimet ja niiden elämä. Ja ihminen ihmettelemässä. <br> <br>TYÖRYHMÄ ELÄKÖÖN ELÄIMET!<br>Konsepti, käsikirjoitus, visuaalinen suunnittelu ja -rakennus: <br>Pia Kalenius ja Nanna Mäkinen</p><p>Valosuunnittelu:<br>Jarkko Forsman</p><p>Musiikki ja äänisuunnittelu:<br>Työryhmä</p><p>Dramaturgia- ja ohjausmentori: <br>Venla Luoma</p><p>Nuketusmentori:<br>Lotta Virtanen</p><p>Esiintyjät:<br>Nanna Mäkinen ja Pia Kalenius</p><p>Sir David Attenboroughin äänenä:<br>Jussi Virkkumaa</p><p>Graafinen ilme:<br>Mia Koo</p><p>Tuotanto<br>Tehdas teatteri, Turku (ensi-ilta 7.3.2025)</p><p>Kumppanit:<br>Aura of Puppets ja päiväkoti Pääskynpesän lapset</p><p>Kohdeyleisö: +5-v<br>Kesto: 40 min<br>Liput: 6 €</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 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>Har du någonsin undrat hur en daggmask kan höra utan öron? Visste du att sengångaren bara kommer ner från sitt träd för att bajsa?</p><p>Kan du tänka dig att krokodilungar sover i sin mammas mun, skyddade av vassa tänder? Och att den närmaste levande släktingen till en dinosaurie är hönan? Och att människan också är ett djur?<br> <br>Föreställningen LÄNGE LEVE DJUREN! ger dig svar på dina frågor med busiga fakta, hjärtlig humor och mångfasetterade karaktärer i form av djurdockor. Verket är en dockteaterföreställning för hela familjen som kombinerar konst och vetenskap, och är baserad på djur som är beundrade, fruktade och ofta märkliga, och djurens liv. Och en människa som undrar. <br> <br><b>ARBETSGRUPP</b><br>Koncept, manus, visuell design och konstruktion: Pia Kalenius ja Nanna Mäkinen<br>Ljusdesign: Jarkko Forsman<br>Musik och ljuddesign: Arbetsgrupp<br>Dramaturgi- och regihandledare: Venla Luoma<br>Dockföringsmentor: Lotta Virtanen<br>Medverkande: Nanna Mäkinen ja Pia Kalenius<br>Som rösten av Sir David Attenborough: Jussi Virkkumaa<br>Grafisk profil: Mia Koo<br>Produktion: Tehdas teatteri, Åbo (premiär 7.3.2024)<br>Partners: Aura of Puppets ja förskolan Pääskynpesäs barn</p><p>Målgrupp: barn i åldern 5+<br>Längd: 40 min.</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>Have you ever wondered how an earthworm can hear without ears? Did you know that a sloth comes down from a tree just to poop?</p><p>Would you believe that crocodile hatchlings sleep in their mother’s mouth, protected by its sharp teeth? And that a dinosaur’s closest living relative is a chicken? And that man is also an animal?<br> <br>LONG LIVE THE ANIMALS! answers your questions with wild facts, heartfelt humour and multi-faceted animal doll characters. It is a puppet theatre performance for the whole family that combines art and science. Its premise is animals – the admired, feared, ordinarily strange ones – and their lives. And humans, wondering. <br> <br><b>WORKING GROUP</b><br>Concept, script, visual design, and construction: Nanna Mäkinen and Pia Kalenius<br>Lighting design: Jarkko Forsman<br>Music and sound design: Working group<br>Dramaturgy and directing mentor: Venla Luoma<br>Puppeteering mentor: Lotta Virtanen<br>Performers: Nanna Mäkinen ja Pia Kalenius<br>As the voice of Sir David Attenborough: Jussi Virkkumaa<br>Graphic design: Mia Koo<br>Production: Tehdas Theatre, Turku (premiere 7 March 2024)<br>Partners: Aura of Puppets and the children of Pääskynpesä daycare</p><p>Target audience: 5+<br>Duration: 40 mins.</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>" }, "provider": null, "name": { "fi": "Tehdas teatteri: ELÄKÖÖN ELÄIMET! – Hurraa! -teatteriviikot", "sv": "Tehdas teatteri: LÄNGE LEVE DJUREN! – Hurraa!-teaterveckor", "en": "Tehdas teatteri: LONG LIVE THE ANIMALS! – Hurraa! Theatre Weeks" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65495/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65492", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/ama-kyei-kukkatanssit-3829082/", "sv": "https://www.lippu.fi/artist/stoa/ama-kyei-kukkatanssit-3829082/", "en": "https://www.lippu.fi/artist/stoa/ama-kyei-kukkatanssit-3829082/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 163502, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-22T15:14:58.350461Z", "last_modified_time": "2025-01-22T15:14:58.350507Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763399.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163502/?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-22T15:14:58.325224Z", "last_modified_time": "2025-02-28T13:14:16.602141Z", "date_published": null, "start_time": "2025-03-22T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/19800B61851CCB9413A95D3BA0B2A07A/Ama_Kyei_Kukkatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/19800B61851CCB9413A95D3BA0B2A07A/Ama_Kyei_Blomsterdans", "en": "http://www.stoa.fi/en/events/event/19800B61851CCB9413A95D3BA0B2A07A/Ama_Kyei_Flower_Dances" }, "provider_contact_info": null, "short_description": { "fi": "Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!", "sv": "Alla blommor har förlorat sin färg och därmed sin superkraft. Lyckligtvis vet Ama hur hon ska kommunicera med Moder Natur genom sin dans, och även publiken får dansa!", "en": "All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance too!" }, "description": { "fi": "<p>Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!</p><p>Yhdessä luontoäidin ohjauksen ja lasten avun kanssa saamme mahdollisuuden auttaa kukkia saamaan takaisin värinsä ja supervoimansa. aikana saamme muun muassa tanssia sade-, maa, tuuli ja aurinkotansseja, sekä nähdä kuinka taianomainen vihreä vesi syntyy. Tämä esitys muistuttaa meitä vaalimaan kaikkea, mistä välitämme.</p><p>Kukkatanssit on vuorovaikutteinen esitys 3-7 vuotiaille lapsille sekä erityislapsille lukioikään asti.</p><p>Koreografia ja tanssi: Ama Kyei<br>Luovat avustajat: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Rahoittaja: Konstnärsnämnden ja Region Stockholm<br>Traileri & kuva: Jonathan Morell<br>Musiikki trailerissa: Sara Celaya</p><p>Kesto: 30 min<br>Ikäsuositus: 3–7 vuotta<br>Kieli: suomi</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 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>Alla blommor har förlorat sin färg och därmed sin superkraft. Lyckligtvis vet Ama hur hon ska kommunicera med Moder Natur genom sin dans, och även publiken får dansa!</p><p>Tillsammans med Moder Naturs vägledning och barnens hjälp får vi möjligheten att hjälpa blommorna att återfå sin färg och superkraft. Under föreställningen dansar vi bland annat regn-, jord-, vind- och soldanser och ser hur magiskt grönt vatten uppstår. Föreställningen påminner oss om att värna om allt vi bryr oss om.</p><p>Blomsterdans är en interaktiv föreställning för barn i åldern 3–7 år och för barn med särskilda behov upp till gymnasieåldern.</p><p>Koreografi och dans: Ama Kyei<br>Kreativa medhjälpare: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Sponsor: Konstnärsnämnden och Region Stockholm<br>Trailer & foto: Jonathan Morell<br>Musik i trailern: Sara Celaya</p><p>Längd: 30 min.<br>Åldersrekommendation: 3–7 år<br>Språk: finska</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>All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance too!</p><p>Together with Mother Nature’s guidance and with help from the children, we can help flowers regain their colour and superpower. We get to dance rain, earth, wind and sun dances and see how magical green water is born. This performance reminds us to cherish everything we care about.</p><p>Flower Dances is an interactive performance for 3–7-year-old children and special needs children up to general upper secondary school.</p><p>Choreography and dance: Ama Kyei<br>Creative Assistants: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Funded by: The Swedish Arts Grants Committee and Region Stockholm<br>Trailer & image: Jonathan Morell<br>Trailer music: Sara Celaya</p><p>Duration: 30 mins.<br>Age recommendation: 3–7 years<br>Language: Finnish</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>" }, "provider": null, "name": { "fi": "Ama Kyei: Kukkatanssit – Hurraa! -teatteriviikot", "sv": "Ama Kyei: Blomsterdans – Hurraa!-teaterveckor", "en": "Ama Kyei: Flower Dances – Hurraa! Theatre Weeks" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65492/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65081", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 198007, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-06T09:14:45.935630Z", "last_modified_time": "2025-02-06T09:14:45.935651Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763831.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/198007/?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-06T09:14:45.909267Z", "last_modified_time": "2025-02-28T13:14:15.662628Z", "date_published": null, "start_time": "2025-03-21T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4759520000A6E339DAF511A1DA6FED13/Tehdas_teatteri_ELAKOON_ELAIMET_", "sv": "http://www.stoa.fi/sv/evenemang/event/4759520000A6E339DAF511A1DA6FED13/Tehdas_teatteri_LANGE_LEVE_DJUREN_", "en": "http://www.stoa.fi/en/events/event/4759520000A6E339DAF511A1DA6FED13/Tehdas_teatteri_LONG_LIVE_THE_ANIMALS_" }, "provider_contact_info": null, "short_description": { "fi": "Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?", "sv": "Har du någonsin undrat hur en daggmask kan höra utan öron? Visste du att sengångaren bara kommer ner från sitt träd för att bajsa?", "en": "Have you ever wondered how an earthworm can hear without ears? Did you know that a sloth comes down from a tree just to poop?" }, "description": { "fi": "<p>Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?</p><p>Uskoisitko, että krokotiilin poikaset nukkuvat äitinsä suussa, terävien hampaiden suojassa? Ja että dinosauruksen lähin elossa oleva sukulainen on kana? Ja että ihminenkin on eläin?<br> <br>ELÄKÖÖN ELÄIMET! -esitys vastaa kysymyksiisi vallattomilla faktoilla, sydämellisellä huumorilla ja moni-ilmeisillä eläinnukkehahmoillaan. Teos on taidetta ja tiedettä yhdistävä koko perheen nukketeatteriesitys, jonka lähtökohtana ovat ihaillut, pelätyt, tavallisesti kummalliset eläimet ja niiden elämä. Ja ihminen ihmettelemässä. <br> <br>TYÖRYHMÄ ELÄKÖÖN ELÄIMET!<br>Konsepti, käsikirjoitus, visuaalinen suunnittelu ja -rakennus: <br>Pia Kalenius ja Nanna Mäkinen</p><p>Valosuunnittelu:<br>Jarkko Forsman</p><p>Musiikki ja äänisuunnittelu:<br>Työryhmä</p><p>Dramaturgia- ja ohjausmentori: <br>Venla Luoma</p><p>Nuketusmentori:<br>Lotta Virtanen</p><p>Esiintyjät:<br>Nanna Mäkinen ja Pia Kalenius</p><p>Sir David Attenboroughin äänenä:<br>Jussi Virkkumaa</p><p>Graafinen ilme:<br>Mia Koo</p><p>Tuotanto<br>Tehdas teatteri, Turku (ensi-ilta 7.3.2025)</p><p>Kumppanit:<br>Aura of Puppets ja päiväkoti Pääskynpesän lapset</p><p>Tuotanto: Tehdas teatteri, Turku<br>Kohdeyleisö: +5-v<br>Kesto: 40 min</p><p>Koululaisnäytöksiin päiväkotiryhmille vapaa pääsy. Pakolliset ilmoittautumiset kultus.fi 9.1. alkaen. HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta.</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 the theater – 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>Har du någonsin undrat hur en daggmask kan höra utan öron? Visste du att sengångaren bara kommer ner från sitt träd för att bajsa?</p><p>Kan du tänka dig att krokodilungar sover i sin mammas mun, skyddade av vassa tänder? Och att den närmaste levande släktingen till en dinosaurie är hönan? Och att människan också är ett djur?<br> <br>Föreställningen LÄNGE LEVE DJUREN! ger dig svar på dina frågor med busiga fakta, hjärtlig humor och mångfasetterade karaktärer i form av djurdockor. Verket är en dockteaterföreställning för hela familjen som kombinerar konst och vetenskap, och är baserad på djur som är beundrade, fruktade och ofta märkliga, och djurens liv. Och en människa som undrar. <br> <br><b>ARBETSGRUPP</b><br>Koncept, manus, visuell design och konstruktion: Pia Kalenius ja Nanna Mäkinen<br>Ljusdesign: Jarkko Forsman<br>Musik och ljuddesign: Arbetsgrupp<br>Dramaturgi- och regihandledare: Venla Luoma<br>Dockföringsmentor: Lotta Virtanen<br>Medverkande: Nanna Mäkinen ja Pia Kalenius<br>Som rösten av Sir David Attenborough: Jussi Virkkumaa<br>Grafisk profil: Mia Koo<br>Produktion: Tehdas teatteri, Åbo (premiär 7.3.2024)<br>Partners: Aura of Puppets ja förskolan Pääskynpesäs barn</p><p>Målgrupp: barn i åldern 5+<br>Längd: 40 min.</p>", "en": "<p>Have you ever wondered how an earthworm can hear without ears? Did you know that a sloth comes down from a tree just to poop?</p><p>Would you believe that crocodile hatchlings sleep in their mother’s mouth, protected by its sharp teeth? And that a dinosaur’s closest living relative is a chicken? And that man is also an animal?<br> <br>LONG LIVE THE ANIMALS! answers your questions with wild facts, heartfelt humour and multi-faceted animal doll characters. It is a puppet theatre performance for the whole family that combines art and science. Its premise is animals – the admired, feared, ordinarily strange ones – and their lives. And humans, wondering. <br> <br><b>WORKING GROUP</b><br>Concept, script, visual design, and construction: Nanna Mäkinen and Pia Kalenius<br>Lighting design: Jarkko Forsman<br>Music and sound design: Working group<br>Dramaturgy and directing mentor: Venla Luoma<br>Puppeteering mentor: Lotta Virtanen<br>Performers: Nanna Mäkinen ja Pia Kalenius<br>As the voice of Sir David Attenborough: Jussi Virkkumaa<br>Graphic design: Mia Koo<br>Production: Tehdas Theatre, Turku (premiere 7 March 2024)<br>Partners: Aura of Puppets and the children of Pääskynpesä daycare</p><p>Target audience: 5+<br>Duration: 40 mins.</p>" }, "provider": null, "name": { "fi": "Tehdas teatteri: ELÄKÖÖN ELÄIMET! – Näytös päiväkotiryhmille | Hurraa! -teatteriviikot", "sv": "Tehdas teatteri: LÄNGE LEVE DJUREN! – för dagisgrupper | Hurraa! -teaterveckor", "en": "Tehdas teatteri: LONG LIVE THE ANIMALS! – for kindergarten groups | Hurraa! Theatre Weeks" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65078", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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: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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 163428, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-22T14:15:00.245834Z", "last_modified_time": "2025-01-22T14:15:00.245850Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763828.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163428/?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-22T14:15:00.218329Z", "last_modified_time": "2025-02-28T13:14:13.669576Z", "date_published": null, "start_time": "2025-03-17T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/20D9529FC6275AF0A16BD82D0AC7DEFE/Koululaisnaytos_Will_Funk_For_Food_A_Fistful_of_Funk", "sv": "http://www.stoa.fi/sv/evenemang/event/20D9529FC6275AF0A16BD82D0AC7DEFE/Will_Funk_For_Food_A_Fistful_of_Funk", "en": "http://www.stoa.fi/en/events/event/20D9529FC6275AF0A16BD82D0AC7DEFE/Will_Funk_For_Food_A_Fistful_of_Funk" }, "provider_contact_info": null, "short_description": { "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Hurraa! -viikolla Stoaan suuren suosion saaneen Locking-katutanssiteoksen A Fistful of Funk.", "sv": "Under Hurra!-veckan tar Will Funk For Food, en av Finlands mest berömda streetdansgrupper, med sig sitt hyllade Locking-streetdansverk ”A Fistful of Funk” till Stoa.", "en": "Will Funk For Food one of Finland’s most renowned street dance groups, brings A Fistful of Funk, a Locking street dance piece of great popularity, to Stoa during Hurraa! week." }, "description": { "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Hurraa! -viikolla Stoaan suuren suosion saaneen Locking-katutanssiteoksen A Fistful of Funk.</p><p>Kahden livemuusikon säestämä esitys käsittelee miesten välistä ystävyyttä ja maskuliinisuuden teemoja absurdin teatterin, leikin, huumorin ja virtuoosimaisen katutanssin avulla.<br> <br>Teoksessa seurataan viittä cowboyta eeppisellä tehtävällä aavikolla. Siellä 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.<br> <br>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät tauot, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: characteriin eli persoonallisuuteen. Hahmojen ja leikin kautta esitys tutkii vaihtoehtoisia maskuliinisia ilmaisuja ja esittelee samalla kunkin tanssijan ainutlaatuista tyyliä ja persoonaa.<br> <br>Vuonna 2008 perustettu Will Funk For Food on yksi Euroopan tunnetuimmista katutanssiryhmistä, joka on voittanut useita mestaruuksia ja esiintynyt kansainvälisesti Euroopassa ja Japanissa. A Fistful of Funk on ryhmän ensimmäinen koko illan näyttämöteos ja uraauurtava lajissaan.</p><p>Kesto: 75 min<br>Ikäsuositus: 10+<br>Kieli: englanti</p><p>Tämä esitys on maksuton koululaisnäytös. Ilmoita kouluryhmäsi ennakkoon osoitteessa https://kultus.fi/fi <br>Ryhmät arvotaan esitykseen ilmoittautuneiden joukosta.<br> <br>Koreografia: Akim Bakhtaoui, Wilhelm Blomberg ja Will Funk For Food <br>Esiintyjät: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg, Sami Pajari <br>Mukana luovassa prosessissa: Sami Harju, Joonas Kilappa, Kai Ruusuvuori (WFFF) <br>Lavastussuunnittelu: Oscar Dempsey <br>Pukusuunnittelu: Antrea Kantakoski <br>Valosuunnittelu: Jaakko Sirainen <br>Äänisuunnittelu, muusikko: Sebastian Kurtén<br>Dramaturgi: Juho Keränen <br>Rumpali: Leo Mäkinen <br>Tuotanto: Zodiak – Uuden tanssin keskus, Wilhelm Blomberg, Akim Bakhtaoui <br>Kiertuetuotanto: Otto Björkman</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 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>Under Hurra!-veckan tar Will Funk For Food, en av Finlands mest berömda streetdansgrupper, med sig sitt hyllade Locking-streetdansverk ”A Fistful of Funk” till Stoa.</p><p>Framträdandet, som ackompanjeras av två livemusiker, behandlar vänskap mellan män och teman som rör maskulinitet genom absurd teater, lek, humor och virtuos streetdans.</p><p>Under verket får vi följa fem cowboyer på ett episkt uppdrag i öknen. Där kombineras funkdans från 1970-talet med en text av dramatikern Juho Keränen, inspirerad av den toxiska machokulturen och hypermaskuliniteten i Sergio Leones westernfilmer.</p><p>Locking är en dansstil som föddes på 1970-talet på USA:s västkust bland afroamerikaner och som kännetecknas av skarpa pauser, grooviga steg och akrobatiska trick. Under framträdandet fördjupar vi oss i ett av de viktigaste elementen i locking: character, eller personlighet. Genom karaktärer och lek utforskar framträdandet alternativa maskulina uttryck, samtidigt som varje dansare visar upp sin unika stil och personlighet.</p><p>Will Funk For Food grundades 2008 och är en av Europas kändaste streetdansgrupper, som har vunnit flera mästerskap och uppträtt internationellt i Europa och Japan. A Fistful of Funk är gruppens första scenverk för en hel kväll och ett banbrytande verk i sitt slag.</p><p>Längd: 75 min.<br>Åldersrekommendation: 10+<br>Språk: engelska</p><p>Koreografi: Akim Bakhtaoui, Wilhelm Blomberg och Will Funk For Food <br>Framträdande: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg och Sami Pajari <br>Involverade i den kreativa processen: Sami Harju, Joonas Kilappa och Kai Ruusuvuori (WFFF) <br>Scendesign: Oscar Dempsey <br>Kostymdesign: Antrea Kantakoski <br>Ljusdesign: Jaakko Sirainen <br>Ljuddesign, musiker: Sebastian Kurtén<br>Dramaturgi: Juho Keränen <br>Trumslagare: Leo Mäkinen <br>Produktion: Zodiak – Centret för ny dans, Wilhelm Blomberg, Akim Bakhtaoui <br>Turnéproduktion: Otto Björkman</p>", "en": "<p>Will Funk For Food one of Finland’s most renowned street dance groups, brings A Fistful of Funk, a Locking street dance piece of great popularity, to Stoa during Hurraa! week.</p><p>The performance, accompanied by two live musicians, deals with the themes of male friendship and masculinity through absurd theatre, play, humour and virtuoso street dance.</p><p>The work follows five cowboys on an epic mission in the desert. There, 1970s funk dance is combined with the text of playwright Juho Keränen, which is inspired by the toxic machismo and hypermasculinity of Sergio Leone’s westerns.</p><p>Locking is a dance style born among African Americans on the West Coast of the United States in the 1970s, characterised by sharp breaks, groovy steps and acrobatic tricks. The performance focuses on one of the key elements of locking: character. Through the characters and play, the performance explores alternative masculine expressions while presenting each dancer’s unique style and personality.</p><p>Founded in 2008, Will Funk For Food is one of Europe’s best-known street dance groups, having won several championships and performed internationally in Europe and Japan. A Fistful of Funk is the group’s first full-length dramatic work and a pioneer in its field.</p><p>Duration: 75 min<br>Age recommendation: 10+<br>Language: English</p><p>Choreography: Akim Bakhtaoui, Wilhelm Blomberg and Will Funk For Food <br>Performers: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg, Sami Pajari <br>Involved in the creative process: Sami Harju, Joonas Kilappa, Kai Ruusuvuori (WFFF) <br>Staging design: Oscar Dempsey <br>Costume design: Antrea Kantakoski <br>Lighting design: Jaakko Sirainen <br> Sound design, musician: Sebastian Kurtén<br>Dramaturge: Juho Keränen <br>Drummer: Leo Mäkinen <br>Production: Zodiak – Center for New Dance, Wilhelm Blomberg, Akim Bakhtaoui <br>Tour production: Otto Björkman</p>" }, "provider": null, "name": { "fi": "Koululaisnäytös: Will Funk For Food | A Fistful of Funk – Hurraa! -teatteriviikot | ilmoittautuminen kultus.fi", "sv": "Will Funk For Food: A Fistful of Funk – Hurraa! -teaterveckor", "en": "Will Funk For Food: A Fistful of Funk – Hurraa! Theatre Weeks" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65078/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65079", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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: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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 163427, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-22T14:14:59.028957Z", "last_modified_time": "2025-01-22T14:14:59.028971Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763829.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163427/?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-22T14:14:58.999551Z", "last_modified_time": "2025-02-28T13:14:12.298747Z", "date_published": null, "start_time": "2025-03-14T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E2674A2A97CA75695C0C271562297111/Koululaisnaytos_Will_Funk_For_Food_A_Fistful_of_Funk", "sv": "http://www.stoa.fi/sv/evenemang/event/E2674A2A97CA75695C0C271562297111/Will_Funk_For_Food_A_Fistful_of_Funk", "en": "http://www.stoa.fi/en/events/event/E2674A2A97CA75695C0C271562297111/Will_Funk_For_Food_A_Fistful_of_Funk" }, "provider_contact_info": null, "short_description": { "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Hurraa! -viikolla Stoaan suuren suosion saaneen Locking-katutanssiteoksen A Fistful of Funk.", "sv": "Under Hurra!-veckan tar Will Funk For Food, en av Finlands mest berömda streetdansgrupper, med sig sitt hyllade Locking-streetdansverk ”A Fistful of Funk” till Stoa.", "en": "Will Funk For Food one of Finland’s most renowned street dance groups, brings A Fistful of Funk, a Locking street dance piece of great popularity, to Stoa during Hurraa! week." }, "description": { "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Hurraa! -viikolla Stoaan suuren suosion saaneen Locking-katutanssiteoksen A Fistful of Funk.</p><p>Kahden livemuusikon säestämä esitys käsittelee miesten välistä ystävyyttä ja maskuliinisuuden teemoja absurdin teatterin, leikin, huumorin ja virtuoosimaisen katutanssin avulla.<br> <br>Teoksessa seurataan viittä cowboyta eeppisellä tehtävällä aavikolla. Siellä 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.<br> <br>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät tauot, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: characteriin eli persoonallisuuteen. Hahmojen ja leikin kautta esitys tutkii vaihtoehtoisia maskuliinisia ilmaisuja ja esittelee samalla kunkin tanssijan ainutlaatuista tyyliä ja persoonaa.<br> <br>Vuonna 2008 perustettu Will Funk For Food on yksi Euroopan tunnetuimmista katutanssiryhmistä, joka on voittanut useita mestaruuksia ja esiintynyt kansainvälisesti Euroopassa ja Japanissa. A Fistful of Funk on ryhmän ensimmäinen koko illan näyttämöteos ja uraauurtava lajissaan.</p><p>Kesto: 75 min<br>Ikäsuositus: 10+<br>Kieli: englanti</p><p>Tämä esitys on maksuton koululaisnäytös. Ilmoita kouluryhmäsi ennakkoon osoitteessa https://kultus.fi/fi <br>Ryhmät arvotaan esitykseen ilmoittautuneiden joukosta.<br> <br>Koreografia: Akim Bakhtaoui, Wilhelm Blomberg ja Will Funk For Food <br>Esiintyjät: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg, Sami Pajari <br>Mukana luovassa prosessissa: Sami Harju, Joonas Kilappa, Kai Ruusuvuori (WFFF) <br>Lavastussuunnittelu: Oscar Dempsey <br>Pukusuunnittelu: Antrea Kantakoski <br>Valosuunnittelu: Jaakko Sirainen <br>Äänisuunnittelu, muusikko: Sebastian Kurtén<br>Dramaturgi: Juho Keränen <br>Rumpali: Leo Mäkinen <br>Tuotanto: Zodiak – Uuden tanssin keskus, Wilhelm Blomberg, Akim Bakhtaoui <br>Kiertuetuotanto: Otto Björkman</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 the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.<br>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>Under Hurra!-veckan tar Will Funk For Food, en av Finlands mest berömda streetdansgrupper, med sig sitt hyllade Locking-streetdansverk ”A Fistful of Funk” till Stoa.</p><p>Framträdandet, som ackompanjeras av två livemusiker, behandlar vänskap mellan män och teman som rör maskulinitet genom absurd teater, lek, humor och virtuos streetdans.</p><p>Under verket får vi följa fem cowboyer på ett episkt uppdrag i öknen. Där kombineras funkdans från 1970-talet med en text av dramatikern Juho Keränen, inspirerad av den toxiska machokulturen och hypermaskuliniteten i Sergio Leones westernfilmer.</p><p>Locking är en dansstil som föddes på 1970-talet på USA:s västkust bland afroamerikaner och som kännetecknas av skarpa pauser, grooviga steg och akrobatiska trick. Under framträdandet fördjupar vi oss i ett av de viktigaste elementen i locking: character, eller personlighet. Genom karaktärer och lek utforskar framträdandet alternativa maskulina uttryck, samtidigt som varje dansare visar upp sin unika stil och personlighet.</p><p>Will Funk For Food grundades 2008 och är en av Europas kändaste streetdansgrupper, som har vunnit flera mästerskap och uppträtt internationellt i Europa och Japan. A Fistful of Funk är gruppens första scenverk för en hel kväll och ett banbrytande verk i sitt slag.</p><p>Längd: 75 min.<br>Åldersrekommendation: 10+<br>Språk: engelska</p><p>Koreografi: Akim Bakhtaoui, Wilhelm Blomberg och Will Funk For Food <br>Framträdande: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg och Sami Pajari <br>Involverade i den kreativa processen: Sami Harju, Joonas Kilappa och Kai Ruusuvuori (WFFF) <br>Scendesign: Oscar Dempsey <br>Kostymdesign: Antrea Kantakoski <br>Ljusdesign: Jaakko Sirainen <br>Ljuddesign, musiker: Sebastian Kurtén<br>Dramaturgi: Juho Keränen <br>Trumslagare: Leo Mäkinen <br>Produktion: Zodiak – Centret för ny dans, Wilhelm Blomberg, Akim Bakhtaoui <br>Turnéproduktion: Otto Björkman</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>Will Funk For Food one of Finland’s most renowned street dance groups, brings A Fistful of Funk, a Locking street dance piece of great popularity, to Stoa during Hurraa! week.</p><p>The performance, accompanied by two live musicians, deals with the themes of male friendship and masculinity through absurd theatre, play, humour and virtuoso street dance.</p><p>The work follows five cowboys on an epic mission in the desert. There, 1970s funk dance is combined with the text of playwright Juho Keränen, which is inspired by the toxic machismo and hypermasculinity of Sergio Leone’s westerns.</p><p>Locking is a dance style born among African Americans on the West Coast of the United States in the 1970s, characterised by sharp breaks, groovy steps and acrobatic tricks. The performance focuses on one of the key elements of locking: character. Through the characters and play, the performance explores alternative masculine expressions while presenting each dancer’s unique style and personality.</p><p>Founded in 2008, Will Funk For Food is one of Europe’s best-known street dance groups, having won several championships and performed internationally in Europe and Japan. A Fistful of Funk is the group’s first full-length dramatic work and a pioneer in its field.</p><p>Duration: 75 min<br>Age recommendation: 10+<br>Language: English</p><p>Choreography: Akim Bakhtaoui, Wilhelm Blomberg and Will Funk For Food <br>Performers: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg, Sami Pajari <br>Involved in the creative process: Sami Harju, Joonas Kilappa, Kai Ruusuvuori (WFFF) <br>Staging design: Oscar Dempsey <br>Costume design: Antrea Kantakoski <br>Lighting design: Jaakko Sirainen <br> Sound design, musician: Sebastian Kurtén<br>Dramaturge: Juho Keränen <br>Drummer: Leo Mäkinen <br>Production: Zodiak – Center for New Dance, Wilhelm Blomberg, Akim Bakhtaoui <br>Tour production: Otto Björkman</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>" }, "provider": null, "name": { "fi": "Koululaisnäytös: Will Funk For Food | A Fistful of Funk – Hurraa! -teatteriviikot | ilmoittautuminen kultus.fi", "sv": "Will Funk For Food: A Fistful of Funk – Hurraa! -teaterveckor", "en": "Will Funk For Food: A Fistful of Funk – Hurraa! Theatre Weeks" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65079/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65503", "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: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165015, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T12:14:58.497805Z", "last_modified_time": "2025-01-23T12:14:58.497823Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761751.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165015/?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-23T12:14:58.463469Z", "last_modified_time": "2025-02-28T11:14:29.055712Z", "date_published": null, "start_time": "2025-03-21T08:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2565A22A23E3320C8A29CE743A2BBF39/KATVE_blind_spot_Company_CRAZY_BOX", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2565A22A23E3320C8A29CE743A2BBF39/KATVE_blind_spot_Company_CRAZY_BOX", "en": "http://www.vuotalo.fi/en/events/event/2565A22A23E3320C8A29CE743A2BBF39/KATVE_blind_spot_Company_CRAZY_BOX" }, "provider_contact_info": null, "short_description": { "fi": "KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos saa ensi-iltansa Hurraa! -teatteriviikolla 2025 Helsingissä.", "sv": "KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär under teaterveckan Hurra! 2025 i Helsingfors.", "en": "KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres during Hurraa! theatre week 2025 in Helsinki." }, "description": { "fi": "<p>KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos saa ensi-iltansa Hurraa! -teatteriviikolla 2025 Helsingissä.</p><p>Esityksen keskiössä on laatikko, joka mahdollistaa teleporttaamisen - alkaa ihmeellinen, villi ja absurdin hulvaton matka!</p><p>CRAZY BOX -teoksen teemana on rohkeus ja mielikuvitus. Esitys näyttää, että hyppäämällä uusiin tilanteisiin voi löytää itsestään ja maailmasta uutta. Sanaton esitys kannustaa avarakatseisuuteen suhteessa itseen ja toisiin.</p><p>Teoksesta esitetään kaksi erilaista versiota, joista toinen on päiväkoti-ikäisille ja alakoulun ensimmäisille luokille suunnattu, ja toinen yli 11-vuotiaille lapsille ja nuorille.</p><p>klo 9:30 esitys on päiväkotiryhmille<br>klo 10:45 esitys on alakouluryhmille</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa https://kultus.fi/fi</p><p><b>TYÖRYHMÄ</b><br>Konsepti, koreografia ja tanssi: Tanja Illukka ja Heidi Masalin<br>Äänisuunnittelu: Olli Havu<br>Laatikon toteutus: Lotta Esko</p><p>KATVE [blind spot] Company on helsinkiläinen, vuonna 2012 perustettu nykytanssiryhmä, joka tunnetaan moniulotteisista ja raikkaista nykytanssiteoksista. Ryhmän teoksia leimaa mielikuvitus, fyysisyys ja rajaton mielenkiinto elämän erilaisia ilmiöitä kohtaan. KATVE [blind spot] Companyn taiteellisena johtajana toimii tanssitaiteilija Heidi Masalin.</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ä.<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 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>KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär under teaterveckan Hurra! 2025 i Helsingfors.</p><p>Föreställningen handlar om en låda som gör det möjligt att teleportera sig – så börjar en förunderlig, vild och absurt rolig resa!<br>Temat för verket CRAZY BOX är mod och fantasi. Föreställningen visar att man kan upptäcka något nytt om sig själv och om världen då man hoppar in i nya situationer. Den ordlösa föreställningen uppmuntrar till öppenhet gentemot sig själv och andra.</p><p>Verket framförs i två olika versioner, en för daghemsbarn och elever på de lägsta årskurserna i lågstadieskolan, och en för barn och unga över 10 år.</p><p>Fri entré, anmälan obligatorisk för grupper: https://kultus.fi/fi</p><p><b>ARBETSGRUPP</b><br>Koncept, koreografi och dans: Tanja Illukka och Heidi Masalin<br>Ljuddesign: Olli Havu<br>Lådans genomförande: Lotta Esko</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>KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres during Hurraa! theatre week 2025 in Helsinki.</p><p>At the heart of the show is a box that enables teleportation – a wondrous, wild and absurdly hilarious journey begins!<br>The theme of CRAZY BOX is courage and imagination. The performance shows that by jumping into new situations, you can discover something new about yourself and the world. The non-verbal performance encourages you to be open-minded with yourself and others.</p><p>There are two versions of the performance. One is aimed for daycare centre-aged children and the lower grades of primary school. The other are for children and young people over 10 years of age.</p><p>Free admission, registration mandatory for groups at https://kultus.fi/fi</p><p><b>WORKING GROUP</b><br>Concept, choreography and dance: Tanja Illukka and Heidi Masalin<br>Sound design: Olli Havu<br>Box implementation: Lotta Esko</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>" }, "provider": null, "name": { "fi": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teatteriviikot", "sv": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teaterveckor", "en": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! Theatre weeks" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65503/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65502", "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: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165014, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T12:14:58.295225Z", "last_modified_time": "2025-01-23T12:14:58.295242Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761750.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165014/?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-23T12:14:58.258329Z", "last_modified_time": "2025-02-28T11:14:28.904451Z", "date_published": null, "start_time": "2025-03-21T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EFB3FB4F1D707B2795BDDC053B9F5A2E/KATVE_blind_spot_Company_CRAZY_BOX", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EFB3FB4F1D707B2795BDDC053B9F5A2E/KATVE_blind_spot_Company_CRAZY_BOX", "en": "http://www.vuotalo.fi/en/events/event/EFB3FB4F1D707B2795BDDC053B9F5A2E/KATVE_blind_spot_Company_CRAZY_BOX" }, "provider_contact_info": null, "short_description": { "fi": "KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos saa ensi-iltansa Hurraa! -teatteriviikolla 2025 Helsingissä.", "sv": "KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär under teaterveckan Hurra! 2025 i Helsingfors.", "en": "KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres during Hurraa! theatre week 2025 in Helsinki." }, "description": { "fi": "<p>KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos saa ensi-iltansa Hurraa! -teatteriviikolla 2025 Helsingissä.</p><p>Esityksen keskiössä on laatikko, joka mahdollistaa teleporttaamisen - alkaa ihmeellinen, villi ja absurdin hulvaton matka!</p><p>CRAZY BOX -teoksen teemana on rohkeus ja mielikuvitus. Esitys näyttää, että hyppäämällä uusiin tilanteisiin voi löytää itsestään ja maailmasta uutta. Sanaton esitys kannustaa avarakatseisuuteen suhteessa itseen ja toisiin.</p><p>Teoksesta esitetään kaksi erilaista versiota, joista toinen on päiväkoti-ikäisille ja alakoulun ensimmäisille luokille suunnattu, ja toinen yli 11-vuotiaille lapsille ja nuorille.</p><p>klo 9:30 esitys on päiväkotiryhmille<br>klo 10:45 esitys on alakouluryhmille</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa https://kultus.fi/fi</p><p><b>TYÖRYHMÄ</b><br>Konsepti, koreografia ja tanssi: Tanja Illukka ja Heidi Masalin<br>Äänisuunnittelu: Olli Havu<br>Laatikon toteutus: Lotta Esko</p><p>KATVE [blind spot] Company on helsinkiläinen, vuonna 2012 perustettu nykytanssiryhmä, joka tunnetaan moniulotteisista ja raikkaista nykytanssiteoksista. Ryhmän teoksia leimaa mielikuvitus, fyysisyys ja rajaton mielenkiinto elämän erilaisia ilmiöitä kohtaan. KATVE [blind spot] Companyn taiteellisena johtajana toimii tanssitaiteilija Heidi Masalin.</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ä.<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 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>KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär under teaterveckan Hurra! 2025 i Helsingfors.</p><p>Föreställningen handlar om en låda som gör det möjligt att teleportera sig – så börjar en förunderlig, vild och absurt rolig resa!<br>Temat för verket CRAZY BOX är mod och fantasi. Föreställningen visar att man kan upptäcka något nytt om sig själv och om världen då man hoppar in i nya situationer. Den ordlösa föreställningen uppmuntrar till öppenhet gentemot sig själv och andra.</p><p>Verket framförs i två olika versioner, en för daghemsbarn och elever på de lägsta årskurserna i lågstadieskolan, och en för barn och unga över 10 år.</p><p>Fri entré, anmälan obligatorisk för grupper: https://kultus.fi/fi</p><p><b>ARBETSGRUPP</b><br>Koncept, koreografi och dans: Tanja Illukka och Heidi Masalin<br>Ljuddesign: Olli Havu<br>Lådans genomförande: Lotta Esko</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>KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres during Hurraa! theatre week 2025 in Helsinki.</p><p>At the heart of the show is a box that enables teleportation – a wondrous, wild and absurdly hilarious journey begins!<br>The theme of CRAZY BOX is courage and imagination. The performance shows that by jumping into new situations, you can discover something new about yourself and the world. The non-verbal performance encourages you to be open-minded with yourself and others.</p><p>There are two versions of the performance. One is aimed for daycare centre-aged children and the lower grades of primary school. The other are for children and young people over 10 years of age.</p><p>Free admission, registration mandatory for groups at https://kultus.fi/fi</p><p><b>WORKING GROUP</b><br>Concept, choreography and dance: Tanja Illukka and Heidi Masalin<br>Sound design: Olli Havu<br>Box implementation: Lotta Esko</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>" }, "provider": null, "name": { "fi": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teatteriviikot", "sv": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teaterveckor", "en": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! Theatre weeks" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65502/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65125", "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:29/?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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153167, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T14:17:21.275835Z", "last_modified_time": "2024-12-03T14:17:21.275854Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764075.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153167/?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": "2024-12-03T14:17:21.250663Z", "last_modified_time": "2025-02-28T08:14:14.505619Z", "date_published": null, "start_time": "2025-03-05T08:00:00Z", "end_time": "2025-03-05T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CFD4CAA6736183F65645C32391E8B172/Naperokahvila", "sv": "http://www.annantalo.fi/sv/evenemang/event/CFD4CAA6736183F65645C32391E8B172/Smabarnskaf_", "en": "http://www.annantalo.fi/en/events/event/CFD4CAA6736183F65645C32391E8B172/Toddler_caf_" }, "provider_contact_info": null, "short_description": { "fi": "Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.", "sv": "Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.", "en": "Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult." }, "description": { "fi": "<p>Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.</p><p>Ohjelmassa voi olla maalaamista, musisointia tai vaikkapa lasten animaatioiden katselua. Taidetekemisen ohessa Naperokahvila toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Tänään Naperokahvilassa katsellaan lyhytanimaatioita ja osallistutaan työpajaan, jossa tehdään talvisia pilviä.</p><p>Naperokahvilassa voit piipahtaa tai viipyä pidempään. Rento ja mukava tila mahdollistaa lapsen ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen oleskelun kahvilassa.</p><p>Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokahvila on suunnattu kotiäideille ja -isille, isovanhemmille, perhepäivähoitajille ja muille lapsille tärkeille aikuisille. <br>Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Samassa tilassa palvelee Annantalon ikioma pannarikahvila Puffy Mini Pancakes.</p><p><b>Kevään 2025 Naperokahvilat:</b></p><p>ke 22.1 klo 10–12<br>ke 5.2. klo 10–12<br>ke 19.2. klo 10–12<br>ke 5.3. klo 10–12<br>ke 19.3 klo 10–12<br>ke 2.4 klo 10–12<br>ke 16.4. klo 10–12</p><p>Ikäsuositus: 0–3-vuotiaille oman aikuisen kanssa<br>Kieli: monikielinen (suomi, ruotsi, englanti)<br>Vapaa pääsy!</p>", "sv": "<p>Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.</p><p>Det kan handla om att måla, musicera eller titta på animationer för barn. Utöver konstaktiviteter är Småbarnskaféet en mötesplats för små barn och deras föräldrar.</p><p>Idag på Småbarnskaféet tittar vi på kortanimationer och deltar i en verkstad där vi skapar vintermoln.</p><p>Du kan titta in eller stanna kvar längre på Småbarnskaféet. I det avslappnade och trivsamma utrymmet går det att värma mat för barnet, mata/amma barnet och njuta av en barnvänlig vistelse i kaféet.</p><p>Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Småbarnskaféet riktar sig till hemmamammor och -pappor, mor- och farföräldrar, familjedagvårdare och andra vuxna som är viktiga för barnen. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>I samma utrymme betjänar Annegårdens alldeles egna pannkakskafé, Puffy Mini Pancakes.</p><p>Åldersrekommendation: 0–3-åringar i sällskap av en vuxen <br>Fritt inträde<br>Lokal: Kaféet</p>", "en": "<p>Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult.</p><p>The programme can include painting, music or, for example, watching children’s animations. In addition to making art, Toddler café serves as a meeting place for small children and their adults.<br>You can stop by for a short visit or stay longer.</p><p>Today at the Toddler Café, we will watch short animations and take part in a workshop where we create winter clouds.</p><p>At the relaxed and comfortable space, you can heat up your child’s food, feed/breastfeed as well as stay in the cafeteria at your child’s pace. <br>A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler café is aimed at stay-at-home moms and dads, grandparents, family day caregivers and other adults who are important to children. Unfortunately, we cannot accommodate daycare centres due to the small size of our premises.</p><p>You can also find Annantalo’s very own pancake café Puffy Mini Pancakes in the same space.</p><p>Age recommendation: 0–3-year-old children with their adult <br>Free admission<br>Venue: Café</p>" }, "provider": null, "name": { "fi": "Naperokahvila", "sv": "Småbarnskafé", "en": "Toddler café" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65125/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:11e12e52-170e-4059-8019-59ae36454877", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Testataan_Kuvauskentn_muutoksia_TL-DG240120251093116900" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2025-01-24T08:34:09.310127Z", "last_modified_time": "2025-02-28T07:37:00.732990Z", "date_published": "2025-01-24T06:39:32Z", "start_time": "2025-10-31T06:28:00Z", "end_time": "2025-10-31T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-01-24T08:00:00+02:00", "enrolment_end_time": "2025-10-27T08:00:00+02:00", "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "https://www.hel.fi" }, "provider_contact_info": null, "short_description": { "fi": "Lorem Ipsum\n\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\"\n\"There is no one who loves pain itself, who seeks a" }, "description": { "fi": "<div><div><div><strong>Lorem Ipsum<br>\"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...\"<br>\"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...\"<br><br><br>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque luctus hendrerit feugiat. Fusce tempus suscipit faucibus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Etiam dictum, lorem non convallis posuere, orci enim tempor ligula, a maximus risus purus sed sapien. Interdum et malesuada fames ac ante ipsum primis in faucibus. In urna quam, varius ac blandit vel, porttitor non purus. Integer et lectus condimentum, tempor leo et, efficitur erat. In hac habitasse platea dictumst. Nulla sed cursus justo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean malesuada, erat sit amet euismod egestas, tortor ipsum molestie sapien, sed volutpat metus dui id lectus. Vivamus pellentesque tincidunt quam id iaculis. Proin ullamcorper risus sed velit suscipit mollis. Sed pulvinar quam nisi, sed ultrices lectus bibendum vel. Praesent tempus lacus sed dui cursus, at consectetur ipsum sodales.<br>Integer eleifend purus eget neque aliquet imperdiet. Phasellus non purus urna. Nam id odio nec elit accumsan gravida vel sit amet mauris. Vestibulum ac vestibulum ipsum. Pellentesque habitant morbi tr finibus at ac diam. Quisque pellentesque malesuada nisl, eget molestie libero molestie pulvinar. Suspent amet risus semper posuere. Nunc tempor ligula ultricies molestie lacinia. In hac habitasse platea dictumst. Praesent scelerisque dignissim viverra.<br>Interdum et malesuada fames ac ante ipsum primis in faucibus. Etiam lacinia auctor nulla. Donec blandit luctus odio. Donec nec consequat nisi, at tincidunt sapien. Nam Donec egestas sollicitudin vehicula. Pellentesque eleifend facilisis ornare. Vestibulum placerat rhoncus lorem.<br>Mauris pretium vestibulum ornare. Phasellus posuere consequat luctus. Ut quis est quis tellus aliquet dignissimu ligula iaculis iaculis. Quisque sit amet diam cursus, pulvinar felis quis, interdum urna. Aliquam quis commodo justo. Nullam hendrerit mi est, sit amet consectetur ex tincidunt eget. Aenean arcu elit, pharetra non tempor a, congue ut lorem.<br>1. Duis a diam ultrices,<br>2. finibus justo sit amet,<br>3. ullamcorper magna.<br>Pellentesque sollicitudin dolor orci, vitae ultricies eros sagittis a. Curabitur congue, mi ac feugiat eleifend, mauris ex tempus elit, eu tempor nisl libero nec mi. Nulla nec condimentum sapien. Aenean sollicitudin lorem massa, quis eleifend augue fermentum id. Nam non ante ac nunc ornare maximus. Nulla volutpat, diam at condimentum tincidunt, turpis sato. Nam volutpat feugiat purus et efficitur. Curabitur id mauris eget orci malesuada rutrum dignissim id felis.<br>Curabitur auctor placerat feugiat. In lacinia dignissim elit, id imperdiet dolor consequat quis. Curabitur sed elit tincidunt tellus vestibulum gravida. Cras tincidunt ipsum ut ex malesuada, vel tempor nibh semper. Ut in ligula orci. Fusce pretium pellentesque ligula, vel sagittis diam eleifend elementum. Aliquam aliquam malesuada pulvinar. Donec venenatis convallis interdum. Quisque pellentesque malesuada nisl, eget molestie libero molestie pulvinar. Suspent amet risus semper posuere. Nunc tempor ligula ultricies molestie lacinia. In hac habitasse platea dictumst. Praesent scelerisque dignissim viverra.<br>Interdum et malesuada fames ac ante ipsum primis in faucibus. Etiam lacinia auctor nulla. Donec blandit luctus odio. Donec nec consequat nisi, at tincidunt sapien. Nam euismod purus odio, sit amet lobortis felis sagittis non. Nam in suscipit nunc, a bibendum sem. Mauris tincidunt nisi eu mauris condimentum rutrum.<br>Duis nec erat nec purus laoreet venenatis et quis massa. Maecenas tristique tellus sem, quis porta elit vehicula ut. Maecenas gravida nulla ullamcorper ligula mollis scelerisque. </strong><strong>Duis mollis ut orci id volutpat. Praesent viverra vulputate leo, eget vulputate nibh pellentesque id. Fusce et consectetur lorem, vel convallis nisi. Ut laoreet sem sit amet dictum mollis. Duis ornare cursus mattis. Proin euismod est ut consequat laoreet.<br>Integer vulputate aliquam eleifend. Sed rutrum interdum metus in tristique. Sed tellus dui, sollicitudin at sagittis et, accumsan non enim. Curabitur viverra tincidunt tempor. Sed ante<br>• Fusce sem nulla, luctus et eleifend sit amet, elementum non diam.<br>• Curabitur ac ante at quam mattis blandit a nec lectus.<br>• Duis pharetra vehicula ligula, blandit interdum sapien malesuada eget.<br>• Pellentesque rutrum</strong></div>\n<div> </div></div></div>" }, "provider": { "fi": "Digia" }, "name": { "fi": "Testataan Kuvauskentän muutoksia TL-DG.24,01,2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:11e12e52-170e-4059-8019-59ae36454877/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:3de4bbe8-bb05-4503-b80e-e0502b1d0f84", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?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:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?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:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?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:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?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": false, "offer_price_groups": [], "price": { "fi": "99", "sv": "99", "en": "99", "ru": "99", "zh_hans": "99", "ar": "99" }, "description": { "fi": "ysiysi", "sv": "ysiysi", "en": "ysiysi", "ru": "ysiysi", "zh_hans": "ysiysi", "ar": "ysiysi" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_240220254199704497", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_240220254199704497", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_240220254199704497", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_240220254199704497", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_240220254199704497", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_240220254199704497" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 279606, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-28T07:36:57.089477Z", "last_modified_time": "2025-02-28T07:36:57.089494Z", "name": "MKtest 24022025 kuvatekstiä", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/15cb8ee9-057c-ef11-ac20-0022489ae80c", "cropping": "", "photographer_name": "MKtest 24022025 kuvaajan nimitietoa", "alt_text": "MKtest 24022025", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/279606/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?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:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?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:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?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:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "created_time": "2025-02-24T06:22:05.061779Z", "last_modified_time": "2025-02-28T07:37:00.341588Z", "date_published": "2025-02-24T06:13:17Z", "start_time": "2025-03-01T06:30:00Z", "end_time": "2025-03-01T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2025-01-27T08:00:00+02:00", "enrolment_end_time": "2025-02-28T08:00:00+02:00", "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 24022025 SHORT DESC", "sv": "MKtest 24022025 SHORT DESC SV", "en": "MKtest 24022025 SHORT DESC EN", "ru": "MKtest 24022025 SHORT DESC RU", "zh_hans": "MKtest 24022025 SHORT DESC CH", "ar": "MKtest 24022025 SHORT DESC AR" }, "description": { "fi": "<div><div><strong>SUOMI</strong><br><em><strong>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit</strong></em>.\"<br> </div>\n<blockquote><div>ASDFASFSAD</div></blockquote>\n<div> </div>\n<ul><li>Purjehdus</li><li>Sukeltaminen</li><li>Siviili-ilmailu</li></ul>\n<div> </div>\n<div> </div>\n<div>Etiam sapien tortor, mollis non gravida quis, dictum eu leo. Aliquam eleifend purus a nisl laoreet, id rutrum lectus blandit. Ut tempus metus ut neque condimentum, quis commodo odio mattis. Ut pulvinar, nisi a venenatis maximus, sapien sem tincidunt metus, ut molestie justo purus ut massa. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras fermentum, nisi sed semper semper, sem diam varius ex, eu maximus odio tellus id eros. Ut et odio bibendum, accumsan odio non, dictum urna. Nullam a enim a neque accumsan dictum id nec enim. Etiam ultricies magna ut ex pretium mattis. Fusce nibh ante, dictum convallis nisl vitae, lacinia aliquam mi. Nam neque dolor, tristique quis nisi at, pulvinar viverra augue. Maecenas semper, libero at feugiat efficitur, metus enim tempor ante, id tristique nibh justo eu odio.</div></div>", "sv": "<div><div><strong>RUOTSI</strong><br>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam sapien tortor, mollis non gravida quis, dictum eu leo. Aliquam eleifend purus a nisl laoreet, id rutrum lectus blandit. Ut tempus metus ut neque condimentum, quis commodo odio mattis. Ut pulvinar, nisi a venenatis maximus, sapien sem tincidunt metus, ut molestie justo purus ut massa. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras fermentum, nisi sed semper semper, sem diam varius ex, eu maximus odio tellus id eros. Ut et odio bibendum, accumsan odio non, dictum urna. Nullam a enim a neque accumsan dictum id nec enim. Etiam ultricies magna ut ex pretium mattis. Fusce nibh ante, dictum convallis nisl vitae, lacinia aliquam mi. Nam neque dolor, tristique quis nisi at, pulvinar viverra augue. Maecenas semper, libero at feugiat efficitur, metus enim tempor ante, id tristique nibh justo eu odio.</div></div>", "en": "<div><div><strong>ENGLANTI</strong><br>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam sapien tortor, mollis non gravida quis, dictum eu leo. Aliquam eleifend purus a nisl laoreet, id rutrum lectus blandit. Ut tempus metus ut neque condimentum, quis commodo odio mattis. Ut pulvinar, nisi a venenatis maximus, sapien sem tincidunt metus, ut molestie justo purus ut massa. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras fermentum, nisi sed semper semper, sem diam varius ex, eu maximus odio tellus id eros. Ut et odio bibendum, accumsan odio non, dictum urna. Nullam a enim a neque accumsan dictum id nec enim. Etiam ultricies magna ut ex pretium mattis. Fusce nibh ante, dictum convallis nisl vitae, lacinia aliquam mi. Nam neque dolor, tristique quis nisi at, pulvinar viverra augue. Maecenas semper, libero at feugiat efficitur, metus enim tempor ante, id tristique nibh justo eu odio.</div></div>", "ru": "<div><div><strong>VENÄJÄ</strong><br>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam sapien tortor, mollis non gravida quis, dictum eu leo. Aliquam eleifend purus a nisl laoreet, id rutrum lectus blandit. Ut tempus metus ut neque condimentum, quis commodo odio mattis. Ut pulvinar, nisi a venenatis maximus, sapien sem tincidunt metus, ut molestie justo purus ut massa. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras fermentum, nisi sed semper semper, sem diam varius ex, eu maximus odio tellus id eros. Ut et odio bibendum, accumsan odio non, dictum urna. Nullam a enim a neque accumsan dictum id nec enim. Etiam ultricies magna ut ex pretium mattis. Fusce nibh ante, dictum convallis nisl vitae, lacinia aliquam mi. Nam neque dolor, tristique quis nisi at, pulvinar viverra augue. Maecenas semper, libero at feugiat efficitur, metus enim tempor ante, id tristique nibh justo eu odio.</div></div>", "zh_hans": "<div><div><strong>KIINA</strong><br>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam sapien tortor, mollis non gravida quis, dictum eu leo. Aliquam eleifend purus a nisl laoreet, id rutrum lectus blandit. Ut tempus metus ut neque condimentum, quis commodo odio mattis. Ut pulvinar, nisi a venenatis maximus, sapien sem tincidunt metus, ut molestie justo purus ut massa. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras fermentum, nisi sed semper semper, sem diam varius ex, eu maximus odio tellus id eros. Ut et odio bibendum, accumsan odio non, dictum urna. Nullam a enim a neque accumsan dictum id nec enim. Etiam ultricies magna ut ex pretium mattis. Fusce nibh ante, dictum convallis nisl vitae, lacinia aliquam mi. Nam neque dolor, tristique quis nisi at, pulvinar viverra augue. Maecenas semper, libero at feugiat efficitur, metus enim tempor ante, id tristique nibh justo eu odio.</div></div>", "ar": "<div><div><strong>ARABIA</strong><br>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam sapien tortor, mollis non gravida quis, dictum eu leo. Aliquam eleifend purus a nisl laoreet, id rutrum lectus blandit. Ut tempus metus ut neque condimentum, quis commodo odio mattis. Ut pulvinar, nisi a venenatis maximus, sapien sem tincidunt metus, ut molestie justo purus ut massa. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras fermentum, nisi sed semper semper, sem diam varius ex, eu maximus odio tellus id eros. Ut et odio bibendum, accumsan odio non, dictum urna. Nullam a enim a neque accumsan dictum id nec enim. Etiam ultricies magna ut ex pretium mattis. Fusce nibh ante, dictum convallis nisl vitae, lacinia aliquam mi. Nam neque dolor, tristique quis nisi at, pulvinar viverra augue. Maecenas semper, libero at feugiat efficitur, metus enim tempor ante, id tristique nibh justo eu odio.</div></div>" }, "provider": { "fi": "Business Helsinki FI", "sv": "Business Helsinki SV", "en": "Business Helsinki EN", "ru": "Business Helsinki RU", "zh_hans": "Business Helsinki CH", "ar": "Business Helsinki AR" }, "name": { "fi": "MKtest 24022025", "sv": "MKtest 24022025 HEADER SV", "en": "MKtest 24022025 HEADER EN", "ru": "MKtest 24022025 HEADER RU", "zh_hans": "MKtest 24022025 HEADER CH", "ar": "MKtest 24022025 HEADER AR" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:3de4bbe8-bb05-4503-b80e-e0502b1d0f84/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agkurfwy44", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12683/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20881/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": { "fi": "" } } ], "data_source": "helsinki", "publisher": "ahjo:00001", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-02-27T18:06:40.408387Z", "last_modified_time": "2025-02-27T18:06:40.408405Z", "date_published": null, "start_time": "2025-06-17T11:30:00Z", "end_time": "2025-06-17T12: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": 3, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "" }, "info_url": { "fi": "" }, "provider_contact_info": null, "short_description": { "fi": "Testataan pocia" }, "description": { "fi": "<p>samma på svenska</p>" }, "provider": { "fi": "" }, "name": { "fi": "H-M poc testaus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agkurfwy44/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65396", "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:33/?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: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:613/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "10 € / 8 €", "sv": "10 € / 8 €", "en": "10 € / 8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-packa-pappas-kappsaeck-vuotalo-19615825/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-packa-pappas-kappsaeck-vuotalo-19615825/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-packa-pappas-kappsaeck-vuotalo-19615825/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153682, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-07T09:14:27.622612Z", "last_modified_time": "2025-01-07T09:14:27.622628Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761664.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153682/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-07T09:14:27.577785Z", "last_modified_time": "2025-02-27T12:13:19.331315Z", "date_published": null, "start_time": "2025-03-04T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/66E28C7B006A46C8020BC632994DD0B2/Teater_Kennedy_Packa_pappas_kappsack_kadonnutta_isaa_etsimassa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/66E28C7B006A46C8020BC632994DD0B2/Teater_Kennedy_Packa_pappas_kappsack", "en": "http://www.vuotalo.fi/en/events/event/66E28C7B006A46C8020BC632994DD0B2/Teater_Kennedy_Packa_pappas_kappsack_kadonnutta_isaa_etsimassa" }, "provider_contact_info": null, "short_description": { "fi": "Tarvitaanko isää? Ja jos, niin millaista? Mitä isyyteen liittyy ja millaista on olla isä? Ja mitä sitten kun isää ei enää ole olemassa?", "sv": "Behövs pappor? Hur är det att ha en pappa – en närvarande eller frånvarande? Vad är en pappa?", "en": "Is a father needed? If yes, what kind? What is fatherhood and what is it like to be a father?" }, "description": { "fi": "<p>Tarvitaanko isää? Ja jos, niin millaista? Mitä isyyteen liittyy ja millaista on olla isä? Ja mitä sitten kun isää ei enää ole olemassa?</p><p>Niklas Häggblomin ja Anders Slotten kirjoittama ja esittämä esitys pohtii isyyttä ja isän roolia eri kulmilta.</p><p>Ruotsinkielinen teatteriesitys.</p><p>Teksti: Niklas Häggblom ja Anders Slotte<br>Lavalla: Niklas Häggblom ja Anders Slotte<br> <br>Tuotanto: Teater Kennedy yhteistyössä: Teater Mars/Teaterhuset Universum</p><p>Kesto n. 1h 30 min. Ei väliaikaa</p>", "sv": "<p>Behövs pappor? Hur är det att ha en pappa – en närvarande eller frånvarande? Vad är en pappa?</p><p>Kan man vara mer eller mindre pappa?<br>Hur är det att vara pappa?<br>Hur är det när pappa inte längre finns?</p><p>Niklas Häggblom och Anders Slotte har skrivit pjäsen som de själva också spelar i. Pjäsen handlar om faderskap och papparollen ur olika synvinklar.</p><p><b>Pressröster om pjäsen</b><br>”Den stora behållningen är att pjäsen ”Packa pappas kappsäck” är väldigt rolig, samtidigt som den är berörande. Det är också bra att män pratar om sin uppväxt och hur de mådde som tonåringar. Det gör oss alla lite klokare.”<br> Helene Wallin, Nya Östis</p><p>”Klockren dialogpjäs om pappor, faderskap och saknad.”<br> ”Niklas Häggblom och Anders Slottes dialogpjäs om sina pappor är innerlig, absurd och jätterolig.”<br>Lasse Garoff, YLE kultur</p><p>”Den egna upplevelsen och det egna livet utgör briljant, intressant stoff för den som har mod att ösa självutlämnande.”<br> ”Det känns verkligen som om åskådaren fick privilegiet att komma Niklas Häggblom och Anders Slotte, den yngre så väl som den äldre, nära inpå skinnet.”</p><p>”Särskilt minnesvärd blir Anders Slottes uppgörelse med sin bortgågne pappas, den världsvane kosmopolitiske diplomatens, konflikträdsla och känslokalla emotionella lättja i relationerna med kvinnorna i sitt liv.”<br>Otto Ekman, HBL</p><p>Av och med Niklas Häggblom och Anders Slotte<br>Produktion: Teater Kennedy i samarbete med Teater Mars/Teaterhuset Universum</p><p>Längd ca 1h 30 min utan paus.</p>", "en": "<p>Is a father needed? If yes, what kind? What is fatherhood and what is it like to be a father?</p><p>And what happens when the father no longer exists? The performance, written and presented by Niklas Häggblom and Anders Slotte, ponders fatherhood and the role of the father from different angles.</p><p>Swedish-language theatre performance.</p><p>Duration 1 hour 30 minutes. No interval<br>Text: Niklas Häggblom and Anders Slotte<br>On stage: Niklas Häggblom and Anders Slotte</p>" }, "provider": null, "name": { "fi": "Teater Kennedy: Packa pappas kappsäck – kadonnutta isää etsimässä – Tisdagsmatiné", "sv": "Teater Kennedy: Packa pappas kappsäck – Tisdagsmatiné", "en": "Teater Kennedy: Packa pappas kappsäck – kadonnutta isää etsimässä – Tisdagsmatiné" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65396/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65677", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19900385/", "sv": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19900385/", "en": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19900385/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 275591, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-27T09:14:20.091761Z", "last_modified_time": "2025-02-27T09:14:20.091775Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765952.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/275591/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-27T09:14:20.063708Z", "last_modified_time": "2025-02-27T09:14:20.149323Z", "date_published": null, "start_time": "2025-03-14T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7476D312DA2CC6C4A9C8B361964595B9/Kesakirja_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7476D312DA2CC6C4A9C8B361964595B9/Kesakirja_S_", "en": "http://www.malmitalo.fi/en/events/event/7476D312DA2CC6C4A9C8B361964595B9/Kesakirja_S_" }, "provider_contact_info": null, "short_description": { "fi": "Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa." }, "description": { "fi": "<p>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa.</p><p>Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br> <br>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.</p><p>Elokuvan pääosissa nähdään kahdeksankertainen Oscar®-ehdokas Glenn Close sekä suomalainen, nyt 10-vuotias, elokuvanäyttelijänä debytoiva Emily Matthews. Merkittävässä sivuroolissa näyttelee myös Anders Danielsen Lie. Lisäksi elokuvassa nähdään Pekka Strang, Sophia Heikkilä ja Ingvar Sigurdsson.</p><p>Charlie McDowellin ohjaama ja Robert Jonesin valkokankaalle sovittama Kesäkirja kuvattiin Suomessa kesällä 2023 muun muassa Itäisen Suomenlahden rannikolla, esimerkiksi Kotkan ja Porvoon saaristoissa.</p><p>Kansainvälisen yhteistuotannon suomalainen tuotantoyhtiö on Helsinki-filmi, tuottajinaan Aleksi Bardy ja Helen Vinogradov.</p><p>Ikäraja: S<br>Kesto: 95 min.<br>Ensi-ilta: 31.1.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "name": { "fi": "Kesäkirja (S) – Kino Helios", "sv": "Kesäkirja (S) – Kino Helios", "en": "Kesäkirja (S) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65677/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65666", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-ei-koskaan-yksin-12-malmitalo-19900384/", "sv": "https://www.lippu.fi/event/kino-helios-ei-koskaan-yksin-12-malmitalo-19900384/", "en": "https://www.lippu.fi/event/kino-helios-ei-koskaan-yksin-12-malmitalo-19900384/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 275590, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-27T09:14:19.445845Z", "last_modified_time": "2025-02-27T09:14:19.445859Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765886.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/275590/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-27T09:14:19.406250Z", "last_modified_time": "2025-02-27T09:14:19.525318Z", "date_published": null, "start_time": "2025-03-12T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/05F014AEA5769CDF2154A83F0E347C03/Ei_koskaan_yksin_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/05F014AEA5769CDF2154A83F0E347C03/Ei_koskaan_yksin_12_", "en": "http://www.malmitalo.fi/en/events/event/05F014AEA5769CDF2154A83F0E347C03/Ei_koskaan_yksin_12_" }, "provider_contact_info": null, "short_description": { "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun." }, "description": { "fi": "<p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun.</p><p>Ei koskaan yksin on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta. <br>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Ikäraja: 12<br>Kesto: 85 min.<br>Ensi-ilta: 17.1.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider": null, "name": { "fi": "Ei koskaan yksin (12) – Kino Helios", "sv": "Ei koskaan yksin (12) – Kino Helios", "en": "Ei koskaan yksin (12) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65666/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19432, "next": "