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=207
{ "meta": { "count": 7034, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=208", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=206" }, "data": [ { "id": "kulke:61866", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7088, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T13:13:02.138175Z", "last_modified_time": "2024-02-06T13:23:27.526514Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736578.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7088/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T12:13:07.209635Z", "last_modified_time": "2024-04-05T17:13:57.165060Z", "date_published": null, "start_time": "2024-03-25T07:15:00Z", "end_time": "2024-03-25T08: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9D1EC21DA6130177F096F95A0514F9B6/Tanssi_ja_leikki", "sv": "http://www.caisa.fi/sv/evenemang/event/9D1EC21DA6130177F096F95A0514F9B6/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/9D1EC21DA6130177F096F95A0514F9B6/The_dance_and_play" }, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>", "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p>" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together." }, "location_extra_info": null, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek – Verkstaden", "en": "The dance and play – Workshop" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61866/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61560", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7190, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-15T14:13:12.109519Z", "last_modified_time": "2024-02-06T13:23:27.330507Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741280.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7190/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-15T14:13:12.095229Z", "last_modified_time": "2024-04-05T17:13:57.043588Z", "date_published": null, "start_time": "2024-03-24T12: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3D611F31EAADB053CBE7BB2B9F6DFCB4/Artefactos_Bascos_BATU", "sv": "http://www.annantalo.fi/sv/evenemang/event/3D611F31EAADB053CBE7BB2B9F6DFCB4/Artefactos_Bascos_BATU", "en": "http://www.annantalo.fi/en/events/event/3D611F31EAADB053CBE7BB2B9F6DFCB4/Artefactos_Bascos_BATU" }, "provider": null, "description": { "fi": "<p>LOPPUUNMYYTY! Karttoja? Polkuja? Teitä? Taloja? Kaupunkeja? B A T U -esityksessä lapsitaiteilijat pääsevät kokeilemaan mitä kaikkea suorista viivoista muodostuukaan.</p><p>Maalaa, taita, liimaa, liitä ja rakenna… Uteliaisuuden ja luovuuden saa päästä valloilleen! Yhdessä leikkien voidaan rakentaa ihan omanlaisia maailmoja.</p><p>Baskien kielessä, euskerassa, batu-verbin merkityksiä ovat muun muassa liittyä, lisätä, yhdistää, ryhmitellä, koota, kerätä ja kohdata. Verbi tulee alkujaan sanasta bat, joka tarkoittaa yhtä.</p><p>B A T U on valloittava linjojen, polkujen, risteyskohtien, tilojen, karttojen, rakenteiden, yhdistelmien ja löytöjen peli, jossa luovuus ja leikki kohtaavat.</p><p>Artefactos Bascos on muodostunut taiteilijan, esiintyjän, taidehistorioitsijan sekä graafisen suunnittelijan Ieltxu Ortuetan luomien teosten ympärille. Ortueta kehittää esitysprojekteja erityisesti lapsiyleisöille. Artefactos Bascos ajattelee lasta leikkikumppanina ja tekijänä vuorovaikutteisissa teoksissa, jotka liikkuvat kuvataiteen, performanssitaiteen ja epätyypillisten esitystilojen välillä.</p><p>Esitys on sanaton<br>Ikäsuositus: 2–8-vuotiaat<br>Kesto n. 50 min</p><p>Suunnittelu ja esiintyminen: Ieltxu Ortueta<br>Äänisuunnittelu: Gil Fuser<br>Tuotanto: Sendero Cultural / Adryela Rodrigues<br>Kuvat: Hussam Adin Hazimeh</p><p>Interaktiivinen e-kirja pelattavaksi:<br>https://issuu.com/artefactosbascos/docs/pt_batu_ebook</p>", "sv": "<p>SLUTSÅLD! Kartor? Stigar? Vägar? Hus? Städer? Under B A T U-föreställningen får barnkonstnärerna pröva på allt som kan bildas av raka linjer.</p><p>Måla, vik, limma, sammanfoga och bygg... Nyfikenheten och kreativiteten får råda! Genom gemensam lek kan man bygga helt egna världar.</p>", "en": "<p>SOLD OUT! Maps? Paths? Roads? Houses? Cities? The performance B A T U starts from the experimentation of the straight line and its multiplication to discover unique creations with children-artists.</p><p>Join, add, unite, group, assemble, collect and meet are some of the meanings of the verb batu in euskera, the language of the Basques. Etymologically the verb comes from bat, which means one. <br> <br>B A T U is a great game of lines, paths, intersections, spaces, maps, constructions, combinations and discoveries, where creativity and play meet. A simple shape, the rectangle, invites child artists to JOIN together to create. B A T U is a collective happening for the whole family.<br> <br>Artefactos Bascos is a multidisciplinary platform founded by artist, performer, art historian and graphic designer Ieltxu Ortueta. It develops scenic, graphic and performance projects, with a focus on young audiences. Artefactos Bascos thinks of the child as a partner in play and co-creator in interactive works, which move between visual arts, performance art and non-conventional performative spaces.</p><p>Non-verbal<br>Age recommendation: 2–8 years<br>Duration: approx. 50 min<br> <br>Creation, performance and playing space: Ieltxu Ortueta<br>Sound creation: Gil Fuser<br>Production: Sendero Cultural / Adryela Rodrigues<br>Photos: Hussam Adin Hazimeh<br>Performance related workshop B A T U Lab. also available.<br> <br>Interactive e-book to play:<br>https://issuu.com/artefactosbascos/docs/pt_batu_ebook</p>" }, "short_description": { "fi": "LOPPUUNMYYTY! Karttoja? Polkuja? Teitä? Taloja? Kaupunkeja? B A T U -esityksessä lapsitaiteilijat pääsevät kokeilemaan mitä kaikkea suorista viivoista muodostuukaan.", "sv": "SLUTSÅLD! Kartor? Stigar? Vägar? Hus? Städer? Under B A T U-föreställningen får barnkonstnärerna pröva på allt som kan bildas av raka linjer.", "en": "SOLD OUT! Maps? Paths? Roads? Houses? Cities? The performance B A T U starts from the experimentation of the straight line and its multiplication to discover unique creations with children-artists." }, "location_extra_info": null, "name": { "fi": "Artefactos Bascos: BATU – Bravo!-festivaali", "sv": "Artefactos Bascos: BATU – Bravo! Festivalen", "en": "Artefactos Bascos: BATU – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61560/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61559", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-batu-3558659/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7189, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-15T14:13:11.991773Z", "last_modified_time": "2024-02-06T13:23:27.239132Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741279.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7189/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-15T14:13:11.971850Z", "last_modified_time": "2024-04-05T17:13:56.971196Z", "date_published": null, "start_time": "2024-03-24T10: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D6E536CD6C85BDEA52E442E06E4EB562/Artefactos_Bascos_BATU", "sv": "http://www.annantalo.fi/sv/evenemang/event/D6E536CD6C85BDEA52E442E06E4EB562/Artefactos_Bascos_BATU", "en": "http://www.annantalo.fi/en/events/event/D6E536CD6C85BDEA52E442E06E4EB562/Artefactos_Bascos_BATU" }, "provider": null, "description": { "fi": "<p>LOPPUUNMYYTY! Karttoja? Polkuja? Teitä? Taloja? Kaupunkeja? B A T U -esityksessä lapsitaiteilijat pääsevät kokeilemaan mitä kaikkea suorista viivoista muodostuukaan.</p><p>Maalaa, taita, liimaa, liitä ja rakenna… Uteliaisuuden ja luovuuden saa päästä valloilleen! Yhdessä leikkien voidaan rakentaa ihan omanlaisia maailmoja.</p><p>Baskien kielessä, euskerassa, batu-verbin merkityksiä ovat muun muassa liittyä, lisätä, yhdistää, ryhmitellä, koota, kerätä ja kohdata. Verbi tulee alkujaan sanasta bat, joka tarkoittaa yhtä.</p><p>B A T U on valloittava linjojen, polkujen, risteyskohtien, tilojen, karttojen, rakenteiden, yhdistelmien ja löytöjen peli, jossa luovuus ja leikki kohtaavat.</p><p>Artefactos Bascos on muodostunut taiteilijan, esiintyjän, taidehistorioitsijan sekä graafisen suunnittelijan Ieltxu Ortuetan luomien teosten ympärille. Ortueta kehittää esitysprojekteja erityisesti lapsiyleisöille. Artefactos Bascos ajattelee lasta leikkikumppanina ja tekijänä vuorovaikutteisissa teoksissa, jotka liikkuvat kuvataiteen, performanssitaiteen ja epätyypillisten esitystilojen välillä.</p><p>Esitys on sanaton<br>Ikäsuositus: 2–8-vuotiaat<br>Kesto n. 50 min</p><p>Suunnittelu ja esiintyminen: Ieltxu Ortueta<br>Äänisuunnittelu: Gil Fuser<br>Tuotanto: Sendero Cultural / Adryela Rodrigues<br>Kuvat: Hussam Adin Hazimeh</p><p>Interaktiivinen e-kirja pelattavaksi:<br>https://issuu.com/artefactosbascos/docs/pt_batu_ebook</p>", "sv": "<p>SLUTSÅLD! Kartor? Stigar? Vägar? Hus? Städer? Under B A T U-föreställningen får barnkonstnärerna pröva på allt som kan bildas av raka linjer.</p><p>Måla, vik, limma, sammanfoga och bygg... Nyfikenheten och kreativiteten får råda! Genom gemensam lek kan man bygga helt egna världar.</p>", "en": "<p>SOLD OUT! Maps? Paths? Roads? Houses? Cities? The performance B A T U starts from the experimentation of the straight line and its multiplication to discover unique creations with children-artists.</p><p>Join, add, unite, group, assemble, collect and meet are some of the meanings of the verb batu in euskera, the language of the Basques. Etymologically the verb comes from bat, which means one. <br> <br>B A T U is a great game of lines, paths, intersections, spaces, maps, constructions, combinations and discoveries, where creativity and play meet. A simple shape, the rectangle, invites child artists to JOIN together to create. B A T U is a collective happening for the whole family.<br> <br>Artefactos Bascos is a multidisciplinary platform founded by artist, performer, art historian and graphic designer Ieltxu Ortueta. It develops scenic, graphic and performance projects, with a focus on young audiences. Artefactos Bascos thinks of the child as a partner in play and co-creator in interactive works, which move between visual arts, performance art and non-conventional performative spaces.</p><p>Non-verbal<br>Age recommendation: 2–8 years<br>Duration: approx. 50 min<br> <br>Creation, performance and playing space: Ieltxu Ortueta<br>Sound creation: Gil Fuser<br>Production: Sendero Cultural / Adryela Rodrigues<br>Photos: Hussam Adin Hazimeh<br>Performance related workshop B A T U Lab. also available.<br> <br>Interactive e-book to play:<br>https://issuu.com/artefactosbascos/docs/pt_batu_ebook</p>" }, "short_description": { "fi": "LOPPUUNMYYTY! Karttoja? Polkuja? Teitä? Taloja? Kaupunkeja? B A T U -esityksessä lapsitaiteilijat pääsevät kokeilemaan mitä kaikkea suorista viivoista muodostuukaan.", "sv": "SLUTSÅLD! Kartor? Stigar? Vägar? Hus? Städer? Under B A T U-föreställningen får barnkonstnärerna pröva på allt som kan bildas av raka linjer.", "en": "SOLD OUT! Maps? Paths? Roads? Houses? Cities? The performance B A T U starts from the experimentation of the straight line and its multiplication to discover unique creations with children-artists." }, "location_extra_info": null, "name": { "fi": "Artefactos Bascos: BATU – Bravo!-festivaali", "sv": "Artefactos Bascos: BATU – Bravo! Festivalen", "en": "Artefactos Bascos: BATU – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61559/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61938", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131812/", "sv": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131812/", "en": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131812/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7227, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-17T14:13:00.501716Z", "last_modified_time": "2024-02-06T13:23:26.962334Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739241.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7227/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-17T14:13:00.482858Z", "last_modified_time": "2024-04-05T17:13:56.661192Z", "date_published": null, "start_time": "2024-03-23T13: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/12078E6DECA1FE73CDE0B6C35BABD952/NYXXX_Kuuntele_kuinka_hiljaista_SWE_", "sv": "http://www.stoa.fi/sv/evenemang/event/12078E6DECA1FE73CDE0B6C35BABD952/NYXXX_Hor_sa_tyst_det_ar_SWE_", "en": "http://www.stoa.fi/en/events/event/12078E6DECA1FE73CDE0B6C35BABD952/NYXXX_Listen_how_quiet_SWE_" }, "provider": null, "description": { "fi": "<p>Miltä kuulostaa putoava hiekanjyvä? Voiko muovin rapina kuulostaa räiskyvältä tulelta? Hör så tyst det är – Kuuntele kuinka hiljaista -esityksessä on mahdollisuus tutustua ääniteknologiaan ja luoda itse musiikkia.</p><p>Se on myös tarina etäystävyydestä.</p><p>Yleisö käyttää kuulokkeita koko esityksen ajan ja saa olla mukana luomassa esityksen ääniä. Tutkiessamme, mitä ääni voi olla ja mitä äänet voivat kertoa, saamme käyttää mielikuvitustamme ja kuunteluamme ihan uudella tavalla. Esityksen tavoitteena on tarjota yleisölle osallistumisen ja tutkimisen tunne: kuuntelemista harjoittamalla ymmärrämme toisiamme paremmin ja saamme yhteyden muihin.</p><p>Ruotsalainen esittävän taiteen kollektiivi Nyxxx on vuodesta 2010 lähtien luonut esityksiä, pelejä ja ääni-installaatioita, joissa yleisö on ratkaisevassa osassa. Nyxxxin töitä on nähty muun muassa Unga Dramatenissa, Uppsala Stadsteaterissa, Teater Västernorrlandissa ja bibu-festivaalilla. Esitys on tehty yhteistyössä Regionteatern Blekinge Kronobergin kanssa.</p><p>Konsepti: Nyxxx<br>Esiintyjät: Ebba Petrén and Jannie Östergren. Finnish performer tba.<br>Teksti: Tova Gerge<br>Ohjaajat: Ebba Petrén and Gabriel Widing<br>Lavastus: Sofia Romberg<br>Valosuunnittelu: Kerstin Weimers<br>Äänisuunnittelu: and musical composition Elize Arvefjord<br>Kiertueteknikko: Tba.<br>Lavasterakennus: The workshops of Regionteatern Blekinge Kronoberg</p><p>Kieli: ruotsi / suomi<br>Ikäsuositus 9–12-vuotiaat<br>Kesto: n. 50 min</p>", "sv": "<p>Hur låter ett fallande sandkorn? Kan skrapandet av plast låta som en knastrande brasa? Hör så tyst det är ger möjlighet att ta del av ljudteknik och själv skapa musik.</p><p>Det är också en berättelse om distansvänskap.</p><p>Publiken använder hörlurar under hela föreställningen och får vara med om att skapa föreställningens ljud.</p>", "en": "<p>Hör så tyst set är – Listen, how quiet is a chance to get familiar with sound technology and through an own, unique experience understand and create music.</p><p>What is the sound of a grain of sand falling against a barrel? Can the rustle of plastic feel like a crackling fire?</p><p>Julia is a silence musician. She makes music with very small sounds. Julia’s best friend Dunja, the Arctic Ocean scientist, is far out at sea. Dunja is sending things she finds in the ocean to Julia, who collects them in a sound archive. With the help of the audience and the archive, a roaring undulating headphone show is created.</p><p>“Listen, how quiet” is a chance to get familiar with sound technology and through an own, unique experience understand and create music. It is also a story about friendship at a distance. All audience members wear headphones during the whole performance and get to be a part of creating the sounds. In this exploration of what sound can be and what the sounds can tell, we get to use our imagination and our listening in a new way. The performance aims to offer the audience a sensation of contributing and researching. Through practicing listening, we become better at understanding and connecting to others.</p><p>Since 2010, the Swedish performing arts collective Nyxxx has created performances, games and sound installations where the actions of the audience make all the difference. Their works have been displayed in venues such as Unga Dramaten, Uppsala Stadsteater, Teater Västernorrland and bibu-festival. “Listen, how quiet” was made in cooperation with Regionteatern Blekinge Kronoberg.</p><p>Concept: Nyxxx<br>Performers: Ebba Petrén and Jannie Östergren. Finnish performer tba.<br>Text: Tova Gerge<br>Directors: Ebba Petrén and Gabriel Widing<br>Set design: Sofia Romberg<br>Light design: Kerstin Weimers<br>Sound design: and musical composition Elize Arvefjord<br>Technician on tour: Tba.<br>Carpentry and construction: The workshops of Regionteatern Blekinge Kronoberg</p><p>Language: Swedish/Finnish<br>Age recommendation: Children between 9-12 years<br>Duration: approx. 1 h</p>" }, "short_description": { "fi": "Miltä kuulostaa putoava hiekanjyvä? Voiko muovin rapina kuulostaa räiskyvältä tulelta? Hör så tyst det är – Kuuntele kuinka hiljaista -esityksessä on mahdollisuus tutustua ääniteknologiaan ja luoda itse musiikkia.", "sv": "Hur låter ett fallande sandkorn? Kan skrapandet av plast låta som en knastrande brasa? Hör så tyst det är ger möjlighet att ta del av ljudteknik och själv skapa musik.", "en": "Hör så tyst set är – Listen, how quiet is a chance to get familiar with sound technology and through an own, unique experience understand and create music." }, "location_extra_info": null, "name": { "fi": "NYXXX: Kuuntele kuinka hiljaista (SWE) – Bravo!-festivaali", "sv": "NYXXX: Hör så tyst det är (SWE) – Bravo! Festivalen", "en": "NYXXX: Listen, how quiet (SWE) – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61938/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61903", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-wes-peden-rollercoaster-3562406/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-wes-peden-rollercoaster-3562406/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-wes-peden-rollercoaster-3562406/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7153, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-12T11:13:52.394796Z", "last_modified_time": "2024-02-06T13:23:26.872529Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739351.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7153/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-12T11:13:52.344270Z", "last_modified_time": "2024-04-05T17:13:56.591764Z", "date_published": null, "start_time": "2024-03-23T13: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/03C4E2935B66E0861EBD175F6E3A2762/LOPPUUNMYYTY_Wes_Peden_-_Rollercoaster", "sv": "http://www.vuotalo.fi/sv/evenemang/event/03C4E2935B66E0861EBD175F6E3A2762/SLUTSALD_Wes_Peden_-_Rollercoaster", "en": "http://www.vuotalo.fi/en/events/event/03C4E2935B66E0861EBD175F6E3A2762/SOLD_OUT_Wes_Peden_-_Rollercoaster" }, "provider": null, "description": { "fi": "<p>Ultramodernia pop-punk-jongleerausta!</p><p>Rollercoaster on jonglööri Wes Pedenin uusi sooloteos. Energinen, huipputaitava ja leikkisä esitys on saanut inspiraationsa vuoristoradoista. Vääristyneistä vuoristorataäänistä sävellettyjen elektrobiittien siivittämä teos on myös kunnianosoitus menneiden aikojen vuoristoratakyydeille. Rollercoaster venyttää teatterin sääntöjä ja omaperäiset temput edustavat ehkä ihmeellisintä koskaan nähtyä jongleerausta.</p><p>Useilla kansainvälisillä palkinnoilla huomioitu yhdysvaltalainen Wes Peden on lapsuudesta asti tutkinut painovoimaa ja mahdollisuuksia haastaa se. Hän on valmistunut Tukholman taideyliopistosta ja ammattiurallaan esiintynyt jo 25 maassa Japanista Islantiin, olympiastadioneilta Broadway-teattereihin.</p><p>Ohjaus ja esiintyminen: Wes Peden<br>Musiikin sävellys: Alkuperäismusiikki Mika Forsling<br>Lavastus: puhallettavat rakenteet Félix Chameroy<br>Valosuunnittelu: Vilhelm Montán Lindberg, Joel Johansson & Zoe Hunn<br>Valo- ja ääniajo: Florence Schroeder<br>Puvustus: Maria Peterson<br>Outside eye: Viktor Gyllenberg and Florence Huet<br>Hallinto ja kiertuevaraukset: Gandini Juggling<br>Rollercoaster-esityksen ovat tuottaneet Wes Peden ja Gandini Juggling<br>Rahoittajat: Tukholman kaupunki ja Konstnärsnämndens, Ruotsi<br>Tukijat: Subtopia, Burnt Out Punks ja Cirkusflätan, Ruotsi</p><p>Kesto 60 min<br>Ikäsuositus: 8+<br>Kieli: sanaton/suomi</p>", "sv": "<p>Ultramodern pop-punk jonglering!</p><p>Rollercoaster är jonglör Wes Pedens nya soloverk. Den energiska, utomordentligt skickliga och lekfulla föreställningen har fått sin inspiration från berg- och dalbanorna. Verket, som får sin musik av elektrobeat från förvrängda berg- och dalbanaljud, är också en hyllning till berg- och dalbanorna från förr i tiden.</p>", "en": "<p>Ultra-modern pop-punk juggling!</p><p>Wes Peden performs original tricks inspired by rollercoasters and their high-tech seatbelts. Rollercoaster twists theatrical rules to create a safe space place to perform some of the most difficult and unique juggling ever done on stage.</p><p>Surrounded by huge inflatable blue structures and accompanied by electro beats composed of distorted rollercoaster sounds, Wes Peden performs original tricks inspired by rollercoasters and their high-tech seatbelts. A spinning plate ceremony becomes a celebration of the great rides of the past; an epic 3 ball disco juggling evokes the evolution of rollercoasters; a 4-meter transparent tube turns into a path around Wes’ body to make balls flow through loops, helixes, and corkscrews.</p><p>Rollercoaster twists theatrical rules to create a safe space place to perform some of the most difficult and unique juggling ever done on stage!</p><p>Wes has performed around the world from Olympic stadiums in Tokyo to Broadway theatres in NYC and Glacier Museums in Iceland. His energetic, playful and complex style has won awards from the International Juggling Association and Cirque de Demain. Wes uses the skills he has honed from the age of 5 to twist gravity into the most beautiful knots physics will allow.</p><p>Direction & performance: Wes Peden<br>Music: Original music by Mika Forsling<br>Set design: inflatable structures by Félix Chameroy<br>Lighting Design: Vilhelm Montán Lindberg, Joel Johansson & Zoe Hunn<br>Lighting and sound operator: Florence Schroeder<br>Costumes: Maria Peterson<br>Outside eye: Viktor Gyllenberg and Florence Huet<br>Admin and tour booking: Gandini Juggling<br>Rollercoaster is produced by Wes Peden and Gandini Juggling<br>Funded by: Stockholms Stad and Konstnärsnämndens, Sweden<br>With the support of: Subtopia, Burnt Out Punks and Cirkusflätan, Sweden</p><p>Duration: 60 minutes<br>Age range: 8+<br>Language: Finnish</p>" }, "short_description": { "fi": "Ultramodernia pop-punk-jongleerausta!", "sv": "Ultramodern pop-punk jonglering!", "en": "Ultra-modern pop-punk juggling!" }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Wes Peden - Rollercoaster – Bravo!-festivaali", "sv": "SLUTSÅLD Wes Peden - Rollercoaster – Bravo! Festivalen", "en": "SOLD OUT Wes Peden - Rollercoaster – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61903/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63043", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10604, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-07T12:13:05.566600Z", "last_modified_time": "2024-02-07T12:13:05.566622Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743765.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10604/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-02-07T12:13:05.522664Z", "last_modified_time": "2024-04-05T17:13:56.486618Z", "date_published": null, "start_time": "2024-03-23T10:00:00Z", "end_time": "2024-03-23T12: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EB076BDAA723D387C1DD157BEB903E46/Vuotalon_ilmiomainen_paasiainen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EB076BDAA723D387C1DD157BEB903E46/Nordhusets_fenomenala_pask", "en": "http://www.vuotalo.fi/en/events/event/EB076BDAA723D387C1DD157BEB903E46/Exciting_Easter_at_Vuosaari_House" }, "provider": null, "description": { "fi": "<p>Tule mukaan ilmiömäisen teatterin pyörteisiin Vuotalolle!</p><p>TAPAHTUMAN OHJELMA</p><p>Klo 12 Puvusto ja valo- ja videokuvausseinä avautuu (Vuotalon aulassa).<br> Puvusto: Teatterimuseon käyttökokoelma ja Teatteri ILMI Ö.<br>Klo 12 Maskeerauspiste sekä Unelmien korttipaja avautuu (K-kerroksen Pikkusalissa)<br>Klo 12.30 Teatterikoulu ILMI Ö:n oppilaat esiintyvät (K-kerroksen Pikkusalissa)<br>Klo 13 Teatterikoulu ILMI Ö:n runobongarit esiintyvät (Vuotalon aulassa)<br>Klo 13.30 Teatterikoulu ILMI Ö:n oppilaat esiintyvät (K-kerroksen Pikkusalissa)</p><p>Lisäksi koko tapahtuman ajan Teatterikoulu ILMI Ö:n oppilaita voi nähdä Vuotalon aulassa ja Pikkusalissa tekemässä pieniä performansseja. Teatteri ILMI Ö:n ja Teatterikoulu ILMI Ö:n henkilökunta ohjaa myös sopivin ajankohdin mukavia teatterileikkejä ja -harjoituksia, joihin jokainen pääsee osallistumaan halutessaan.</p><p>Vuotalon aulassa on myös piste, josta saa lisätietoa Teatteri ILMI Ö:stä ja Teatterikoulu ILMI Ö:stä sekä Teatterimuseon tulevasta perhepäivästä.</p><p>Yhteistyössä: Vuotalo, Teatteri ILMI Ö., Teatterikoulu ILMI Ö., Bravo-festivaali sekä Teatterimuseon käyttökokoelma</p><p>Vapaa pääsy, tervetuloa!</p>", "sv": "<p>Kom med i teaterns fenomenala virvlar på Nordhuset!</p><p>Nordhuset får ett smink- och kostymställe där du kan omvandlas till din drömfigur! Vid fotograferingsväggen kan du ta roliga bilder och videor av de fantastiska skapelserna.</p><p>Även ordsamlare går omkring i Nordhuset – du får skapa kollektiva dikter! Dikterna publiceras på diktscenen.</p><p>Även föreställningar av elever i Teatterikoulu ILMI Ö. och gemensamma teaterlekar som alla kan delta i utlovas.</p><p>I samarbete: Nordhuset, Teatteri ILMI Ö., Teatterikoulu ILMI Ö., Bravo!-festivalen och Teatermuseets brukssamling</p>", "en": "<p>Come and see phenomenal theatre and join our work shops at Vuosaari House!</p><p>Featuring a makeup and clothing section – become your dream character! Take fun photos and videos of your fantastic creations on the photo wall.</p><p>Word collectors will also be making their rounds at Vuosaari House – be a part of collective poetry! These poems will be published at the poetry stage.</p><p>The Easter event also features Theatre School ILMI Ö student shows and theatre games that everyone can participate in.</p><p>In cooperation with: Vuosaari House, the ILMI Ö Theatre., Theatre School ILMI Ö., Bravo festival, and the working collection of the Theatre Museum</p>" }, "short_description": { "fi": "Tule mukaan ilmiömäisen teatterin pyörteisiin Vuotalolle!", "sv": "Kom med i teaterns fenomenala virvlar på Nordhuset!", "en": "Come and see phenomenal theatre and join our work shops at Vuosaari House!" }, "location_extra_info": null, "name": { "fi": "Vuotalon ilmiömäinen pääsiäinen", "sv": "Nordhusets fenomenala påsk", "en": "Exciting Easter at Vuosaari House" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63043/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61937", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7226, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-17T14:13:00.298010Z", "last_modified_time": "2024-02-06T13:23:26.414877Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739240.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7226/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-17T14:13:00.284563Z", "last_modified_time": "2024-04-05T17:13:56.082097Z", "date_published": null, "start_time": "2024-03-22T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/814C7106903789A6384050CA893AE09C/NYXXX_Hor_sa_tyst_det_ar_SWE_", "sv": "http://www.stoa.fi/sv/evenemang/event/814C7106903789A6384050CA893AE09C/NYXXX_Hor_sa_tyst_det_ar_SWE_", "en": "http://www.stoa.fi/en/events/event/814C7106903789A6384050CA893AE09C/NYXXX_Listen_how_quiet_SWE_" }, "provider": null, "description": { "fi": "<p>Miltä kuulostaa putoava hiekanjyvä? Voiko muovin rapina kuulostaa räiskyvältä tulelta? Hör så tyst det är – Kuuntele kuinka hiljaista -esityksessä on mahdollisuus tutustua ääniteknologiaan ja luoda itse musiikkia.</p><p>Se on myös tarina etäystävyydestä.</p><p>Yleisö käyttää kuulokkeita koko esityksen ajan ja saa olla mukana luomassa esityksen ääniä. Tutkiessamme, mitä ääni voi olla ja mitä äänet voivat kertoa, saamme käyttää mielikuvitustamme ja kuunteluamme ihan uudella tavalla. Esityksen tavoitteena on tarjota yleisölle osallistumisen ja tutkimisen tunne: kuuntelemista harjoittamalla ymmärrämme toisiamme paremmin ja saamme yhteyden muihin.</p><p>Ruotsalainen esittävän taiteen kollektiivi Nyxxx on vuodesta 2010 lähtien luonut esityksiä, pelejä ja ääni-installaatioita, joissa yleisö on ratkaisevassa osassa. Nyxxxin töitä on nähty muun muassa Unga Dramatenissa, Uppsala Stadsteaterissa, Teater Västernorrlandissa ja bibu-festivaalilla. Esitys on tehty yhteistyössä Regionteatern Blekinge Kronobergin kanssa.</p><p>Konsepti: Nyxxx<br>Esiintyjät: Ebba Petrén and Jannie Östergren. Finnish performer tba.<br>Teksti: Tova Gerge<br>Ohjaajat: Ebba Petrén and Gabriel Widing<br>Lavastus: Sofia Romberg<br>Valosuunnittelu: Kerstin Weimers<br>Äänisuunnittelu: and musical composition Elize Arvefjord<br>Kiertueteknikko: Tba.<br>Lavasterakennus: The workshops of Regionteatern Blekinge Kronoberg</p><p>Kieli: ruotsi<br>Ikäsuositus 9–12-vuotiaat<br>Kesto: n. 50 min</p><p>Ilmoittautumiset osoitteessa https://kultus.fi/ <br>Huom! Osallistujat arvotaan ilmoittautuneiden joukosta.</p>", "sv": "<p>Hur låter ett fallande sandkorn? Kan skrapandet av plast låta som en knastrande brasa? Hör så tyst det är ger möjlighet att ta del av ljudteknik och själv skapa musik.</p><p>Det är också en berättelse om distansvänskap.</p><p>Publiken använder hörlurar under hela föreställningen och får vara med om att skapa föreställningens ljud.</p><p>Språk: svenska</p>", "en": "<p>Hör så tyst set är – Listen, how quiet is a chance to get familiar with sound technology and through an own, unique experience understand and create music.</p><p>What is the sound of a grain of sand falling against a barrel? Can the rustle of plastic feel like a crackling fire?</p><p>Julia is a silence musician. She makes music with very small sounds. Julia’s best friend Dunja, the Arctic Ocean scientist, is far out at sea. Dunja is sending things she finds in the ocean to Julia, who collects them in a sound archive. With the help of the audience and the archive, a roaring undulating headphone show is created.</p><p>“Listen, how quiet” is a chance to get familiar with sound technology and through an own, unique experience understand and create music. It is also a story about friendship at a distance. All audience members wear headphones during the whole performance and get to be a part of creating the sounds. In this exploration of what sound can be and what the sounds can tell, we get to use our imagination and our listening in a new way. The performance aims to offer the audience a sensation of contributing and researching. Through practicing listening, we become better at understanding and connecting to others.</p><p>Since 2010, the Swedish performing arts collective Nyxxx has created performances, games and sound installations where the actions of the audience make all the difference. Their works have been displayed in venues such as Unga Dramaten, Uppsala Stadsteater, Teater Västernorrland and bibu-festival. “Listen, how quiet” was made in cooperation with Regionteatern Blekinge Kronoberg.</p><p>Concept: Nyxxx<br>Performers: Ebba Petrén and Jannie Östergren. Finnish performer tba.<br>Text: Tova Gerge<br>Directors: Ebba Petrén and Gabriel Widing<br>Set design: Sofia Romberg<br>Light design: Kerstin Weimers<br>Sound design: and musical composition Elize Arvefjord<br>Technician on tour: Tba.<br>Carpentry and construction: The workshops of Regionteatern Blekinge Kronoberg</p><p>Language: Swedish<br>Age recommendation: Children between 9-12 years<br>Duration: approx. 1 h</p>" }, "short_description": { "fi": "Miltä kuulostaa putoava hiekanjyvä? Voiko muovin rapina kuulostaa räiskyvältä tulelta? Hör så tyst det är – Kuuntele kuinka hiljaista -esityksessä on mahdollisuus tutustua ääniteknologiaan ja luoda itse musiikkia.", "sv": "Hur låter ett fallande sandkorn? Kan skrapandet av plast låta som en knastrande brasa? Hör så tyst det är ger möjlighet att ta del av ljudteknik och själv skapa musik.", "en": "Hör så tyst set är – Listen, how quiet is a chance to get familiar with sound technology and through an own, unique experience understand and create music." }, "location_extra_info": null, "name": { "fi": "NYXXX: Hör så tyst det är (SWE) – ruotsiksi koululaisryhmille osana Bravo!-festivaalia", "sv": "NYXXX: Hör så tyst det är (SWE) – Bravo! Festivalen", "en": "NYXXX: Listen, how quiet (SWE) – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61937/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61936", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7225, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-17T14:13:00.177835Z", "last_modified_time": "2024-02-06T13:23:26.321476Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739239.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7225/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-17T14:13:00.143904Z", "last_modified_time": "2024-04-05T17:13:56.024998Z", "date_published": null, "start_time": "2024-03-22T08: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E8F37C03CBC67FD68E01B631C66613A9/NYXXX_Kuuntele_kuinka_hiljaista_SWE_", "sv": "http://www.stoa.fi/sv/evenemang/event/E8F37C03CBC67FD68E01B631C66613A9/NYXXX_Hor_sa_tyst_det_ar_SWE_", "en": "http://www.stoa.fi/en/events/event/E8F37C03CBC67FD68E01B631C66613A9/NYXXX_Listen_how_quiet_SWE_" }, "provider": null, "description": { "fi": "<p>Miltä kuulostaa putoava hiekanjyvä? Voiko muovin rapina kuulostaa räiskyvältä tulelta? Hör så tyst det är – Kuuntele kuinka hiljaista -esityksessä on mahdollisuus tutustua ääniteknologiaan ja luoda itse musiikkia.</p><p>Se on myös tarina etäystävyydestä.</p><p>Yleisö käyttää kuulokkeita koko esityksen ajan ja saa olla mukana luomassa esityksen ääniä. Tutkiessamme, mitä ääni voi olla ja mitä äänet voivat kertoa, saamme käyttää mielikuvitustamme ja kuunteluamme ihan uudella tavalla. Esityksen tavoitteena on tarjota yleisölle osallistumisen ja tutkimisen tunne: kuuntelemista harjoittamalla ymmärrämme toisiamme paremmin ja saamme yhteyden muihin.</p><p>Ruotsalainen esittävän taiteen kollektiivi Nyxxx on vuodesta 2010 lähtien luonut esityksiä, pelejä ja ääni-installaatioita, joissa yleisö on ratkaisevassa osassa. Nyxxxin töitä on nähty muun muassa Unga Dramatenissa, Uppsala Stadsteaterissa, Teater Västernorrlandissa ja bibu-festivaalilla. Esitys on tehty yhteistyössä Regionteatern Blekinge Kronobergin kanssa.</p><p>Konsepti: Nyxxx<br>Esiintyjät: Ebba Petrén and Jannie Östergren. Finnish performer tba.<br>Teksti: Tova Gerge<br>Ohjaajat: Ebba Petrén and Gabriel Widing<br>Lavastus: Sofia Romberg<br>Valosuunnittelu: Kerstin Weimers<br>Äänisuunnittelu: and musical composition Elize Arvefjord<br>Kiertueteknikko: Tba.<br>Lavasterakennus: The workshops of Regionteatern Blekinge Kronoberg</p><p>Kieli: suomi<br>Ikäsuositus 9–12-vuotiaat<br>Kesto: n. 50 min</p><p>Ilmoittautumiset osoitteessa https://kultus.fi/ <br>Huom! Osallistujat arvotaan ilmoittautuneiden joukosta.</p>", "sv": "<p>Hur låter ett fallande sandkorn? Kan skrapandet av plast låta som en knastrande brasa? Hör så tyst det är ger möjlighet att ta del av ljudteknik och själv skapa musik.</p><p>Det är också en berättelse om distansvänskap.</p><p>Publiken använder hörlurar under hela föreställningen och får vara med om att skapa föreställningens ljud.</p><p>Språk: finska</p>", "en": "<p>Hör så tyst set är – Listen, how quiet is a chance to get familiar with sound technology and through an own, unique experience understand and create music.</p><p>What is the sound of a grain of sand falling against a barrel? Can the rustle of plastic feel like a crackling fire?</p><p>Julia is a silence musician. She makes music with very small sounds. Julia’s best friend Dunja, the Arctic Ocean scientist, is far out at sea. Dunja is sending things she finds in the ocean to Julia, who collects them in a sound archive. With the help of the audience and the archive, a roaring undulating headphone show is created.</p><p>“Listen, how quiet” is a chance to get familiar with sound technology and through an own, unique experience understand and create music. It is also a story about friendship at a distance. All audience members wear headphones during the whole performance and get to be a part of creating the sounds. In this exploration of what sound can be and what the sounds can tell, we get to use our imagination and our listening in a new way. The performance aims to offer the audience a sensation of contributing and researching. Through practicing listening, we become better at understanding and connecting to others.</p><p>Since 2010, the Swedish performing arts collective Nyxxx has created performances, games and sound installations where the actions of the audience make all the difference. Their works have been displayed in venues such as Unga Dramaten, Uppsala Stadsteater, Teater Västernorrland and bibu-festival. “Listen, how quiet” was made in cooperation with Regionteatern Blekinge Kronoberg.</p><p>Concept: Nyxxx<br>Performers: Ebba Petrén and Jannie Östergren. Finnish performer tba.<br>Text: Tova Gerge<br>Directors: Ebba Petrén and Gabriel Widing<br>Set design: Sofia Romberg<br>Light design: Kerstin Weimers<br>Sound design: and musical composition Elize Arvefjord<br>Technician on tour: Tba.<br>Carpentry and construction: The workshops of Regionteatern Blekinge Kronoberg</p><p>Language: Finnish<br>Age recommendation: Children between 9-12 years<br>Duration: approx. 1 h</p>" }, "short_description": { "fi": "Miltä kuulostaa putoava hiekanjyvä? Voiko muovin rapina kuulostaa räiskyvältä tulelta? Hör så tyst det är – Kuuntele kuinka hiljaista -esityksessä on mahdollisuus tutustua ääniteknologiaan ja luoda itse musiikkia.", "sv": "Hur låter ett fallande sandkorn? Kan skrapandet av plast låta som en knastrande brasa? Hör så tyst det är ger möjlighet att ta del av ljudteknik och själv skapa musik.", "en": "Hör så tyst set är – Listen, how quiet is a chance to get familiar with sound technology and through an own, unique experience understand and create music." }, "location_extra_info": null, "name": { "fi": "NYXXX: Kuuntele kuinka hiljaista (SWE) – suomeksi koululaisryhmille osana Bravo!-festivaalia", "sv": "NYXXX: Hör så tyst det är (SWE) – Bravo! Festivalen", "en": "NYXXX: Listen, how quiet (SWE) – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61936/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61555", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": { "fi": "ilmoittautuminen kultus.fi, 10.1. alkaen", "sv": "ilmoittautuminen kultus.fi, 10.1. alkaen", "en": "ilmoittautuminen kultus.fi, 10.1. alkaen" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7352, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-24T15:12:59.433381Z", "last_modified_time": "2024-02-06T13:23:25.866670Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741248.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7352/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-24T14:13:10.754985Z", "last_modified_time": "2024-04-05T17:13:55.646028Z", "date_published": null, "start_time": "2024-03-21T10:00:00Z", "end_time": "2024-03-21T11: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/575D086B388F9EBF6CDE9ECD9ABD4EE2/Cie_de_la_Casquette_LOVNI", "sv": "http://www.annantalo.fi/sv/evenemang/event/575D086B388F9EBF6CDE9ECD9ABD4EE2/Cie_de_la_Casquette_LOVNI", "en": "http://www.annantalo.fi/en/events/event/575D086B388F9EBF6CDE9ECD9ABD4EE2/Cie_de_la_Casquette_LOVNI" }, "provider": null, "description": { "fi": "<p>Lovni on mukaansatempaava, herkkä ja musiikillinen kokemus. Hetki vain sinulle. Katsoja on matkustaja, joka luo oman tarinansa äänimaailman ympäröimänä.</p><p>Sinut on kutsuttu matkalle kapteeni Isabellen ja Zoén laivaan! He pitävät sinusta huolta ja saavat sinut matkustamaan toisin kuin koskaan aiemmin. Matkan aikana koetaan äänistä ja väreistä koostuvia maisemia. Oman täkin alla, silmät suljettuina voi purjehtia minne haluaa.</p><p>Mihin maahan menet? Ehkä lennät koko universumin ympäri tai sukellat syvälle maan onkaloon? <br>Voit tehdä matkan luontoon, valtameren syvien vesien läpi valaiden ympäröimänä, päästä luoliin, joissa tapaat karhun… Tai ehkä sinusta tulee muurahainen? Aistit ovat valppaana esityksen aikana.<br> <br>Ikäsuositus 3–9-vuotiaat<br>Kesto: 60 min.<br>Maksuton päiväkoti ja kouluryhmille. Ilmoittautuminen osoitteessa kultus.fi</p><p>Musiikillinen konsepti: Zoé Sevrin ja Isabelle Verlaine<br>Ohjaus ja installaation konsepti: Isabelle Verlaine<br>Äänisuunnittelija: Olivier Trontin<br>Ääniohjaaja: Frédéric Becker<br>Valosuunnittelu: Joseph Iavicoli<br>Lavastus: Isabelle Verlaine and Zoé Sevrin<br>Tekstiilisuunnittelu: Linda Topic <br>Valokuvat ja traileri: Alice Verlaine Corbion<br>Tukija: House of Culture of Molenbeek</p>", "sv": "<p>Lovni är en engagerande, känslosam och musikalisk upplevelse. En stund bara för dig. Åskådaren är en passagerare som skapar sin egen historia omgiven av en ljudvärld.</p>", "en": "<p>Lovni is an immersive, intimate, sensitive and musical experience. A moment just for you. As you are the passenger, you tell your own story.</p><p>You are invited to make a journey in Captain Isabelle and Zoé’ s Ship. They will take care of you and make you travel like never before. All along the journey, you will cross landscapes made of sounds and colours. Under your blanket, under your eyelids, you will sail wherever you want.<br> <br>To which country will you go? Maybe you will fly around the Universe or dive deeply in the hollow of the earth?</p><p>As you are the passenger, you tell your own story. All at the same time, you can make a journey into the nature, through the deep waters of the ocean with whales around you, you might get into caverns where you'll meet a bear, or a marsh where you will wander about... Maybe you'll become an ant, or come across a deer.</p><p>The senses of touch, sight and hearing are stimulated during the performance.</p><p>The performance has also been performed for children and adults with profound disabilities. We are all here together.<br> <br>Age recommendation: 3-9-years<br>Duration: 60 min.<br> <br>Musical conception: Zoé Sevrin and Isabelle Verlaine<br>Direction and installation concept: Isabelle Verlaine<br>Sound engineer: Olivier Trontin<br>Sound director: Frédéric Becker<br>Lighting: Joseph Iavicoli<br>Set design: Isabelle Verlaine and Zoé Sevrin<br>Fabric design: Linda Topic <br>Photos and trailer: Alice Verlaine Corbion<br>With the support of the House of Culture of Molenbeek</p>" }, "short_description": { "fi": "Lovni on mukaansatempaava, herkkä ja musiikillinen kokemus. Hetki vain sinulle. Katsoja on matkustaja, joka luo oman tarinansa äänimaailman ympäröimänä.", "sv": "Lovni är en engagerande, känslosam och musikalisk upplevelse. En stund bara för dig. Åskådaren är en passagerare som skapar sin egen historia omgiven av en ljudvärld.", "en": "Lovni is an immersive, intimate, sensitive and musical experience. A moment just for you. As you are the passenger, you tell your own story." }, "location_extra_info": null, "name": { "fi": "Cie de la Casquette: LOVNI – Bravo!-festivaali", "sv": "Cie de la Casquette: LOVNI – Bravo! Festivalen", "en": "Cie de la Casquette: LOVNI – Bravo!-festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61508", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-7/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6355, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-30T12:13:47.715592Z", "last_modified_time": "2024-02-06T13:23:25.776480Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736508.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6355/?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": "2023-11-30T12:13:47.695739Z", "last_modified_time": "2024-04-05T17:13:55.593964Z", "date_published": null, "start_time": "2024-03-21T08:00:00Z", "end_time": "2024-03-21T10: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C93ADE29ACC20BD727A52196BEFEF77C/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/C93ADE29ACC20BD727A52196BEFEF77C/Konst_for_smabarn", "en": "http://www.caisa.fi/en/events/event/C93ADE29ACC20BD727A52196BEFEF77C/Open_Art_Studio_for_Toddlers" }, "provider": null, "description": { "fi": "<p>Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "short_description": { "fi": "Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "location_extra_info": null, "name": { "fi": "Taidetta taaperoille", "sv": "Konst för småbarn", "en": "Open Art Studio for Toddlers" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61508/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61554", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": { "fi": "ilmoittautuminen kultus.fi, 10.1. alkaen", "sv": "ilmoittautuminen kultus.fi, 10.1. alkaen", "en": "ilmoittautuminen kultus.fi, 10.1. alkaen" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7348, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-24T14:13:10.627914Z", "last_modified_time": "2024-02-06T13:23:25.680695Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741247.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7348/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-24T14:13:10.596920Z", "last_modified_time": "2024-04-05T17:13:55.542596Z", "date_published": null, "start_time": "2024-03-21T07:30:00Z", "end_time": "2024-03-21T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6F759C9C06F0F0FB60043C2365166F1A/Cie_de_la_Casquette_LOVNI", "sv": "http://www.annantalo.fi/sv/evenemang/event/6F759C9C06F0F0FB60043C2365166F1A/Cie_de_la_Casquette_LOVNI", "en": "http://www.annantalo.fi/en/events/event/6F759C9C06F0F0FB60043C2365166F1A/Cie_de_la_Casquette_LOVNI" }, "provider": null, "description": { "fi": "<p>Lovni on mukaansatempaava, herkkä ja musiikillinen kokemus. Hetki vain sinulle. Katsoja on matkustaja, joka luo oman tarinansa äänimaailman ympäröimänä.</p><p>Sinut on kutsuttu matkalle kapteeni Isabellen ja Zoén laivaan! He pitävät sinusta huolta ja saavat sinut matkustamaan toisin kuin koskaan aiemmin. Matkan aikana koetaan äänistä ja väreistä koostuvia maisemia. Oman täkin alla, silmät suljettuina voi purjehtia minne haluaa.</p><p>Mihin maahan menet? Ehkä lennät koko universumin ympäri tai sukellat syvälle maan onkaloon? <br>Voit tehdä matkan luontoon, valtameren syvien vesien läpi valaiden ympäröimänä, päästä luoliin, joissa tapaat karhun… Tai ehkä sinusta tulee muurahainen? Aistit ovat valppaana esityksen aikana.<br> <br>Ikäsuositus 3–9-vuotiaat<br>Kesto: 60 min.<br>Maksuton päiväkoti ja kouluryhmille. Ilmoittautuminen osoitteessa kultus.fi</p><p>Musiikillinen konsepti: Zoé Sevrin ja Isabelle Verlaine<br>Ohjaus ja installaation konsepti: Isabelle Verlaine<br>Äänisuunnittelija: Olivier Trontin<br>Ääniohjaaja: Frédéric Becker<br>Valosuunnittelu: Joseph Iavicoli<br>Lavastus: Isabelle Verlaine and Zoé Sevrin<br>Tekstiilisuunnittelu: Linda Topic <br>Valokuvat ja traileri: Alice Verlaine Corbion<br>Tukija: House of Culture of Molenbeek</p>", "sv": "<p>Lovni är en engagerande, känslosam och musikalisk upplevelse. En stund bara för dig. Åskådaren är en passagerare som skapar sin egen historia omgiven av en ljudvärld.</p>", "en": "<p>Lovni is an immersive, intimate, sensitive and musical experience. A moment just for you. As you are the passenger, you tell your own story.</p><p>You are invited to make a journey in Captain Isabelle and Zoé’ s Ship. They will take care of you and make you travel like never before. All along the journey, you will cross landscapes made of sounds and colours. Under your blanket, under your eyelids, you will sail wherever you want.<br> <br>To which country will you go? Maybe you will fly around the Universe or dive deeply in the hollow of the earth?</p><p>As you are the passenger, you tell your own story. All at the same time, you can make a journey into the nature, through the deep waters of the ocean with whales around you, you might get into caverns where you'll meet a bear, or a marsh where you will wander about... Maybe you'll become an ant, or come across a deer.</p><p>The senses of touch, sight and hearing are stimulated during the performance.</p><p>The performance has also been performed for children and adults with profound disabilities. We are all here together.<br> <br>Age recommendation: 3-9-years<br>Duration: 60 min.<br> <br>Musical conception: Zoé Sevrin and Isabelle Verlaine<br>Direction and installation concept: Isabelle Verlaine<br>Sound engineer: Olivier Trontin<br>Sound director: Frédéric Becker<br>Lighting: Joseph Iavicoli<br>Set design: Isabelle Verlaine and Zoé Sevrin<br>Fabric design: Linda Topic <br>Photos and trailer: Alice Verlaine Corbion<br>With the support of the House of Culture of Molenbeek</p>" }, "short_description": { "fi": "Lovni on mukaansatempaava, herkkä ja musiikillinen kokemus. Hetki vain sinulle. Katsoja on matkustaja, joka luo oman tarinansa äänimaailman ympäröimänä.", "sv": "Lovni är en engagerande, känslosam och musikalisk upplevelse. En stund bara för dig. Åskådaren är en passagerare som skapar sin egen historia omgiven av en ljudvärld.", "en": "Lovni is an immersive, intimate, sensitive and musical experience. A moment just for you. As you are the passenger, you tell your own story." }, "location_extra_info": null, "name": { "fi": "Cie de la Casquette: LOVNI – Bravo!-festivaali", "sv": "Cie de la Casquette: LOVNI – Bravo! Festivalen", "en": "Cie de la Casquette: LOVNI – Bravo!-festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61554/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61553", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7184, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-15T13:14:13.775406Z", "last_modified_time": "2024-02-06T13:23:25.125842Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741218.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7184/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-15T13:14:13.751379Z", "last_modified_time": "2024-04-05T17:13:55.075771Z", "date_published": null, "start_time": "2024-03-20T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/42A1562171A93A594971D12D3E0593F7/Cie_de_la_Casquette_LOVNI", "sv": "http://www.annantalo.fi/sv/evenemang/event/42A1562171A93A594971D12D3E0593F7/Cie_de_la_Casquette_LOVNI", "en": "http://www.annantalo.fi/en/events/event/42A1562171A93A594971D12D3E0593F7/Cie_de_la_Casquette_LOVNI" }, "provider": null, "description": { "fi": "<p>Lovni on mukaansatempaava, herkkä ja musiikillinen kokemus. Hetki vain sinulle. Katsoja on matkustaja, joka luo oman tarinansa äänimaailman ympäröimänä.</p><p>Sinut on kutsuttu matkalle kapteeni Isabellen ja Zoén laivaan! He pitävät sinusta huolta ja saavat sinut matkustamaan toisin kuin koskaan aiemmin. Matkan aikana koetaan äänistä ja väreistä koostuvia maisemia. Oman täkin alla, silmät suljettuina voi purjehtia minne haluaa.</p><p>Mihin maahan menet? Ehkä lennät koko universumin ympäri tai sukellat syvälle maan onkaloon? <br>Voit tehdä matkan luontoon, valtameren syvien vesien läpi valaiden ympäröimänä, päästä luoliin, joissa tapaat karhun… Tai ehkä sinusta tulee muurahainen? Aistit ovat valppaana esityksen aikana.<br> <br>Ikäsuositus 3–9-vuotiaat<br>Kesto: 60 min.<br>Maksuton päiväkoti ja kouluryhmille. Ilmoittautuminen osoitteessa kultus.fi</p><p>Musiikillinen konsepti: Zoé Sevrin ja Isabelle Verlaine<br>Ohjaus ja installaation konsepti: Isabelle Verlaine<br>Äänisuunnittelija: Olivier Trontin<br>Ääniohjaaja: Frédéric Becker<br>Valosuunnittelu: Joseph Iavicoli<br>Lavastus: Isabelle Verlaine and Zoé Sevrin<br>Tekstiilisuunnittelu: Linda Topic <br>Valokuvat ja traileri: Alice Verlaine Corbion<br>Tukija: House of Culture of Molenbeek</p>", "sv": "<p>Lovni är en engagerande, känslosam och musikalisk upplevelse. En stund bara för dig. Åskådaren är en passagerare som skapar sin egen historia omgiven av en ljudvärld.</p>", "en": "<p>Lovni is an immersive, intimate, sensitive and musical experience. A moment just for you. As you are the passenger, you tell your own story.</p><p>You are invited to make a journey in Captain Isabelle and Zoé’ s Ship. They will take care of you and make you travel like never before. All along the journey, you will cross landscapes made of sounds and colours. Under your blanket, under your eyelids, you will sail wherever you want.<br> <br>To which country will you go? Maybe you will fly around the Universe or dive deeply in the hollow of the earth?</p><p>As you are the passenger, you tell your own story. All at the same time, you can make a journey into the nature, through the deep waters of the ocean with whales around you, you might get into caverns where you'll meet a bear, or a marsh where you will wander about... Maybe you'll become an ant, or come across a deer.</p><p>The senses of touch, sight and hearing are stimulated during the performance.</p><p>The performance has also been performed for children and adults with profound disabilities. We are all here together.<br> <br>Age recommendation: 3-9-years<br>Duration: 60 min.<br> <br>Musical conception: Zoé Sevrin and Isabelle Verlaine<br>Direction and installation concept: Isabelle Verlaine<br>Sound engineer: Olivier Trontin<br>Sound director: Frédéric Becker<br>Lighting: Joseph Iavicoli<br>Set design: Isabelle Verlaine and Zoé Sevrin<br>Fabric design: Linda Topic <br>Photos and trailer: Alice Verlaine Corbion<br>With the support of the House of Culture of Molenbeek</p>" }, "short_description": { "fi": "Lovni on mukaansatempaava, herkkä ja musiikillinen kokemus. Hetki vain sinulle. Katsoja on matkustaja, joka luo oman tarinansa äänimaailman ympäröimänä.", "sv": "Lovni är en engagerande, känslosam och musikalisk upplevelse. En stund bara för dig. Åskådaren är en passagerare som skapar sin egen historia omgiven av en ljudvärld.", "en": "Lovni is an immersive, intimate, sensitive and musical experience. A moment just for you. As you are the passenger, you tell your own story." }, "location_extra_info": null, "name": { "fi": "Cie de la Casquette: LOVNI – Bravo!-festivaali", "sv": "Cie de la Casquette: LOVNI – Bravo! Festivalen", "en": "Cie de la Casquette: LOVNI – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61553/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61616", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6486, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T14:14:11.308301Z", "last_modified_time": "2024-02-06T13:23:24.933926Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738492.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6486/?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": "2023-12-07T14:14:11.292475Z", "last_modified_time": "2024-04-05T17:13:54.912596Z", "date_published": null, "start_time": "2024-03-20T08:00:00Z", "end_time": "2024-03-20T10: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/17BAFCCFD843B97F72150624D553F1B9/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/17BAFCCFD843B97F72150624D553F1B9/Naperokino", "en": "http://www.annantalo.fi/en/events/event/17BAFCCFD843B97F72150624D553F1B9/Naperokino" }, "provider": null, "description": { "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.<br> <br>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.<br> <br>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.<br> <br>Ovella lapsia on tervehtimässä Pikku-Myyrä.</p><p>Tällä viikolla Naperokinossa seikkailu ja matka -teeman kunniaksi oheisohjelmana aarteenetsintää!</p><p>Näytöksillä on joka viikko vaihtuva teema:<br>• Ke 17.1.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 24.1.2024 Naperokino: seikkailu ja matka<br>• Ke 31.1.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 7.2.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 14.2.2024 Naperokino: ystävät ja perhe <br>• Ke 21.2.2024 Naperokino: luovuus ja taiteet <br>• Ke 28.2.2024 Naperokino: luonto ja eläimet <br>• Ke 6.3.2024 Naperokino: mielikuvitus<br>• Ke 13.3.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 20.3.2024 Naperokino: seikkailu ja matka<br>• Ke 27.3.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 3.4.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 10.4.2024 Naperokino: ystävät ja perhe<br>• Ke 17.4.2024 Naperokino: luovuus ja taiteet<br>• Ke 24.4.2024 Naperokino: luonto ja eläimet</p><p>Kieli: suomi<br>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa</p>", "sv": "<p>De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Under den första halvan av visningen som varar två timmar visas animerade filmer utan tal och under den andra halvan kommer finskspråkiga favoritfilmer med.</p><p>Språk: finska<br>För 0–3 åringar med sina föräldrar</p>", "en": "<p>The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue in Finnish.</p><p>For 0–3 year olds with their parents.</p>" }, "short_description": { "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "location_extra_info": null, "name": { "fi": "Naperokino", "sv": "Naperokino – Knattebion", "en": "Naperokino – Toddler cinema" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61616/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61552", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7183, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-15T13:14:13.579610Z", "last_modified_time": "2024-02-06T13:23:24.836078Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741216.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7183/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-15T13:14:13.551925Z", "last_modified_time": "2024-04-05T17:13:54.856008Z", "date_published": null, "start_time": "2024-03-20T07: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3D619BB2C4E12724752712315E8C5F9D/Cie_de_la_Casquette_LOVNI", "sv": "http://www.annantalo.fi/sv/evenemang/event/3D619BB2C4E12724752712315E8C5F9D/Cie_de_la_Casquette_LOVNI", "en": "http://www.annantalo.fi/en/events/event/3D619BB2C4E12724752712315E8C5F9D/Cie_de_la_Casquette_LOVNI" }, "provider": null, "description": { "fi": "<p>Lovni on mukaansatempaava, herkkä ja musiikillinen kokemus. Hetki vain sinulle. Katsoja on matkustaja, joka luo oman tarinansa äänimaailman ympäröimänä.</p><p>Sinut on kutsuttu matkalle kapteeni Isabellen ja Zoén laivaan! He pitävät sinusta huolta ja saavat sinut matkustamaan toisin kuin koskaan aiemmin. Matkan aikana koetaan äänistä ja väreistä koostuvia maisemia. Oman täkin alla, silmät suljettuina voi purjehtia minne haluaa.</p><p>Mihin maahan menet? Ehkä lennät koko universumin ympäri tai sukellat syvälle maan onkaloon? <br>Voit tehdä matkan luontoon, valtameren syvien vesien läpi valaiden ympäröimänä, päästä luoliin, joissa tapaat karhun… Tai ehkä sinusta tulee muurahainen? Aistit ovat valppaana esityksen aikana.<br> <br>Ikäsuositus 3–9-vuotiaat<br>Kesto: 60 min.<br>Maksuton päiväkoti ja kouluryhmille. Ilmoittautuminen osoitteessa kultus.fi</p><p>Musiikillinen konsepti: Zoé Sevrin ja Isabelle Verlaine<br>Ohjaus ja installaation konsepti: Isabelle Verlaine<br>Äänisuunnittelija: Olivier Trontin<br>Ääniohjaaja: Frédéric Becker<br>Valosuunnittelu: Joseph Iavicoli<br>Lavastus: Isabelle Verlaine and Zoé Sevrin<br>Tekstiilisuunnittelu: Linda Topic <br>Valokuvat ja traileri: Alice Verlaine Corbion<br>Tukija: House of Culture of Molenbeek</p>", "sv": "<p>Lovni är en engagerande, känslosam och musikalisk upplevelse. En stund bara för dig. Åskådaren är en passagerare som skapar sin egen historia omgiven av en ljudvärld.</p>", "en": "<p>Lovni is an immersive, intimate, sensitive and musical experience. A moment just for you. As you are the passenger, you tell your own story.</p><p>You are invited to make a journey in Captain Isabelle and Zoé’ s Ship. They will take care of you and make you travel like never before. All along the journey, you will cross landscapes made of sounds and colours. Under your blanket, under your eyelids, you will sail wherever you want.<br> <br>To which country will you go? Maybe you will fly around the Universe or dive deeply in the hollow of the earth?</p><p>As you are the passenger, you tell your own story. All at the same time, you can make a journey into the nature, through the deep waters of the ocean with whales around you, you might get into caverns where you'll meet a bear, or a marsh where you will wander about... Maybe you'll become an ant, or come across a deer.</p><p>The senses of touch, sight and hearing are stimulated during the performance.</p><p>The performance has also been performed for children and adults with profound disabilities. We are all here together.<br> <br>Age recommendation: 3-9-years<br>Duration: 60 min.<br> <br>Musical conception: Zoé Sevrin and Isabelle Verlaine<br>Direction and installation concept: Isabelle Verlaine<br>Sound engineer: Olivier Trontin<br>Sound director: Frédéric Becker<br>Lighting: Joseph Iavicoli<br>Set design: Isabelle Verlaine and Zoé Sevrin<br>Fabric design: Linda Topic <br>Photos and trailer: Alice Verlaine Corbion<br>With the support of the House of Culture of Molenbeek</p>" }, "short_description": { "fi": "Lovni on mukaansatempaava, herkkä ja musiikillinen kokemus. Hetki vain sinulle. Katsoja on matkustaja, joka luo oman tarinansa äänimaailman ympäröimänä.", "sv": "Lovni är en engagerande, känslosam och musikalisk upplevelse. En stund bara för dig. Åskådaren är en passagerare som skapar sin egen historia omgiven av en ljudvärld.", "en": "Lovni is an immersive, intimate, sensitive and musical experience. A moment just for you. As you are the passenger, you tell your own story." }, "location_extra_info": null, "name": { "fi": "Cie de la Casquette: LOVNI – Bravo!-festivaali", "sv": "Cie de la Casquette: LOVNI – Bravo! Festivalen", "en": "Cie de la Casquette: LOVNI – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61552/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61789", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6868, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T10:12:47.208718Z", "last_modified_time": "2024-02-06T13:23:24.632953Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742284.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6868/?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": "2023-12-28T10:12:47.193996Z", "last_modified_time": "2024-04-05T17:13:54.683717Z", "date_published": null, "start_time": "2024-03-19T15:30:00Z", "end_time": "2024-03-19T16:15: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A3C81A96E905575AB9BF805DEC97B72A/Stoan_perhesirkuskurssi_", "sv": "http://www.stoa.fi/sv/evenemang/event/A3C81A96E905575AB9BF805DEC97B72A/Cirkus_for_familjer_", "en": "http://www.stoa.fi/en/events/event/A3C81A96E905575AB9BF805DEC97B72A/Circus_course_for_families_" }, "provider": null, "description": { "fi": "<p>Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).</p><p>Sirkus on aina herättänyt uteliaisuutta ja iloa niin isoissa kuin pienissäkin. Tämä lapsen ja aikuisen yhteinen harrastus avaa ovia sirkuksen maailmaan.</p><p>Sirkuskurssilla leikitään ja kokeillaan erilaisia sirkustaitoja kuten tasapainoilua, akrobatiaa ja jongleerausvälineitä. Lapsesi pääsee iloitsemaan kokonaisvaltaisesta aistikokemuksesta, joka edistää luovuutta ja hahmotuskykyä sekä kehittää tärkeitä taitoja, kuten tasapainoa, voimaa ja koordinaatiota. Aikuiset saavat samalla vetreyttää omia taitojaan, pääsevät tutustumaan muihin vanhempiin tai isovanhempiin sekä tietenkin luomaan läheistä suhdetta omaan lapseensa.</p><p>Ohjaaja: Enrique Salas <br>Kesto: 10 x 45 min <br>Max. osallistujamäärä: 12 paria <br>Kielet: englanti, espanja, suomi <br>Maksuton.</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua kokeilemaan onneasi. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti, jos tilaa on.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15</p><p>Nu är det dags för skoj och lek i cirkusens magiska värld. Upplevelsen involverar även ditt barns alla sinnen, vilket uppmuntrar till kreativitet, utvecklar rumsuppfattningen och låter det träna på grundläggande färdigheter, såsom balans, styrka, koordination osv. Föräldrar får pröva på cirkuskonst och självklart också knyta an till sitt eget barn.</p><p>Lektioner för barn i åldern 3–6 tillsammans med vuxen.</p><p>Instruktör: cirkusinstruktören och artisten Enrique Salas <br>Längd: 10 x45 min. <br>Språk: engelska, spanska och finska <br>Fritt inträde</p><p>Obligatorisk förhandsregistrering fr.o.m. 10.1. kl 10. www.stoa.fi<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15</p><p>Now it is time to have fun with your little toddler throughout the magic of circus. It will be a complete sensory experience for your child, encouraging creativity, laterality, developing spatial awareness and building on essential skills like balance, strength, coordination and more. Parents will get a chance to have a go at some circus skills and of course bond with your own little one.</p><p>Classes for children from 3 to 6 years of age accompanied by an adult.</p><p>Instructor: circus instructor and performer Enrique Salas <br>Duration: 10 x 45 min <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Jan 10th at 10 a.m. at stoa.fi<br>More info: hanna.westerholm@hel.fi</p>" }, "short_description": { "fi": "Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).", "sv": "Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15", "en": "The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15" }, "location_extra_info": null, "name": { "fi": "Stoan perhesirkuskurssi", "sv": "Cirkus för familjer", "en": "Circus course for families" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61789/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61507", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-6/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6354, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-30T12:13:47.447605Z", "last_modified_time": "2024-02-06T13:23:24.359287Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736485.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6354/?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": "2023-11-30T12:13:47.426771Z", "last_modified_time": "2024-04-05T17:13:54.500294Z", "date_published": null, "start_time": "2024-03-19T11:30:00Z", "end_time": "2024-03-19T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AD7BDF84DBE27995CDB4D88B68795331/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/AD7BDF84DBE27995CDB4D88B68795331/Konst_for_smabarn", "en": "http://www.caisa.fi/en/events/event/AD7BDF84DBE27995CDB4D88B68795331/Open_Art_Studio_for_Toddlers" }, "provider": null, "description": { "fi": "<p>Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "short_description": { "fi": "Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "location_extra_info": null, "name": { "fi": "Taidetta taaperoille", "sv": "Konst för småbarn", "en": "Open Art Studio for Toddlers" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61507/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61536", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-fabsurdia-3558672/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-fabsurdia-3558672/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-fabsurdia-3558672/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7182, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-15T13:14:13.142127Z", "last_modified_time": "2024-02-06T13:23:24.262421Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741127.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7182/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-15T13:14:13.105125Z", "last_modified_time": "2024-04-05T17:13:54.443597Z", "date_published": null, "start_time": "2024-03-18T16: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/364B779D16913685A5B6714F2BBD2E9D/Krepsko_Fabsurdia", "sv": "http://www.annantalo.fi/sv/evenemang/event/364B779D16913685A5B6714F2BBD2E9D/Krepsko_Fabsurdia", "en": "http://www.annantalo.fi/en/events/event/364B779D16913685A5B6714F2BBD2E9D/Krepsko_Fabsurdia" }, "provider": null, "description": { "fi": "<p>Esitys on loppuunmyyty!Tervetuloa kurkistamaan Fabsurdiaan, paikkaan, jossa kaikki kummallinen on mahdollista. Fabsurdia on visuaalinen loru, kaiken ikäisille sopiva sanaton teatteriesitys.</p><p>Suomalais-tšekkiläisen Krepsko Theater Groupin Fabsurdia on vuoden 2023 lastenteatterin Itu-palkinnon voittajaesitys! Esityksen ensi-llta oli 16.11.2023 Nukketeatteritalossa Pakilassa.</p><p>Esitys on sanaton<br>Ikäsuositus: 3+.<br>Kesto: n. 40 min.</p><p>Työryhmä: Mayim Alpert, Linnea Happonen, Philip Holm, Anisia Kronidova, Pavel Semchenko</p>", "sv": "<p>Slutsåld!Välkommen till Fabsurdia, en plats där allt konstigt är möjligt. Fabsurdia är en visuell ramsa, en ordlös teaterföreställning för alla åldrar.</p><p>Fabsurdia av finländsk-tjeckiska Krepsko Theater Group är vinnaren av Itu-priset för bästa barnteaterföreställning år 2023!</p>", "en": "<p>Sold out!Welcome to Fabsurdia, a place where everything strange is possible. In Fabsurdia, stories start, turn and twist. Fabsurdia is a wordless theatre performance suitable for all ages.</p><p>The performance by Finnish-Czech Krepsko Theather Group was awarded the ITU children’s theatre award in 2023. The show premiered on November 16th 2023 in Puppetry House, Pakila.<br> <br>Non-verbal<br>Age recommendation 3+.<br>Duration approx. 40 min.<br> <br>Working group: Mayim Alpert, Linnea Happonen, Philip Holm, Anisia Kronidova, Pavel Semchenko</p>" }, "short_description": { "fi": "Esitys on loppuunmyyty!Tervetuloa kurkistamaan Fabsurdiaan, paikkaan, jossa kaikki kummallinen on mahdollista. Fabsurdia on visuaalinen loru, kaiken ikäisille sopiva sanaton teatteriesitys.", "sv": "Slutsåld!Välkommen till Fabsurdia, en plats där allt konstigt är möjligt. Fabsurdia är en visuell ramsa, en ordlös teaterföreställning för alla åldrar.", "en": "Sold out!Welcome to Fabsurdia, a place where everything strange is possible. In Fabsurdia, stories start, turn and twist. Fabsurdia is a wordless theatre performance suitable for all ages." }, "location_extra_info": null, "name": { "fi": "Krepsko: Fabsurdia – Bravo!-festivaali", "sv": "Krepsko: Fabsurdia – Bravo! Festivalen", "en": "Krepsko: Fabsurdia – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61536/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61865", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7087, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T13:13:01.432177Z", "last_modified_time": "2024-02-06T13:23:24.165188Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736594.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7087/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T13:13:01.419011Z", "last_modified_time": "2024-04-05T17:13:54.375787Z", "date_published": null, "start_time": "2024-03-18T08:15:00Z", "end_time": "2024-03-18T09: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4C72D83284AFBF3E7F1F6986D844E0CB/Tanssi_ja_leikki_", "sv": "http://www.caisa.fi/sv/evenemang/event/4C72D83284AFBF3E7F1F6986D844E0CB/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/4C72D83284AFBF3E7F1F6986D844E0CB/The_dance_and_play" }, "provider": null, "description": { "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.<br>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska</p>", "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>" }, "short_description": { "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together." }, "location_extra_info": null, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek – Verkstaden", "en": "The dance and play – Workshop" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61865/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61934", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7221, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-17T13:13:54.470545Z", "last_modified_time": "2024-02-06T13:23:24.073337Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739234.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7221/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-17T13:13:54.433838Z", "last_modified_time": "2024-04-05T17:13:54.320544Z", "date_published": null, "start_time": "2024-03-18T08: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/597F93F9E20737448F6E2D6718C94859/Kompany_Grensgeval_Murmur_", "sv": "http://www.stoa.fi/sv/evenemang/event/597F93F9E20737448F6E2D6718C94859/Kompany_Grensgeval_Murmur_", "en": "http://www.stoa.fi/en/events/event/597F93F9E20737448F6E2D6718C94859/Kompany_Grensgeval_Murmur_" }, "provider": null, "description": { "fi": "<p>Akrobaattista ääniteatteria Belgiasta! Tarvitaan vain murisevat reput, kaiuttimien luomat maisemat ja yksi akrobaattinen säveltäjä.</p><p>Murmur on mielikuvituksellinen esitys jokaiselle, joka haluaisi joskus olla muutakin kuin ihminen.</p><p>Sirkustaiteilija rakentaa maailmaa, joka on täynnä ääniä: kehräävä kissa taskussa, ilmassa lentävä mehiläisparvi, käsistä syntyvä autojen ääni. Kaukana voi kuulla sormen vinkuvan ikkunan pintaa pitkin. Merestä tulee tuulta, tuulesta hengitystä. Sirkustaiteilija hyppää, kaatuu, rullaa ja lentää yrittäessään säveltää maailmaa.</p><p>Yhtäkkiä yleisön reputkin alkavat surista ja kaikki tulevat osaksi yhteistä äänipyörrettä. Lopputulos: kuhiseva uusi sirkusääniteatteri kaikille aisteille!</p><p>Belgialainen sirkusryhmä Grensgeval on ryhtynyt luomaan teoksia lapsiyleisölle, ja niistä on tullut yleisön suosikkeja kaikkialla, missä niitä on esitetty.</p><p>Konsepti: Hanne Vandersteene, Mahlu Mertens, Stijn Dickel<br>Akrobaatti: Camiel Corneille / Jef Kinds<br>Ohjaajat: Hanne Vandersteene ja Mahlu Mertens<br>Äänisävellys: Stijn Dickel (aifoon)<br>Dramaturgia: Mieke Versyp<br>Ohjelmisto-/softwarekehittäjä: Tim De Paepe<br>Laitteisto: Jeroen Vandesande<br>Valosuunnittelu: Geert Vanoorlé<br>Puvut: Dorine Demuynck<br>Teknikot: Rinus Samyn, Sil Verdickt<br>Yhteistuotanto: aifoon, Provinciaal domein Dommelhof/Theater op de Markt, C-Takt, MiraMiro, Sabam for Culture<br>Tukijat: De Vlaamse Overheid, Stad Gent, De Grote Post, Circuscentrum, Circusnext<br>Erityiset kiitokset: Sterre De Vresselle, Ward Mortierille ja Camille Paychalle</p><p>Sanaton<br>Ikäsuositus: 4+<br>Kesto: 50 min.</p><p>Ilmoittautumiset osoitteessa kultus.fi 10.1. klo 10 alkaen. <br>Huom! Osallistujat arvotaan ilmoittautuneiden joukosta.</p>", "sv": "<p>Akrobatisk ljudteater från Belgien! Allt som behövs är morrande ryggsäckar, landskap skapade av högtalare och en akrobatisk kompositör.</p><p>Murmur är en fantasifull föreställning för alla som någon gång skulle vilja vara mer än en människa.</p>", "en": "<p>Murmur is acrobatic sound theatre that appeals to the senses - with murmuring backpacks, a landscape of speakers and an acrobatic composer!</p><p>An imaginative performance for everyone who sometimes longs to be more than just human.<br>A circus artist is building a world full of sounds. A purring cat comes from a pocket, a swarm of bees flies through the air, two arms create the sound of cars. Far away you hear a finger squeaking on a window. Sea becomes wind becomes breath. Surrounded by the audience, the performer jumps, falls, rolls, and flies in his attempt to compose the world.</p><p>Suddenly the audience’s backpacks start to buzz and everything and everyone becomes part of a swirl of sounds in a loudspeaker landscape.</p><p>After the successful family performance Plock! (2017) Grensgeval collaborated again with Camiel Corneille and Stijn Dickel. The result: fizzing new circus sound theatre for all the senses!</p><p>Concept: Hanne Vandersteene, Mahlu Mertens, Stijn Dickel<br>Acrobat: Camiel Corneille / Jef Kinds<br>Directors: Hanne Vandersteene and Mahlu Mertens<br>Sound composition: Stijn Dickel (aifoon)<br>Dramaturgy: Mieke Versyp<br>Software: Tim De Paepe<br>Hardware: Jeroen Vandesande<br>Light design: Geert Vanoorlé<br>Costumes: Dorine Demuynck<br>Technicians: Rinus Samyn, Sil Verdickt<br>Co-producers: aifoon, Provinciaal domein Dommelhof/Theater op de Markt, C-Takt, MiraMiro, Sabam for Culture<br>With support of: De Vlaamse Overheid, Stad Gent, De Grote Post, Circuscentrum, Circusnext <br>Special thanks to: Sterre De Vresse, Ward Mortier, Camille Paycha<br> <br>Shortlisted circusnext 2018-2019, European programme coordinated by circusnext and supported by the European Union.</p><p>Non-verbal<br>Age recommendation: 4+<br>Duration: 50 min.</p>" }, "short_description": { "fi": "Akrobaattista ääniteatteria Belgiasta! Tarvitaan vain murisevat reput, kaiuttimien luomat maisemat ja yksi akrobaattinen säveltäjä.", "sv": "Akrobatisk ljudteater från Belgien! Allt som behövs är morrande ryggsäckar, landskap skapade av högtalare och en akrobatisk kompositör.", "en": "Murmur is acrobatic sound theatre that appeals to the senses - with murmuring backpacks, a landscape of speakers and an acrobatic composer!" }, "location_extra_info": null, "name": { "fi": "Kompany Grensgeval: Murmur – koululaisryhmille osana Bravo!-festivaalia", "sv": "Kompany Grensgeval: Murmur – Bravo! Festivalen", "en": "Kompany Grensgeval: Murmur – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61934/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61864", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7086, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T13:13:01.324115Z", "last_modified_time": "2024-02-06T13:23:23.980377Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736577.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7086/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T12:13:06.436835Z", "last_modified_time": "2024-04-05T17:13:54.265633Z", "date_published": null, "start_time": "2024-03-18T07:15:00Z", "end_time": "2024-03-18T08: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F3F2B83A328D5FC3C1D4E006507C1000/Tanssi_ja_leikki", "sv": "http://www.caisa.fi/sv/evenemang/event/F3F2B83A328D5FC3C1D4E006507C1000/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/F3F2B83A328D5FC3C1D4E006507C1000/The_dance_and_play" }, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>", "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p>" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together." }, "location_extra_info": null, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek – Verkstaden", "en": "The dance and play – Workshop" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61864/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }