Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=209
{ "meta": { "count": 21733, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=210", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=208" }, "data": [ { "id": "kulke:65691", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3846997" }, "description": null, "price": { "fi": "22,80-38,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 302680, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-05T11:15:16.285515Z", "last_modified_time": "2025-03-05T11:15:16.285532Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766238.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/302680/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-05T11:15:16.221651Z", "last_modified_time": "2025-03-05T11:15:16.362068Z", "date_published": null, "start_time": "2025-09-10T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tomi Leino on pitkänlinjan muusikko, jonka kitara soi blues ja roots-musiikille. Blues ja kitara on vienyt miestä aina Karkkilasta Kaliforniaan saakka, ja vuosien kova työnteko on tehnyt hänestä yhden Euroopan arvostetuimmista bluesmuusikoista." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C05B47B075587BD81D3E88F64A62D346/Tomi_Leino_Trio_15_Years_Of_Straight_Forward_Blues_K-18" }, "description": { "fi": "<p>Tomi Leino on pitkänlinjan muusikko, jonka kitara soi blues ja roots-musiikille. Blues ja kitara on vienyt miestä aina Karkkilasta Kaliforniaan saakka, ja vuosien kova työnteko on tehnyt hänestä yhden Euroopan arvostetuimmista bluesmuusikoista.</p><p>Tomin sielukas ja taidokas soitto puhuttelee kuuntelijaa. Hän on esiintynyt ympäri maailmaa nimekkäiden blues-artistien kanssa ja luonut mainetta taitavana kitaristina, jonka soitosta huokuu musiikkityylin juuret ja elämä.</p><p>Tomi Leinon ensirakkaus musiikkiin oli aikoinaan koko Suomea ravistellut legendaarinen Hurriganes, jonka innoittamana hän perusti kavereiden kanssa ensimmäiset bändit teini-iässä ja sen kautta kitaransoiton treenaaminen alkoi.<br>Blues tuli mukaan kuvioihin jo parikymppisenä, kun Leino tutustui Chicago Overcoat nimiseen kokoonpanoon. Yhtye herätti mielenkiinnon roots-musiikkiin ja sen laajaan historiaan. Sen jälkeen Leinolle oli selvää, että blues on sitä mitä hän haluaa tehdä ja sitä kohti hän lähti.</p><p>Blues on musiikkityylinä sellainen, jota ei opita koulussa tai musiikin teoriaa lukemalla. Blues on elettyä elämää ja sen ammentamista tarinankerronallisesti omaan musiikkiin. Leino kertoo, että hänellä on paljon musiikillisia vaikutteita, mutta ei halua suoranaisesti kopioida ketään. Tärkeintä on löytää oma sielukkuus ja soundi.<br>Tomi Leino Trion keikoista suurin osa on ulkomailla, muun muassa Ruotsissa, Tanskassa, Hollannissa, Belgiassa sekä muualla Keski-Euroopassa.</p><p>Tomi Leino Trio viettää tänä vuonna 15-vuotis juhlavuottaan. Yhtyeessä soittaa Leinon lisäksi rumpuja <b>Mikko Peltola</b> sekä bassossa <b>Jaska Prepula</b>. Yhtye on julkaissut useita albumeita ja tulevana syksynä, juhlavuoden kunniaksi ilmestyy uutta musiikkia, jota nauhoitetaan Leinon omassa Suprovox studiossa.</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Ikäraja: K18<br>Permanto K18 anniskelualue. Parveke ei anniskelua.</p>" }, "name": { "fi": "Tomi Leino Trio – 15 Years Of Straight Forward Blues K-18" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Stonecape Entertainment" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65691/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64956", "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/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153139, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T08:14:10.698839Z", "last_modified_time": "2024-12-03T08:14:10.698855Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761936.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153139/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-03T08:14:10.665662Z", "last_modified_time": "2025-03-05T11:15:08.278642Z", "date_published": null, "start_time": "2025-04-22T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Konsertti on loppuunvarattu, mahdollisesti vapautuvia paikkoja voi tulla jonottamaan paikan päälle. Ennakkolipulla sisään klo 11.50 asti, tämän jälkeen mahdollisesti tyhjäksi jääneille paikoille otetaan jonosta liputtomia asiakkaita.", "sv": "Goda nyheter: Savoy-teatern och UMO Helsinki Jazz Orchestras efterlängtade lunchkonserter fortsätter igen under vårsäsongen 2025! Gratisbiljetter till denna konsert finns tillgängliga från och med måndag 3.3. på Savoy-teatern och Lippu.fi – se närmare anvisningar nedan.", "en": "The very popular lunchtime concert concept of Savoy Theatre and UMO Helsinki Jazz Orchestra is back for the winter/spring season 2025! Free tickets for this concert can be booked from Monday, 3 March on at the Savoy Theatre and Lippu.fi – see below for more detailed instructions." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/08C08BF9564F182FF1A06F9277D90C57/UMO_Helsinki_Ensemble_Tribute_to_Art_Blakey", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/08C08BF9564F182FF1A06F9277D90C57/UMO_Helsinki_Ensemble_Tribute_to_Art_Blakey", "en": "http://www.savoyteatteri.fi/en/events/event/08C08BF9564F182FF1A06F9277D90C57/UMO_Helsinki_Ensemble_Tribute_to_Art_Blakey" }, "description": { "fi": "<p>Konsertti on loppuunvarattu, mahdollisesti vapautuvia paikkoja voi tulla jonottamaan paikan päälle. Ennakkolipulla sisään klo 11.50 asti, tämän jälkeen mahdollisesti tyhjäksi jääneille paikoille otetaan jonosta liputtomia asiakkaita.</p><p>Hienoja uutisia: Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas kevätkaudella 2025! Tämän konsertin ilmaisliput ovat varattavissa ma 3.3. alkaen Savoy-teatterissa ja Lippu.fi:ssä – lue tarkemmat ohjeet alempaa.</p><p>UMO Helsinki Ensemble nostaa hattua rumpali Art Blakeylle (1919–1990) ja tämän johtamalle The Jazz Messengersille huhtikuun lounaskonsertissa.</p><p>The Jazz Messengers oli Art Blakeyn perustama ja johtama sekstetti, joka toimi alati vaihtuvalla kokoonpanolla aina 1950-luvulta 1990-luvun vaihteeseen. Yhtyeen tavaramerkki oli aggressiivisen svengaava, bebopiin pohjautuva blues-sävytteinen Hard Bop. Ryhmästä kehittyi nuorten lahjakkaiden jazzmuusikkojen kiitorata ja yhtyeestä ovat ponnahtaneet esille suuruudet kuten Wayne Shorter, Benny Golson, Freddie Hubbard, Keith Jarrett sekä Wynton ja Branford Marsalis.</p><p>UMO Helsinki Ensemble on UMO Helsinki Jazz Orchestrasta koottu pienempi kokoonpano, jonka muusikoilla on mittava ura niin UMOn riveissä kuin lukuisissa omissa projekteissaan. Konsertin ohjelmiston on suunnitellut pasunisti Kasperi Sarikoski, joka myös luotsaa ensembleä.</p><p>Kokoonpano: <br>Kasperi Sarikoski, pasuuna ja yhtyeenjohto<br>Mikko Pettinen, trumpetti<br>Manuel Dunkel, saksofoni <br>Kirmo Lintinen, piano<br>Ville Herrala, basso<br>Markus Ketola, rummut</p><p><b>HUOM!</b> Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus, R-kioskeilla 3 € / tilaus + 1 € / lippu. Max. 2 lippua / varaus. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä. Konsertin kesto 1 h.</p>", "sv": "<p>Goda nyheter: Savoy-teatern och UMO Helsinki Jazz Orchestras efterlängtade lunchkonserter fortsätter igen under vårsäsongen 2025! Gratisbiljetter till denna konsert finns tillgängliga från och med måndag 3.3. på Savoy-teatern och Lippu.fi – se närmare anvisningar nedan.</p><p>UMO Helsinki Ensemble lyfter på hatten för trummisen Art Blakey (1919–1990) och hans band The Jazz Messengers på en lunchkonsert i april.</p><p>The Jazz Messengers var en sextett som grundades och leddes av Art Blakey, och som fungerade med en ständigt skiftande ensemble från 1950-talet till början av 1990-talet. Bandets varumärke var aggressivt svängande, bebop-baserad, och bluesnyanserad Hard Bop. Gruppen blev en startbana för begåvade unga jazzmusiker och har producerat storheter såsom Wayne Shorter, Benny Golson, Freddie Hubbard, Keith Jarrett samt Wynton och Branford Marsalis.</p><p>UMO Helsinki Ensemble är en mindre ensemble ur UMO Helsinki Jazz Orchestras rader, vars musiker har en lång karriär bakom sig både med UMO och talrika egna projekt. Konsertprogrammet har utformats av basunisten Kasperi Sarikoski, som också leder ensemblen.</p><p>Ensemble:<br>Kasperi Sarikoski, basun och bandledning<br>Mikko Pettinen, trumpet<br>Manuel Dunkel, saxofon<br>Kirmo Lintinen, piano<br>Ville Herrala, bas<br>Markus Ketola, trummor</p><p>OBS! Fri entré, men biljett krävs. Köp din biljett i förväg i Savoy-teaterns biljettkassa (0 €) eller i Lippu.fi-webbutiken (0 €). På Lippu.fi:s försäljningsställen är kostnaden 3 € / beställning, i R-kioskerna 3 € /beställning + 1 € /biljett. Max. 2 biljetter/bokning. Större gruppbokningar direkt från Savoy. Entré med förhandsbiljett fram till kl. 11.50. Därefter fylls eventuella tomma platser upp med personer som inte har biljett. Det att bra att komma god tid, man får inte komma in i salen om man är försenad. Konsertens längd 1 h.</p>", "en": "<p>The very popular lunchtime concert concept of Savoy Theatre and UMO Helsinki Jazz Orchestra is back for the winter/spring season 2025! Free tickets for this concert can be booked from Monday, 3 March on at the Savoy Theatre and Lippu.fi – see below for more detailed instructions.</p><p>The UMO Helsinki Ensemble will pay tribute to the drummer Art Blakey (1919–1990) and his Jazz Messengers at this free lunchtime concert.</p><p>The Jazz Messengers was a sextet founded and run by Art Blakey, operating in an ever-changing lineup from the 1950s until early 1990s. The band’s trademark was aggressively swinging, bebop-based blues-toned Hard Bop. The band was a runway for young talented jazz musicians, such as Wayne Shorter, Benny Golson, Freddie Hubbard, Keith Jarrett, Wynton and Branford Marsalis, who all have sprung up from this band.</p><p>The UMO Helsinki Ensemble is a smaller musical group assembled from the UMO Helsinki Jazz Orchestra, whose musicians have a long career both in the ranks of the UMO and in numerous individual projects. The program for the concert was planned by trombonist Kasperi Sarikoski, who also leads the ensemble.</p><p>Line-up: <br>Kasperi Sarikoski, trombone & lead <br>Mikko Pettinen, trumpet<br>Manuel Dunkel, saxophone<br>Kirmo Lintinen, piano<br>Ville Herrala, bass<br>Markus Ketola, drums</p><p>Please note! The concert will be held in the Savoy Theatre at 12-13. The admission is free but we recommend that you book a ticket in advance at the Savoy Theatre box office (0 €) or Lippu.fi (1,50 – 3 € commission). Admission only with pre-booked tickets until 11:50am, after which the remaining seats will be given to customers without a pre-booking. Please arrive early as the doors will be closed once the concert has started. The duration of the concert is 1 hour.</p>" }, "name": { "fi": "UMO Helsinki Ensemble – Tribute to Art Blakey – Lounaskonsertti", "sv": "UMO Helsinki Ensemble – Tribute to Art Blakey – Lunchkonsert", "en": "UMO Helsinki Ensemble – Tribute to Art Blakey – Lunchtime concert" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri ja UMO Helsinki Jazz Orchestra", "sv": "Savoy Theatre & UMO Helsinki Jazz Orchestra", "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64956/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5l3qyqq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qxka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qxou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qxsy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qxxa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qx3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qx7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qydy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qyie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qymm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-12-17T17:25:11.929157Z", "last_modified_time": "2025-03-05T10:52:39.897334Z", "date_published": null, "start_time": "2024-12-18T16:00:00Z", "end_time": "2025-05-28T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Tapiolan kirjaston lasten ja nuorten omaan klubiin!", "sv": "Välkommen till Hagalunds biblioteks egen klubb för barn och unga!", "en": "Welcome to Tapiola Library's own club for children and young people!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Tapiolan kirjaston lasten ja nuorten omaan klubiin!</p><p>Pelejä, kirjoja, musiikkia, rentoa yhdessäoloa...Tapiolan kirjaston lasten ja nuorten klubissa toiminta suunnitellaan yhdessä osallistujien kesken. Mitä sinä siis haluaisit tehdä keskiviikko-iltaisin? Tule rohkeasti mukaan tekemään juuri sinun näköistäsi klubia.</p><p>Kokoonnumme joka toinen keskiviikko klo 18 - 19.30 kirjaston nuortentilassa.</p><p><strong>Tarkempaa tietoa seuraavan kokoontumiskerran teemasta saat kirjastosta. </strong></p>", "sv": "<p>Välkommen till Hagalunds biblioteks egen klubb för barn och unga!</p><p>Klubbens verksamhet planeras tillsammans med deltagarna. </p><p><br></p><p>Vi träffas varannan onsdag kl. 18 - 19.30.</p><p><strong>Mer information från biblioteket.</strong></p>", "en": "<p>Welcome to Tapiola Library's own club for children and young people!</p><p>Club activities are planned together with the participants. </p><p><br></p><p>We meet every other Wednesday at 18 - 19.30.</p><p><strong>More information from the library.</strong></p>" }, "name": { "fi": "Klubi-klubi", "sv": "Klubb-klubb", "en": "Club-club" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qyqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3806920" }, "description": null, "price": { "fi": "50,70-69 €" } } ], "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", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764540.jpg", "name": "", "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, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F640AC547C1EC095A64A725B777F2752/Blind_Boys_of_Alabama_USA_" }, "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>" }, "name": { "fi": "Blind Boys of Alabama (USA)" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Ramasound Oy" }, "@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": [], "info_url": { "fi": "https://www.hel.fi/fi" }, "description": null, "price": null } ], "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, "short_description": { "fi": "lyhyt kuvaus" }, "info_url": { "fi": "" }, "description": { "fi": "<p>pitkä kuvaus</p>" }, "name": { "fi": "Testausta" }, "provider_contact_info": null, "location_extra_info": { "fi": "" }, "provider": { "fi": "Testaajat" }, "@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": [], "info_url": null, "description": null, "price": 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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765470.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "name": { "fi": "Keskiviikkokino: Normaalii", "sv": "Keskiviikkokino: Normaalii", "en": "Keskiviikkokino: Normaalii" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "info_url": null, "description": null, "price": 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", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766000.jpg", "name": "", "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, "short_description": { "fi": "Kannelmäen juna-aseman peruskorjausta suunnitellaan – tervetuloa keskustelemaan 12.3. kello 16.30 alkaen." }, "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_" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "info_url": null, "description": null, "price": 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", "url": "https://tapahtumasyotto.espoo.fi/media/images/f7f1ab14-2d61-4528-8772-9583c2cbb489.png", "name": "", "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, "short_description": { "fi": "Neulegraffiti-ryhmä", "sv": "Neulegraffiti - grupp ", "en": "Neulegraffiti - group " }, "info_url": null, "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>" }, "name": { "fi": "Neulegraffiti - ryhmä ", "sv": "Neulegraffiti - grupp ", "en": "Neulegraffiti - group " }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "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/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "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", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759430.jpg", "name": "", "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, "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." }, "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_" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "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/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763458.jpg", "name": "", "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, "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?" }, "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_" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "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/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763399.jpg", "name": "", "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, "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!" }, "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" }, "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>" }, "name": { "fi": "Ama Kyei: Kukkatanssit – Hurraa! -teatteriviikot", "sv": "Ama Kyei: Blomsterdans – Hurraa!-teaterveckor", "en": "Ama Kyei: Flower Dances – Hurraa! Theatre Weeks" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "info_url": null, "description": null, "price": 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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763831.jpg", "name": "", "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, "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?" }, "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_" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "info_url": null, "description": null, "price": 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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763828.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "info_url": null, "description": null, "price": 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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763829.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "info_url": null, "description": null, "price": 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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761751.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "info_url": null, "description": null, "price": 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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761750.jpg", "name": "", "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, "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." }, "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" }, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@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": [], "info_url": null, "description": null, "price": 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", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764075.jpg", "name": "", "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, "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." }, "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_" }, "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>" }, "name": { "fi": "Naperokahvila", "sv": "Småbarnskafé", "en": "Toddler café" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65125/?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": [], "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" }, "description": { "fi": "ysiysi", "sv": "ysiysi", "en": "ysiysi", "ru": "ysiysi", "zh_hans": "ysiysi", "ar": "ysiysi" }, "price": { "fi": "99", "sv": "99", "en": "99", "ru": "99", "zh_hans": "99", "ar": "99" } } ], "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", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/15cb8ee9-057c-ef11-ac20-0022489ae80c", "name": "MKtest 24022025 kuvatekstiä", "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, "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" }, "info_url": null, "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>" }, "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" }, "provider_contact_info": null, "location_extra_info": null, "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" }, "@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": [], "info_url": { "fi": "" }, "description": null, "price": null } ], "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, "short_description": { "fi": "Testataan pocia" }, "info_url": { "fi": "" }, "description": { "fi": "<p>samma på svenska</p>" }, "name": { "fi": "H-M poc testaus" }, "provider_contact_info": null, "location_extra_info": { "fi": "" }, "provider": { "fi": "" }, "@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": [], "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/" }, "description": null, "price": { "fi": "10 € / 8 €", "sv": "10 € / 8 €", "en": "10 € / 8 €" } } ], "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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761664.jpg", "name": "", "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, "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?" }, "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" }, "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>" }, "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é" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65396/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }