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&keyword=yso%3Ap4354&page=156
{ "meta": { "count": 7509, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=157", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=155" }, "data": [ { "id": "kulke:65195", "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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/helsingin-kulttuurikeskus-vuotalo/musiikkisirkus-avain-hukassa-3789418/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/musiikkisirkus-avain-hukassa-3789418/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/musiikkisirkus-avain-hukassa-3789418/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153311, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T13:14:18.905585Z", "last_modified_time": "2024-12-09T13:14:18.905602Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759567.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153311/?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-09T13:14:18.859699Z", "last_modified_time": "2025-03-22T11:13:43.832771Z", "date_published": null, "start_time": "2025-03-22T13: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, "name": { "fi": "LOPPUUNMYYTY Musiikkisirkus Avain hukassa – Hurraa! -teatteriviikot", "sv": "UTSÅLD Musikcirkus Nyckelknipan – Hurraa! -teaterveckor", "en": "SOLD OUT Musiikkisirkus Avain hukassa – Hurraa! Theatre weeks" }, "short_description": { "fi": "Musiikkia ja nykysirkusta sisältävässä Musiikkisirkus Avain hukassa -esityksessä etsitään kadonnutta avainta, käydään kylässä eri kodeissa ja tavataan naapureita.", "sv": "På föreställningen Nyckelknipan som innehåller musik och modern cirkus söker man efter en borttappad nyckel, besöker olika hem och träffar grannar.", "en": "At the musical circus Avain hukassa (The lost key), featuring music and contemporary circus, we look for a lost key, visit different homes and meet the neighbours." }, "description": { "fi": "<p>Musiikkia ja nykysirkusta sisältävässä Musiikkisirkus Avain hukassa -esityksessä etsitään kadonnutta avainta, käydään kylässä eri kodeissa ja tavataan naapureita.</p><p>Jokainen koti on erilainen, asukkaidensa näköinen ja kuuloinen. Esityksessä tavataan mm. viherkasvien seassa asuvat Kosmo, sen veli ja kissa, minimalisti Tim, joka ei halua omistaa yhtään turhaa tavaraa ja jazzista nauttiva herraspari Ossi ja Ray. Onko avain jäänyt Maijalle ja sen seitsemälle pikkuiselle faijalle? Vai löytyykö se kenties Harrin karkkikokoelmasta?</p><p>Akustinen ja elektroninen musiikki saa vauhtia pyörivistä vanteista, pomppivista palloista, lumoavista saippuakuplista ja välillä herkistytään kuuntelemaan ja katsomaan tasapainoilua lasipullojen päällä. Kirjan kuvitukset heräävät eloon taustakankaalla.</p><p>Esitys perustuu Sanna Manderin kirjoittamaan ja kuvittamaan kirjaan Avain hukassa. Kirja on saanut Rudolf Koivu -palkinnon sekä Lasten- ja nuortenkirjallisuuden Finlandian 2017. Kirjan runoista uusia lauluja on säveltänyt Sannis Sundström. Esitys voitti kansainvälisen Young Audiences Music Awards -gaalan Best Small Ensemble -sarjan lokakuussa 2023.</p><p><i>“Paras esitys mitä oon koskaan nähnyt! Mä en oo koskaan ennen nähnyt mitään esityksiä, mutta silti tää on kaikista paras!”</i><br>- Lapsi, 1.lk</p><p><i>“Ihanaa, että lapsille tehdään näin laadukasta musiikkia ja esityksiä.”</i></p><p>Esityksen kesto: 40 minuuttia <br>Paikka: Vuosali<br>Suositusikä: 3+<br>Kieli: suomi</p><p><b>HUOM!</b><br>klo 15 esitys on suomeksi<br>klo 17 esitys on suomeksi ja ruotsiksi</p><p><b>Työryhmän jäsenet ja tehtävät:</b> <br>Sannis Sundström: sävellys, viulu, piano, laulu <br>Susanna Liinamaa: sirkus <br>Sami Tammela: äänisuunnittelu, elektroniikka, laulu <br>Sampo Sundström: kitara, sello, basso, laulu <br>Kauri Klemelä: valosuunnittelu <br>Aapo Niininen: videosuunnittelu</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>På föreställningen Nyckelknipan som innehåller musik och modern cirkus söker man efter en borttappad nyckel, besöker olika hem och träffar grannar.</p><p>Alla hem är olika, ser ut och låter som de invånare som bor där. På föreställningen träffar vi bland annat Kosmo, hens bror och katt som bor bland grönväxter, minimalist Tim som inte vill äga ett enda onödigt föremål och herrparet Ossi och Ray som tycker om jazz. Har man glömt nyckeln hos Maija och hennes sju pyttesmå pappor? Eller hittar man den kanske i Harris godissamling?</p><p>Akustisk och elektronisk musik tar fart från snurrande band, studsande bollar, förtrollande såpbubblor och då och då lyssnar och tittar man uppmärksamt på balansakter på glasflaskor. Bokens illustrationer vaknar till liv på bakgrundsduken.</p><p>Föreställningen baserar sig på Nyckelknipan som är skriven och illustrerad av Sanna Mander. Boken har belönats med Rudolf Koivu-priset och Finlandiapriset för barn- och ungdomslitteratur 2017. Nya sånger av bokens dikter är komponerade av Sannis Sundström. Föreställningen vann serien Best Small Ensemble på den internationella galan Young Audiences Music Awards i oktober 2023.</p><p>”Den bästa föreställningen jag någonsin har sett! Jag har aldrig sett några föreställningar förut, men ändå är den här allra bäst!”- Barn, åk 1 <br>”Härligt att man gör så högklassig musik och högklassiga föreställningar för barn.”</p><p>Föreställningens längd: 40 minuter <br>Plats: Nordsalen<br>Rekommenderad ålder: 3+</p><p><b>OBS!</b><br>Kl. 15 föreställningen är på finska.<br>Kl. 17 föreställningen är på finska och svenska.</p><p>Arbetsgruppens medlemmar och uppgifter: <br>Sannis Sundström: komposition, violin, piano, sång <br>Susanna Liinamaa: cirkus <br>Sami Tammela: ljuddesign, elektronik, sång <br>Sampo Sundström: gitarr, cello, bas, sång <br>Kauri Klemelä: ljusdesign <br>Aapo Niininen: videodesign</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>At the musical circus Avain hukassa (The lost key), featuring music and contemporary circus, we look for a lost key, visit different homes and meet the neighbours.</p><p>Every home is different and looks and sounds like its residents. In the performance, you will meet, for example, Kosmo, who lives among green plants, his brother and cat, the minimalist Tim, who does not want to own any unnecessary stuff as well as a gentleman couple who enjoys jazz, Ossi and Ray. Was the key left with Maija and her seven little dads? Or maybe it is in Harry’s candy collection?</p><p>The acoustic and electronic music gains momentum from rotating rims, bouncing balls and enchanting soap bubbles, while at times, we get emotional and listen to and watch balancing on top of glass bottles. The book illustrations come to life on the backdrop.</p><p>The performance is based on the book Avain hukassa, written and illustrated by Sanna Mander. The book has been awarded the Rudolf Koivu Prize as well as the Finlandia Prize in Children’s and Youth Literature 2017. The book’s poems were composed into new song by Sannis Sundström. The performance won the Best Small Ensemble category at the international Young Audiences Music Awards in October 2023.</p><p>“Best performance I’ve ever seen! I’ve never seen a show before, but it’s still the best!\" – child, 1st grade <br>“I’m so glad they make such high-quality music and performances for children.”</p><p>Duration: 40 min <br>Location: Vuosali Hall<br>Recommended age: 3+</p><p>NOTE!<br>The 3 PM performance is in Finnish.<br>The 5 PM performance is in Finnish and Swedish.</p><p>Working group members and tasks: <br>Sannis Sundström: composition, violin, piano, vocals <br>Susanna Liinamaa: circus <br>Sami Tammela: sound design, electronics, vocals <br>Sampo Sundström: guitar, cello, bass, vocals <br>Kauri Klemelä: lighting design <br>Aapo Niininen: video design</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F7BE8A9CF964CBC1E6A0F6BA52099F58/LOPPUUNMYYTY_Musiikkisirkus_Avain_hukassa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F7BE8A9CF964CBC1E6A0F6BA52099F58/UTSALD_Musikcirkus_Nyckelknipan", "en": "http://www.vuotalo.fi/en/events/event/F7BE8A9CF964CBC1E6A0F6BA52099F58/SOLD_OUT_Musiikkisirkus_Avain_hukassa" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65195/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65066", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/talvikki-eerola-rapuooppera/", "sv": "https://www.lippu.fi/artist/talvikki-eerola-rapuooppera/", "en": "https://www.lippu.fi/artist/talvikki-eerola-rapuooppera/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T13:15:46.410798Z", "last_modified_time": "2025-01-23T13:15:46.410817Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763788.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-23T13:15:46.385150Z", "last_modified_time": "2025-03-21T12:15:40.488690Z", "date_published": null, "start_time": "2025-03-21T16: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, "name": { "fi": "Talvikki Eerola: Rapuooppera – Hurraa! -teatteriviikot", "sv": "Talvikki Eerola: Rapuooppera – Hurraa! -teaterveckor", "en": "Talvikki Eerola: Rapuooppera – Hurraa! theatre weeks" }, "short_description": { "fi": "Rapuooppera on musiikkipitoinen teatteriesitys lapsille, joka perustuu Leena Sainion samannimisen runoteokseen. Esitys juhlistaa Kansainvälistä Nukketeatteripäivää! Loppuunmyyty!", "sv": "Rapuooppera är en musikteaterföreställning för barn, baserad på Leena Sainios dikt med samma namn. I dag firar vi den internationella Dockteaterdagen. Slutsåld!", "en": "Rapuooppera is a musical theatre performance for children, based on Leena Sainio’s poem of the same name. We celebrate the International Puppet theatre Day! Sold out!" }, "description": { "fi": "<p>Rapuooppera on musiikkipitoinen teatteriesitys lapsille, joka perustuu Leena Sainion samannimisen runoteokseen. Esitys juhlistaa Kansainvälistä Nukketeatteripäivää! Loppuunmyyty!</p><p>Pienistä tarinoista koostuva esitys sisältää musiikkia, tanssia, laulua ja minimalistista nukketeatteria sekä paljon hauskoja hahmoja! Runot käsittelevät ihmeellistä elämää, eläimiä ja luontoa sekä universumin mysteeriä.</p><p>Esitys sopii 3–7 –vuotiaille ja heidän perheilleen.</p><p>Ryhmäilmoittautuminen maksuttomiin aamuesityksiin: kultus.fi 3.2. alkaen</p><p>Klo 18 avoin näytös liput 6 €, Lippu.fi</p><p>Kesto n. 40 minuuttia. <br>Kieli: suomi<br>Leena Sainio: Rapuooppera (2021, Enostone).</p><p>Esiintyminen, musiikin sävellys, ohjaus ja koreografia: Talvikki Eerola <br>Nuket, pukusuunnittelu, visuaalinen suunnittelu: Janne Siltavuori <br>Dramaturginen apu: Arni Rajamäki <br>Ohjauksellinen apu: Henni Kervinen <br>Pukujen valmistus: Marita Kuusiniemi <br>Tuotanto: Wusheng Company <br>Kuvat: Janne Siltavuori</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>", "sv": "<p>Rapuooppera är en musikteaterföreställning för barn, baserad på Leena Sainios dikt med samma namn. I dag firar vi den internationella Dockteaterdagen. Slutsåld!</p><p>Föreställningen som består av korta berättelser innehåller musik, dans, sång och minimalistisk dockteater samt massor av skojiga figurer! Dikterna handlar om livets under, djur, natur och universums mysterier.</p><p>Föreställningen är lämplig för 3–7-åriga barn och deras familjer.</p><p>Längd ca 40 min.<br>Biljetter 6 e, Lippu.fi</p><p>Leena Sainio: Rapuooppera (2021, Enostone-kustannus).<br>I rollerna, musikkomposition, regi och koreografi: Talvikki Eerola<br>Dockor, kostymdesign, visuell design: Janne Siltavuori<br>Dramaturgisk assistans: Arni Rajamäki<br>Regiassistans: Henni Kervinen<br>Kostymtillverkning: Marita Kuusiniemi<br>Produktion: Wusheng Company</p>", "en": "<p>Rapuooppera is a musical theatre performance for children, based on Leena Sainio’s poem of the same name. We celebrate the International Puppet theatre Day! Sold out!</p><p>The performance consists of small stories and includes music, dance, singing and minimalist puppetry, as well as lots of fun characters! The poems deal with wonderful life, animals and nature, as well as the mystery of the universe.</p><p>The performance is suitable for children aged 3–7 and their families.<br>Duration approx. 40 minutes.</p><p>Tickets 6 e, Lippu.fi</p><p>Leena Sainio: Rapuooppera (2021, Enostone publish)<br>Performance, music composition, direction and choreography: Talvikki Eerola<br>Puppets, costume design, visual design: Janne Siltavuori<br>Dramaturgical help: Arni Rajamäki<br>Directional aid: Henni Kervinen<br>Costume manufacture: Marita Kuusiniemi<br>Production: Wusheng Company</p><p><b>Hurraa! Theatre Weeks <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/29F197699A71D995B2D190A01CC28DAF/Talvikki_Eerola_Rapuooppera_", "sv": "http://www.annantalo.fi/sv/evenemang/event/29F197699A71D995B2D190A01CC28DAF/Talvikki_Eerola_Rapuooppera_", "en": "http://www.annantalo.fi/en/events/event/29F197699A71D995B2D190A01CC28DAF/Talvikki_Eerola_Rapuooppera_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65066/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:8ea71765-416a-4dc4-adbd-d5dbc0f82f9f", "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:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?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://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/541a1576-98d9-ef11-a730-000d3ab40ef6?readableEventId=MKtest_19032025_LE-integraatiotest_4_of_41932073129", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/541a1576-98d9-ef11-a730-000d3ab40ef6?readableEventId=MKtest_19032025_LE-integraatiotest_4_of_41932073129" }, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 369252, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-19T12:40:29.867133Z", "last_modified_time": "2025-03-19T12:40:29.867168Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e0c54b7e-c6f9-ef11-bae2-000d3ab0beb8", "name": "asdf 2", "cropping": "", "photographer_name": "asdf 3", "alt_text": "asdf 1", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/369252/?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:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" } ], "created_time": "2025-03-19T12:25:09.616907Z", "last_modified_time": "2025-03-19T12:40:30.919009Z", "date_published": "2025-03-19T12:24:03Z", "start_time": "2025-03-19T18:00:00Z", "end_time": "2025-03-19T18:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 16, "minimum_attendee_capacity": 15, "enrolment_start_time": "2025-03-03T08:00:00+02:00", "enrolment_end_time": "2025-03-17T08:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "MKtest 19032025 LE-integraatiotest 4 of 4", "sv": "MKtest 19032025 LE-integraatiotest 4 of 4 sv" }, "short_description": { "fi": "MKtest 19032025 LE-integraatiotest 4 of 4", "sv": "MKtest 19032025 LE-integraatiotest 4 of 4 sv" }, "description": { "fi": "<div><p>FINSKA Tässä on tarina, joka toivottavasti inspiroi ja viihdyttää:</p><p>---</p><p>**Tuulen Tie**</p><p>Kesäisessä pikkukylässä, kaukana kaupungin vilinästä, asui nuori nainen nimeltä Alina. Hänen maailmansa oli aina ollut pieni mutta kaunis. Hän vietti päivänsä kotitilallaan työskennellen ja iltansa kirjoittaen päiväkirjaansa unelmistaan. Häntä kiehtoi erityisesti ajatus \"tuulen tiestä\" – myyttisestä polusta, jonka sanottiin kuljettavan ihmisen sinne, minne hänen sydämensä todella kuului.</p><p>Eräänä aamuna, kun aurinko juuri nousi, Alina havahtui outoon ääneen. Hänen talonsa edustalle oli ilmestynyt vanha mies, joka nojasi kävelykeppiin. Hän esittäytyi Vanhan Tarinan Puhujaksi – kylässä harvoin nähtäväksi tarinankertojaksi. \"Tuulen tie etsii sinua, Alina,\" hän sanoi matalalla äänellä. Ennen kuin Alina ehti kysyä mitään, mies ojensi hänelle pienen kompassin, joka näytti osoittavan suuntaan, mutta ilman pohjois-etelää osoittavia merkintöjä.</p><p>Tästä alkoi Alinan matka. Hän pakkasi pienen repun, hyvästeli perheensä ja lähti kulkemaan kompassin osoittamaan suuntaan. Polku vei hänet ensin läpi rehevien niittyjen, joiden jokainen kukka näytti laulavan omaa melodiaansa. Hän kohtasi matkallaan erilaisia ihmisiä: vanhan puusepän, joka opetti hänelle kärsivällisyyttä, ja seikkailijan, joka rohkaisi häntä ottamaan riskejä.</p><p>Kuitenkin, mitä pidemmälle Alina kulki, sitä haastavammaksi tie muuttui. Hän kohtasi synkän metsän, jonka oksat kurottivat uhkaavasti hänen ylitseen. Hän pelkäsi, mutta kompassi hänen kädessään jatkoi osoittamista eteenpäin. Metsän läpi kuljettuaan hän saapui vuoren juurelle, jonka huipulla odotti kirkas valonsäde. \"Sinun on kiivettävä,\" kuiskasi tuuli hänen korvaansa.</p><p>Kiivetessään vuorelle Alina oppi kantamaan itsensä uudella tavalla. Hän ymmärsi, että vaikka kompassi näytti tietä, hänen sydämensä oli todellinen kartta. Kun hän vihdoin saavutti huipun, hän näki ympärillään maailman laajuuden – kylänsä, metsän, niityt ja kaukaiset kaupungit. Hän oivalsi, että \"tuulen tie\" ei ollut pelkästään matka paikkoihin, vaan matka itsetuntemukseen ja rohkeuteen kuunnella omaa sydäntään.</p><p>Alina palasi kyläänsä muuttuneena. Hän ei ollut enää sama nainen, joka oli lähtenyt. Hän toi mukanaan uusia tarinoita, inspiraatiota ja rohkeutta unelmoida suuremmin. Hän jatkoi kirjoittamista, ja hänen tarinansa inspiroivat koko kylän väkeä tavoittelemaan omia \"tuulen teitään\".</p><p>---</p><p>Toivottavasti tarina välitti seikkailun ja itsensä löytämisen tunteen! Jos haluat tarkentaa johonkin tiettyyn teemaan tai tarinan elementtiin, voimme kehittää sitä yhdessä eteenpäin. </p><p> </p><p>→</p><div><p>Alina palasi kyläänsä muuttuneena. Hän ei ollut enää sama nainen, joka oli lähtenyt. Hän toi mukanaan uusia tarinoita, inspiraatiota ja rohkeutta unelmoida suuremmin. Hän jatkoi kirjoittamista, ja hänen tarinansa inspiroivat koko kylän väkeä tavoittelemaan omia \"tuulen teitään\".</p><p>---</p><p>Toivottavasti tarina välitti seikkailun ja itsensä löytämisen tunteen! Jos haluat tarkentaa johonkin tiettyyn teemaan tai tarinan elementtiin, voimme kehittää sitä yhdessä eteenpäin. </p><div><p>→</p><div><p>Alina palasi kyläänsä LOPPU. </p><p> </p></div></div></div><p> </p></div>", "sv": "<div><div><p>SVENSKA Tässä on tarina, joka toivottavasti inspiroi ja viihdyttää:</p><p>---</p><p>**Tuulen Tie**</p><p>Kesäisessä pikkukylässä, kaukana kaupungin vilinästä, asui nuori nainen nimeltä Alina. Hänen maailmansa oli aina ollut pieni mutta kaunis. Hän vietti päivänsä kotitilallaan työskennellen ja iltansa kirjoittaen päiväkirjaansa unelmistaan. Häntä kiehtoi erityisesti ajatus \"tuulen tiestä\" – myyttisestä polusta, jonka sanottiin kuljettavan ihmisen sinne, minne hänen sydämensä todella kuului.</p><p>Eräänä aamuna, kun aurinko juuri nousi, Alina havahtui outoon ääneen. Hänen talonsa edustalle oli ilmestynyt vanha mies, joka nojasi kävelykeppiin. Hän esittäytyi Vanhan Tarinan Puhujaksi – kylässä harvoin nähtäväksi tarinankertojaksi. \"Tuulen tie etsii sinua, Alina,\" hän sanoi matalalla äänellä. Ennen kuin Alina ehti kysyä mitään, mies ojensi hänelle pienen kompassin, joka näytti osoittavan suuntaan, mutta ilman pohjois-etelää osoittavia merkintöjä.</p><p>Tästä alkoi Alinan matka. Hän pakkasi pienen repun, hyvästeli perheensä ja lähti kulkemaan kompassin osoittamaan suuntaan. Polku vei hänet ensin läpi rehevien niittyjen, joiden jokainen kukka näytti laulavan omaa melodiaansa. Hän kohtasi matkallaan erilaisia ihmisiä: vanhan puusepän, joka opetti hänelle kärsivällisyyttä, ja seikkailijan, joka rohkaisi häntä ottamaan riskejä.</p><p>Kuitenkin, mitä pidemmälle Alina kulki, sitä haastavammaksi tie muuttui. Hän kohtasi synkän metsän, jonka oksat kurottivat uhkaavasti hänen ylitseen. Hän pelkäsi, mutta kompassi hänen kädessään jatkoi osoittamista eteenpäin. Metsän läpi kuljettuaan hän saapui vuoren juurelle, jonka huipulla odotti kirkas valonsäde. \"Sinun on kiivettävä,\" kuiskasi tuuli hänen korvaansa.</p><p>Kiivetessään vuorelle Alina oppi kantamaan itsensä uudella tavalla. Hän ymmärsi, että vaikka kompassi näytti tietä, hänen sydämensä oli todellinen kartta. Kun hän vihdoin saavutti huipun, hän näki ympärillään maailman laajuuden – kylänsä, metsän, niityt ja kaukaiset kaupungit. Hän oivalsi, että \"tuulen tie\" ei ollut pelkästään matka paikkoihin, vaan matka itsetuntemukseen ja rohkeuteen kuunnella omaa sydäntään.</p><p>Alina palasi kyläänsä muuttuneena. Hän ei ollut enää sama nainen, joka oli lähtenyt. Hän toi mukanaan uusia tarinoita, inspiraatiota ja rohkeutta unelmoida suuremmin. Hän jatkoi kirjoittamista, ja hänen tarinansa inspiroivat koko kylän väkeä tavoittelemaan omia \"tuulen teitään\".</p><p>---</p><p>Toivottavasti tarina välitti seikkailun ja itsensä löytämisen tunteen! Jos haluat tarkentaa johonkin tiettyyn teemaan tai tarinan elementtiin, voimme kehittää sitä yhdessä eteenpäin.</p><p> </p><p>→</p><div><p>Alina palasi kyläänsä muuttuneena. Hän ei ollut enää sama nainen, joka oli lähtenyt. Hän toi mukanaan uusia tarinoita, inspiraatiota ja rohkeutta unelmoida suuremmin. Hän jatkoi kirjoittamista, ja hänen tarinansa inspiroivat koko kylän väkeä tavoittelemaan omia \"tuulen teitään\".</p><p>---</p><p>Toivottavasti tarina välitti seikkailun ja itsensä löytämisen tunteen! Jos haluat tarkentaa johonkin tiettyyn teemaan tai tarinan elementtiin, voimme kehittää sitä yhdessä eteenpäin. </p></div></div></div>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki", "sv": "Business Stockholm" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:8ea71765-416a-4dc4-adbd-d5dbc0f82f9f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:834bc371-3000-473e-bc47-d18633ce2ddb", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_19032025_LE-integraatiotest_2_of_23359670440" }, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 369005, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-19T12:20:02.536596Z", "last_modified_time": "2025-03-19T12:20:02.536614Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e0c54b7e-c6f9-ef11-bae2-000d3ab0beb8", "name": "MKtest 19032025 kuvateksti 3", "cropping": "", "photographer_name": "MKtest 19032025 kuvaajan nimi 3", "alt_text": "MKtest 19032025 alt-teksti 3", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/369005/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-03-19T12:20:03.258704Z", "last_modified_time": "2025-03-19T12:20:03.258724Z", "date_published": "2025-03-19T12:17:57Z", "start_time": "2025-03-19T17:00:00Z", "end_time": "2025-03-19T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 14, "minimum_attendee_capacity": 13, "enrolment_start_time": "2025-03-17T08:00:00+02:00", "enrolment_end_time": "2025-03-19T08:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "MKtest 19032025 LE-integraatiotest 3 of 3" }, "short_description": { "fi": "MKtest 19032025 LE-integraatiotest 3 FI short desc" }, "description": { "fi": "<div><p>MKtest 19032025 LE-integraatiotest 3 long desc</p></div>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:834bc371-3000-473e-bc47-d18633ce2ddb/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a3fd5642-1554-4a02-906f-4220e155b339", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_19032025_LE-integraatiotest3955331094" }, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 369004, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-19T12:15:43.883149Z", "last_modified_time": "2025-03-19T12:15:43.883167Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e0c54b7e-c6f9-ef11-bae2-000d3ab0beb8", "name": "MKtest 19032025 kuvateksti 2", "cropping": "", "photographer_name": "MKtest 19032025 kuvaajan nimi 2", "alt_text": "MKtest 19032025 alt-teksti 2", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/369004/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-03-19T12:15:44.446283Z", "last_modified_time": "2025-03-19T12:15:44.446318Z", "date_published": "2025-03-19T12:13:20Z", "start_time": "2025-03-19T16:30:00Z", "end_time": "2025-03-19T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 99, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": 11, "enrolment_start_time": "2025-03-17T08:00:00+02:00", "enrolment_end_time": "2025-03-19T08:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "MKtest 19032025 LE-integraatiotest 2 of 2" }, "short_description": { "fi": "MKtest 19032025 LE-integraatiotest 2 FI short desc" }, "description": { "fi": "<div><p>MKtest 19032025 LE-integraatiotest 2 long desc</p></div>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a3fd5642-1554-4a02-906f-4220e155b339/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:5a4b4b9d-9bfd-44ae-9575-532488019549", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_19032025_LE-integraatiotest557963157" }, "price": { "fi": "98" }, "description": { "fi": "Ysikasi" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 369002, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-19T11:56:42.150991Z", "last_modified_time": "2025-03-19T11:56:42.151009Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e0c54b7e-c6f9-ef11-bae2-000d3ab0beb8", "name": "MKtest 19032025 kuvateksti", "cropping": "", "photographer_name": "MKtest 19032025 kuvaajan nimi", "alt_text": "MKtest 19032025 alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/369002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-03-19T11:56:44.702567Z", "last_modified_time": "2025-03-19T11:56:44.702597Z", "date_published": "2025-03-19T11:53:40Z", "start_time": "2025-03-19T16:00:00Z", "end_time": "2025-03-19T16:30: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": 10, "minimum_attendee_capacity": 9, "enrolment_start_time": "2025-03-17T08:00:00+02:00", "enrolment_end_time": "2025-03-19T08:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "MKtest 19032025 LE-integraatiotest" }, "short_description": { "fi": "MKtest 19032025 LE-integraatiotest FI short desc" }, "description": { "fi": "<div><p>MKtest 19032025 LE-integraatiotest F</p></div>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:5a4b4b9d-9bfd-44ae-9575-532488019549/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65773", "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: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:734/?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:p11617/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 363551, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-18T13:14:39.910300Z", "last_modified_time": "2025-03-18T13:14:39.910319Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767405.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/363551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-03-18T13:14:39.860538Z", "last_modified_time": "2025-03-18T13:14:40.009281Z", "date_published": null, "start_time": "2025-04-15T11:45:00Z", "end_time": "2025-04-15T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "alharich_kantsu_1504", "sv": "alharich_kantsu_1504", "en": "alharich_kantsu_1504" }, "short_description": { "fi": "YouTubesta ja omasta tv-sarjastaan tunnettu Alha eli alharich kertoo Kanneltalossa videoiden tekemisestä, elämästä, urasta ja haasteiden voittamisesta." }, "description": { "fi": "<p>YouTubesta ja omasta tv-sarjastaan tunnettu Alha eli alharich kertoo Kanneltalossa videoiden tekemisestä, elämästä, urasta ja haasteiden voittamisesta.</p><p>Tässä erityisesti nuorille suunnatussa keskustelutilaisuudessa on aikaa lopuksi myös yleisön esittämille kysymyksille.</p><p>Lapsuudestaan saakka videoita tuottanut alharich (Alharith Obaid) julkaisi ensimmäisen tv-sarjansa Yle Areenalla vuonna 2024. Sarjassa Alha esittää kiperiä kysymyksiä elämän tarkoituksesta, ufoista ja isänmaasta tavallisille kaduntallaajille.</p><p>Vapaa pääsy</p><p>Järjestäjä: Kannelmäen kirjasto ja nuorisotalo<br>Kieli: suomi<br>Paikka: Kanneltalon auditorio</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E56AAFCB95435C8E822CAB9042BD5F6E/alharich_kantsu_1504_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E56AAFCB95435C8E822CAB9042BD5F6E/alharich_kantsu_1504_", "en": "http://www.kanneltalo.fi/en/events/event/E56AAFCB95435C8E822CAB9042BD5F6E/alharich_kantsu_1504_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65773/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dg5y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dhxa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-03-18T10:30:42.581945Z", "last_modified_time": "2025-03-18T10:30:42.581961Z", "date_published": null, "start_time": "2025-05-29T11:00:00Z", "end_time": "2025-05-29T13: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, "name": { "fi": "Läksykerho", "sv": "Läxklubb", "en": "Homework club " }, "short_description": { "fi": "Apua läksyihin alakoululaisille", "sv": "Läxklubb på finska", "en": "Homework help for 7-12 year olds. " }, "description": { "fi": "<p>Läksyapua alakouluikäisille Sellon kirjaston Lastenmaan Jaminurkassa. </p><p>Tervetuloa!</p>", "sv": "<p>Läxklubb på finska</p>", "en": "<p>The library offers homework help for children in grades 1 to 6.</p><p><br></p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dg5y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dhk4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dhxa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-03-18T10:30:42.452240Z", "last_modified_time": "2025-03-18T10:30:42.452255Z", "date_published": null, "start_time": "2025-05-22T11:00:00Z", "end_time": "2025-05-22T13: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, "name": { "fi": "Läksykerho", "sv": "Läxklubb", "en": "Homework club " }, "short_description": { "fi": "Apua läksyihin alakoululaisille", "sv": "Läxklubb på finska", "en": "Homework help for 7-12 year olds. " }, "description": { "fi": "<p>Läksyapua alakouluikäisille Sellon kirjaston Lastenmaan Jaminurkassa. </p><p>Tervetuloa!</p>", "sv": "<p>Läxklubb på finska</p>", "en": "<p>The library offers homework help for children in grades 1 to 6.</p><p><br></p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dhk4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dhxa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dg5y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dhk4/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-03-18T10:30:33.733724Z", "last_modified_time": "2025-03-18T10:30:33.733749Z", "date_published": null, "start_time": "2025-03-20T12:00:00Z", "end_time": "2025-05-29T13: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, "name": { "fi": "Läksykerho", "sv": "Läxklubb", "en": "Homework club " }, "short_description": { "fi": "Apua läksyihin alakoululaisille", "sv": "Läxklubb på finska", "en": "Homework help for 7-12 year olds. " }, "description": { "fi": "<p>Läksyapua alakouluikäisille Sellon kirjaston Lastenmaan Jaminurkassa. </p><p>Tervetuloa!</p>", "sv": "<p>Läxklubb på finska</p>", "en": "<p>The library offers homework help for children in grades 1 to 6.</p><p><br></p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dhxa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23didi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23diva/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-18T08:42:03.802008Z", "last_modified_time": "2025-03-18T08:42:03.802024Z", "date_published": null, "start_time": "2025-05-27T07:30:00Z", "end_time": "2025-05-27T08: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuorten tila VOX) keskiviikko 9.4 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 15.4 klo 10.30</li><li>Tapiolan kirjasto (Heikki) keskiviikko 16.4 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) tiistai 22.4 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 23.4 klo 10.30</li><li>Nöykkiön kirjasto tiistai 29.4 klo 10.30</li><li>Kauklahden kirjasto keskiviikko 30.4 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 27.5 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23didi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23diva", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23didi/?format=api" } ], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-18T08:42:02.553138Z", "last_modified_time": "2025-03-18T08:42:02.553155Z", "date_published": null, "start_time": "2025-04-15T07:30:00Z", "end_time": "2025-05-27T08: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuorten tila VOX) keskiviikko 9.4 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 15.4 klo 10.30</li><li>Tapiolan kirjasto (Heikki) keskiviikko 16.4 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) tiistai 22.4 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 23.4 klo 10.30</li><li>Nöykkiön kirjasto tiistai 29.4 klo 10.30</li><li>Kauklahden kirjasto keskiviikko 30.4 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 27.5 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23diva/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65235", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16197/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 280717, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-28T13:14:31.884203Z", "last_modified_time": "2025-02-28T13:14:31.884218Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764254.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/280717/?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-28T13:14:31.839883Z", "last_modified_time": "2025-03-17T13:14:34.787722Z", "date_published": null, "start_time": "2025-04-05T08:00:00Z", "end_time": "2025-04-05T11: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, "name": { "fi": "Annantalon taidelauantai: Naamioiden maailma – latinalaisamerikkalaiset sävyt ja rytmit", "sv": "Annegårdens konstlördag: Maskernas värld – Latinamerikas ljud och färger", "en": "Annantalo Art Saturday: The World of Masks – Sounds and Colors of Latin America" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b> Naamioiden maailma – latinalaisamerikkalaiset sävyt ja rytmit </b> <br> <br>Sukella värien ja äänien maailmaan! Tämä aistirikas työpaja kutsuu lapset luomaan omia naamioita, joita inspiroivat Latinalaisen Amerikan rytmit ja luonnonäänet. Naamioiden koristelun lomassa kuunnellaan äänimaisemaa, jossa yhdistyvät Karibian rannat, Amazonin sademetsä ja Andien vuoristo ja viidakko. Työpaja päätetään hauskaan liikehetkeen, jossa tutkitaan, miten naamio ja ääni yhdistyvät liikkeessä.</p><p>Työpaja toteutetaan yhteistyössä kulttuuriyhdistämö Interkultin kanssa, jonka tavoitteena on mahdollistaa eritaustaisten ihmisten tasavertainen kohtaaminen taiteen äärellä.</p><p>Työpajan kielenä suomi, englanti ja espanja.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken.</p><p><b>Maskernas värld – Latinamerikas ljud och färger</b></p><p>Dyk in i en värld av färger och ljud! Denna sinnesrika verkstad bjuder in barn att skapa sina egna masker, inspirerade av Latinamerikas rytmer och naturliga ljud. Medan de dekorerar sina masker får de lyssna på ett ljudlandskap som blandar Karibiens stränder, Amazonas regnskog och Andernas berg och djungel. Verkstaden avslutas med en rolig rörelsestund där vi utforskar hur masker och ljud förenas i rörelse.</p><p>Verkstaden arrangeras i samarbete med kulturföreningen Interkult, som arbetar för att skapa jämlika möten mellan människor med olika bakgrunder genom konst.</p><p>Språk: finska, engelska och spanska.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b> The World of Masks – Sounds and Colors of Latin America </b></p><p>Dive into a world of colors and sounds! This sensory-rich workshop invites children to create their own masks, inspired by the rhythms and natural sounds of Latin America. As they decorate their masks, they will listen to a soundscape that blends the Caribbean beaches, the Amazon rainforest, and the Andean mountains and jungle. The workshop concludes with a fun movement session, exploring how masks and sounds come together in motion.</p><p>The workshop is organized in collaboration with the cultural association Interkult, which aims to create equal opportunities for people from diverse backgrounds to connect through art.</p><p>Languages: Finnish, English, and Spanish.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/51B33C64988D8E11AE55F64A8F23CFE2/Annantalon_taidelauantai_Naamioiden_maailma_latinalaisamerikkalaiset_savyt_ja_rytmit", "sv": "http://www.annantalo.fi/sv/evenemang/event/51B33C64988D8E11AE55F64A8F23CFE2/Annegardens_konstlordag_Maskernas_varld_Latinamerikas_ljud_och_farger", "en": "http://www.annantalo.fi/en/events/event/51B33C64988D8E11AE55F64A8F23CFE2/Annantalo_Art_Saturday_The_World_of_Masks_Sounds_and_Colors_of_Latin_America_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65235/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65603", "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: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" }, { "@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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 213830, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T08:14:31.615002Z", "last_modified_time": "2025-02-11T08:14:31.615018Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759573.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/213830/?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-11T08:14:31.582031Z", "last_modified_time": "2025-03-17T12:14:57.126223Z", "date_published": null, "start_time": "2025-04-09T08:15: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, "name": { "fi": "Pulpettikinon lyhytelokuvanäytös – Rakkautta ja anarkiaa", "sv": "Skolbios kortfilmsföreställning – Kärlek och anarki", "en": "Pulpettikino Short Film Showcase – Love and anarchy" }, "short_description": { "fi": "Pulpettikinon lyhytelokuvanäytös esittelee jälleen hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville.", "sv": "Skolbios kortfilmsföreställningar presenterar igen en betagande dukning av europeiska animationer för små filmvänner.", "en": "The Pulpettikino short film showcase presents another charming selection of European animation films for younger film lovers." }, "description": { "fi": "<p>Pulpettikinon lyhytelokuvanäytös esittelee jälleen hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville.</p><p>Näytöksessä tavataan värikäs joukko erilaisia eläinystäviä monenlaisissa tilanteissa: taituroimassa luistimilla, seikkailemassa merellä, rohkeutta vaativalla vaelluksella ja menemässä aivan ylösalaisin!</p><p><b>Elokuvat:</b><br>Majava (ohjaaja Julia Ocker, Saksa)<br>Ylösalaisin (ohjaus Dace Rīdūze, Latvia)<br>Sorkat luistimilla (ohjaus Ignas Meilūnas, Liettua)<br>Mû (ohjaus Malin Neumann, Saksa)</p><p>Elokuvissa ei ole puhetta.</p><p>Kesto on 34 min.</p><p>Ikäraja: S<br>Kielet: sanaton</p>", "sv": "<p>Skolbios kortfilmsföreställningar presenterar igen en betagande dukning av europeiska animationer för små filmvänner.</p><p>På föreställningen träffar vi en färgstark grupp olika djurvänner i olika slags situationer: de åker elegant på skridskor, är ute på äventyr på havet, på en vandring som kräver mod och helt upp och ner!</p><p><b>Filmer:</b><br>Bäver (regi Julia Ocker, Tyskland)<br>Upp och ner (regi Dace Rīdūze, Lettland)<br>Klövar på skridskor (regi Ignas Meilūnas, Litauen)<br>Mû (regi Malin Neumann, Tyskland)</p><p>Filmerna har inget tal.</p><p>Längd 34 min.<br>Åldersgräns: T</p><p>Språk: inget språk</p>", "en": "<p>The Pulpettikino short film showcase presents another charming selection of European animation films for younger film lovers.</p><p>At the showcase, you get to meet a colourful group of various animal friends in different situations: skating skilfully, adventuring at sea, hiking bravely and going upside down!</p><p><b>Movies:</b><br>Beaver (Directed by Julia Ocker, Germany)<br>Upside Down (Directed by Dace Rīdūze, Latvia)<br>Hoofs of Skates (Directed by Ignas Meilūnas, Lithuania)<br>Mû (Directed by Malin Neumann, Germany)</p><p>There is no talking in the films.</p><p>The duration is 34 min<br>Age limit: All ages</p><p>Languages: non-verbal</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AB052F2CD41E1273A4C89D2D2CBB75C4/Pulpettikinon_lyhytelokuvanaytos", "sv": "http://www.vuotalo.fi/sv/evenemang/event/AB052F2CD41E1273A4C89D2D2CBB75C4/Skolbios_kortfilmsforestallning", "en": "http://www.vuotalo.fi/en/events/event/AB052F2CD41E1273A4C89D2D2CBB75C4/Pulpettikino_Short_Film_Showcase" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65602", "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: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" }, { "@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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 213829, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T08:14:31.440197Z", "last_modified_time": "2025-02-11T08:14:31.440213Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759572.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/213829/?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-11T08:14:31.411067Z", "last_modified_time": "2025-03-17T12:14:57.040941Z", "date_published": null, "start_time": "2025-04-09T06:15: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, "name": { "fi": "Pulpettikinon lyhytelokuvanäytös – Rakkautta ja anarkiaa", "sv": "Skolbios kortfilmsföreställning – Kärlek och anarki", "en": "Pulpettikino Short Film Showcase – Love and anarchy" }, "short_description": { "fi": "Pulpettikinon lyhytelokuvanäytös esittelee jälleen hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville.", "sv": "Skolbios kortfilmsföreställningar presenterar igen en betagande dukning av europeiska animationer för små filmvänner.", "en": "The Pulpettikino short film showcase presents another charming selection of European animation films for younger film lovers." }, "description": { "fi": "<p>Pulpettikinon lyhytelokuvanäytös esittelee jälleen hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville.</p><p>Näytöksessä tavataan värikäs joukko erilaisia eläinystäviä monenlaisissa tilanteissa: taituroimassa luistimilla, seikkailemassa merellä, rohkeutta vaativalla vaelluksella ja menemässä aivan ylösalaisin!</p><p><b>Elokuvat:</b><br>Majava (ohjaaja Julia Ocker, Saksa)<br>Ylösalaisin (ohjaus Dace Rīdūze, Latvia)<br>Sorkat luistimilla (ohjaus Ignas Meilūnas, Liettua)<br>Mû (ohjaus Malin Neumann, Saksa)</p><p>Elokuvissa ei ole puhetta.</p><p>Kesto on 34 min.</p><p>Ikäraja: S<br>Kielet: sanaton</p>", "sv": "<p>Skolbios kortfilmsföreställningar presenterar igen en betagande dukning av europeiska animationer för små filmvänner.</p><p>På föreställningen träffar vi en färgstark grupp olika djurvänner i olika slags situationer: de åker elegant på skridskor, är ute på äventyr på havet, på en vandring som kräver mod och helt upp och ner!</p><p><b>Filmer:</b><br>Bäver (regi Julia Ocker, Tyskland)<br>Upp och ner (regi Dace Rīdūze, Lettland)<br>Klövar på skridskor (regi Ignas Meilūnas, Litauen)<br>Mû (regi Malin Neumann, Tyskland)</p><p>Filmerna har inget tal.</p><p>Längd 34 min.<br>Åldersgräns: T</p><p>Språk: inget språk</p>", "en": "<p>The Pulpettikino short film showcase presents another charming selection of European animation films for younger film lovers.</p><p>At the showcase, you get to meet a colourful group of various animal friends in different situations: skating skilfully, adventuring at sea, hiking bravely and going upside down!</p><p><b>Movies:</b><br>Beaver (Directed by Julia Ocker, Germany)<br>Upside Down (Directed by Dace Rīdūze, Latvia)<br>Hoofs of Skates (Directed by Ignas Meilūnas, Lithuania)<br>Mû (Directed by Malin Neumann, Germany)</p><p>There is no talking in the films.</p><p>The duration is 34 min<br>Age limit: All ages</p><p>Languages: non-verbal</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/067C3F7DAD5248A7CF27ACF7A8D4409F/Pulpettikinon_lyhytelokuvanaytos", "sv": "http://www.vuotalo.fi/sv/evenemang/event/067C3F7DAD5248A7CF27ACF7A8D4409F/Skolbios_kortfilmsforestallning", "en": "http://www.vuotalo.fi/en/events/event/067C3F7DAD5248A7CF27ACF7A8D4409F/Pulpettikino_Short_Film_Showcase" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65602/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65494", "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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 163501, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-22T15:14:57.875420Z", "last_modified_time": "2025-01-22T15:14:57.875433Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763457.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163501/?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:57.850711Z", "last_modified_time": "2025-03-16T16:14:41.213590Z", "date_published": null, "start_time": "2025-03-20T10: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, "name": { "fi": "Koululaisnäytös | Ama Kyei: Kukkatanssit – Hurraa!-teatteriviikot", "sv": "Ama Kyei: Blomsterdans – Hurraa!-teaterveckor", "en": "Ama Kyei: Flower Dances – Hurraa! Theatre Weeks" }, "short_description": { "fi": "Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!", "sv": "Alla blommor har förlorat sin färg och därmed sin superkraft. Lyckligtvis vet Ama hur hon ska kommunicera med Moder Natur genom sin dans, och även publiken får dansa!", "en": "All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance too!" }, "description": { "fi": "<p>Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!</p><p>Yhdessä luontoäidin ohjauksen ja lasten avun kanssa saamme mahdollisuuden auttaa kukkia saamaan takaisin värinsä ja supervoimansa. aikana saamme muun muassa tanssia sade-, maa, tuuli ja aurinkotansseja, sekä nähdä kuinka taianomainen vihreä vesi syntyy. Tämä esitys muistuttaa meitä vaalimaan kaikkea, mistä välitämme.</p><p>Kukkatanssit on vuorovaikutteinen esitys 3-7 vuotiaille lapsille sekä erityislapsille lukioikään asti.</p><p>Koreografia ja tanssi: Ama Kyei<br>Luovat avustajat: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Rahoittaja: Konstnärsnämnden ja Region Stockholm<br>Traileri & kuva: Jonathan Morell<br>Musiikki trailerissa: Sara Celaya</p><p>Kesto: 30 min<br>Ikäsuositus: 3–7 vuotta<br>Kieli: ruotsi</p><p>20.3. päiväkoti- ja koululaisnäytöksiin ryhmille vapaa pääsy. Klo 10.30 esitys on suomeksi ja klo 12 esitys on ruotsiksi.<br>Pakolliset ilmoittautumiset osoitteessa https://kultus.fi/fi</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: svenska</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: Swedish</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E2CE6BB40E1507F2D3DA9571B0FC837F/Koululaisnaytos_Ama_Kyei_Kukkatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/E2CE6BB40E1507F2D3DA9571B0FC837F/Ama_Kyei_Blomsterdans", "en": "http://www.stoa.fi/en/events/event/E2CE6BB40E1507F2D3DA9571B0FC837F/Ama_Kyei_Flower_Dances" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65494/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65055", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 160224, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-20T10:14:45.571845Z", "last_modified_time": "2025-01-20T10:14:45.571861Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763744.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/160224/?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-20T10:14:45.545375Z", "last_modified_time": "2025-03-15T09:14:17.623254Z", "date_published": null, "start_time": "2025-03-19T07: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, "name": { "fi": "Ama Kyei: Kukkatanssit – Hurraa! -teatteriviikot", "sv": "Ama Kyei: Blomsterdans – Hurraa!-teaterveckor", "en": "Ama Kyei: Flower Dances – Hurraa! theatre weeks" }, "short_description": { "fi": "Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!", "sv": "Alla blommor har förlorat sin färg och därmed sin superkraft. Lyckligtvis vet Ama hur hon ska kommunicera med Moder Natur genom sin dans, och även publiken får dansa!", "en": "All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance too!" }, "description": { "fi": "<p>Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!</p><p>Yhdessä luontoäidin ohjauksen ja lasten avun kanssa saamme mahdollisuuden auttaa kukkia saamaan takaisin värinsä ja supervoimansa. aikana saamme muun muassa tanssia sade-, maa, tuuli ja aurinkotansseja, sekä nähdä kuinka taianomainen vihreä vesi syntyy. Tämä esitys muistuttaa meitä vaalimaan kaikkea, mistä välitämme.</p><p>Kukkatanssit on vuorovaikutteinen esitys 3-7 vuotiaille lapsille sekä erityislapsille lukioikään asti.</p><p>Koreografia ja tanssi: Ama Kyei<br>Luovat avustajat: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Rahoittaja: Konstnärsnämnden ja Region Stockholm<br>Traileri & kuva: Jonathan Morell<br>Musiikki trailerissa: Sara Celaya</p><p>Ikäsuositus: 3–7 vuotta<br>Kieli: ruotsi/ svenska<br>Kesto: 30 min</p><p>Maksuton näytös koululaisille, paikkavaraukset kultus.fi 3.2.alkaen</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>", "sv": "<p>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: svenska</p><p>Kostnadsfri föreställning för skolelever, platsbokning på kultus.fi från 3.2</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: Swedish</p><p>Free performance for children groups, seat reservations at kultus.fi starting from 3 February.</p><p><b>Hurraa! Theatre Weeks <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F6F4EEC121E91646C40F992B0EE18ACD/Ama_Kyei_Kukkatanssit", "sv": "http://www.annantalo.fi/sv/evenemang/event/F6F4EEC121E91646C40F992B0EE18ACD/Ama_Kyei_Blomsterdans", "en": "http://www.annantalo.fi/en/events/event/F6F4EEC121E91646C40F992B0EE18ACD/Ama_Kyei_Flower_Dances" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65055/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65755", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 340913, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-14T11:14:32.369437Z", "last_modified_time": "2025-03-14T11:14:32.369452Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767191.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/340913/?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-03-14T11:14:32.329413Z", "last_modified_time": "2025-03-14T12:14:39.522136Z", "date_published": null, "start_time": "2025-04-05T12: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, "name": { "fi": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "sv": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "en": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios" }, "short_description": { "fi": "Onko kaupungissa Riston kaksoisolento?" }, "description": { "fi": "<p>Onko kaupungissa Riston kaksoisolento?</p><p>Risto näkee kaupungilla ihan samannäköisen pojan kuin hän itse – sillä on samanlainen tukka, samanlainen huppari ja samanlaiset housut. Risto ja Nelli päättävät selvittää onko poika kaksoisolento, varjominä, vai jopa huijari? Miksi Rauha-täti on ollut salaperäinen ja piilotellut valokuva-albumia? Entä miten Pakastaja-Elvi, hämähäkit sekä suvun kadonnut sormus liittyvät tähän kaikkeen?</p><p>Risto ja Nelli löytävät johtolangan ja päättävät selvittää salaisuuden, joka vie heidät suureen yölliseen seikkailuun Kurjenkalliolle.</p><p>Elokuva perustuu Sinikka ja Tiina Nopolan rakastetun kirjasarjan saman nimiseen kirjaan Risto Räppääjä ja kaksoisolento.</p><p>Elokuvan päärooleissa nähdään Risto Räppääjänä Aleksi Johansson ja Nelli Nuudelipäänä Alma Järvensivu. Muissa päärooleissa Lennart Lindberginä ja Pakastaja-Elvinä nähdään Ylermi Rajamaa ja Jenni Kokander sekä Rauha-tätinä Iina Kuustonen.</p><p>Elokuvan on ohjannut Samuel Harjanne, käsikirjoittaneet Tiina ja Emma Nopola. Musiikin on säveltänyt Kerkko Koskinen ja laulujen sanat ovat Matias Nopolan kynästä.</p><p>Ikäraja: S<br>Kesto: 81 min.<br>Ensi-ilta: 14.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6EB1FD9D5FFEE3B6706EDBDFFEE3F7E3/Risto_Rappaaja_ja_kaksoisolento_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6EB1FD9D5FFEE3B6706EDBDFFEE3F7E3/Risto_Rappaaja_ja_kaksoisolento_S_", "en": "http://www.malmitalo.fi/en/events/event/6EB1FD9D5FFEE3B6706EDBDFFEE3F7E3/Risto_Rappaaja_ja_kaksoisolento_S_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65755/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a5138594-214f-4ff5-a605-26e08b4fc00e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8663/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?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:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?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:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?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:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?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://assets1-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kutasu_Demo_1433164183930" }, "price": { "fi": "13" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 340459, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-14T08:49:37.797423Z", "last_modified_time": "2025-03-14T08:49:37.797440Z", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/acc35d45-a3f2-ef11-be21-7c1e5237520e", "name": "Demo", "cropping": "", "photographer_name": "Demo", "alt_text": "DEmo", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/340459/?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/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?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:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?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:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?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:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-03-14T08:41:51.755504Z", "last_modified_time": "2025-03-14T08:49:38.751000Z", "date_published": "2025-03-14T08:10:58Z", "start_time": "2025-03-14T10:17:00Z", "end_time": "2025-03-14T12:17:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 100, "audience_max_age": 10, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": 12, "enrolment_start_time": "2025-03-14T10:00:00+02:00", "enrolment_end_time": "2025-03-14T16:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "Kutasu demo 14.3" }, "short_description": { "fi": "Demo" }, "description": { "fi": "<div><p>Demo 2</p></div>" }, "provider_contact_info": null, "info_url": { "fi": "https://url" }, "location_extra_info": null, "provider": { "fi": "Demo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a5138594-214f-4ff5-a605-26e08b4fc00e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64945", "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:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@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/circo-aereo-race-horse-company-etsivaet-kanneltalo-19531104/", "sv": "https://www.lippu.fi/event/circo-aereo-race-horse-company-etsivaet-kanneltalo-19531104/", "en": "https://www.lippu.fi/event/circo-aereo-race-horse-company-etsivaet-kanneltalo-19531104/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153360, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T12:14:45.009019Z", "last_modified_time": "2024-12-10T12:14:45.009045Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761745.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153360/?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.981386Z", "last_modified_time": "2025-03-13T12:14:53.403390Z", "date_published": null, "start_time": "2025-03-26T16: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, "name": { "fi": "Race Horse Company & Circo Aereo: ETSIVÄT – Hurraa! -teatteriviikot", "sv": "Race Horse Company & Circo Aereo: ETSIVÄT (DETEKTIVERNA) – Hurraa!-teaterveckor", "en": "Race Horse Company & Circo Aereo: DETECTIVES – Hurraa! theatre weeks" }, "short_description": { "fi": "Kaksi etsivää ja toimisto. Haukatun omenan ja kadonneen solmion arvoitus.", "sv": "Två detektiver och ett kontor. Mysteriet med det bitna äpplet och den försvunna slipsen.", "en": "Two detectives and an office. The mystery of the bite mark on an apple and the lost tie." }, "description": { "fi": "<p>Kaksi etsivää ja toimisto. Haukatun omenan ja kadonneen solmion arvoitus.</p><p>Tapauksia tutkiessaan etsivät kohtaavat erilaisia haasteita ja ajautuvat hassuihin tilanteisiin niitä selvittäessään. Työpäivänsä aikana kaksikko kaahailee ratkomaan kuvitteellisia rikoksia ja haaveilee saavansa mestarivarkaan kiinni.</p><p>Etsivät on fyysistä komiikkaa ja nykysirkusta yhdistävä uusi näyttämöteos, joka saa ensi-iltansa syksyllä 2024. Sanattoman komiikan taiturit Marc Gassot ja Kalle Lehto toimivat omaperäisinä etsivinä seikkailussa, jossa dekkarigenre nyrjähtää odottamattomille sivupoluille. Esitys seikkailee surrealistisessa maailmassa, jossa mikään ei ole kuten odottaa saattaa. Tervetuloa Etsivien matkaan!</p><p>Esiintyjät: Marc Gassot & Kalle Lehto <br>Ohjaus: Sanna Silvennoinen <br>Valosuunnittelu: Juho Rahijärvi <br>Äänisuunnittelu: Josu Mämmi <br>Pukusuunnittelu: Kati Autere <br> <br>Kesto: 60 min <br>Ikäsuositus: 5+ <br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/circo-aereo-race-horse-company-helsingin-kaupunki-nuorisolippu-kanneltalo-19738720/?affiliate=FSF#tab=\">TÄSTÄ</a></u></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>Två detektiver och ett kontor. Mysteriet med det bitna äpplet och den försvunna slipsen.</p><p>När detektiverna utreder fall ställs de inför olika utmaningar och hamnar i skojiga situationer. Under arbetsdagen kör duon omkring med gasen i botten för att lösa fiktiva brott, och drömmer om att fånga mästertjuven.</p><p>Etsivät är en ny scenproduktion som kombinerar fysisk komedi och samtida cirkus. Verket har premiär hösten 2024. Mästarna på ordlös komik Marc Gassot och Kalle Lehto spelar de originella detektiverna i ett äventyr som tar deckargenren in på oväntade sidospår. Föreställningen utspelar sig i en surrealistisk värld där ingenting är som man kan förvänta sig. Välkommen med på deckarnas resa!</p><p>I rollerna: Marc Gassot & Kalle Lehto <br>Regi: Sanna Silvennoinen<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Josu Mämmi<br>Kostymdesign: Kati Autere<br>Produktion: Circo Aereo & Race Horse Company</p><p>Längd: 60 min.<br>Åldersrekommendation: 5+<br>Inget språk</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/circo-aereo-race-horse-company-helsingin-kaupunki-nuorisolippu-kanneltalo-19738720/?affiliate=FSF#tab=\">HÄR</a></u></p><p><b>Hurraa!-teaterveckor</b><br>Hurraa!-teaterveckor har ett digert program och erbjuder barn och ungdomar på 12 olika föreställningar som visas 37 gånger på olika håll av Helsingfors.</p><p>Föreställningarna är en del av en internationell festivalen med samma namn och ordnas som en del av “Ta med ett barn till teatern”-veckan. Under festivalveckan firas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>", "en": "<p>Two detectives and an office. The mystery of the bite mark on an apple and the lost tie.</p><p>When investigating these cases, the detectives face different challenges and find themselves in peculiar situations. During their day, the pair scramble to solve imaginary crimes and dream of catching a master thief.</p><p>Detectives is a new stage work combining physical comedy and contemporary circus, premiering in autumn 2024. Marc Gassot and Kalle Lehto, the connoisseurs of unspoken comedy, act as the peculiar detectives in an adventure where the detective genre swerves into unexpected side paths. The show is an adventure in a surreal world where nothing is as expected. Take the journey with the Detectives!</p><p>Performers: Marc Gassot & Kalle Lehto <br>Direction: Sanna Silvennoinen<br>Lighting design: Juho Rahijärvi<br>Sound design: Josu Mämmi<br>Costume design: Kati Autere<br>Production: Circo Aereo & Race Horse Company</p><p>Duration: 60 mins.<br>Age recommendation: 5+<br>Language: non-verbal</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/circo-aereo-race-horse-company-helsingin-kaupunki-nuorisolippu-kanneltalo-19738720/?affiliate=FSF#tab=\">HERE</a></u></p><p><b>Hurraa! Theatre Weeks<br>Take a Child to the Theatre</b><br>Hurraa! Theatre Weeks offer live theatre specifically designed for children and young adults. The high-quality repertoire consists of 12 different performances and 37 shows all over Helsinki. <br> <br>The shows will take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki. <br> <br>Hurraa! Theatre Weeks are arranged as part of the international Bring Your Child to the Theatre week. The World Day of Theatre for Children and Young People also takes place during the Hurraa! event. <br> <br>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E7863DC06D9AB3749B1FDBC432BE17BE/Race_Horse_Company_Circo_Aereo_ETSIVAT", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E7863DC06D9AB3749B1FDBC432BE17BE/Race_Horse_Company_Circo_Aereo_ETSIVAT_DETEKTIVERNA_", "en": "http://www.kanneltalo.fi/en/events/event/E7863DC06D9AB3749B1FDBC432BE17BE/Race_Horse_Company_Circo_Aereo_DETECTIVES" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64945/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }