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 normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&max_duration=3d&page=86
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=87", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=85" }, "data": [ { "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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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-08-28T13:06:08.894798Z", "date_published": null, "start_time": "2025-10-17T14:00:00Z", "end_time": "2025-10-17T15: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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": 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: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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-08-28T13:06:08.836489Z", "date_published": null, "start_time": "2025-10-24T14:00:00Z", "end_time": "2025-10-24T15: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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": 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: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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-08-28T13:06:08.781923Z", "date_published": null, "start_time": "2025-10-31T15:00:00Z", "end_time": "2025-10-31T16: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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": 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: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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-08-28T13:06:08.708293Z", "date_published": null, "start_time": "2025-11-07T15:00:00Z", "end_time": "2025-11-07T16: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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": 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: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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-08-28T13:06:08.641282Z", "date_published": null, "start_time": "2025-11-14T15:00:00Z", "end_time": "2025-11-14T16: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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": 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: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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-08-28T13:06:08.582269Z", "date_published": null, "start_time": "2025-11-21T15:00:00Z", "end_time": "2025-11-21T16: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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": 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: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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-08-28T13:06:08.529857Z", "date_published": null, "start_time": "2025-11-28T15:00:00Z", "end_time": "2025-11-28T16: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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": 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:agmk22x4em", "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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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:30.368260Z", "last_modified_time": "2025-08-28T13:06:08.472397Z", "date_published": null, "start_time": "2025-12-05T15:00:00Z", "end_time": "2025-12-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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x4em/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22x3k4", "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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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:30.630651Z", "last_modified_time": "2025-08-28T13:06:08.416421Z", "date_published": null, "start_time": "2025-12-12T15:00:00Z", "end_time": "2025-12-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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x3k4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22x2rm", "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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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:30.851256Z", "last_modified_time": "2025-08-28T13:06:08.365068Z", "date_published": null, "start_time": "2025-12-19T15:00:00Z", "end_time": "2025-12-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, "provider_contact_info": 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. " }, "info_url": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "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": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x2rm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66539", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/164/?format=api" }, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1218824, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T12:14:16.611029Z", "last_modified_time": "2025-07-09T12:14:16.611045Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775000.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1218824/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-09T12:14:16.481359Z", "last_modified_time": "2025-08-28T12:13:34.219601Z", "date_published": null, "start_time": "2025-08-30T10:00:00Z", "end_time": "2025-08-30T14: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, "provider_contact_info": null, "short_description": { "fi": "Suomen luonnon päivänä mennään yhdessä Karhukallion metsään nauttimaan musiikista, saduista ja riippumatossa lepäilystä.", "sv": "Under Finska naturens dag går man tillsammans till skogen i Björnklippan för att njuta av musik, sagor och vila i hängmattan.", "en": "On Finnish Nature Day, we go to Karhukallio Forest together to enjoy music, fairytales and relaxation in a hammock." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_menee_metsaan", "sv": "http://www.stoa.fi/sv/evenemang/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_gar_till_skogs", "en": "http://www.stoa.fi/en/events/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_goes_into_the_woods" }, "name": { "fi": "Stoa menee metsään", "sv": "Stoa går till skogs", "en": "Stoa goes into the woods" }, "description": { "fi": "<p>Suomen luonnon päivänä mennään yhdessä Karhukallion metsään nauttimaan musiikista, saduista ja riippumatossa lepäilystä.</p><p>Lähimetsät ovat tärkeitä viherkäytäviä, levon ja leikin paikkoja. Kun Stoa menee metsään, on tarjolla muun muassa metsäsatuja, akustista musiikkia ja riippumatoissa lepäilyä. Metsä kutsuu myös tutkimiseen ja taiteen tekemiseen. Hengähdä kanssamme hetkinen ja vaikutu kaupunkiluonnon ihmeistä! Tapahtuma sopii monen ikäisille.</p><p>klo 13 ja 13.30: Metsäsatutuokiot. Ikäsuositus 3–7-vuotiaille. Tukiot ovat samansisältöiset. Ota varmuudeksi mukaan oma istuinalusta!</p><p>klo 14: Ötökkäelämää -työpaja<br>Tutustutaan yhdessä lähimetsän ötököihin. Mitä muurahaiset puuhastelevat loppukesällä? Missä siirat ja hämähäkit piileksivät? Vieläkö näkyy kimalaisia, ja minne ne katoavat talveksi? Työpajan ohjaa biologi, tietokirjailija Sanja Hakala.</p><p>klo 14.45: Metsäinen kirjavinkkaus aikuisille</p><p>klo 15.30: Karhukallion metsäkonsertti: Kielo Kärkkäinen<br>Kielo Kärkkäisen elokuinen esitys koostuu musiikista, runoista ja yhteisestä tarinoinnista. Laulaja-lauluntekijä esittää folkia suomeksi, espanjaksi ja englanniksi, minkä lisäksi myös yleisö pääsee laulamaan. Tilaisuuden dramaturgia muotoutuu ympäristön, läsnäolijoiden ja sään yhteistyönä. Metsä on salliva konserttisali, jossa voi istua tai kuljeskella, havainnoida, nauttia eväistä sekä tutustua muihin eläviin.</p><p>Katsomona konsertissa on 20 riippumattoa ja kallioinen katsomo. Ota varmuudeksi mukaan oma alusta.</p><p>***</p><p>Näin pääset paikalle:</p><p>Pääset paikalle esimerkiksi Itäkeskuksesta pikaratikalla 15. Jää pois Kauppamyllyntien pysäkillä.</p><p>Kävellen tai pyörällä matka on Stoalta n. 1,7 kilometriä. Pyöräparkki Kauppamyllyntien pysäkin vieressä.</p><p>Astu metsään sen eteläisestä reunasta, Holkkitien ja Viilarintien risteyksestä. Olemme teitä siellä vastassa ja neuvomme eteenpäin.</p><p>HUOM! Metsäpolku ei ole esteetön. Rattailla, joissa on hyvät renkaat, pääsee satutuokioon asti. Valitettavasti rollaattorilla tai pyörätuolilla ei pysty juurien ja kivien vuoksi poluilla liikkumaan.</p><p>Muita ohjeita:</p><p>Pukeudu säänmukaisesti ja varustaudu hyvillä jalkineilla.</p><p>Mukaan voi ottaa myös omaa evästä. Älä jätä metsään mitään roskia.</p><p>***</p><p>Tapahtuman järjestää Stoa: Itäkeskuksen kirjasto, Kulttuuripalvelut, Helsingin työväenopisto ja Nuorisopalvelut.</p><p>Vapaa pääsy.</p>", "sv": "<p>Under Finska naturens dag går man tillsammans till skogen i Björnklippan för att njuta av musik, sagor och vila i hängmattan.</p><p>Skogarna i närheten är viktiga grönkorridorer, platser för vila och lek. Då Stoa går till skogs erbjuds bland annat sagor i skogen, akustisk musik och vila i hängmattor. Maten tillreds med trangia och skogen kallar även till att skapa konst. Pusta ut en stund tillsammans med oss och bli fascinerad av stadsnaturens under!</p><p>Programmet:</p><p>Sagostunder i skogen kl. 13 och 13.30. Åldersrekommendation: 3–7-åringar.</p><p>14.00: Workshop om insektsliv<br>Låt oss lära känna insekterna i den lokala skogen tillsammans. Vad gör myrorna på sensommaren? Var gömmer sig getingarna och spindlarna? Finns det fortfarande humlor, och vart försvinner de över vintern? Workshopen leds av biologen och fackboksförfattaren Sanja Hakala.</p><p>kl. 14:45: Tips om skogsböcker för vuxna</p><p>Björnklippans skogskonsert kl. 15.30: Kielo Kärkkäinen</p><p>Kielo Kärkkäinens uppträdande i augusti består av musik, dikter och gemensamma berättelser.Sångaren-låtskrivaren framför folkmusik på finska, spanska och engelska. Även publiken får möjlighet att sjunga. Dramaturgin i evenemanget uppstår som ett samarbete mellan miljön, deltagarna och vädret. Skogen är en tolerant konsertsal där man kan sitta eller vandra, iaktta, njuta av sin matsäck samt bekanta sig med andra levande varelser.</p><p>Konsertlokalen har 20 hängmattor och ett stenställ. Ta med egen plattform för säkerhets skull.</p><p>Hitta hit:</p><p>Du kan ta dig dit till exempel från Östra centrum med spårvagn 15. Gå av vid hållplatsen Kauppamyllyntie.</p><p>Avståndet från Stoa till fots eller med cykel är cirka 1,7 kilometer.</p><p>Gå in i skogen från dess södra kant, vid korsningen mellan Holkkitie och Viilarintie. Vi möter dig där och ger dig vägbeskrivning.</p><p>OBS! Skogsstigen är inte tillgänglig. Barnvagnar med bra däck kan nå sagoområdet. Tyvärr kan du inte använda rullator eller rullstol på stigarna på grund av rötter och stenar.</p><p>Övriga instruktioner:</p><p>Klä dig lämpligt för vädret och använd bra skor.</p><p>Du kan också ta med egen mat. Lämna inget skräp i skogen.</p><p>Fritt inträde</p><p>Evenemanget ordnas av Stoa: Östra centrums bibliotek, Kulturtjänster, Helsingfors arbetarinstitut och Ungdomstjänster</p>", "en": "<p>On Finnish Nature Day, we go to Karhukallio Forest together to enjoy music, fairytales and relaxation in a hammock.</p><p>Local forests are important green corridors, as well as places of rest and play. When Stoa goes into the woods, the forest will also offer things such as woodland fairytales, acoustic music and hammocks to relax in. The catering is prepared on a portable stove, and the forest also invites you to make art. Take a moment to breathe with us and let yourself be amazed by the wonders of urban nature!</p><p>Program: <br>at 13:00 and 13:30: forest fairytales Recommended for ages 3–7.</p><p>at 14.00..: Insect Life Workshop<br>Let's get to know the insects in the local forest together. What do ants do in late summer? Where do the wasps and spiders hide? Are there still bumblebees, and where do they disappear to for the winter? The workshop will be led by biologist and non-fiction writer Sanja Hakala.</p><p>2:45 p.m.: Forest book tips for adults</p><p>at 15:30 Forest Concert at Karhukallio: Kielo Kärkkäinen</p><p>Kielo Kärkkäinen’s performance in August promises music, poems and shared storytelling. The singer-songwriter will perform folk music in Finnish, Spanish and English, and the audience will also have a chance to sing along. The dramaturgy of the event is shaped by the environment, the people present and the weather. The forest is an approachable concert hall where you can sit down or stroll around, observe, enjoy your snacks and meet other living beings.</p><p>The concert venue has 20 hammocks and some place mats to sit on the cliff. Bring your own mat to sit on just in case.</p><p>How to get there:</p><p>You can get there, for example, from Itäkeskus by light rail 15. Get off at the Kauppamyllyntie stop.</p><p>The distance from Stoa by foot or bike is about 1.7 kilometers.</p><p>Enter the forest from its southern edge, at the intersection of Holkkitie and Viilarintie. We will meet you there and give you directions.</p><p>NOTE! The forest path is not accessible. Strollers with good tires can reach the fairy tale area. Unfortunately, you cannot use a rollator or wheelchair on the paths due to roots and stones.</p><p>Other instructions:</p><p>Dress appropriately for the weather and wear good footwear.</p><p>You can also bring your own food. Do not leave any trash in the forest.</p><p>Free entry</p><p>The event is organised by Stoa: Itäkeskus Library, Cultural Services, Helsinki Finnish Adult Education Centre and Youth Services</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66539/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmqkb5rpu", "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:p1278/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-28T11:33:29.616887Z", "last_modified_time": "2025-08-28T11:33:29.616901Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/6a849585-cfa5-47da-8182-373c8e262618.jpg", "cropping": "0,0,355,355", "photographer_name": "", "alt_text": "Yhteisötanssifestivaalin logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-28T11:39:50.792148Z", "last_modified_time": "2025-08-28T11:39:50.792163Z", "date_published": null, "start_time": "2025-09-14T11:00:00Z", "end_time": "2025-09-14T13: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, "provider_contact_info": null, "short_description": { "fi": "Liikettä lainaksi-yhteisötanssifestivaali juhlistaa Yhteisö tanssii -yhdistyksen 25-toimintavuotta! Festivaali tuo esityksiä ja pääkaupunkiseudun kirjastoihin.", "sv": "Dansfestivalen Liikettä lainaksi firar föreningen Yhteisö tanssii 25-årsjubileum! Festivalen bjuder på föreställningar och på bibliotek i huvudstadsregionen.", "en": "Liikettä lainaksi community dance festival celebrates the 25th anniversary of Yhteisö tanssii association! The festival will bring performances to libraries." }, "info_url": null, "name": { "fi": "Yhteisö tanssii festivaali", "sv": "Gemenskapsdansfestival", "en": "Community Dance Festival" }, "description": { "fi": "<p>Liikettä lainaksi-yhteisötanssifestivaali juhlistaa Yhteisö tanssii -yhdistyksen 25-toimintavuotta! Festivaali tuo esityksiä ja työpajoja pääkaupunkiseudun kirjastoihin 11.-14.9.2025.</p><p>Sellon kirjastossa koetaan esitys ja tanssielokuvakokonaisuus sunnuntaina 14.9. iltapäivällä. </p><p>Ohjelma on maksutonta.</p><p>Tervetuloa mukaan yhteisötanssin juhlaan!</p><p><br></p><p><br></p><p>Ohjelma:</p><p><strong>Klo 14-14.15 </strong></p><p><strong>Esityksen nimi: Tapahtui kerran kirjastossa</strong></p><p>Tapahtui kerran kirjastossa -tanssiteos on luotu Helsingin työväenopiston kanssa yhteistyössä toteutetuissa työpajoissa osana Liikettä lainaksi -yhteisötanssifestivaalin ohjelmistoa. Osallistujien kirjastoihin liittyvät kokemukset, muistot ja kertomukset ovat esityksen lähtökohtana. </p><p> </p><p> Ohjaus: Sonja Elonen</p><p> Esiintyjät: Helsingin työväenopiston yhteisötanssiryhmäläiset</p><p> Yhteistyökumppani: Helsingin työväenopisto</p><p><br></p><p><br></p><p><strong>Klo 14.15-16</strong></p><p>Elokuvanäytöksen nimi: Z-sukupolvi / Gen Z -elokuvatrilogia</p><p>Noin puolen tunnin mittainen tanssielokuva-trilogia pyörii kolme kertaa peräkkäin iltapäivän aikana. Ennen ensimmäistä näytöstä elokuvissa esiintyvät tanssijat pitävät alustuksen kertoen työskentelystään.</p><p><br></p><p> Z-sukupolvi / Gen Z -elokuvatrilogia nostaa valokeilaan nuoret kehitysvammaiset tanssitaiteilijat Sofia Johanssonin, Vappu Virkkulan sekä Minttu Heinosen. Elokuvahanke on Ihanat-tanssiryhmää luotsaavien Riina Hannukselan ja Elisa Lejeunen sekä tanssija-elokuvantekijän Kati Kallion yhteinen ponnistus, jonka keskiössä on näiden kolmen nuoren tanssijan osallistaminen teostensa luovaan prosessiin aina käsikirjoittamisesta esiintymiseen asti.</p><p> </p><p> Elokuvatrilogian Z-sukupolvi monipuolistaa käsitystämme yhdestä sukupolvesta nostamalla esille sellaisia tanssijoita, joita harvemmin nähdään sukupolvensa edustajina. Elokuvissa nämä tanssijat tulevat näkyviksi sellaisena kuin he itse toivovat. Elokuvat käsittelevät liikkeen ja sanattoman vuorovaikutuksen keinoin sitä, millaisia haaveita, unelmia ja toiveita näillä nuorilla marginalisoiduilla tanssijoilla on, unohtamatta niitä supervoimia, joita he tarvitsevat tullakseen nähdyiksi osaavina ja pystyvinä toimijoina yhteiskunnassamme.</p><p> Elokuvat pyrkivät myös murtamaan stereotyyppistä käsitystä tanssijasta ja tarjoavat tunnistettavia esikuvia kaikille, mutta erityisesti Vapun, Sofian ja Mintun kaltaisille nuorille.</p><p> </p><p> Trilogia valmistui keväällä 2023. Elokuvien tuotannosta vastaavat tanssin ja elokuvan ammattilaiset. Tuotanto ei ole kaupallista, vaan se rahoitetaan taiteen apurahoin ja sponsorituotoin.</p><p><br></p><p><br></p><p>MustA, 6’00, 2023, Fi</p><p> </p><p> MustA elokuvan idea ja liikemateriaali on saanut vaikutteita vapaapainista ja erityisesti vapaapainin vahvoista naishahmoista. Sofian, Elisan ja Riinan välisessä työskentelyssä Sofia toimii usein koreografina. Elokuvatyöskentelyn myötä Sofia on myös harjoitellut roolihahmoon eläytymistä ja hahmon esittämistä kameralle. Sofialle on tärkeää tulla nähdyksi voimakkaana ja voitokkaana hahmona, mitä olemme pyrkineet vielä vahvistamaan.</p><p><br></p><p>Pinkki, 10’00, 2023, Fi</p><p> </p><p> Mintun elokuvassa Pinkki keskiöön nousee hänen ainutlaatuinen tapansa luoda koreografiaa kosketuksen avulla. Hänen tanssissaan kosketus kertoo, ohjaa ja tekee näkyväksi hänen tapaansa olla yhdessä muiden kanssa. Toinen esille nouseva teema on katseen alle asettautuminen. Minttu esiintyy mielellään kameralle ja ottaa usein tanssinsa lomassa suoran kontaktin yleisöönsä kameran välityksellä. Käytimme myös paljon liikkuvaa kameraa, joka on liikkeessä mukana ja sen vuoksi kuvauspaikoiksi valikoitui pelkistettyjä tiloja, joissa on mahdollista kuvata kaikkiin suuntiin.</p><p><br></p><p>Sininen, 9’50, 2023, Fi</p><p> </p><p> Sininen on satufantasia linnunomaisesta hahmosta metsän syleilyssä. Elokuvan keskeinen hahmo on kehittynyt vuosien varrella, kun Vappu Virkkula on etsinyt voimahahmoaan tanssin ja liikkeen kautta. Elokuva kuvaa lempeitä voimia ja maagisia taitoja, itsenäisyyttä ja itseohjautuvaa kykyä luoda elämää, merkitystä ja kohtaamisia ympärilleen. Jokaisella meistä on jotain ainutlaatuista annettavaa eteenpäin. Käsikirjoitus on kirjoitettu yhdessä esiintyjien kanssa ja koreografian on tehnyt Vappu Virkkula.</p><p><br></p><p><br></p><p>Työryhmä:</p><p> </p><p> Koreografia ja tanssi: Vappu Virkkula, Sofia Johansson, Minttu Heinonen</p><p> Ohjaus ja leikkaus: Kati Kallio</p><p> Ihanat tanssijoiden ohjaus ja tanssi: Riina Hannuksela ja Elisa Lejeune</p><p> Kuvaus: Mika Ailasmäki</p><p> Pukusuunnittelu: Riitta Röpelinen</p><p> Sävellys: Aarne Riikonen</p><p> Äänisuunnittelu: Janne Laine</p><p> Tuotanto: Kati Kallio ja Tanssiryhmä Ihanat</p><p><br></p><p><br></p><p>Festivaalia tukee:</p><p> Taiteen edistämiskeskus ja Helsingin kaupunki</p><p><br></p><p>Lisätietoja:</p><p>www.yhteisotanssi.fi/yhteisotanssifestivaali-2025/</p><p>Fb: www.facebook.com/yhteisotanssifestivaali </p><p>Ig: Yhteisö tanssii ry / yhteisotanssii</p>", "sv": "<p>Dansfestivalen Liikettä lainaksi firar föreningen Yhteisö tanssii 25-årsjubileum! Festivalen bjuder på föreställningar och verkstad på bibliotek i huvudstadsregionen den 11–14 september 2025.</p><p><br></p><p>Sello-biblioteket står värd för en föreställning och ett dansfilmsprogram på söndagseftermiddagen den 14 september. </p><p><br></p><p>Programmet är gratis.</p><p><br></p><p>Kom och delta i dansfesten!</p><p><br></p><p><br></p><p>Program:</p><p><br></p><p><strong>14.00–14.15 </strong></p><p><br></p><p>Föreställningens titel: Once Upon a Time in the Library</p><p><br></p><p>Dansverket \"Det var en gång i biblioteket\" skapades i workshops som anordnades i samarbete med Helsingfors Arbetarhem som en del av programmet för dansfestivalen Liikettä lainaksi. Deltagarnas erfarenheter, minnen och berättelser om bibliotek ligger till grund för föreställningen. </p><p><br></p><p> Regissör: Sonja Elonen</p><p><br></p><p> Medverkande: Medlemmar i Helsingfors Arbetarinstituts gemenskapsdansgrupp</p><p><br></p><p> Samarbetspartner: Helsingfors Arbetarinstitut</p><p><br></p><p><strong>14.15–16.00</strong></p><p><br></p><p>Filmvisning: Generation Z / Gen Z-filmtrilogin</p><p><br></p><p>Dansfilmtrilogin, som är ungefär en halvtimme lång, visas tre gånger i rad under eftermiddagen. Innan den första visningen kommer dansarna som medverkar i filmerna att presentera sitt arbete.</p>", "en": "<p>Liikettä lainaksi community dance festival celebrates the 25th anniversary of the Yhteisö tanssii association! The festival will bring performances and workshops to libraries in the capital region from September 11 to 14, 2025.</p><p>Sello Library will host a performance and dance film series on Sunday afternoon, September 14. </p><p><br></p><p>The program is free of charge.</p><p><br></p><p>Come and join the community dance celebration!</p><p><br></p><p><strong>Program:</strong></p><p><br></p><p><strong>2:00–2:15 p.m. </strong></p><p><br></p><p>Performance title: Once Upon a Time in the Library</p><p><br></p><p>The dance piece Once Upon a Time in the Library was created in collaboration with the Helsinki Workers' Institute as part of the Liikettä lainaksi (Movement on Loan) community dance festival program. The participants' experiences, memories, and stories related to libraries form the basis for the performance. </p><p><br></p><p> Director: Sonja Elonen</p><p><br></p><p> Performers: Community dance group members from the Helsinki Workers' Institute</p><p><br></p><p> Partner: Helsinki Workers' Institute</p><p><br></p><p><strong>2:15-4 p.m.</strong></p><p><br></p><p>Film screening title: Generation Z / Gen Z film trilogy</p><p><br></p><p>The dance film trilogy, which is about half an hour long, will be screened three times in a row during the afternoon. Before the first screening, the dancers featured in the films will give a presentation about their work.</p><p><br></p>" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Yhteisö tanssii ry", "sv": "Yhteisö tanssii ry", "en": "Yhteisö tanssii ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5rpu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmow7z26y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmow7z3py/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490551, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-18T11:59:40.264578Z", "last_modified_time": "2024-12-18T11:59:40.264599Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/dd21b156-4326-4053-81ab-cd6b0f60cc85.jpg", "cropping": "262,0,938,675", "photographer_name": "", "alt_text": "Iso kasa kirjoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-27T11:59:03.578712Z", "last_modified_time": "2025-08-28T11:13:57.375111Z", "date_published": null, "start_time": "2025-09-09T07:30:00Z", "end_time": "2025-09-09T08: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, "provider_contact_info": null, "short_description": { "fi": "Tapaamme kerran kuukaudessa Tapiolan kirjaston Tapahtumatila Heikissä ja keskustelemme lukukokemuksistamme.", "sv": "Vi träffas en tisdag förmiddag varje månad i evenemangsrummet Heikki på Hagalunds bibliotek för att samtala om våra läsupplevelser.", "en": "We meet one Tuesday morning each month in the Heikki event room at Tapiola Library to discuss our reading experiences." }, "info_url": null, "name": { "fi": "Ruotsinkielinen lukupiiri", "sv": "Förmiddagsbokcirkel", "en": "Swedish reading circle" }, "description": { "fi": "<p>Tapaamme kerran kuukaudessa Tapiolan kirjaston Tapahtumatila Heikissä ja keskustelemme lukukokemuksistamme.</p><p>Tapaamme 9.9., 7.10., 11.11. and 9.12. Kaikki tapaamiset ovat klo 10:30-11:30.</p><p><strong>Syksyn ohjelma:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Ota yhteyttä, jos haluat olla mukana: emma.borg[a]esbo.fi !</p>", "sv": "<p>Tycker du om att läsa och att dela med dig av dina läsupplevelser? Då kanske förmiddagsbokcirkeln på Hagalunds bibliotek är något för dig. Vi träffas en tisdag förmiddag varje månad och samtalar om böcker.</p><p><strong>Höstens program:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Kontakta emma.borg@esbo.fi om du vill vara med!</p>", "en": "<p>We meet one Tuesday morning each month in the Heikki event room at Tapiola Library to discuss our reading experiences.</p><p>We meet on 9.9., 7.10., 11.11. and 9.12. All meetings are from 10:30 to 11:30.</p><p><strong>Autumns program:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Contact emma.borg@esbo.fi if you are interested.</p>" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmow7z26y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmow7z2nq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmow7z3py/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490551, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-18T11:59:40.264578Z", "last_modified_time": "2024-12-18T11:59:40.264599Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/dd21b156-4326-4053-81ab-cd6b0f60cc85.jpg", "cropping": "262,0,938,675", "photographer_name": "", "alt_text": "Iso kasa kirjoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-27T11:59:03.735362Z", "last_modified_time": "2025-08-28T11:13:57.325921Z", "date_published": null, "start_time": "2025-10-07T07:30:00Z", "end_time": "2025-10-07T08: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, "provider_contact_info": null, "short_description": { "fi": "Tapaamme kerran kuukaudessa Tapiolan kirjaston Tapahtumatila Heikissä ja keskustelemme lukukokemuksistamme.", "sv": "Vi träffas en tisdag förmiddag varje månad i evenemangsrummet Heikki på Hagalunds bibliotek för att samtala om våra läsupplevelser.", "en": "We meet one Tuesday morning each month in the Heikki event room at Tapiola Library to discuss our reading experiences." }, "info_url": null, "name": { "fi": "Ruotsinkielinen lukupiiri", "sv": "Förmiddagsbokcirkel", "en": "Swedish reading circle" }, "description": { "fi": "<p>Tapaamme kerran kuukaudessa Tapiolan kirjaston Tapahtumatila Heikissä ja keskustelemme lukukokemuksistamme.</p><p>Tapaamme 9.9., 7.10., 11.11. and 9.12. Kaikki tapaamiset ovat klo 10:30-11:30.</p><p><strong>Syksyn ohjelma:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Ota yhteyttä, jos haluat olla mukana: emma.borg[a]esbo.fi !</p>", "sv": "<p>Tycker du om att läsa och att dela med dig av dina läsupplevelser? Då kanske förmiddagsbokcirkeln på Hagalunds bibliotek är något för dig. Vi träffas en tisdag förmiddag varje månad och samtalar om böcker.</p><p><strong>Höstens program:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Kontakta emma.borg@esbo.fi om du vill vara med!</p>", "en": "<p>We meet one Tuesday morning each month in the Heikki event room at Tapiola Library to discuss our reading experiences.</p><p>We meet on 9.9., 7.10., 11.11. and 9.12. All meetings are from 10:30 to 11:30.</p><p><strong>Autumns program:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Contact emma.borg@esbo.fi if you are interested.</p>" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmow7z2nq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmow7zz4m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmow7z3py/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490551, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-18T11:59:40.264578Z", "last_modified_time": "2024-12-18T11:59:40.264599Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/dd21b156-4326-4053-81ab-cd6b0f60cc85.jpg", "cropping": "262,0,938,675", "photographer_name": "", "alt_text": "Iso kasa kirjoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-27T11:59:03.925015Z", "last_modified_time": "2025-08-28T11:13:57.274478Z", "date_published": null, "start_time": "2025-11-11T08:30:00Z", "end_time": "2025-11-11T09: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, "provider_contact_info": null, "short_description": { "fi": "Tapaamme kerran kuukaudessa Tapiolan kirjaston Tapahtumatila Heikissä ja keskustelemme lukukokemuksistamme.", "sv": "Vi träffas en tisdag förmiddag varje månad i evenemangsrummet Heikki på Hagalunds bibliotek för att samtala om våra läsupplevelser.", "en": "We meet one Tuesday morning each month in the Heikki event room at Tapiola Library to discuss our reading experiences." }, "info_url": null, "name": { "fi": "Ruotsinkielinen lukupiiri", "sv": "Förmiddagsbokcirkel", "en": "Swedish reading circle" }, "description": { "fi": "<p>Tapaamme kerran kuukaudessa Tapiolan kirjaston Tapahtumatila Heikissä ja keskustelemme lukukokemuksistamme.</p><p>Tapaamme 9.9., 7.10., 11.11. and 9.12. Kaikki tapaamiset ovat klo 10:30-11:30.</p><p><strong>Syksyn ohjelma:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Ota yhteyttä, jos haluat olla mukana: emma.borg[a]esbo.fi !</p>", "sv": "<p>Tycker du om att läsa och att dela med dig av dina läsupplevelser? Då kanske förmiddagsbokcirkeln på Hagalunds bibliotek är något för dig. Vi träffas en tisdag förmiddag varje månad och samtalar om böcker.</p><p><strong>Höstens program:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Kontakta emma.borg@esbo.fi om du vill vara med!</p>", "en": "<p>We meet one Tuesday morning each month in the Heikki event room at Tapiola Library to discuss our reading experiences.</p><p>We meet on 9.9., 7.10., 11.11. and 9.12. All meetings are from 10:30 to 11:30.</p><p><strong>Autumns program:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Contact emma.borg@esbo.fi if you are interested.</p>" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmow7zz4m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmow7zzkm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmow7z3py/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490551, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-18T11:59:40.264578Z", "last_modified_time": "2024-12-18T11:59:40.264599Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/dd21b156-4326-4053-81ab-cd6b0f60cc85.jpg", "cropping": "262,0,938,675", "photographer_name": "", "alt_text": "Iso kasa kirjoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-27T11:59:04.210141Z", "last_modified_time": "2025-08-28T11:13:57.221910Z", "date_published": null, "start_time": "2025-12-09T08:30:00Z", "end_time": "2025-12-09T09: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, "provider_contact_info": null, "short_description": { "fi": "Tapaamme kerran kuukaudessa Tapiolan kirjaston Tapahtumatila Heikissä ja keskustelemme lukukokemuksistamme.", "sv": "Vi träffas en tisdag förmiddag varje månad i evenemangsrummet Heikki på Hagalunds bibliotek för att samtala om våra läsupplevelser.", "en": "We meet one Tuesday morning each month in the Heikki event room at Tapiola Library to discuss our reading experiences." }, "info_url": null, "name": { "fi": "Ruotsinkielinen lukupiiri", "sv": "Förmiddagsbokcirkel", "en": "Swedish reading circle" }, "description": { "fi": "<p>Tapaamme kerran kuukaudessa Tapiolan kirjaston Tapahtumatila Heikissä ja keskustelemme lukukokemuksistamme.</p><p>Tapaamme 9.9., 7.10., 11.11. and 9.12. Kaikki tapaamiset ovat klo 10:30-11:30.</p><p><strong>Syksyn ohjelma:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Ota yhteyttä, jos haluat olla mukana: emma.borg[a]esbo.fi !</p>", "sv": "<p>Tycker du om att läsa och att dela med dig av dina läsupplevelser? Då kanske förmiddagsbokcirkeln på Hagalunds bibliotek är något för dig. Vi träffas en tisdag förmiddag varje månad och samtalar om böcker.</p><p><strong>Höstens program:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Kontakta emma.borg@esbo.fi om du vill vara med!</p>", "en": "<p>We meet one Tuesday morning each month in the Heikki event room at Tapiola Library to discuss our reading experiences.</p><p>We meet on 9.9., 7.10., 11.11. and 9.12. All meetings are from 10:30 to 11:30.</p><p><strong>Autumns program:</strong></p><ul><li>9.9 Paul Auster: Baumgartner</li><li>7.10 Toshikazu Kawaguchi: Innan sanningen avslöjas</li><li>11.11 Édouard Louis: En kvinnas frigörelse</li><li>9.12 Kerstin Ekman: Löpa varg</li></ul><p> Contact emma.borg@esbo.fi if you are interested.</p>" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmow7zzkm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22nhky", "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/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nh6m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490203, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T08:14:48.942636Z", "last_modified_time": "2025-07-01T08:14:48.942677Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2a077383-14b4-41d7-9689-5a9363156a46.png", "cropping": "174,0,551,378", "photographer_name": "", "alt_text": "Kuvituskuva kirjasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490203/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T08:37:03.877482Z", "last_modified_time": "2025-08-28T10:16:42.841223Z", "date_published": null, "start_time": "2025-09-10T14:00:00Z", "end_time": "2025-09-10T15: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, "provider_contact_info": null, "short_description": { "fi": "Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman. ", "sv": "På Poetry Club kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter.", "en": "At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry." }, "info_url": null, "name": { "fi": "Runouden äärellä ", "sv": "Poesiklubben - på finska ", "en": "Poetry Club - in finnish" }, "description": { "fi": "<p>Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman.</p><ul><li>Runojen lukemista ja runojen kuuntelemista.</li><li>Tutustutaan piiriläisten omiin lempirunoihin</li><li>Herätteleviä kysymyksiä ja keskustelua</li><li>Oman runon kirjoittamista</li><li>Kannustava piiri, jossa saa palautetta, jos haluaa lukea oman runonsa. Ei kritisointia.</li><li>Runoraati runokokoelmien runoista</li><li>Runouden äärellä teemoina muun muassa rakkaus, elämä, kuolema, luonto, ja ihmisen sisäinen maailma.</li></ul><p>Keskiviikkoisin 10.9., 24.9., 8.10., 22.10., 5.11., 19.11., 3.12.</p><p>Kello 17.00-18.30, Akseli-sali, Sellon kirjasto.</p><p>Piiriä ohjaa kirjailija Ritva Laine Espoon Kirjailijoista.</p><p>Ei ennakkoilmoittautumista.</p><p>Tapahtuma on suomeksi.</p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p>", "sv": "<p>I Poesiklubben kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter. </p><ul><li>Läsa dikter och lyssna på dikter.</li><li>Upptäcka dina favoritdikter</li><li>Stimulerande frågor och diskussioner.</li><li>Skriva din egen dikt.</li><li>En uppmuntrande cirkel där du kan få feedback om du vill läsa upp din egen dikt. Ingen kritik.</li><li>En poesipanel med dikter ur diktsamlingarna.</li><li>Poesi på teman som kärlek, livet, döden, naturen och människans inre värld.</li></ul><p>Onsdagar: 10 september, 24 september, 8 oktober, 22 oktober, 5 november, 19 november, 3 december. </p><p>Kl 17.00-18.30, Akseli-salen, Sello bibliotek.</p><p>Cirkeln leds av författaren Ritva Laine från Espoo Kirjailijat.</p><p>Ingen förhandsanmälan krävs.</p><p>Evenemanget är på finska.</p>", "en": "<p>At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry.</p><ul><li>Reading poetry and listening to poetry.</li><li>Discovering your favourite poems.</li><li>Stimulating questions and discussion.</li><li>Writing your own poem.</li><li>An encouraging circle where you can get feedback if you want to read your own poem. No criticism.</li><li>A poetry panel of poems from the poetry collections.</li><li>Poetry on themes including love, life, death, nature, and the inner world of human mind.</li></ul><p>Wednesdays:10 September, 24 September, 8 October, 22 October, 5 November, 19 November, 3 December. </p><p>Time 17.00-18.30, Akseli Hall, Sello Library. </p><p>The circle will be led by writer Ritva Laine from Espoon Kirjailijat. </p><p>No pre-registration required.</p><p>The event is in Finnish.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nhky/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ngym", "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/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nh6m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490203, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T08:14:48.942636Z", "last_modified_time": "2025-07-01T08:14:48.942677Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2a077383-14b4-41d7-9689-5a9363156a46.png", "cropping": "174,0,551,378", "photographer_name": "", "alt_text": "Kuvituskuva kirjasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490203/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T08:37:04.022324Z", "last_modified_time": "2025-08-28T10:16:42.800373Z", "date_published": null, "start_time": "2025-09-24T14:00:00Z", "end_time": "2025-09-24T15: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, "provider_contact_info": null, "short_description": { "fi": "Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman. ", "sv": "På Poetry Club kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter.", "en": "At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry." }, "info_url": null, "name": { "fi": "Runouden äärellä ", "sv": "Poesiklubben - på finska ", "en": "Poetry Club - in finnish" }, "description": { "fi": "<p>Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman.</p><ul><li>Runojen lukemista ja runojen kuuntelemista.</li><li>Tutustutaan piiriläisten omiin lempirunoihin</li><li>Herätteleviä kysymyksiä ja keskustelua</li><li>Oman runon kirjoittamista</li><li>Kannustava piiri, jossa saa palautetta, jos haluaa lukea oman runonsa. Ei kritisointia.</li><li>Runoraati runokokoelmien runoista</li><li>Runouden äärellä teemoina muun muassa rakkaus, elämä, kuolema, luonto, ja ihmisen sisäinen maailma.</li></ul><p>Keskiviikkoisin 10.9., 24.9., 8.10., 22.10., 5.11., 19.11., 3.12.</p><p>Kello 17.00-18.30, Akseli-sali, Sellon kirjasto.</p><p>Piiriä ohjaa kirjailija Ritva Laine Espoon Kirjailijoista.</p><p>Ei ennakkoilmoittautumista.</p><p>Tapahtuma on suomeksi.</p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p>", "sv": "<p>I Poesiklubben kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter. </p><ul><li>Läsa dikter och lyssna på dikter.</li><li>Upptäcka dina favoritdikter</li><li>Stimulerande frågor och diskussioner.</li><li>Skriva din egen dikt.</li><li>En uppmuntrande cirkel där du kan få feedback om du vill läsa upp din egen dikt. Ingen kritik.</li><li>En poesipanel med dikter ur diktsamlingarna.</li><li>Poesi på teman som kärlek, livet, döden, naturen och människans inre värld.</li></ul><p>Onsdagar: 10 september, 24 september, 8 oktober, 22 oktober, 5 november, 19 november, 3 december. </p><p>Kl 17.00-18.30, Akseli-salen, Sello bibliotek.</p><p>Cirkeln leds av författaren Ritva Laine från Espoo Kirjailijat.</p><p>Ingen förhandsanmälan krävs.</p><p>Evenemanget är på finska.</p>", "en": "<p>At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry.</p><ul><li>Reading poetry and listening to poetry.</li><li>Discovering your favourite poems.</li><li>Stimulating questions and discussion.</li><li>Writing your own poem.</li><li>An encouraging circle where you can get feedback if you want to read your own poem. No criticism.</li><li>A poetry panel of poems from the poetry collections.</li><li>Poetry on themes including love, life, death, nature, and the inner world of human mind.</li></ul><p>Wednesdays:10 September, 24 September, 8 October, 22 October, 5 November, 19 November, 3 December. </p><p>Time 17.00-18.30, Akseli Hall, Sello Library. </p><p>The circle will be led by writer Ritva Laine from Espoon Kirjailijat. </p><p>No pre-registration required.</p><p>The event is in Finnish.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ngym/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ngfe", "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/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nh6m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490203, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T08:14:48.942636Z", "last_modified_time": "2025-07-01T08:14:48.942677Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2a077383-14b4-41d7-9689-5a9363156a46.png", "cropping": "174,0,551,378", "photographer_name": "", "alt_text": "Kuvituskuva kirjasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490203/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T08:37:04.121207Z", "last_modified_time": "2025-08-28T10:16:42.757412Z", "date_published": null, "start_time": "2025-10-08T14:00:00Z", "end_time": "2025-10-08T15: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, "provider_contact_info": null, "short_description": { "fi": "Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman. ", "sv": "På Poetry Club kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter.", "en": "At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry." }, "info_url": null, "name": { "fi": "Runouden äärellä ", "sv": "Poesiklubben - på finska ", "en": "Poetry Club - in finnish" }, "description": { "fi": "<p>Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman.</p><ul><li>Runojen lukemista ja runojen kuuntelemista.</li><li>Tutustutaan piiriläisten omiin lempirunoihin</li><li>Herätteleviä kysymyksiä ja keskustelua</li><li>Oman runon kirjoittamista</li><li>Kannustava piiri, jossa saa palautetta, jos haluaa lukea oman runonsa. Ei kritisointia.</li><li>Runoraati runokokoelmien runoista</li><li>Runouden äärellä teemoina muun muassa rakkaus, elämä, kuolema, luonto, ja ihmisen sisäinen maailma.</li></ul><p>Keskiviikkoisin 10.9., 24.9., 8.10., 22.10., 5.11., 19.11., 3.12.</p><p>Kello 17.00-18.30, Akseli-sali, Sellon kirjasto.</p><p>Piiriä ohjaa kirjailija Ritva Laine Espoon Kirjailijoista.</p><p>Ei ennakkoilmoittautumista.</p><p>Tapahtuma on suomeksi.</p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p>", "sv": "<p>I Poesiklubben kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter. </p><ul><li>Läsa dikter och lyssna på dikter.</li><li>Upptäcka dina favoritdikter</li><li>Stimulerande frågor och diskussioner.</li><li>Skriva din egen dikt.</li><li>En uppmuntrande cirkel där du kan få feedback om du vill läsa upp din egen dikt. Ingen kritik.</li><li>En poesipanel med dikter ur diktsamlingarna.</li><li>Poesi på teman som kärlek, livet, döden, naturen och människans inre värld.</li></ul><p>Onsdagar: 10 september, 24 september, 8 oktober, 22 oktober, 5 november, 19 november, 3 december. </p><p>Kl 17.00-18.30, Akseli-salen, Sello bibliotek.</p><p>Cirkeln leds av författaren Ritva Laine från Espoo Kirjailijat.</p><p>Ingen förhandsanmälan krävs.</p><p>Evenemanget är på finska.</p>", "en": "<p>At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry.</p><ul><li>Reading poetry and listening to poetry.</li><li>Discovering your favourite poems.</li><li>Stimulating questions and discussion.</li><li>Writing your own poem.</li><li>An encouraging circle where you can get feedback if you want to read your own poem. No criticism.</li><li>A poetry panel of poems from the poetry collections.</li><li>Poetry on themes including love, life, death, nature, and the inner world of human mind.</li></ul><p>Wednesdays:10 September, 24 September, 8 October, 22 October, 5 November, 19 November, 3 December. </p><p>Time 17.00-18.30, Akseli Hall, Sello Library. </p><p>The circle will be led by writer Ritva Laine from Espoon Kirjailijat. </p><p>No pre-registration required.</p><p>The event is in Finnish.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ngfe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22nfrq", "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/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nh6m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490203, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T08:14:48.942636Z", "last_modified_time": "2025-07-01T08:14:48.942677Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2a077383-14b4-41d7-9689-5a9363156a46.png", "cropping": "174,0,551,378", "photographer_name": "", "alt_text": "Kuvituskuva kirjasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490203/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T08:37:04.226258Z", "last_modified_time": "2025-08-28T10:16:42.717357Z", "date_published": null, "start_time": "2025-10-22T14:00:00Z", "end_time": "2025-10-22T15: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, "provider_contact_info": null, "short_description": { "fi": "Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman. ", "sv": "På Poetry Club kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter.", "en": "At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry." }, "info_url": null, "name": { "fi": "Runouden äärellä ", "sv": "Poesiklubben - på finska ", "en": "Poetry Club - in finnish" }, "description": { "fi": "<p>Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman.</p><ul><li>Runojen lukemista ja runojen kuuntelemista.</li><li>Tutustutaan piiriläisten omiin lempirunoihin</li><li>Herätteleviä kysymyksiä ja keskustelua</li><li>Oman runon kirjoittamista</li><li>Kannustava piiri, jossa saa palautetta, jos haluaa lukea oman runonsa. Ei kritisointia.</li><li>Runoraati runokokoelmien runoista</li><li>Runouden äärellä teemoina muun muassa rakkaus, elämä, kuolema, luonto, ja ihmisen sisäinen maailma.</li></ul><p>Keskiviikkoisin 10.9., 24.9., 8.10., 22.10., 5.11., 19.11., 3.12.</p><p>Kello 17.00-18.30, Akseli-sali, Sellon kirjasto.</p><p>Piiriä ohjaa kirjailija Ritva Laine Espoon Kirjailijoista.</p><p>Ei ennakkoilmoittautumista.</p><p>Tapahtuma on suomeksi.</p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p>", "sv": "<p>I Poesiklubben kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter. </p><ul><li>Läsa dikter och lyssna på dikter.</li><li>Upptäcka dina favoritdikter</li><li>Stimulerande frågor och diskussioner.</li><li>Skriva din egen dikt.</li><li>En uppmuntrande cirkel där du kan få feedback om du vill läsa upp din egen dikt. Ingen kritik.</li><li>En poesipanel med dikter ur diktsamlingarna.</li><li>Poesi på teman som kärlek, livet, döden, naturen och människans inre värld.</li></ul><p>Onsdagar: 10 september, 24 september, 8 oktober, 22 oktober, 5 november, 19 november, 3 december. </p><p>Kl 17.00-18.30, Akseli-salen, Sello bibliotek.</p><p>Cirkeln leds av författaren Ritva Laine från Espoo Kirjailijat.</p><p>Ingen förhandsanmälan krävs.</p><p>Evenemanget är på finska.</p>", "en": "<p>At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry.</p><ul><li>Reading poetry and listening to poetry.</li><li>Discovering your favourite poems.</li><li>Stimulating questions and discussion.</li><li>Writing your own poem.</li><li>An encouraging circle where you can get feedback if you want to read your own poem. No criticism.</li><li>A poetry panel of poems from the poetry collections.</li><li>Poetry on themes including love, life, death, nature, and the inner world of human mind.</li></ul><p>Wednesdays:10 September, 24 September, 8 October, 22 October, 5 November, 19 November, 3 December. </p><p>Time 17.00-18.30, Akseli Hall, Sello Library. </p><p>The circle will be led by writer Ritva Laine from Espoon Kirjailijat. </p><p>No pre-registration required.</p><p>The event is in Finnish.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nfrq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26371, "next": "