Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=158®istration__remaining_waiting_list_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=159®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=157®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "espoo_le:agmk22x454", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:29.956383Z", "last_modified_time": "2025-05-28T06:57:29.956395Z", "date_published": null, "start_time": "2025-11-28T16:00:00Z", "end_time": "2025-11-28T17: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x454/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22x5ye", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:29.836998Z", "last_modified_time": "2025-05-28T06:57:29.837010Z", "date_published": null, "start_time": "2025-11-21T16:00:00Z", "end_time": "2025-11-21T17: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x5ye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22x6si", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:29.704880Z", "last_modified_time": "2025-05-28T06:57:29.704913Z", "date_published": null, "start_time": "2025-11-14T16:00:00Z", "end_time": "2025-11-14T17: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x6si/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22x7ma", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:29.389679Z", "last_modified_time": "2025-05-28T06:57:29.389697Z", "date_published": null, "start_time": "2025-11-07T16:00:00Z", "end_time": "2025-11-07T17: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x7ma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yahy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:29.067588Z", "last_modified_time": "2025-05-28T06:57:29.067599Z", "date_published": null, "start_time": "2025-10-31T16:00:00Z", "end_time": "2025-10-31T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yahy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ybbi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:28.943304Z", "last_modified_time": "2025-05-28T06:57:28.943316Z", "date_published": null, "start_time": "2025-10-24T15:00:00Z", "end_time": "2025-10-24T16: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ybbi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yb3m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:28.816807Z", "last_modified_time": "2025-05-28T06:57:28.816821Z", "date_published": null, "start_time": "2025-10-17T15:00:00Z", "end_time": "2025-10-17T16: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yb3m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ycwe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:28.695364Z", "last_modified_time": "2025-05-28T06:57:28.695376Z", "date_published": null, "start_time": "2025-10-10T15:00:00Z", "end_time": "2025-10-10T16: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ycwe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ydpe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:28.539002Z", "last_modified_time": "2025-05-28T06:57:28.539019Z", "date_published": null, "start_time": "2025-10-03T15:00:00Z", "end_time": "2025-10-03T16: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ydpe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yeji", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:28.420815Z", "last_modified_time": "2025-05-28T06:57:28.420828Z", "date_published": null, "start_time": "2025-09-26T15:00:00Z", "end_time": "2025-09-26T16: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yeji/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yfdu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:28.306663Z", "last_modified_time": "2025-05-28T06:57:28.306675Z", "date_published": null, "start_time": "2025-09-19T15:00:00Z", "end_time": "2025-09-19T16: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yfdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yf6q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:28.165619Z", "last_modified_time": "2025-05-28T06:57:28.165631Z", "date_published": null, "start_time": "2025-09-12T15:00:00Z", "end_time": "2025-09-12T16: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yf6q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ygxu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:28.048842Z", "last_modified_time": "2025-05-28T06:57:28.048855Z", "date_published": null, "start_time": "2025-09-05T15:00:00Z", "end_time": "2025-09-05T16: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, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ygxu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yhsu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x2rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x3k4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x4em/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x454/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x5ye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x6si/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x7ma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yahy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ybbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yb3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ycwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ydpe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yeji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yfdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yf6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ygxu/?format=api" } ], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:26.341473Z", "last_modified_time": "2025-05-28T06:57:26.341486Z", "date_published": null, "start_time": "2025-09-05T15:00:00Z", "end_time": "2025-12-19T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider_contact_info": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yimi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b4ru/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490287, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:17:28.183180Z", "last_modified_time": "2025-05-28T06:17:28.183194Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/4e9c486f-751d-4e4b-9234-3462aa70106a.jpg", "cropping": "500,0,3500,3000", "photographer_name": "Eeva Kenttä", "alt_text": "Dinokissa, nekku ja pätkis koirat värikkäällä matolla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490287/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-04-23T07:51:06.290282Z", "last_modified_time": "2025-05-28T06:18:43.615709Z", "date_published": null, "start_time": "2025-06-05T10:00:00Z", "end_time": "2025-06-05T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.", "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.", "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader." }, "description": { "fi": "<p>Hei,</p><p>Olemme Viherlaakson lukukissa Dino sekä Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin klo 13-15.</p><p>Tervetuloa!</p>", "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klösa!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den kl. 13-15</p><p>Varmt välkomna!</p>", "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to scratch!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays at 13-15.</p>" }, "location_extra_info": { "fi": "Lastenosasto", "sv": "barnavdelningen", "en": "children's section" }, "provider_contact_info": null, "name": { "fi": "Lukukissa Dino sekä lukukoirat Nekku ja Pätkis tavattavissa", "sv": "Läskatten Dino och läshundarna Nekku och Pätkis kan träffas", "en": "Meet the reading cat Dino and dogs Nekku and Pätkis" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yimi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yi24", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490288, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-27T20:16:29.910491Z", "last_modified_time": "2025-05-27T20:16:29.910507Z", "name": "Kukkia", "url": "https://tapahtumasyotto.espoo.fi/media/images/275f10ea-db18-4d02-a4f7-3f2f52933e35.jpg", "cropping": "255,0,1335,1080", "photographer_name": "Aleksi Tonteri", "alt_text": "Kukkia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490288/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T20:24:03.860413Z", "last_modified_time": "2025-05-27T20:24:03.860434Z", "date_published": "2025-05-28T05:00:00Z", "start_time": "2025-06-24T11:00:00Z", "end_time": "2025-06-24T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kukkaseppeleiden tekoa", "sv": "Att göra blomsterkransar", "en": "Making flower wreaths" }, "description": { "fi": "<p>Tervetuloa juhlistamaan Pride-viikkoa yhdessä Sellon kesätorille. Teemme kukkaseppeleitä kirjastolaisten ohjeistuksella. Kukkia on rajallinen määrä.</p><p>Tapahtuma on maksuton ja ikärajaton.</p><p>Espoon kaupunki on virallinen Working with Pride -kumppani, joka edistää yhdenvertaisuutta ja tasa-arvoa Helsinki Priden kanssa.</p>", "sv": "<p>Välkommen att fira Pride veckan tillsammans på Sello Summer Market. Vi kommer att göra blomsterkransar med instruktioner från bibliotekarier. Det finns ett begränsat antal blommor.</p><p><br></p><p>Evenemanget är gratis och öppet för alla åldrar.</p><p><br></p><p>Esbo stad är en officiell Working with Pride-partner som främjar jämlikhet med Helsinki Pride.</p>", "en": "<p>Welcome to celebrate Pride Week together at the Sello Summer Market. We will make flower wreaths with the guidance of librarians. There is a limited number of flowers.</p><p><br></p><p>The event is free of charge and there is no age limit.</p><p><br></p><p>The City of Espoo is an official Working with Pride partner, promoting equality and equity with Helsinki Pride.</p>" }, "location_extra_info": { "fi": "Sellon kesäterassi, Viaporintori", "sv": "Sellon kesäterassi, Viaporintori", "en": "Sellon kesäterassi, Viaporintori" }, "provider_contact_info": null, "name": { "fi": "KESÄTERASSI: PRIDE-KUKKAPAJA", "sv": "SOMMARTERRASS: PRIDE-BLOMSVERKSTAD", "en": "SUMMER TERRACE: PRIDE FLOWER WORKSHOP" }, "info_url": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yi24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66204", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 700130, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-06T14:13:53.987919Z", "last_modified_time": "2025-05-06T14:13:53.987936Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764158.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/700130/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-05-06T14:13:53.839162Z", "last_modified_time": "2025-05-27T13:13:59.618559Z", "date_published": null, "start_time": "2025-06-06T12:00:00Z", "end_time": "2025-06-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ainutlaatuinen tilaisuus päästä tutustumaan krumpiin Nachin johdolla!", "sv": "En unik möjlighet att bekanta sig med krump under ledning av Nach!", "en": "Krump is the acronym for Kingdom Radically Uplifted Mighty Praise." }, "description": { "fi": "<p>Ainutlaatuinen tilaisuus päästä tutustumaan krumpiin Nachin johdolla!</p><p>Krump on lyhenne sanoista Kingdom Radically Uplifted Mighty Praise, joka sai alkunsa Los Angelesin köyhissä kaupunginosissa 2000-luvulla. Krump on tanssi, joka on väkivallaton huolimatta nopeista liikkeistään ja aggressiivisesta muodostaan. Se pyrkii ilmentämään ”elämää”.</p><p>Krump on kuin tanssittu gospel, urbaani tanssi, joka vaatii energian hallintaa ja itsensä ilmaisua. Tanssi yhdistää irtipäästämisen, hallinnan ja liikkeen eristämisen impulssista vaikutukseen. Krump-liike kutsuu kokeilemaan erilaisia kehon tiloja, ja jossa jokainen liike on merkityksellinen.</p><p>Työpajan vetää ranskalainen tanssija-koreografi <b>Nach,</b> jonka teos Cellule nähdään URB 25 -festivaalilla kahden sooloteoksen näytöksessä to 5.6. klo 19 & ka 7.6. klo 15.</p><p><b>Työpajassa opetetaan</b><br>• käyttämään kehoa tarinankerrontaan Krumpin perusteita, asentoja, liikkeen laatua ja kasvon liikkeitä käyttämällä<br>• vuorovaikutusta solistin ja ryhmän välillä<br>• tutkimaan erilaisia Krump-asentoja ja liukumista niiden välillä, sekä karaktääriä ja sen ilmaisurekisteriä<br>• käyttämään hengitystä ja ääntä scoren strukturoimiseksi</p><p><b>Kenelle?</b><br>Työpaja sopii kaikille krumpista kiinnostuneille, jotka ovat jo jonkin verran harrastaneet tanssia.<br>Varaudu työpajaan tasapohjaisilla lenkkareilla, liikkumiseen soveltuvalla vaatetuksessa ja vesipullolla.</p><p>Ilmoittaudu työpajaan ma 2.6.2025 mennessä tästä <u><a href=\"https://link.webropolsurveys.com/EP/262B9106C2DD7FDA\">tästä linkistä</a></u></p><p>Työpajassa on rajattu osallistujamäärä.</p><p>Kieli: englanti & ranska<br>Ikäsuositus: 15+</p><p><b>Nach</b> on ranskalainen tanssija ja koreografi, joka löysi krumpin 22-vuotiaana katsottuaan David Lachapellen ohjaaman Rize-dokumentin. Pian sen jälkeen hän alkoi tutkia lavaa ja luovaa prosessia, tehden yhteistyötä taiteilijoiden kuten koreografi Heddy Maalemin ja muusikoiden Koki Nakano ja Ruth Rosenthalin kanssa. Elokuvamaailmassa hän työskenteli Kourtrajmé-kollektiivin kanssa projektissa, joka käsitteli välittämistä, kehoa ja asennon ilmaisua.</p><p>Vuonna 2017 hän loi ensimmäisen soolonsa, Cellule. Merkityksellisten tarinoiden kertojana Nachin työ yhdistää tanssia, kuvataidetta ja muita taidemuotoja. Hänen työnsä kyseenalaistavat usein feminiinisyyttä ja identiteettiä.</p>", "sv": "<p>En unik möjlighet att bekanta sig med krump under ledning av Nach!</p><p>Krump är en förkortning av orden Kingdom Radically Uplifted Mighty Praise som uppstod i Los Angeles fattigkvarter på 2000-talet. Krump är en dans som är icke-våldsam trots sina snabba rörelser och aggressiva former. Den strävar efter att uttrycka ”livet”.</p><p>Krump är som en dansad gospel, en urban dans som kräver kontroll över energi och självuttrycket. Dansen förenar lösgöring, manövrering och isolering av rörelse från impuls till effekt. Krump-rörelserna lockar till att pröva på olika kroppslägen där varje rörelse är av vikt.</p><p>Workshoppen leds av en fransk dansare-koreograf Nach vars verk Cellule ses på URB 25-festivalen på en föreställning med två solcellsverk to 5.6 kl. 19 & lö 7.6 kl. 15.</p><p><b>I workshopparna undervisas i</b><br>• konsten använda kroppen till att förtälja med hjälp av Krumps grunder, attityder, rörelsens kvalitet och ansiktsrörelser<br>• kommunikation mellan solister och grupp<br>• undersöka olika Krump-positioner och hur man glider mellan dem samt karaktärer och dess uttrycksregister<br>• andning och ljud för att strukturera scoren</p><p><b>För vem?</b><br>Workshopen lämpar sig för alla som är intresserade av krump och som redan i någon mån har utövat dans.<br>Förbered dig på workshoppen med skor som har en platt sula, kläder som lämpar sig för rörlighet och vattenflaska.</p><p>Anmäl dig till workshoppen senast måndag 2.6.2025 <u><a href=\"https://link.webropolsurveys.com/EP/262B9106C2DD7FDA\">via denna länk</a></u></p><p>Workshopparna har ett begränsat deltagarantal.</p><p>Språk: engelska & franska<br>Åldersrekommendation: 15+</p><p>Nach är en fransk dansare koreograf som hittade en krump när hon var 22 år gammal efter att ha sett Rize-dokumentären av David Lachapelle. Kort därefter började han undersöka scenen och den kreativa processen och samarbeta med konstnärer såsom koreograf Heddy Maalem och musikerna Koki Nakano och Ruth Rosenthal. I filmvärlden arbetade hon med Kourtrajmé-kollektivet i ett projekt som gällde omsorg, kropp och uttryck av ställningar.</p><p>År 2017 skapade hon sitt första solo, Cellule. Som berättelse om betydelsefulla berättelser förenar Nachs arbete dans, bildkonst och andra konstformer. Hennes arbete ifrågasätter ofta femininitet och identitet.</p>", "en": "<p>Krump is the acronym for Kingdom Radically Uplifted Mighty Praise.</p><p>Krump is a dance that originated in the poor neighbourhoods of Los Angeles in the 2000s. This dance, which is non-violent despite its fast movements and aggressive appearance, aims to be a dance representing “life”.</p><p>A veritable danced gospel, krump is an urban dance with a claim and an outlet: an exercise in energy control, a return to oneself to embody a character, between letting go, control and isolation of movement, from impulse to impact. A highly codified dance, the krump movement calls for people to speak out within a circle and to experiment with different states of the body. Each movement is inhabited.</p><p>The workshop is led by French dancer-choregrapher Nach, who’s performance Cellule is part of the URB 25 festival programme in Thu 5 June at 19.00 & Sat 7.6. 15.00.</p><p><b>At the workshop you’ll learn how to:</b><br>• Use the body to tell a story, using the fundamentals of Krump dance, postures, movement<br>• Create links between a lead and his chorus. Based on the experience of the Krump circle<br>• Studying different Krump postures and sliding between them. Study the character and its range<br>• Develope different types of skill and understand how to use themUse breathing and voice to structure your body score</p><p><b>To whom?</b><br>Persons interested in krump with some dance experience already.<br>Equipments needed: flat-soled trainers, flexible clothing and a water bottle.</p><p>Please registrate yourself to the workshop by Mon 2 June, 2025 <u><a href=\"https://link.webropolsurveys.com/EP/262B9106C2DD7FDA\">from this link</a></u></p><p>The workshop has limited amount for participants.</p><p>Language: English & French<br>Age recommendation: 15+</p><p><b>Nach</b> is a French dancer and choreographer, who discovered krump at 22 after watching Rize, David Lachapelle’s documentary. She soon began exploring the stage and the creative process, collaborating with artists like choreographer Heddy Maalem and musicians Koki Nakano and Ruth Rosenthal. In cinema, she worked with the Kourtrajmé collective on a project about transmission, body, and posture.</p><p>In 2017, she created her first solo, Cellule, followed by Beloved Shadows in 2019 after a stay in Japan, where she explored Noh theatre, bunraku, and butoh dance. Committed to telling meaningful stories, Nach’s work blends dance, visual arts, and other artforms. Her works often interrogates femaleness and identity.</p>" }, "location_extra_info": null, "provider_contact_info": null, "name": { "fi": "Krump-työpaja: Eloquence of the imaginary – The URB 25 Festival", "sv": "Krump-workshop: Eloquence of the imaginary – The URB 25 Festival", "en": "Krump Workshop: Eloquence of the imaginary – The URB 25 Festival" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DBE2E7C8E6F952A1C0453144637C494E/Krump-tyopaja_Eloquence_of_the_imaginary", "sv": "http://www.stoa.fi/sv/evenemang/event/DBE2E7C8E6F952A1C0453144637C494E/Krump-workshop_Eloquence_of_the_imaginary", "en": "http://www.stoa.fi/en/events/event/DBE2E7C8E6F952A1C0453144637C494E/Krump_Workshop_Eloquence_of_the_imaginary" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66204/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65568", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 192447, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-04T12:16:44.562680Z", "last_modified_time": "2025-02-04T12:16:44.562699Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765330.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192447/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-04T12:16:44.535466Z", "last_modified_time": "2025-05-27T13:13:54.982475Z", "date_published": null, "start_time": "2025-05-23", "end_time": "2025-06-25", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsingin nuorisopalvelut järjestää pääkaupunkiseudun 15–25-vuotiaiden nuorten yhteisnäyttelyn, jonka teemana on vapaus.", "sv": "Helsingfors ungdomstjänster ordnar en gemensam utställning för 15–25-åriga unga i huvudstadsregionen, där temat är frihet.", "en": "Helsinki Youth Services is organising a joint exhibition for young people aged 15–25 in the Helsinki Metropolitan Area, which will focus on the theme of freedom." }, "description": { "fi": "<p>Helsingin nuorisopalvelut järjestää pääkaupunkiseudun 15–25-vuotiaiden nuorten yhteisnäyttelyn, jonka teemana on vapaus.</p><p>Näyttelyn teoksissa nuoret käsittelevät aihetta omista lähtökohdistaan käsin itse valitsemillaan tekniikoilla.</p><p>Avoimet avajaiset to 22.5.2025 klo 17–19. Lämpimästi tervetuloa!</p><p>Paikka: Kanneltalon Galleria</p><p>Vapaa pääsy</p>", "sv": "<p>Helsingfors ungdomstjänster ordnar en gemensam utställning för 15–25-åriga unga i huvudstadsregionen, där temat är frihet.</p><p>I utställningens verk behandlar de unga ämnet ur sina egna utgångspunkter med valfria tekniker.</p><p>Öppen vernissage to 22.5.2025 kl. 17–19. Varmt välkommen!</p>", "en": "<p>Helsinki Youth Services is organising a joint exhibition for young people aged 15–25 in the Helsinki Metropolitan Area, which will focus on the theme of freedom.</p><p>The works in this exhibition will be created by young people using the techniques they have chosen to approach the subject.</p><p>Public opening on Thu, 22 May 2025, from 17:00–19:00. You are very warmly welcome!</p>" }, "location_extra_info": null, "provider_contact_info": null, "name": { "fi": "Nuorten Taide Nyt 2025 – Vapaus", "sv": "Nuorten Taide Nyt 2025 – Vapaus (Frihet)", "en": "Nuorten Taide Nyt 2025 (Youth Art Now) – Freedom" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/96B442633F6CD3D0CADEB5C39CEF36E1/Nuorten_Taide_Nyt_2025_Vapaus", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/96B442633F6CD3D0CADEB5C39CEF36E1/Nuorten_Taide_Nyt_2025_Vapaus_Frihet_", "en": "http://www.kanneltalo.fi/en/events/event/96B442633F6CD3D0CADEB5C39CEF36E1/Nuorten_Taide_Nyt_2025_Youth_Art_Now_Freedom" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65568/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yjhq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yq4u/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 151467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-15T12:54:12.340662Z", "last_modified_time": "2024-06-15T12:54:12.340682Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielitupa.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kielitupa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151467/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T13:08:38.905235Z", "last_modified_time": "2025-05-27T13:08:38.905246Z", "date_published": null, "start_time": "2025-12-18T12:00:00Z", "end_time": "2025-12-18T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kielituvassa voit saada opintoneuvontaa. Opettaja \nauttaa sinua löytämään sopivan suomen kielen kurssin.", "sv": "På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.", "en": "In Kielitupa you can get study counselling. The teacher will \nhelp you to find the right Finnish course." }, "description": { "fi": "<p>Kielituvassa voit saada opintoneuvontaa. Opettaja </p><p>auttaa sinua löytämään sopivan suomen kielen kurssin.</p>", "sv": "<p>På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.</p>", "en": "<p>In Kielitupa you can get study counselling. The teacher will </p><p>help you to find the right Finnish course.</p>" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider_contact_info": null, "name": { "fi": "Kielitupa - ohjausta ja neuvontaa suomenkielen opiskeluun", "sv": "Kielitupa handledning och råd om hur man lär sig finska", "en": "Kielitupa - guidance and tips for Finnish studies" }, "info_url": null, "provider": { "fi": "Espoon työväenopisto", "en": "Espoo adult education centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yjhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yjtu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yq4u/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 151467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-15T12:54:12.340662Z", "last_modified_time": "2024-06-15T12:54:12.340682Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielitupa.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kielitupa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151467/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T13:08:38.808503Z", "last_modified_time": "2025-05-27T13:08:38.808513Z", "date_published": null, "start_time": "2025-12-11T12:00:00Z", "end_time": "2025-12-11T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kielituvassa voit saada opintoneuvontaa. Opettaja \nauttaa sinua löytämään sopivan suomen kielen kurssin.", "sv": "På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.", "en": "In Kielitupa you can get study counselling. The teacher will \nhelp you to find the right Finnish course." }, "description": { "fi": "<p>Kielituvassa voit saada opintoneuvontaa. Opettaja </p><p>auttaa sinua löytämään sopivan suomen kielen kurssin.</p>", "sv": "<p>På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.</p>", "en": "<p>In Kielitupa you can get study counselling. The teacher will </p><p>help you to find the right Finnish course.</p>" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider_contact_info": null, "name": { "fi": "Kielitupa - ohjausta ja neuvontaa suomenkielen opiskeluun", "sv": "Kielitupa handledning och råd om hur man lär sig finska", "en": "Kielitupa - guidance and tips for Finnish studies" }, "info_url": null, "provider": { "fi": "Espoon työväenopisto", "en": "Espoo adult education centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yjtu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27035, "next": "