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=146
{ "meta": { "count": 7438, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=147", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=145" }, "data": [ { "id": "kulke:66335", "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: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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": 754679, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-13T12:13:27.713955Z", "last_modified_time": "2025-05-13T12:13:27.713968Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773369.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/754679/?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-05-13T12:13:27.606410Z", "last_modified_time": "2025-05-15T08:14:27.396692Z", "date_published": null, "start_time": "2025-06-02T07:00:00Z", "end_time": "2025-06-06T11: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": "TÄYNNÄ Kuvataideleiri: Kesäkassillinen kuvataidetta", "sv": "FULLBOKAD Kuvataideleiri: Kesäkassillinen kuvataidetta", "en": "FULLY BOOKED Kuvataideleiri: Kesäkassillinen kuvataidetta" }, "short_description": { "fi": "Tutustu kuvataiteeseen matalan kynnyksen taideleirillä. Upotetaan yhdessä kädet saveen, kangaskasseillaan, maalataan ja tehdään toivejuttuja!" }, "description": { "fi": "<p>Tutustu kuvataiteeseen matalan kynnyksen taideleirillä. Upotetaan yhdessä kädet saveen, kangaskasseillaan, maalataan ja tehdään toivejuttuja!</p><p>Leirin aikana työskentelemme mahdollisimman paljon ulkona sääolosuhteet huomioiden. Myös Malmitalon taideluokka on käytössä kurssien aikana. Jokaisena leiripäivänä keskitytään eri kuvataiteen osa-alueeseen: savityö, kangaskassi, maalaus tai oppilaiden toivomia tekniikoita.</p><p>Leirille osallistuminen ei edellytä aikaisempaa kokemusta kuvataiteesta. Työskentely muovautuu osallistujien omien kiinnostuksenkohteiden ja osaamisen mukaan. Tervetuloa mukaan!</p><p><b>Kurssi-info:</b><br>Kesäleirit ovat maksuttomia ja siihen sisältyy päivittäin maksuton lounas<br>Kurssit on suunnattu 7–11-vuotiaille, max. 12 oppilasta/kurssi</p><p>Kurssit järjestetään Malmitalolla ja sen välittömässä läheisyydessä, osoite Ala-Malmin tori 1.</p><p>Sitovat ilmoittautumiset sähköpostitse osoitteeseen: petra.rovila-aarnio@hel.fi<br> <br>Lisätietoja antaa Malmitalon kulttuurituottaja Petra Rovila-Aarnio, puh +358 400 293 371</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F23559BD7003CE56C8F5D4041AEDDDA5/TAYNNA_Kuvataideleiri_Kesakassillinen_kuvataidetta", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F23559BD7003CE56C8F5D4041AEDDDA5/FULLBOKAD_Kuvataideleiri_Kesakassillinen_kuvataidetta", "en": "http://www.malmitalo.fi/en/events/event/F23559BD7003CE56C8F5D4041AEDDDA5/FULLY_BOOKED_Kuvataideleiri_Kesakassillinen_kuvataidetta" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66335/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2262sy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-14T10:05:00.388052Z", "last_modified_time": "2025-05-14T10:05:00.388069Z", "date_published": null, "start_time": "2025-06-11T12:00:00Z", "end_time": "2025-06-11T15: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": "Suuri Ligretto-turnaus" }, "short_description": { "fi": "Turnaus kaikille Ligreton harrastajille." }, "description": { "fi": "<p>Lippulaivan nuortentila Messissä järjestetään kaikille Ligreton harrastajille turnaus. Vielä ehdit opetella nopeuspelin ennen H-hetkeä. Kysy apua omasta kirjastostasi. Turnaukseen voi osallistua, jos osaa säännöt sujuvasti.</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:agmk2262sy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65830", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 613830, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T14:13:23.374398Z", "last_modified_time": "2025-04-25T14:13:23.374414Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767567.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613830/?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-04-25T14:13:23.326085Z", "last_modified_time": "2025-05-14T08:13:37.005643Z", "date_published": null, "start_time": "2025-06-17T07: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": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Summertime music playschool" }, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>", "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/AFD4725FD007E7974D97F2716B6A98FE/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/AFD4725FD007E7974D97F2716B6A98FE/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/AFD4725FD007E7974D97F2716B6A98FE/Summertime_music_playschool" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65830/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65829", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 613829, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T14:13:23.177092Z", "last_modified_time": "2025-04-25T14:13:23.177109Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767566.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613829/?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-04-25T14:13:23.117998Z", "last_modified_time": "2025-05-14T08:13:36.845470Z", "date_published": null, "start_time": "2025-06-17T06: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": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Summertime music playschool" }, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>", "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1C3D549F5B2C8C8B922EF71665A6AB44/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/1C3D549F5B2C8C8B922EF71665A6AB44/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/1C3D549F5B2C8C8B922EF71665A6AB44/Summertime_music_playschool" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65829/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65828", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 613828, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T14:13:22.790966Z", "last_modified_time": "2025-04-25T14:13:22.790982Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767564.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613828/?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-04-25T14:13:22.738300Z", "last_modified_time": "2025-05-14T08:13:35.108269Z", "date_published": null, "start_time": "2025-06-10T07: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": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Summertime music playschool" }, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>", "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6684EF8363F72FD7383DA8ECC559CA95/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/6684EF8363F72FD7383DA8ECC559CA95/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/6684EF8363F72FD7383DA8ECC559CA95/Summertime_music_playschool" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65828/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65827", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 613827, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T14:13:22.555750Z", "last_modified_time": "2025-04-25T14:13:22.555766Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767563.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613827/?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-04-25T14:13:22.488574Z", "last_modified_time": "2025-05-14T08:13:34.895167Z", "date_published": null, "start_time": "2025-06-10T06: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": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Summertime music playschool" }, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.", "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen." }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>", "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Summertime_music_playschool" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65827/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65817", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 613507, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T13:13:10.273944Z", "last_modified_time": "2025-04-25T13:13:10.273961Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767558.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613507/?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-04-25T13:13:10.215189Z", "last_modified_time": "2025-05-14T08:13:32.830808Z", "date_published": null, "start_time": "2025-06-03T07: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": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – Musiikkiteatteriesitys kaikenkielisille lapsille", "sv": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – För barn på alla språk", "en": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – Suitable for children of all languages" }, "short_description": { "fi": "Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!", "sv": "Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!", "en": "Come to sing and learn about different instruments together with Hinni the Mouse!" }, "description": { "fi": "<p>Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!</p><p>Annantalon Kesämuskareista tuttu Tuuli Paasolainen tuo Annantalon takapihan A-lavalle interaktiivisen ja innostavan musiikkiteatteriesityksen.</p><p>Esityksen aikana yleisö pääsee laulamaan, loruttelemaan ja liikkumaan yhdessä innokkaan Hinni-Hiiren kanssa. Taitava Hinni osaa soittaa myös poikkihuilua, kannelta sekä satumaisesti soivia rytmisoittimia. Esitys ilostuttaa ja innostaa musiikin pariin.</p><p>Esitys on vähäsanainen ja sopii kaikille, kielestä tai erityistarpeista riippumatta.</p><p>Klo 9.30 esityksessä lauletaan ja lorutellaan suomeksi ja englanniksi<br>Klo 10.30 esityksessä lauletaan ja lorutellaan suomeksi ja ruotsiksi</p><p>Molempia kieliä käytetään tasapuolisesti, eikä niitä tarvitse osata pysyäkseen Hinni-Hiiren matkassa mukana.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Esitykseen ovat tervetulleita kaikki lapsiperheet sekä isommat lapsiryhmät!</p><p>Ikäsuositus: 0–9-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!</p><p>Tuuli Paasolainen, som är bekant från Annegårdens sommarmusiklekis, för med sig en interaktiv och inspirerande musikteaterföreställning till A-scenen på Annegården.</p><p>Under föreställningen kan publiken sjunga, jollra och röra på sig tillsammans med den entusiastiska Musen Hinni. Den skickliga Hinni kan också spela tvärflöjt, kantele och rytminstrument som ljuder sagolikt. Föreställningen gör åhörarna glada och inspirerar till musikens värld.</p><p>Föreställningen har få ord och passar alla, oavsett språk eller särskilda behov.</p><p>Under föreställningen kl. 9.30 sjunger och läser vi ramsor på finska och engelska.<br>Under föreställningen kl. 10.30 sjunger och läser vi ramsor på finska och svenska.</p><p>Båda språken används jämlikt och man behöver inte kunna språken för att hänga med Musen Hinni.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.<br>Alla barnfamiljer och större barngrupper är välkomna till föreställningen!</p><p>Åldersrekommendation: 0–9-åringar<br>Längd: 40 min.<br>Fritt inträde</p><p><b>Tuuli Paasolainens musikupplevelser på A-scenen sommaren 2025:</b></p><p>tis 3.6 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p><p>tis 10.6 kl. 9.30 och 10.30 <br>Sommarmusiklekis</p><p>tis 17.6 kl. 9.30 och 10.30<br>Sommarmusiklekis</p><p>tis 12.8 kl. 10 Sommarmusiklekis</p><p>tis 19.8 kl. 10<br>Sommarmusiklekis</p><p>tis 26.8 kl. 10<br>Sommarmusiklekis</p><p>tis 2.9 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p>", "en": "<p>Come to sing and learn about different instruments together with Hinni the Mouse!</p><p>Tuuli Paasolainen, who hosts the Annantalo Summertime music playschool, brings an interactive and inspiring musical theatre experience to the A-stage in the Annantalo backyard.</p><p>During the performance, the audience will have the chance to sing, rhyme and move together with the energetic Hinni the Mouse. Hinni is very talented and can play the transverse flute, the kantele and percussions that make storybook sounds. The performance will bring joy and introduce children to music.</p><p>There are very few words in the performance, and it is suitable for anyone regardless of their language or special needs.</p><p>Songs and rhymes will be in Finnish and English in the performance at 9.30<br>Songs and rhymes will be in Finnish and Swedish in the performance at 10.30</p><p>Both languages are used equally, and you do not need to know them to be able to follow Hinni the Mouse’s journey.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>All families with children and larger groups of children are welcome!</p><p>Recommended age: 0–9<br>Duration: 40 min.<br>Free entry</p><p><b>Music experiences hosted by Tuuli Paasolainen on the A-stage in summer 2025:</b></p><p>Tue 3 June Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p><p>Tue 10 June at 9.30 and 10.30 <br>Summertime music playschool</p><p>Tue 17 June at 9.30 and 10.30<br>Summertime music playschool</p><p>Tue 12 August at 10 Summertime music playschool</p><p>Tue 19 August at 10.00<br>Summertime music playschool</p><p>Tue 26 August at 10.00<br>Summertime music playschool</p><p>Tue 2 September Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag", "sv": "http://www.annantalo.fi/sv/evenemang/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag", "en": "http://www.annantalo.fi/en/events/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65817/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65816", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 613506, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T13:13:10.020122Z", "last_modified_time": "2025-04-25T13:13:10.020139Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767557.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613506/?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-04-25T13:13:09.943646Z", "last_modified_time": "2025-05-14T08:13:32.636457Z", "date_published": null, "start_time": "2025-06-03T06: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": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – Musiikkiteatteriesitys kaikenkielisille lapsille", "sv": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – För barn på alla språk", "en": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – Suitable for children of all languages" }, "short_description": { "fi": "Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!", "sv": "Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!", "en": "Come to sing and learn about different instruments together with Hinni the Mouse!" }, "description": { "fi": "<p>Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!</p><p>Annantalon Kesämuskareista tuttu Tuuli Paasolainen tuo Annantalon takapihan A-lavalle interaktiivisen ja innostavan musiikkiteatteriesityksen.</p><p>Esityksen aikana yleisö pääsee laulamaan, loruttelemaan ja liikkumaan yhdessä innokkaan Hinni-Hiiren kanssa. Taitava Hinni osaa soittaa myös poikkihuilua, kannelta sekä satumaisesti soivia rytmisoittimia. Esitys ilostuttaa ja innostaa musiikin pariin.</p><p>Esitys on vähäsanainen ja sopii kaikille, kielestä tai erityistarpeista riippumatta.</p><p>Klo 9.30 esityksessä lauletaan ja lorutellaan suomeksi ja englanniksi<br>Klo 10.30 esityksessä lauletaan ja lorutellaan suomeksi ja ruotsiksi</p><p>Molempia kieliä käytetään tasapuolisesti, eikä niitä tarvitse osata pysyäkseen Hinni-Hiiren matkassa mukana.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Esitykseen ovat tervetulleita kaikki lapsiperheet sekä isommat lapsiryhmät!</p><p>Ikäsuositus: 0–9-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>", "sv": "<p>Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!</p><p>Tuuli Paasolainen, som är bekant från Annegårdens sommarmusiklekis, för med sig en interaktiv och inspirerande musikteaterföreställning till A-scenen på Annegården.</p><p>Under föreställningen kan publiken sjunga, jollra och röra på sig tillsammans med den entusiastiska Musen Hinni. Den skickliga Hinni kan också spela tvärflöjt, kantele och rytminstrument som ljuder sagolikt. Föreställningen gör åhörarna glada och inspirerar till musikens värld.</p><p>Föreställningen har få ord och passar alla, oavsett språk eller särskilda behov.</p><p>Under föreställningen kl. 9.30 sjunger och läser vi ramsor på finska och engelska.<br>Under föreställningen kl. 10.30 sjunger och läser vi ramsor på finska och svenska.</p><p>Båda språken används jämlikt och man behöver inte kunna språken för att hänga med Musen Hinni.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Alla barnfamiljer och större barngrupper är välkomna till föreställningen!</p><p>Åldersrekommendation: 0–9-åringar<br>Längd: 40 min.<br>Fritt inträde</p><p>**</p><p><b>Tuuli Paasolainens musikupplevelser på A-scenen sommaren 2025:</b></p><p>juni:</p><p>tis 3.6 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p><p>tis 10.6 kl. 9.30 och 10.30 <br>Sommarmusiklekis</p><p>tis 17.6 kl. 9.30 och 10.30<br>Sommarmusiklekis</p><p>augusti-september:</p><p>tis 12.8 kl. 10 Sommarmusiklekis</p><p>tis 19.8 kl. 10<br>Sommarmusiklekis</p><p>tis 26.8 kl. 10<br>Sommarmusiklekis</p><p>tis 2.9 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p>", "en": "<p>Come to sing and learn about different instruments together with Hinni the Mouse!</p><p>Tuuli Paasolainen, who hosts the Annantalo Summertime music playschool, brings an interactive and inspiring musical theatre experience to the A-stage in the Annantalo backyard.</p><p>During the performance, the audience will have the chance to sing, rhyme and move together with the energetic Hinni the Mouse. Hinni is very talented and can play the transverse flute, the kantele and percussions that make storybook sounds. The performance will bring joy and introduce children to music.</p><p>There are very few words in the performance, and it is suitable for anyone regardless of their language or special needs.</p><p>Songs and rhymes will be in Finnish and English in the performance at 9.30<br>Songs and rhymes will be in Finnish and Swedish in the performance at 10.30</p><p>Both languages are used equally, and you do not need to know them to be able to follow Hinni the Mouse’s journey.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>All families with children and larger groups of children are welcome!</p><p>Recommended age: 0–9<br>Duration: 40 min.<br>Free entry</p><p>**</p><p><b>Music experiences hosted by Tuuli Paasolainen on the A-stage in summer 2025:</b></p><p>June:</p><p>Tue 3 June Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p><p>Tue 10 June at 9.30 and 10.30 <br>Summertime music playschool</p><p>Tue 17 June at 9.30 and 10.30<br>Summertime music playschool</p><p>August–September:</p><p>Tue 12 August at 10 Summertime music playschool</p><p>Tue 19 August at 10.00<br>Summertime music playschool</p><p>Tue 26 August at 10.00<br>Summertime music playschool</p><p>Tue 2 September Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_", "sv": "http://www.annantalo.fi/sv/evenemang/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_", "en": "http://www.annantalo.fi/en/events/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65816/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66177", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?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": 690400, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T09:13:15.949125Z", "last_modified_time": "2025-05-05T09:13:15.949143Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765928.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690400/?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-05-05T09:13:15.858099Z", "last_modified_time": "2025-05-13T13:14:07.748741Z", "date_published": null, "start_time": "2025-05-17T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Red Nose Company: Punahilkan paluu – Lastenkulttuurin juhlaviikon tapahtuma", "sv": "Red Nose Company: Punahilkan paluu (Rödluvans återkomst) – Evenemang under barnkulturens jubileumsvecka", "en": "Red Nose Company: Punahilkan paluu (The Return of The Little Red Riding Hood)" }, "short_description": { "fi": "Espan lavalla vietetään lastenkulttuurin juhlaviikkoa! Red Nose Company tuo Espan lavalle riemukkaan klovniversion Punahilkka-sadusta.", "sv": "Barnkulturens jubileumsvecka firas på Esplanadestraden! Red Nose Company har med sig en clownversion av sagan Rödluvan på Esplanadestraden.", "en": "Celebration of Children’s Culture Week on Espa Stage! Red Nose Company will take over the Espa Stage with their joyful clown version of the fairytale Little Red Riding Hood." }, "description": { "fi": "<p>Espan lavalla vietetään lastenkulttuurin juhlaviikkoa! Red Nose Company tuo Espan lavalle riemukkaan klovniversion Punahilkka-sadusta.</p><p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén, riemukkaana tulkintana. Isoäidiltä lahjaksi saatu viitta antaa Punahilkalle supervoimat ja auttaa selviytymään kiperissä tilanteissa. Supervoimista huolimatta myös yleisön apua tarvitaan.</p><p>Miten mahtaa ratketa suden ja Punahilkan kohtaaminen tässä nykyaikaan päivitetyssä versiossa? Klovnit johdattavat katsojan pohtimaan luottamuksen ja turvallisuuden teemoja huumoria säästelemättä.</p><p>Esitys on suunnattu erityisesti alakoululaisille ja heidän perheilleen.</p><p>Esityksen kesto noin 60 min<br>Ikäsuositus: 6+<br>Kieli: suomi</p><p><b>Työryhmä:</b><br>Käsikirjoitus: Minna Puolanto, Hanna Seppä ja Niina Sillanpää<br>Rooleissa: Minna Puolanto (Babylon) ja Hanna Seppä (Ré)<br>Ohjaus: Niina Sillanpää<br>Valo- ja äänisuunnittelu: Jere Kolehmainen<br>Pukusuunnittelu: Noora Salmi</p><p>Teos on Red Nose Companyn ja Kanneltalon yhteistuotanto</p>", "sv": "<p>Barnkulturens jubileumsvecka firas på Esplanadestraden! Red Nose Company har med sig en clownversion av sagan Rödluvan på Esplanadestraden.</p><p>Historien om Rödluvan har berättats från generation till generation i hundratals år. Nu sätts den älskade sagan upp på scenen i en dråplig tolkning av två clowner, Babylon och Ré. En gåva från mormor ger Rödluvan superkrafter och hjälper henne att klara av knepiga situationer. Trots superkrafterna behövs också publikens hjälp. <br>Hur går mötet mellan vargen och Rödluvan i den här moderna, uppdaterade versionen?<br>Clownerna får publiken att reflektera över teman som tillit och trygghet utan att spara på humorn.</p><p>Föreställningen riktar sig särskilt till lågstadieelever och deras familjer.</p><p>Föreställningens längd är ca 60 min.<br>Åldersrekommendation: 6+<br>Språk: finska<br> <br><b>ARBETSGRUPP</b><br>På scenen: Hanna Seppä och Minna Puolanto<br>Regi: Niina Sillanpää<br>Manus: Arbetsgrupp<br>Ljus- och ljuddesign: Jere Kolehmainen<br>Kostymdesign: Noora Salmi<br>Produktion: Red Nose Company / Elina Terho, Maija Kühn, Inka Virtanen<br>Grafisk design: Ilari Kallinen</p><p>Föreställningen är en samproduktion med Gamlasgården</p>", "en": "<p>Celebration of Children’s Culture Week on Espa Stage! Red Nose Company will take over the Espa Stage with their joyful clown version of the fairytale Little Red Riding Hood.</p><p>The tale of the Little Red Riding Hood has been told for centuries. Now two clowns Babylon & Ré take this beloved story into their hands and tune it to the 21 century. Little Red Riding Hood receives a magical cape from her grandmother – it turns out to have superpower that helps in difficult situations. This show will investigate themes of trust and safety without forgetting joy and laughter.</p><p>We especially welcome for 6–12-year-old kids and their families.</p><p>Length of the show: 60 minutes<br>Age recommendation: 6+<br>Language: Finnish</p><p><b>WORKING GROUP</b><br>On stage: Hanna Seppä and Minna Puolanto<br>Director: Niina Sillanpää<br>Script: working group<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Production: Red Nose Company / Elina Terho, Maija Kühn, Inka Virtanen<br>Graphical design: Ilari Kallinen</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/85B04B3F42243DB320EFEC0A8E6E84EE/Red_Nose_Company_Punahilkan_paluu_", "sv": "http://www.espanlava.fi/sv/evenemang/event/85B04B3F42243DB320EFEC0A8E6E84EE/Red_Nose_Company_Punahilkan_paluu_Rodluvans_aterkomst_", "en": "http://www.espanlava.fi/en/events/event/85B04B3F42243DB320EFEC0A8E6E84EE/Red_Nose_Company_Punahilkan_paluu_The_Return_of_The_Little_Red_Riding_Hood_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66177/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66176", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@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": 690399, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T09:13:15.565527Z", "last_modified_time": "2025-05-05T09:13:15.565545Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765950.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690399/?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-05-05T09:13:15.476783Z", "last_modified_time": "2025-05-13T13:14:07.468418Z", "date_published": null, "start_time": "2025-05-17T09: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": "Mirkka & Luis – Lastenkulttuurin juhlaviikon tapahtuma", "sv": "Mirkka & Luis – Evenemang under barnkulturens jubileumsvecka", "en": "Mirkka & Luis – Children’s Culture Week event" }, "short_description": { "fi": "Espan lavalla vietetään lastenkulttuurin juhlaviikkoa hurmaavan Mirkka & Luis -lastenmusiikkiyhtyeen rytmeistä ja sanoista nauttien.", "sv": "På Esplanadestraden firas barnkulturens jubileumsvecka med glädje av rytmen och orden hos barnmusikgruppen Mirkka & Luis.", "en": "Espa Stage celebrates the Children’s Culture Week with the rhythms and lyrics of the charming children’s band Mirkka & Luis." }, "description": { "fi": "<p>Espan lavalla vietetään lastenkulttuurin juhlaviikkoa hurmaavan Mirkka & Luis -lastenmusiikkiyhtyeen rytmeistä ja sanoista nauttien.</p><p>Mirkka & Luis -lastenmusiikkiyhtyeen intohimona on laulattaa, naurattaa ja liikuttaa niin mieltä kuin kehoakin. Palkittua yhtyettä onkin kiitelty korkeatasoisesta musiikista sekä oivaltavista, ajankohtaisista ja puhuttelevista sanoituksista, jotka ovat yhtyeen omaa käsialaa. Lisäksi yhtyeen valloittava läsnäolo hurmaa niin lapset kuin aikuisetkin.</p><p>Siispä tervetuloa kuulemaan parasta lastenmusiikkia!</p><p>”Lapsille parasta, tottakai!”</p><p>Kesto: 1 tunti</p><p>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p>", "sv": "<p>På Esplanadestraden firas barnkulturens jubileumsvecka med glädje av rytmen och orden hos barnmusikgruppen Mirkka & Luis.</p><p>Barnmusikgruppen Mirkka & Luis har som passion att få såväl knopp som kropp att sjunga, skratta och röra sig. Den prisbelönta gruppen har även prisats för högklassig musik samt för insiktsfulla, aktuella och tilltalande texter, skrivna av gruppen. Dessutom charmar gruppens erövrande närvaro såväl barnen som vuxna.</p><p>Välkommen att lyssna på den bästa barnmusiken!</p><p>”Självklart det bästa för barnen!”</p><p>Längd: 1 timme</p><p>Framförandet genomförs i samarbete med Konsertcentralen.</p>", "en": "<p>Espa Stage celebrates the Children’s Culture Week with the rhythms and lyrics of the charming children’s band Mirkka & Luis.</p><p>The children’s music group Mirkka & Luis is passionate about making their audience sing, laugh and move, both in body and mind. The award-winning ensemble has been praised for their high-class music as well as their insightful, timely and thought-provoking lyrics written by the band members themselves. The band’s captivating presence also charms children and adults alike.</p><p>Come and enjoy the best of children’s music!</p><p>“Only the best for children, of course!”</p><p>Duration: 1 hour</p><p>The performance is produced in cooperation with the Concert Centre Finland.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6859FB844ADDD1BDB6F9EB3DEF82505B/Mirkka_Luis", "sv": "http://www.espanlava.fi/sv/evenemang/event/6859FB844ADDD1BDB6F9EB3DEF82505B/Mirkka_Luis", "en": "http://www.espanlava.fi/en/events/event/6859FB844ADDD1BDB6F9EB3DEF82505B/Mirkka_Luis" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66176/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2264la", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-13T12:28:33.381063Z", "last_modified_time": "2025-05-13T12:28:33.381079Z", "date_published": null, "start_time": "2025-06-01T09:00:00Z", "end_time": "2025-06-01T11: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": "Kummipäivä" }, "short_description": { "fi": "Lähde mukaan viettämään kummipäivää sunnuntaina 1.6. klo 12 - 14" }, "description": { "fi": "<p>Tervetuloa viettämään mukava hetki kummilapsen kanssa Lippulaivan kirjastoon (3. krs). Yhteistä puuhaa kummille ja kummilapselle: tule pyörittämään onnenpyörää ja nauttimaan kahvia ja mehua. Hyvällä säällä olemme kirjaston sisäpihalla!</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:agmk2264la/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66331", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?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/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": 747125, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T14:13:19.835462Z", "last_modified_time": "2025-05-12T14:13:19.835478Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/747125/?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-05-12T14:13:19.766106Z", "last_modified_time": "2025-05-12T14:13:19.937556Z", "date_published": null, "start_time": "2025-06-27T13: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": "Taikahetki Robert Jägerhornin seurassa", "sv": "Magiskt kul med Robert Jägerhorn", "en": "Magical Fun with Robert Jägerhorn" }, "short_description": { "fi": "Koko perheen Taikahetki Robert Jägerhornin seurassa on suunnattu kaikille aina perheen pikkuväestä vaariin.", "sv": "Magiskt kul med Robert Jägerhorn riktar sig till alla, från de yngsta i familjen till de äldsta.", "en": "The show Magical Fun with Robert Jägerhorn is aimed at everyone from the youngest members of the family to the grandparents." }, "description": { "fi": "<p>Koko perheen Taikahetki Robert Jägerhornin seurassa on suunnattu kaikille aina perheen pikkuväestä vaariin.</p><p>Luvassa on uskomattomia taikoja, hauskanpitoa ja paljon mahdollisuuksia yleisön osallistumiselle.</p><p>Esityksen kesto on 40 minuuttia.</p>", "sv": "<p>Magiskt kul med Robert Jägerhorn riktar sig till alla, från de yngsta i familjen till de äldsta.</p><p>Föreställningen bygger på otrolig magi, massor med kul och många möjligheter för publiken att delta.</p><p>Kom och se! Och ta me' både mormor och lillebrorn! För här kommer Robert Jägerhorn som ett magimonster med otroliga trollkonster.</p><p>Längd 40 minuter.</p>", "en": "<p>The show Magical Fun with Robert Jägerhorn is aimed at everyone from the youngest members of the family to the grandparents.</p><p>It's based on incredible magic, lots of fun and opportunities for audience participation.</p><p>The show is 40 minutes long.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2C578F5FF36B9C1F4EC364888635CD61/Taikahetki_Robert_Jagerhornin_seurassa", "sv": "http://www.espanlava.fi/sv/evenemang/event/2C578F5FF36B9C1F4EC364888635CD61/Magiskt_kul_med_Robert_Jagerhorn", "en": "http://www.espanlava.fi/en/events/event/2C578F5FF36B9C1F4EC364888635CD61/Magical_Fun_with_Robert_Jagerhorn" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66331/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2265sm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266vu/?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": [], "created_time": "2025-05-12T09:36:36.489382Z", "last_modified_time": "2025-05-12T09:36:36.489399Z", "date_published": null, "start_time": "2025-06-27T10:00:00Z", "end_time": "2025-06-27T12: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": "Lankakäsikoruja ja helmistä käsikoruja", "sv": "Trådarmband och pärlarmband", "en": "Wire bracelets and beaded bracelets" }, "short_description": { "fi": "Tule luomaan yhdessä langasta käsikoruja ja pujottelemaan helmikäsikoruja. ", "sv": "Kom och skapa armband av garn och pärlarmband tillsammans.", "en": "Come and create bracelets from yarn and string beaded bracelets together." }, "description": { "fi": "<p>Tehdään yhdessä langasta käsikoruja ja pujotellaan helmikäsikoruja. Helppoja ja kauniita koruja tehdään yhdessä kirjastolaisen kanssa.</p><p>Paja on maksuton ja kaikille avoin.</p><p>Kielinä Suomi ja Englanti.</p><p><br></p><p>#HelloEspoo</p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Låt oss göra armband av garn och trä pärlarmband tillsammans. Enkla och vackra smycken tillverkas tillsammans med en bibliotekarie.</p><p><br></p><p>Workshopen är gratis och öppen för alla.</p><p><br></p><p>Språk finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Let's make bracelets from yarn and string beaded bracelets together. Easy and beautiful jewelry is made together with a librarian.</p><p><br></p><p>The workshop is free and open to everyone.</p><p><br></p><p>Languages are Finnish and English.</p><p><br></p><p>#HelloEspoo</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:agmk2265sm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22656i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266vu/?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": [], "created_time": "2025-05-12T09:36:36.378699Z", "last_modified_time": "2025-05-12T09:36:36.378716Z", "date_published": null, "start_time": "2025-06-13T10:00:00Z", "end_time": "2025-06-13T12: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": "Lankakäsikoruja ja helmistä käsikoruja", "sv": "Trådarmband och pärlarmband", "en": "Wire bracelets and beaded bracelets" }, "short_description": { "fi": "Tule luomaan yhdessä langasta käsikoruja ja pujottelemaan helmikäsikoruja. ", "sv": "Kom och skapa armband av garn och pärlarmband tillsammans.", "en": "Come and create bracelets from yarn and string beaded bracelets together." }, "description": { "fi": "<p>Tehdään yhdessä langasta käsikoruja ja pujotellaan helmikäsikoruja. Helppoja ja kauniita koruja tehdään yhdessä kirjastolaisen kanssa.</p><p>Paja on maksuton ja kaikille avoin.</p><p>Kielinä Suomi ja Englanti.</p><p><br></p><p>#HelloEspoo</p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Låt oss göra armband av garn och trä pärlarmband tillsammans. Enkla och vackra smycken tillverkas tillsammans med en bibliotekarie.</p><p><br></p><p>Workshopen är gratis och öppen för alla.</p><p><br></p><p>Språk finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Let's make bracelets from yarn and string beaded bracelets together. Easy and beautiful jewelry is made together with a librarian.</p><p><br></p><p>The workshop is free and open to everyone.</p><p><br></p><p>Languages are Finnish and English.</p><p><br></p><p>#HelloEspoo</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:agmk22656i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2266ju", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266vu/?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": [], "created_time": "2025-05-12T09:36:36.242040Z", "last_modified_time": "2025-05-12T09:36:36.242058Z", "date_published": null, "start_time": "2025-06-06T10:00:00Z", "end_time": "2025-06-06T12: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": "Lankakäsikoruja ja helmistä käsikoruja", "sv": "Trådarmband och pärlarmband", "en": "Wire bracelets and beaded bracelets" }, "short_description": { "fi": "Tule luomaan yhdessä langasta käsikoruja ja pujottelemaan helmikäsikoruja. ", "sv": "Kom och skapa armband av garn och pärlarmband tillsammans.", "en": "Come and create bracelets from yarn and string beaded bracelets together." }, "description": { "fi": "<p>Tehdään yhdessä langasta käsikoruja ja pujotellaan helmikäsikoruja. Helppoja ja kauniita koruja tehdään yhdessä kirjastolaisen kanssa.</p><p>Paja on maksuton ja kaikille avoin.</p><p>Kielinä Suomi ja Englanti.</p><p><br></p><p>#HelloEspoo</p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Låt oss göra armband av garn och trä pärlarmband tillsammans. Enkla och vackra smycken tillverkas tillsammans med en bibliotekarie.</p><p><br></p><p>Workshopen är gratis och öppen för alla.</p><p><br></p><p>Språk finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Let's make bracelets from yarn and string beaded bracelets together. Easy and beautiful jewelry is made together with a librarian.</p><p><br></p><p>The workshop is free and open to everyone.</p><p><br></p><p>Languages are Finnish and English.</p><p><br></p><p>#HelloEspoo</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:agmk2266ju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2266vu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2265sm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22656i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266ju/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T09:36:35.650917Z", "last_modified_time": "2025-05-12T09:36:35.650935Z", "date_published": null, "start_time": "2025-06-06T10:00:00Z", "end_time": "2025-06-27T12: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": "Lankakäsikoruja ja helmistä käsikoruja", "sv": "Trådarmband och pärlarmband", "en": "Wire bracelets and beaded bracelets" }, "short_description": { "fi": "Tule luomaan yhdessä langasta käsikoruja ja pujottelemaan helmikäsikoruja. ", "sv": "Kom och skapa armband av garn och pärlarmband tillsammans.", "en": "Come and create bracelets from yarn and string beaded bracelets together." }, "description": { "fi": "<p>Tehdään yhdessä langasta käsikoruja ja pujotellaan helmikäsikoruja. Helppoja ja kauniita koruja tehdään yhdessä kirjastolaisen kanssa.</p><p>Paja on maksuton ja kaikille avoin.</p><p>Kielinä Suomi ja Englanti.</p><p><br></p><p>#HelloEspoo</p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Låt oss göra armband av garn och trä pärlarmband tillsammans. Enkla och vackra smycken tillverkas tillsammans med en bibliotekarie.</p><p><br></p><p>Workshopen är gratis och öppen för alla.</p><p><br></p><p>Språk finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Let's make bracelets from yarn and string beaded bracelets together. Easy and beautiful jewelry is made together with a librarian.</p><p><br></p><p>The workshop is free and open to everyone.</p><p><br></p><p>Languages are Finnish and English.</p><p><br></p><p>#HelloEspoo</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:agmk2266vu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65854", "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:732/?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: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": 612868, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T11:13:17.879423Z", "last_modified_time": "2025-04-25T11:13:17.879447Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767682.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/612868/?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-04-25T11:13:17.785383Z", "last_modified_time": "2025-05-12T09:14:08.737007Z", "date_published": null, "start_time": "2025-06-02T08:00:00Z", "end_time": "2025-06-06T12: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": "Kanneltalon maksuton kesätaidekerho lapsille", "sv": "Gamlasgårdens avgiftsfria sommarkonstklubb för barn", "en": "Free-of-charge summer art club for children at Kanneltalo" }, "short_description": { "fi": "Kaipaatko luovaa tekemistä kesälomalle? Tule Kanneltalon kesätaidekerhoon 2.–6.6.2025 klo 11–15!", "sv": "Önskar du kreativ verksamhet under sommarlovet? Kom till Gamlasgårdens sommarkonstklubb!", "en": "Do you need something creative to do during your summer break? Come to the summer art club at Kanneltalo!" }, "description": { "fi": "<p>Kaipaatko luovaa tekemistä kesälomalle? Tule Kanneltalon kesätaidekerhoon 2.–6.6.2025 klo 11–15!</p><p>Teemat ja tekniikat vaihtelevat kerrasta toiseen. Tarjolla on myös pientä välipalaa kaikille taidekerhoon osallistuville.<br> <br>Taidekerhon non-stop-toiminta on suunniteltu kesälomalla oleville alakouluikäisille, nuoremmat lapset ovat tervetulleita yhdessä aikuisen kanssa.</p><p><b>KESÄTAIDEKERHON VIIKKO-OHJELMA:</p><p>ma 2.6. klo 11–15 Pikimustan ja vitivalkoisen kohtaaminen</b><br>Pikimusta tussi ja vesi kohtaavat paperilla! Hengähdä hetki ja nauti, miten kauniisti tussi elää ja liikkuu paperilla.</p><p><b>ti 3.6. klo 11–15 Värjätty suola, katoava kuva</b><br>Värjäämme yhdessä suolaa liiduilla. Värisuolasta jokainen saa luoda omia herkkiä kuvioita, jotka ovat olemassa vain hetken. Mukaan sen saa vain valokuvaamalla!</p><p><b>ke 4.6. klo 11–15 Rei´itetty kuva </b><br>Rei’ittämällä kartonkikorttia nuppineulalla luomme herkän kuvan tai kuvion. Pistävä menetelmä!</p><p><b>to 5.6. klo 11–15 Kukan muotokuva</b><br>Tällä kerralla luonnostelemme kukkia piirtäen ja maalaten.</p><p><b>pe 6.6. klo 11–15 -- --- .. ..--. (MOI!)</b><br>Tehdään salainen viesti korulla! Morsetusaakkosten avulla saat kääntää vaikkapa oman nimesi sähkötyskielelle ja sitten tehdä sen helmillä koruun!</p><p>Ohjaajana kuvataiteilija Chloé Mahy-Hulkko <br>Opetuskielet: suomi, englanti, ranska</p><p>Vapaa pääsy</p>", "sv": "<p>Önskar du kreativ verksamhet under sommarlovet? Kom till Gamlasgårdens sommarkonstklubb!</p><p>Temana och teknikerna varierar från gång till gång. Det bjuds även på lite mellanmål för alla som deltar i konstklubben.<br> <br>Konstklubbens non-stop-verksamhet har planerats för elever i årskurs 1–6 som är på sommarlov, yngre barn är välkomna tillsammans med en vuxen.</p><p><b>VECKOPROGRAMMET FÖR SOMMARKONSTKLUBBEN<br>må 2.6 kl.11–15 Becksvart och kritvitt möts</b><br>Becksvart tusch och vatten möts på pappret! Andas en stund och njut av hur vackert tuschen lever och rör sig på pappret.</p><p>tis 3.6 kl.11–15 Färgat salt, flyktig bild</b><br>Tillsammans färgar vi salt med kritor. Av färgsaltet får vi skapa våra egna känsliga figurer som endast existerar en stund. Du kan ta med den endast på ett foto.</p><p><b>on 4.6 kl.11–15 Bild med hål</b> <br>Genom att sticka hål på ett kartongkort med en knappnål skapar vi en fin bild eller figur. En stickande metod!</p><p><b>to 5.6 kl.11–15 Porträtt av en blomma</b><br>Den här gången skissar vi blommor genom att teckna och måla.</p><p><b>fr 6.6 kl.11–15 -- --- .. ..--. (MOI!)</b><br>Vi gör ett hemligt meddelande med ett smycket. Med hjälp av morsealfabetet kan du översätta till exempel ditt namn till morsekod och använda pärlor för att göra ett smycke av det.</p><p>Instruktör bildkonstnär Chloé Mahy-Hulkko. <br>Undervisningsspråk: finska, engelska, franska <br> <br>Plats: Bibliotekets allaktivitetsrum Tempo/Galleriet <br>Fritt inträde</p>", "en": "<p>Do you need something creative to do during your summer break? Come to the summer art club at Kanneltalo!</p><p>We will explore different themes and techniques each time. Small snacks will be served to participants.<br> <br>The non-stop art club activities are intended for primary school children who are on summer break; younger children are welcome when accompanied by an adult.</p><p><b>SUMMER ART CLUB WEEKLY PROGRAMME</p><p>2.6. at 11–15 Pitch black and chalk white meet </b><br>Pitch black ink and water meet on paper! Take a moment to marvel at how gracefully the ink lives and moves on the paper.</p><p><b>3.6. at 11–15 Dyed Salt, Vanishing Image</b><br>We will learn how to colour salt with chalks. We will then use the tinted salts to create delicate patterns. Those ephemeral art pieces can´t be brought home, except by taking a picture.</p><p><b>4.6. at 11–15 Perforated Image</b><br>By perforating a card, we will create a beautiful pattern or a drawing. This is a sharp technique!</p><p><b>5.6. at 11–15 Portrait of a Flower</b><br>This time we will sketch flowers by drawing and painting.</p><p><b>6.6. at 11–15 -- --- .. ..--. (MOI!)</b><br>Write a secret message on your necklace! Using Morse code, you can translate, for example, the letters of your name, and write it with beads on a string!</p><p>Instructor: visual artist Chloé Mahy-Hulkko <br>Teaching languages: Finnish, English, French <br> <br>Location: Library multi-purpose room Tempo/Galleria <br>Free entry</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/212C7163229ADC95961431531F45E43D/Kanneltalon_maksuton_kesataidekerho_lapsille_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/212C7163229ADC95961431531F45E43D/Gamlasgardens_avgiftsfria_sommarkonstklubb_for_barn_", "en": "http://www.kanneltalo.fi/en/events/event/212C7163229ADC95961431531F45E43D/Free-of-charge_summer_art_club_for_children_at_Kanneltalo_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65854/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66287", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:01.162923Z", "last_modified_time": "2025-05-09T13:54:01.162941Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768376.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721904/?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-05-09T13:54:01.052203Z", "last_modified_time": "2025-05-09T13:54:01.328204Z", "date_published": null, "start_time": "2025-05-18T10: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": "Kulkijat – Lastenkulttuurin juhlaviikko", "sv": "Kulkijat (Resenärer) – Barnkulturveckan", "en": "Kulkijat (Travellers) – Children's Culture Week" }, "short_description": { "fi": "Värisevät varpaat-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.", "sv": "Det här uppträdandet har gjorts av 7–17-åriga elever från danskursen Värisevät varpaat.", "en": "This performance was created by the 7–17-year-old students of the Värisevät varpaat dance course." }, "description": { "fi": "<p>Värisevät varpaat-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Koko vuoden kuljimme eri paikoissa, kuljimme ajassa. Nyt kuljemme näyttämöllä. Ja kohta kuljemme taas eteenpäin. Näyttämöteoksen rinnalla syntyi kuvateos ”Kaiut ja kulkijat”. Se on nähtävissä Annantalon Gallerian näyttelyssä ”Huudetaanko?”.</p><p>Esitykset ke 14.5. klo 17.30 ja su 18.5. klo 13</p><p>Ohjaajat: Sanna Kuusisto ja Miila Vainio</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>", "sv": "<p>Det här uppträdandet har gjorts av 7–17-åriga elever från danskursen Värisevät varpaat.</p><p>Nu går vi på scenen. Och snart kommer vi att röra oss framåt igen. Parallellt med scenarbetet skapades det illustrerade verket ”Kaiut ja kulkijat”. Det kan ses i Annegårdens galleris utställning ”Huudetaanko?”.</p><p>Föreställningar ons 14.5 kl. 17.30 och sön 18.5 kl. 13.00</p><p>Regi: Sanna Kuusisto och Miila Vainio</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>", "en": "<p>This performance was created by the 7–17-year-old students of the Värisevät varpaat dance course.</p><p>Now we walk on stage. And soon we'll be moving forward again. Alongside the stage work, the illustrated work ‘Echoes and Travellers’ was created. It can be seen in the Annantalo Gallery's exhibition ‘Huudetaanko?’.</p><p>Performances Wed 14.5. at 17.30 and Sun 18.5. at 13</p><p>Directed by Sanna Kuusisto and Miila Vainio</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/947EC1B670C2D42DA87BDF6D87C3D865/Kulkijat", "sv": "http://www.annantalo.fi/sv/evenemang/event/947EC1B670C2D42DA87BDF6D87C3D865/Kulkijat_Resenarer_", "en": "http://www.annantalo.fi/en/events/event/947EC1B670C2D42DA87BDF6D87C3D865/Kulkijat_Travellers_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66287/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66291", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721903, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:00.181444Z", "last_modified_time": "2025-05-09T13:54:00.181466Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768377.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721903/?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-05-09T13:54:00.059821Z", "last_modified_time": "2025-05-09T13:54:00.358446Z", "date_published": null, "start_time": "2025-05-18T09: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": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Lastenkulttuurin juhlaviikko", "sv": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Barnkulturveckan", "en": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Children's Culture Week" }, "short_description": { "fi": "Andromeda-teatterikurssin 10-12-vuotiaat oppilaat ovat tehneet tämän esityksen.", "sv": "Det här uppträdandet har gjorts av 10–12-åriga elever från teaterkursen Andromeda.", "en": "This performance was created by the 10–12-year-old students of the Andromeda theatre course." }, "description": { "fi": "<p>Andromeda-teatterikurssin 10-12-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Mikä on lempiäänesi? Entä millainen ääni ärsyttää sinua? Millaisia ääneen liittyviä muistoja sinulla on? Esitys on syntynyt ääneen liittyvistä ajatuksista, muistoista ja keksityistä tilanteista.</p><p>Esitykset to 15.5. klo 17.30 ja su 18.5. klo 12</p><p>Ohjaaja: Karoliina Helminen</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>", "sv": "<p>Det här uppträdandet har gjorts av 10–12-åriga elever från teaterkursen Andromeda.</p><p>Vilken typ av ljud irriterar dig? Vad har du för ljudrelaterade minnen? Föreställningen föds ur tankar, minnen och fiktiva situationer som har med ljud att göra.</p><p>Föreställningar tors 15.5. kl. 17.30 och sön 18.5. kl. 12.00</p><p>Regi: Karoliina Helminen</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>", "en": "<p>This performance was created by the 10–12-year-old students of the Andromeda theatre course.</p><p>What kind of sound annoys you? What kind of sound-related memories do you have? The performance is born out of thoughts, memories and fictional situations related to sound.</p><p>Performances on Thu 15.5. at 17.30 and Sun 18.5. at 12.</p><p>Directed by Karoliina Helminen</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C4B826D4D49BB5BA6D8ED9FFF29724FF/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta", "sv": "http://www.annantalo.fi/sv/evenemang/event/C4B826D4D49BB5BA6D8ED9FFF29724FF/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta", "en": "http://www.annantalo.fi/en/events/event/C4B826D4D49BB5BA6D8ED9FFF29724FF/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66291/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66283", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721901, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:53:59.029156Z", "last_modified_time": "2025-05-09T13:53:59.029173Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768373.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721901/?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-05-09T13:53:58.910896Z", "last_modified_time": "2025-05-09T13:53:59.185360Z", "date_published": null, "start_time": "2025-05-17T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Aikatasku – Lastenkulttuurin juhlaviikko", "sv": "Aikatasku (Tidsficka) – Barnkulturveckan", "en": "Aikatasku (Time pocket) – Children's Culture Week" }, "short_description": { "fi": "Dancehearts-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.", "sv": "Det här uppträdandet har gjorts av eleverna i åldern 7–17 år från danskursen Dancehearts.", "en": "This performance was created by the 7–17-year-old students of the Dancehearts dance course." }, "description": { "fi": "<p>Dancehearts-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Valo kulkee kykloopin silmän kautta ja antiikin Kreikan mytologinen aika vyöryy nykyajan yli kuin meren aalto rantahiekkaan. Onko jokin muuttunut, kun ajan aalto vetäytyy?</p><p>Kun valmistimme esitystä, tutkimme antiikin Kreikan mytologiaa ja nykyajan nuorten tunnelmia. Tanssimme yhdessä niiden innostamina. Valmiissa teoksessa on mukana nykyajan kulkijoita, antiikin jumalia, seireenejä ja muita tarunomaisia hahmoja.</p><p>Esitykset ti 13.5. klo 18.30 ja la 17.5. klo 13<br>Ohjaajat: Sanna Kuusisto ja Annika Sarvela</p><p>Maksuton, ilmoittautuminen vaaditaan. Varaa paikat esitykseen tästä: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Lastenkulttuurin juhlaviikolla kuuluvat lasten ja nuorten äänet. Viikon aikana nähdään teatteri- ja tanssiesityksiä, joita Annantalon esittävien taiteiden kurssit ovat valmistaneet lukuvuoden aikana. Esitykset saavat ensi-iltansa juhlaviikolla.</p>", "sv": "<p>Det här uppträdandet har gjorts av eleverna i åldern 7–17 år från danskursen Dancehearts.</p><p>Dancehearts danskurs (7-17 år): Aikatasku - Tidsficka</p><p>Ljuset passerar genom cyklopens öga och den antika grekiska mytologiska tiden rullar över den moderna tiden som en våg på strandens sand. Har något förändrats när tidens våg drar sig tillbaka?</p><p>Vi utforskar mytologin i det antika Grekland och stämningen bland dagens unga. I verket möter vi nutida resenärer, antika gudar, sirener och andra mytiska figurer.</p><p>Föreställningar tis 13.5. kl. 18.30 och lör 17.5. kl. 13.00<br>Regi: Sanna Kuusisto och Annika Sarvela</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310.</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p><p>Det finns också separata endagsföreställningar för skolgrupper den 13-16 maj. Mer information: kultus.hel.fi</p><p>Lördagen den 17 maj, under den första pausen kl. 12.30, ordnas en guidad visning av elevutställningen ”Huudetaanko?” i Annegårdens galleri. Välkommen att följa med oss!</p>", "en": "<p>This performance was created by the 7–17-year-old students of the Dancehearts dance course.</p><p>Dancehearts dance class (7-17 year olds): Aikatasku - Time pocket</p><p>Light passes through the eye of the cyclops and ancient Greek mythological time rolls over modern times like a wave on the sand of the beach. Has something changed as the wave of time recedes?</p><p>We explore the mythology of ancient Greece and the mood of young people today. The work features modern-day travellers, ancient gods, sirens and other mythical characters.</p><p>Performances Tue 13.5. at 18.30 and Sat 17.5. at 13.00<br>Directed by Sanna Kuusisto and Annika Sarvela</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p><p>There are also separate performances for school groups on 13-16 May. Performances and registration via kultus.hel.fi.</p><p>On Saturday 17 May, during the first intermission at 12:30, a guided tour of the student work exhibition Huudetaanko? will take place in the Annantalo Gallery. Welcome to join us!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8F4150EDFF119A0D68B3C8793B21BD6D/Aikatasku", "sv": "http://www.annantalo.fi/sv/evenemang/event/8F4150EDFF119A0D68B3C8793B21BD6D/Aikatasku_Tidsficka_", "en": "http://www.annantalo.fi/en/events/event/8F4150EDFF119A0D68B3C8793B21BD6D/Aikatasku_Time_pocket_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66283/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }